/* =============================================
   WILA BRAND — Light Luxury Edition
   Palette: Pure White + Warm Cream + Charcoal + Gold
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Tajawal:wght@200;300;400;500;700&display=swap');

:root {
  --gold:        #B8963E;
  --gold-light:  #D4AF6A;
  --gold-pale:   #EDD89A;
  --gold-bg:     rgba(184,150,62,0.08);

  --bg:          #FAFAF8;
  --bg-alt:      #F5F3EF;
  --bg-card:     #FFFFFF;
  --bg-section:  #F8F6F2;

  --charcoal:    #1C1C1C;
  --dark:        #2A2A2A;
  --mid:         #5A5A5A;
  --light:       #9A9A9A;

  --border:      rgba(0,0,0,0.08);
  --border-gold: rgba(184,150,62,0.3);

  --white:       #FFFFFF;
  --black:       #1C1C1C;

  /* Shadows */
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.14);
  --shadow-gold: 0 8px 30px rgba(184,150,62,0.2);

  --font-display: 'Cormorant Garamond', 'EB Garamond', serif;
  --font-body:    'Tajawal', sans-serif;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--charcoal);
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: var(--font-body); }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 1000;
  padding: 1.2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s var(--ease);
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--charcoal);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--mid);
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; right: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}

.nav-links a:hover { color: var(--charcoal); }
.nav-links a:hover::after { width: 100%; }

.nav-cart {
  position: relative;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}

.nav-cart:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.nav-cart svg { width: 16px; height: 16px; stroke: var(--mid); }
.nav-cart:hover svg { stroke: var(--gold); }

.cart-badge {
  position: absolute;
  top: -4px; left: -4px;
  width: 18px; height: 18px;
  background: var(--gold);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s var(--ease);
}

.cart-badge.show { opacity: 1; transform: scale(1); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px 10px;
  cursor: pointer;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.hamburger:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.hamburger span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s;
  border-radius: 2px;
}

.hamburger:hover span { background: var(--gold); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-alt);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212,175,106,0.12) 0%, transparent 70%),
    linear-gradient(180deg, #F5F3EF 0%, #FAFAF8 60%, #F0EDE8 100%);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(184,150,62,0.07) 0%, transparent 65%);
  border-radius: 50%;
  animation: glowPulse 7s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.06); }
}

.hero-line-top {
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  opacity: 0.5; z-index: 2;
}

.hero-line-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  z-index: 2;
}

.corner { position: absolute; width: 50px; height: 50px; z-index: 2; opacity: 0.25; }
.corner-tl { top: 90px; right: 3rem; }
.corner-br { bottom: 90px; left: 3rem; }
.corner-tl::before, .corner-tl::after,
.corner-br::before, .corner-br::after { content:''; position:absolute; background:var(--gold); }
.corner-tl::before { top:0; right:0; width:1px; height:40px; }
.corner-tl::after  { top:0; right:0; width:40px; height:1px; }
.corner-br::before { bottom:0; left:0; width:1px; height:40px; }
.corner-br::after  { bottom:0; left:0; width:40px; height:1px; }

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1rem;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
  animation: fadeDown 1s var(--ease) 0.2s both;
}

.hero-label::before,
.hero-label::after {
  content: '';
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light));
}

.hero-label::after { background: linear-gradient(90deg, var(--gold-light), transparent); }

.hero-label span {
  font-size: 0.68rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 300;
}

.hero-title-wrap {
  animation: fadeUp 1.1s var(--ease) 0.35s both;
  line-height: 1;
  margin-bottom: 0.15em;
}

.hero-wila {
  font-family: var(--font-display);
  font-size: clamp(7rem, 18vw, 14rem);
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.08em;
  line-height: 0.9;
  text-transform: uppercase;
  display: block;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3.5vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  color: black;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  display: block;
  margin-top: -0.2em;
  animation: fadeUp 1.1s var(--ease) 0.5s both;
}

