/* =============================================================================
   Dashmesh Gift Center — tenant-specific brand polish.
   The color tokens (--color-primary, --color-accent, --color-bg, --color-text)
   come from views/partials/head.ejs based on tenant.brand_config.
   This file only adds touches that are specific to the Dashmesh visual voice.
   ============================================================================= */

body.customer {
  /* Subtle paper-grain feel for the storefront. */
  background:
    radial-gradient(ellipse at top, rgba(201, 162, 39, 0.06), transparent 60%),
    var(--color-bg);
}

body.customer .customer__shop-name {
  /* A whisper of italic on the headline gives a heritage-shop tone. */
  font-style: italic;
}

/* Decorative gold rule under the shop name on the customer header. */
body.customer .customer__header::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  background: var(--color-accent);
  margin: var(--space-4) auto 0;
}

/* Eyebrow text and CTA buttons inherit color tokens; nothing more needed here. */