.hero-rule {
  width: 200px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  margin: 2rem auto;
  animation: scaleIn 1s var(--ease) 0.7s both;
}

.hero-tagline {
  font-size: clamp(0.82rem, 1.5vw, 0.98rem);
  font-weight: 300;
  color: var(--mid);
  letter-spacing: 0.04em;
  line-height: 2;
  max-width: 480px;
  text-align: center;
  margin: 0 auto 2.8rem;
  animation: fadeUp 1s var(--ease) 0.85s both;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 1s var(--ease) 1s both;
}

.btn-gold {
  padding: 0.9rem 2.4rem;
  background: var(--gold);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: var(--font-body);
  border: 1px solid var(--gold);
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content:'';
  position:absolute; inset:0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-120%);
  transition: transform 0.55s var(--ease);
}

.btn-gold:hover::before { transform: translateX(120%); }
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  padding: 0.9rem 2.4rem;
  background: transparent;
  color: var(--mid);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: var(--font-body);
  border: 1px solid var(--border);
  transition: all 0.35s var(--ease);
}

.btn-outline:hover {
  border-color: var(--charcoal);
  color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeUp 1s var(--ease) 1.4s both;
  cursor: pointer;
}

.scroll-indicator span {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  color: var(--light);
  text-transform: uppercase;
}

.scroll-mouse {
  width: 22px; height: 34px;
  border: 1px solid var(--border);
  border-radius: 11px;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.scroll-mouse::before {
  content:'';
  width: 2px; height: 7px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* =============================================
   SECTION COMMON
   ============================================= */
.section-heading {
  text-align: center;
  margin-bottom: 4rem;
}

.section-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.45em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 400;
  display: block;
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.04em;
}

.section-divider {
  width: 40px; height: 1px;
  background: var(--gold);
  margin: 1.2rem auto 0;
}

/* =============================================
   CATEGORIES
   ============================================= */
.categories {
  padding: 100px 5%;
  background: var(--bg-section);
  position: relative;
}

.categories::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  opacity: 0.5;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}

.cat-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-alt);
}

.cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.75) saturate(0.85);
  transition: transform 0.8s var(--ease), filter 0.6s;
}

.cat-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.6) saturate(0.7);
}

.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,16,10,0.7) 0%, rgba(20,16,10,0.1) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 2.5rem 2rem;
}

.cat-frame {
  position: absolute; inset: 16px;
  border: 1px solid transparent;
  transition: border-color 0.4s var(--ease), inset 0.4s var(--ease);
  pointer-events: none;
}

.cat-card:hover .cat-frame {
  border-color: rgba(212,175,106,0.5);
  inset: 10px;
}

.cat-name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.06em;
  text-align: center;
  margin-bottom: 0.3rem;
  transform: translateY(6px);
  transition: transform 0.4s var(--ease);
}

.cat-card:hover .cat-name { transform: translateY(0); }

.cat-subtitle {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--gold-pale);
  text-transform: uppercase;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease) 0.05s, transform 0.4s var(--ease) 0.05s;
}

.cat-card:hover .cat-subtitle { opacity: 1; transform: translateY(0); }

.cat-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1.4rem;
  border: 1px solid var(--gold-light);
  color: var(--gold-pale);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-body);
  background: transparent;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease) 0.1s, transform 0.4s var(--ease) 0.1s, background 0.3s;
}

.cat-card:hover .cat-btn { opacity: 1; transform: translateY(0); }
.cat-btn:hover { background: rgba(212,175,106,0.15); }

/* =============================================
   PRODUCTS
   ============================================= */
.products {
  padding: 100px 5%;
  background: var(--bg);
  position: relative;
}

.products::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 0.55rem 1.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--font-body);
  background: transparent;
  color: var(--light);
  border: 1px solid transparent;
  transition: all 0.3s;
  cursor: pointer;
}

.filter-tab:hover { color: var(--charcoal); border-color: var(--border); }
.filter-tab.active {
  color: var(--gold);
  border-color: var(--gold);
  background: var(--gold-bg);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ——— PRODUCT CARD ——— */
.product-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.3s;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-alt);
}

.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.95) saturate(0.9);
  transition: transform 0.6s var(--ease), filter 0.4s;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.04);
  filter: brightness(0.88) saturate(0.8);
}

.product-tag {
  position: absolute;
  top: 12px; right: 12px;
  padding: 0.25rem 0.7rem;
  background: var(--gold);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-info {
  padding: 1.4rem 1.3rem;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
  letter-spacing: 0.03em;
}

.product-desc {
  font-size: 0.78rem;
  color: var(--light);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.1rem;
}

.product-price small {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--light);
  font-weight: 300;
  margin-right: 0.25rem;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.p-btn-cart {
  padding: 0.65rem;
  background: transparent;
  color: var(--mid);
  border: 1px solid var(--border);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  font-family: var(--font-body);
  transition: all 0.3s;
}

.p-btn-cart:hover {
  border-color: var(--charcoal);
  color: var(--charcoal);
  background: var(--bg-alt);
}

.p-btn-order {
  padding: 0.65rem;
  background: var(--gold);
  color: #fff;
  border: 1px solid var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  font-family: var(--font-body);
  font-weight: 500;
  transition: all 0.3s;
}

.p-btn-order:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

/* Loading */
.products-loading {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem;
}

.spinner-gold {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* =============================================
   PRODUCT DETAIL PAGE
   ============================================= */
.product-detail-page {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 2500;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: all 0.4s var(--ease);
}

.product-detail-page.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pd-navbar {
  position: sticky;
  top: 0;
  background: rgba(250,250,248,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.pd-back-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
  font-family: var(--font-body);
}

.pd-back-btn:hover { color: var(--charcoal); }

.pd-back-btn svg {
  width: 14px; height: 14px;
  stroke: currentColor;
  transform: rotate(180deg);
}

.pd-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--charcoal);
}

.pd-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* Gallery */
.pd-gallery {
  position: sticky;
  top: 90px;
}

.pd-main-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-alt);
  margin-bottom: 1rem;
  position: relative;
}

.pd-main-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.95) saturate(0.9);
  transition: opacity 0.4s var(--ease);
}

.pd-thumbs {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding-bottom: 4px;
}

.pd-thumbs::-webkit-scrollbar { height: 3px; }
.pd-thumbs::-webkit-scrollbar-track { background: var(--border); }
.pd-thumbs::-webkit-scrollbar-thumb { background: var(--gold); }

.pd-thumb {
  flex-shrink: 0;
  width: 72px; height: 88px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.3s;
  background: var(--bg-alt);
}

.pd-thumb:hover { border-color: var(--gold-light); }
.pd-thumb.active { border-color: var(--gold); }

.pd-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.9) saturate(0.8);
}

/* Info */
.pd-info {
  padding-top: 1rem;
}

.pd-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--light);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.pd-breadcrumb span { color: var(--gold); }

.pd-category-tag {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  background: var(--gold-bg);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.pd-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: 0.8rem;
}

.pd-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.pd-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 500;
}

.pd-price-unit {
  font-size: 1rem;
  color: var(--light);
  font-weight: 300;
}

.pd-desc {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 2;
  margin-bottom: 2rem;
  font-weight: 300;
}

/* Options */
.pd-option-group {
  margin-bottom: 1.8rem;
}

.pd-option-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 500;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pd-option-label span {
  color: var(--gold);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0;
  text-transform: none;
}

.pd-sizes {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pd-size-btn {
  width: 46px; height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 0.78rem;
  font-family: var(--font-body);
  color: var(--mid);
  cursor: pointer;
  transition: all 0.3s;
}

.pd-size-btn:hover { border-color: var(--charcoal); color: var(--charcoal); }
.pd-size-btn.active {
  border-color: var(--gold);
  background: var(--gold);
  color: #fff;
}

.pd-colors {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.pd-color-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}

.pd-color-btn:hover { transform: scale(1.1); }
.pd-color-btn.active { border-color: var(--gold); box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--gold); }

/* CTA */
.pd-cta-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 2rem;
}

.pd-btn-cart {
  padding: 1rem;
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.3s;
}

.pd-btn-cart:hover {
  background: var(--charcoal);
  color: #fff;
}

.pd-btn-order {
  padding: 1rem;
  background: var(--gold);
  color: #fff;
  border: 1px solid var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--font-body);
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
}

.pd-btn-order:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-gold);
}

.pd-stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: var(--mid);
  margin-top: 1rem;
}

.pd-stock-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4CAF50;
}

.pd-stock-badge.low::before { background: #FF9800; }
.pd-stock-badge.out::before { background: #F44336; }

/* Details accordion */
.pd-details {
  margin-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.pd-detail-item {
  border-bottom: 1px solid var(--border);
}

.pd-detail-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.75rem;
  font-family: var(--font-body);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-align: right;
}

.pd-detail-toggle svg {
  width: 14px; height: 14px;
  stroke: var(--light);
  transition: transform 0.3s;
}

.pd-detail-toggle.open svg { transform: rotate(45deg); }

.pd-detail-body {
  display: none;
  padding: 0 0 1rem;
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.9;
}

.pd-detail-body.open { display: block; }

/* =============================================
   ABOUT
   ============================================= */
.about {
  padding: 100px 5%;
  background: var(--bg-section);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  opacity: 0.4;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-wrap { position: relative; }

.about-img-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: brightness(0.9) saturate(0.85);
}

.about-img-wrap::before {
  content: '';
  position: absolute;
  top: -16px; right: -16px;
  width: 60%; height: 60%;
  border-top: 1px solid var(--gold-light);
  border-right: 1px solid var(--gold-light);
  opacity: 0.5;
  pointer-events: none;
}

.about-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -16px; left: -16px;
  width: 60%; height: 60%;
  border-bottom: 1px solid var(--gold-light);
  border-left: 1px solid var(--gold-light);
  opacity: 0.5;
  pointer-events: none;
}

.about-text .section-eyebrow { text-align: right; }
.about-text .section-title { text-align: right; color: var(--charcoal); }
.about-text .section-divider { margin: 1.2rem 0; }

.about-body {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 2;
  margin-bottom: 1.4rem;
  font-weight: 300;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.val-item {
  padding: 1.2rem;
  border: 1px solid var(--border);
  border-right: 2px solid var(--gold);
  background: var(--white);
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}

.val-item:hover {
  background: var(--gold-bg);
  border-color: var(--border-gold);
  border-right-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.val-item h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.val-item p {
  font-size: 0.75rem;
  color: var(--mid);
  font-weight: 300;
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
  padding: 100px 5%;
  background: var(--bg);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.contact-channels { display: flex; flex-direction: column; gap: 1rem; }

.social-channel {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.4rem;
  border: 1px solid var(--border);
  background: var(--white);
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
}

.social-channel::before {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0; width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform 0.3s var(--ease);
}

.social-channel:hover {
  border-color: var(--border-gold);
  background: var(--bg-section);
  transform: translateX(-4px);
  box-shadow: var(--shadow-md);
}

.social-channel:hover::before { transform: scaleY(1); }

.channel-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.channel-icon.whatsapp {
  background: linear-gradient(135deg, #1a472a, #25D366);
  box-shadow: 0 4px 15px rgba(37,211,102,0.2);
}

.channel-icon.instagram {
  background: linear-gradient(135deg, #405DE6, #833AB4, #E1306C, #F56040);
  box-shadow: 0 4px 15px rgba(193,53,132,0.2);
}

.channel-icon svg { width: 22px; height: 22px; fill: #fff; }

.channel-text p:first-child {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.15rem;
}

.channel-text p:last-child { font-size: 0.75rem; color: var(--light); }

/* Contact form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--charcoal);
  margin-bottom: 2rem;
  font-weight: 400;
}

.form-group { margin-bottom: 1.2rem; }

.form-group label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--charcoal);
  font-size: 0.88rem;
  font-family: var(--font-body);
  direction: rtl;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input::placeholder, .form-group textarea::placeholder { color: var(--light); }
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,150,62,0.08);
}

.form-group textarea { resize: vertical; min-height: 90px; }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--charcoal);
  padding: 3.5rem 5% 2rem;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0; left: 5%; right: 5%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  opacity: 0.4;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: #fff;
  margin-bottom: 0.8rem;
}

.footer-brand-name span {
  font-size: 0.85rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 0.4em;
  display: block;
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  font-weight: 300;
}

.footer-socials { display: flex; gap: 0.8rem; margin-top: 1.5rem; }

.footer-social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
}

.footer-social-btn.ws {
  background: linear-gradient(135deg, #1a472a, #25D366);
  box-shadow: 0 2px 10px rgba(37,211,102,0.2);
}

.footer-social-btn.ig {
  background: linear-gradient(135deg, #405DE6, #833AB4, #E1306C, #F56040);
  box-shadow: 0 2px 10px rgba(193,53,132,0.2);
}

.footer-social-btn:hover { transform: translateY(-3px) scale(1.1); }
.footer-social-btn svg { width: 18px; height: 18px; fill: #fff; }

.footer-col h4 {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  font-weight: 400;
}

.footer-col a {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.7rem;
  letter-spacing: 0.05em;
  transition: color 0.3s;
  font-weight: 300;
}

.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.08em;
}

/* =============================================
   CART SIDEBAR
   ============================================= */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 2000;
  opacity: 0; visibility: hidden;
  transition: all 0.35s;
  backdrop-filter: blur(4px);
}

.cart-overlay.open { opacity: 1; visibility: visible; }

.cart-sidebar {
  position: fixed;
  top: 0; right: -420px;
  width: 400px; max-width: 95vw;
  height: 100vh;
  background: var(--white);
  border-right: 1px solid var(--border);
  z-index: 2001;
  display: flex; flex-direction: column;
  transition: right 0.4s var(--ease);
  box-shadow: var(--shadow-lg);
}

.cart-sidebar.open { right: 0; }

.cart-head {
  padding: 1.5rem 1.8rem;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}

.cart-head h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--charcoal);
  font-weight: 400;
}

.cart-close-btn {
  width: 32px; height: 32px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: none;
  color: var(--mid);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}

.cart-close-btn:hover { border-color: var(--gold); color: var(--gold); }

.cart-items { flex: 1; overflow-y: auto; padding: 1.5rem; }

.cart-empty { text-align: center; padding: 3rem 1rem; color: var(--light); }
.cart-empty svg { width: 44px; height: 44px; stroke: var(--border); margin: 0 auto 1rem; }

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.cart-item-img {
  width: 65px; height: 82px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--bg-alt);
}

.cart-item-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}

.cart-item-price { font-size: 0.82rem; color: var(--gold); margin-bottom: 0.5rem; }

.qty-wrap { display: flex; align-items: center; gap: 0.6rem; }

.qty-btn {
  width: 26px; height: 26px;
  border: 1px solid var(--border);
  background: none;
  color: var(--mid);
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}

.qty-btn:hover { border-color: var(--gold); color: var(--gold); }
.qty-num { font-size: 0.85rem; color: var(--charcoal); min-width: 16px; text-align: center; }

.rm-btn { margin-right: auto; color: var(--light); font-size: 1rem; background: none; transition: color 0.3s; }
.rm-btn:hover { color: #EF4444; }

.cart-foot {
  padding: 1.5rem 1.8rem;
  border-top: 1px solid var(--border);
  background: var(--bg-section);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
  color: var(--mid);
}

.cart-total-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
}

.btn-checkout {
  width: 100%;
  padding: 0.95rem;
  background: var(--gold);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-body);
  border: none;
  transition: all 0.3s;
}

.btn-checkout:hover { background: var(--gold-light); transform: translateY(-1px); }

/* =============================================
   ORDER MODAL
   ============================================= */
.modal-bg {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0; visibility: hidden;
  transition: all 0.35s;
  backdrop-filter: blur(6px);
}

.modal-bg.open { opacity: 1; visibility: visible; }

.modal-box {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.35s var(--ease);
}

.modal-bg.open .modal-box { transform: translateY(0); }

.modal-header {
  padding: 1.4rem 1.8rem;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0;
  background: var(--white);
  z-index: 1;
}

.modal-header h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--charcoal);
}

.modal-body { padding: 2rem 1.8rem; }

.order-summary-box {
  background: var(--bg-section);
  border: 1px solid var(--border-gold);
  padding: 1.2rem;
  margin-bottom: 1.5rem;
}

.order-summary-box h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
  font-weight: 400;
}

.os-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--mid);
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--border);
}

.os-total {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  color: var(--gold);
  padding-top: 0.8rem;
  font-weight: 600;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--charcoal);
}

.form-group select option { background: var(--white); color: var(--charcoal); }

.btn-send {
  width: 100%;
  padding: 0.95rem;
  background: var(--gold);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-body);
  border: none;
  transition: all 0.3s;
  margin-top: 0.5rem;
}

.btn-send:hover { background: var(--gold-light); }
.btn-send:disabled { opacity: 0.6; cursor: not-allowed; }

/* =============================================
   SUCCESS MODAL
   ============================================= */
.success-content {
  text-align: center;
  padding: 3.5rem 2rem;
}

.success-icon-wrap {
  width: 70px; height: 70px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: var(--gold);
}

.success-content h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--charcoal);
  margin-bottom: 0.7rem;
  font-weight: 400;
}

.success-content p {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* =============================================
   TOAST
   ============================================= */
.toast-wrap {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  pointer-events: none;
}

.toast {
  background: var(--charcoal);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 0.7rem 1.6rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
  animation: toastIn 0.35s var(--ease);
  box-shadow: var(--shadow-md);
}

@keyframes toastIn {
  from { opacity:0; transform: translateY(8px); }
  to   { opacity:1; transform: translateY(0); }
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.in { opacity: 1; transform: translateY(0); }

/* =============================================
   MOBILE NAV
   ============================================= */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: 280px; height: 100vh;
  background: var(--white);
  border-left: 1px solid var(--border);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  padding: 5rem 2rem 2rem;
  transition: right 0.4s var(--ease);
  box-shadow: var(--shadow-lg);
}

.mobile-nav.open { right: 0; }

.mobile-nav a {
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--mid);
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.3s;
}

.mobile-nav a:hover { color: var(--gold); }

.mobile-nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 1099;
  display: none;
  backdrop-filter: blur(4px);
}

.mobile-nav-overlay.show { display: block; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap { max-width: 420px; margin: 0 auto; }
  .pd-inner { grid-template-columns: 1fr; gap: 2.5rem; padding: 2rem; }
  .pd-gallery { position: static; }
}

@media (max-width: 768px) {
  .navbar { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .categories-grid { grid-template-columns: 1fr; }
  .cat-card { aspect-ratio: 4/3; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero-wila { font-size: clamp(5rem, 20vw, 8rem); }
  .pd-navbar { padding: 1rem 1.5rem; }
  .pd-cta-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; width: 100%; max-width: 280px; }
  .btn-gold, .btn-outline { text-align: center; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }