/* Uganda Crafts — Main Stylesheet
   ================================= */

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

/* ── Variables ── */
:root {
  --brown:        #7B3F00;
  --brown-dark:   #5C2E00;
  --brown-light:  #A0522D;
  --gold:         #C9A84C;
  --gold-light:   #E8C97A;
  --green:        #2D6A4F;
  --green-light:  #52B788;
  --cream:        #FDF8F0;
  --cream-dark:   #F0E6D2;
  --sand:         #E8D5B7;
  --bg-dark:      #1E0F04;
  --text-dark:    #1A0800;
  --text-body:    #4A3728;
  --text-muted:   #8B7355;
  --white:        #FFFFFF;
  --error:        #DC2626;
  --success:      #16A34A;
  --sh-sm:   0 2px 8px rgba(123,63,0,.08);
  --sh-md:   0 4px 20px rgba(123,63,0,.13);
  --sh-lg:   0 8px 40px rgba(123,63,0,.20);
  --r-sm:    6px;
  --r-md:    12px;
  --r-lg:    20px;
  --tr:      all .3s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text-body);
  line-height: 1.65;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
h1,h2,h3,h4 { font-family: 'Playfair Display', Georgia, serif; color: var(--text-dark); line-height: 1.3; }

/* ── Layout ── */
.container { width: 92%; max-width: 1200px; margin: 0 auto; }
.section { padding: 80px 0; }
.section--alt { background: var(--cream-dark); }
.section-title { font-size: clamp(1.7rem, 4vw, 2.4rem); margin-bottom: .5rem; }
.section-subtitle { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 2.5rem; }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .7rem 1.6rem; border-radius: 50px; font-weight: 600; font-size: .95rem;
  transition: var(--tr); white-space: nowrap;
}
.btn--primary { background: var(--brown); color: var(--white); }
.btn--primary:hover { background: var(--brown-dark); transform: translateY(-1px); box-shadow: var(--sh-md); }
.btn--outline { border: 2px solid var(--brown); color: var(--brown); }
.btn--outline:hover { background: var(--brown); color: var(--white); }
.btn--gold { background: var(--gold); color: var(--text-dark); }
.btn--gold:hover { background: var(--gold-light); }
.btn--sm { padding: .5rem 1.1rem; font-size: .85rem; }
.btn--lg { padding: .9rem 2.2rem; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; }
.btn:disabled { opacity: .55; cursor: not-allowed; }

/* ── Navigation ── */
#main-nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(253,248,240,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sand);
  transition: var(--tr);
}
#main-nav.scrolled { box-shadow: var(--sh-md); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0;
}
.nav-brand { display: flex; align-items: center; gap: .7rem; }
.nav-logo-icon {
  width: 42px; height: 42px; background: var(--brown);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.nav-brand-text { display: flex; flex-direction: column; }
.nav-brand-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.15rem; color: var(--brown); line-height: 1.2; }
.nav-brand-sub { font-size: .7rem; color: var(--text-muted); letter-spacing: .04em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-link {
  font-size: .9rem; font-weight: 500; color: var(--text-body);
  position: relative; padding-bottom: 2px;
}
.nav-link::after {
  content: ""; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--brown);
  transition: width .3s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--brown); font-weight: 600; }

.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-cart {
  position: relative; display: flex; align-items: center; gap: .4rem;
  padding: .5rem .9rem; border-radius: 50px;
  background: var(--brown); color: var(--white);
  font-size: .85rem; font-weight: 600; transition: var(--tr);
}
.nav-cart:hover { background: var(--brown-dark); }
.cart-count {
  display: none; align-items: center; justify-content: center;
  background: var(--gold); color: var(--text-dark);
  width: 18px; height: 18px; border-radius: 50%;
  font-size: .7rem; font-weight: 700;
}

.currency-selector { display: flex; gap: .2rem; }
.currency-btn {
  padding: .28rem .45rem; border-radius: var(--r-sm); font-size: .72rem;
  font-weight: 600; color: var(--text-muted); border: 1px solid var(--sand);
  transition: var(--tr); cursor: pointer; white-space: nowrap;
}
.currency-btn.active { background: var(--brown); color: var(--white); border-color: var(--brown); }
.currency-btn:hover:not(.active) { border-color: var(--brown); color: var(--brown); }

#menu-toggle { display: none; flex-direction: column; gap: 5px; padding: .4rem; }
#menu-toggle span { display: block; width: 24px; height: 2px; background: var(--text-dark); transition: var(--tr); border-radius: 2px; }

/* ── Hero ── */
.hero {
  min-height: 90vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #3D1A00 60%, #5C2E00 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1567301771792-d7c3f8cad5e3?w=1920&q=60&auto=format&fit=crop');
  background-size: cover; background-position: center;
  opacity: .22; mix-blend-mode: luminosity;
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(201,168,76,.04) 30px, rgba(201,168,76,.04) 60px);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 680px; padding: 4rem 0;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(201,168,76,.2); border: 1px solid rgba(201,168,76,.4);
  color: var(--gold-light); border-radius: 50px;
  padding: .4rem 1rem; font-size: .82rem; font-weight: 600;
  letter-spacing: .04em; margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--white); margin-bottom: 1.2rem; font-weight: 700;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p {
  font-size: 1.15rem; color: rgba(255,255,255,.8);
  max-width: 540px; margin-bottom: 2.2rem; line-height: 1.7;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 3rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--gold); }
.hero-stat-label { font-size: .8rem; color: rgba(255,255,255,.6); margin-top: .1rem; }

/* ── Trust Bar ── */
.trust-bar { background: var(--brown-dark); color: var(--white); padding: 1rem 0; }
.trust-bar-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.trust-item { display: flex; align-items: center; gap: .5rem; font-size: .88rem; font-weight: 500; }
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ── Category Grid ── */
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.category-card {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  aspect-ratio: 3/4; cursor: pointer; transition: var(--tr);
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.category-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.category-card:hover img { transform: scale(1.06); }
.category-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 60%);
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding: 1.5rem; text-align: center;
}
.category-card__icon { font-size: 1.8rem; margin-bottom: .4rem; }
.category-card__name { color: var(--white); font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 600; }
.category-card__count { color: rgba(255,255,255,.7); font-size: .8rem; margin-top: .2rem; }

/* ── Product Cards ── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }

.product-card {
  background: var(--white); border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--sh-sm); transition: var(--tr);
  display: flex; flex-direction: column;
}
.product-card:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); }

.product-card__image-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 1; background: var(--cream-dark);
}
.product-card__image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-card__image-wrap img { transform: scale(1.05); }

.product-badge {
  position: absolute; top: .7rem; left: .7rem;
  background: var(--brown); color: var(--white);
  padding: .25rem .65rem; border-radius: 50px;
  font-size: .72rem; font-weight: 700; letter-spacing: .03em;
}
.product-badge.gold { background: var(--gold); color: var(--text-dark); }

.wish-btn {
  position: absolute; top: .7rem; right: .7rem;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.9); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: var(--tr);
}
.wish-btn:hover, .wish-btn.wished { color: #E53E3E; background: var(--white); }

.product-card__body { padding: 1rem 1.2rem 1.2rem; flex: 1; display: flex; flex-direction: column; }
.product-card__category { font-size: .73rem; color: var(--green); font-weight: 600; letter-spacing: .05em; text-transform: uppercase; margin-bottom: .25rem; }
.product-card__name { font-size: .98rem; font-weight: 600; color: var(--text-dark); margin-bottom: .5rem; flex: 1; }
.product-card__name a:hover { color: var(--brown); }

.stars { display: inline-flex; align-items: center; }
.star { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }
.rating-count, .rating-num { font-size: .78rem; color: var(--text-muted); margin-left: .3rem; }
.product-card__rating { display: flex; align-items: center; gap: .2rem; margin-bottom: .75rem; }

.product-card__footer { display: flex; align-items: center; justify-content: space-between; gap: .5rem; margin-top: auto; }
.product-price { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--brown); }

/* ── Shop Page ── */
.shop-hero {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-dark) 100%);
  padding: 4rem 0 3rem; text-align: center; color: var(--white);
}
.shop-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: .5rem; }
.shop-hero p { color: rgba(255,255,255,.75); font-size: 1rem; }

.shop-search {
  max-width: 480px; margin: 1.5rem auto 0;
  display: flex; background: var(--white); border-radius: 50px;
  overflow: hidden; box-shadow: var(--sh-md);
}
.shop-search input {
  flex: 1; padding: .75rem 1.2rem; border: none; outline: none;
  font-size: .95rem; font-family: inherit; color: var(--text-dark);
}
.shop-search button {
  padding: .75rem 1.4rem; background: var(--brown); color: var(--white);
  font-weight: 600; font-size: .9rem; border-radius: 0 50px 50px 0;
  transition: var(--tr);
}
.shop-search button:hover { background: var(--brown-dark); }

.shop-layout { display: flex; gap: 2rem; padding: 2.5rem 0; }
.shop-sidebar { width: 230px; flex-shrink: 0; }
.shop-main { flex: 1; min-width: 0; }

.sidebar-section { margin-bottom: 2rem; }
.sidebar-title { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: .8rem; }
.category-filter-btn {
  display: flex; align-items: center; gap: .5rem;
  width: 100%; padding: .55rem .7rem; border-radius: var(--r-sm);
  font-size: .9rem; font-weight: 500; color: var(--text-body);
  transition: var(--tr); margin-bottom: .2rem;
}
.category-filter-btn:hover { background: var(--cream-dark); color: var(--brown); }
.category-filter-btn.active { background: var(--brown); color: var(--white); }
.category-filter-btn .cat-icon { font-size: 1rem; }
.category-filter-btn .cat-count { margin-left: auto; font-size: .75rem; opacity: .7; }

.shop-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; flex-wrap: wrap; gap: .8rem; }
.shop-toolbar-left { font-size: .9rem; color: var(--text-muted); }
.shop-toolbar-left strong { color: var(--text-dark); }
.sort-select {
  padding: .5rem .9rem; border: 1px solid var(--sand);
  border-radius: var(--r-sm); background: var(--white);
  font-size: .88rem; font-family: inherit; color: var(--text-body);
  cursor: pointer; outline: none;
}
.sort-select:focus { border-color: var(--brown); }

/* ── Product Detail Page ── */
.product-detail { padding: 3rem 0 5rem; }
.product-detail__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.product-images { position: sticky; top: 100px; }
.product-main-image {
  border-radius: var(--r-md); overflow: hidden;
  aspect-ratio: 1; background: var(--cream-dark); margin-bottom: .8rem;
}
.product-main-image img { width: 100%; height: 100%; object-fit: cover; }
.product-thumb-row { display: flex; gap: .5rem; }
.product-thumb {
  width: 70px; height: 70px; border-radius: var(--r-sm); overflow: hidden;
  border: 2px solid transparent; cursor: pointer; transition: var(--tr); flex-shrink: 0;
}
.product-thumb.active, .product-thumb:hover { border-color: var(--brown); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info .product-category-tag {
  display: inline-flex; align-items: center; gap: .3rem;
  background: var(--cream-dark); color: var(--green);
  padding: .3rem .8rem; border-radius: 50px;
  font-size: .8rem; font-weight: 600; margin-bottom: 1rem;
}
.product-info h1 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: .6rem; }
.product-info .product-rating-row { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.2rem; }
.product-info .product-price { font-size: 2rem; color: var(--brown); font-family: 'Playfair Display', serif; font-weight: 700; margin-bottom: 1.5rem; }
.product-description { font-size: .97rem; line-height: 1.75; color: var(--text-body); margin-bottom: 1.5rem; }

.product-details-list { list-style: none; margin-bottom: 1.8rem; }
.product-details-list li {
  display: flex; align-items: center; gap: .5rem;
  font-size: .9rem; padding: .4rem 0;
  border-bottom: 1px solid var(--cream-dark);
}
.product-details-list li::before { content: "✓"; color: var(--green); font-weight: 700; }

.qty-selector { display: flex; align-items: center; gap: 0; margin-bottom: 1.2rem; border: 1px solid var(--sand); border-radius: 50px; overflow: hidden; width: fit-content; }
.qty-btn { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--text-dark); transition: var(--tr); }
.qty-btn:hover { background: var(--cream-dark); }
.qty-display { padding: 0 1rem; font-weight: 600; font-size: .95rem; min-width: 40px; text-align: center; }

.product-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-bottom: 2rem; }
.product-actions .btn { flex: 1; min-width: 140px; }

.product-badges { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.info-badge {
  display: flex; align-items: center; gap: .4rem;
  padding: .4rem .8rem; border-radius: var(--r-sm);
  background: var(--cream-dark); font-size: .8rem; font-weight: 500; color: var(--text-body);
}
.info-badge svg { color: var(--green); }

/* ── Cart Page ── */
.cart-page { padding: 3rem 0 5rem; }
.cart-page h1 { margin-bottom: 2rem; }
.cart-layout { display: grid; grid-template-columns: 1fr 350px; gap: 2rem; align-items: start; }
.cart-items { background: var(--white); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--sh-sm); }
.cart-item { display: grid; grid-template-columns: 100px 1fr; gap: 1.2rem; padding: 1.2rem; border-bottom: 1px solid var(--cream-dark); align-items: center; }
.cart-item:last-child { border-bottom: none; }
.cart-item__image { width: 100px; height: 100px; border-radius: var(--r-sm); overflow: hidden; flex-shrink: 0; }
.cart-item__image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__name { font-weight: 600; font-size: .95rem; margin-bottom: .25rem; }
.cart-item__cat { font-size: .78rem; color: var(--text-muted); margin-bottom: .6rem; }
.cart-item__bottom { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.cart-item__price { font-weight: 700; color: var(--brown); font-size: 1.05rem; }
.cart-item__remove { font-size: .82rem; color: var(--error); cursor: pointer; }
.cart-item__remove:hover { text-decoration: underline; }

.cart-summary { background: var(--white); border-radius: var(--r-md); padding: 1.5rem; box-shadow: var(--sh-sm); position: sticky; top: 100px; }
.cart-summary h2 { font-size: 1.2rem; margin-bottom: 1.2rem; }
.summary-row { display: flex; justify-content: space-between; font-size: .9rem; padding: .5rem 0; border-bottom: 1px solid var(--cream-dark); }
.summary-row:last-of-type { border-bottom: none; }
.summary-row.total { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); padding-top: .8rem; }
.summary-row.total span:last-child { color: var(--brown); }
.free-shipping-note { font-size: .8rem; color: var(--green); text-align: center; margin: .8rem 0; }
.cart-summary .btn { margin-top: 1.2rem; }
.empty-cart { text-align: center; padding: 4rem 2rem; }
.empty-cart h2 { margin-bottom: .8rem; }
.empty-cart p { color: var(--text-muted); margin-bottom: 1.5rem; }

/* ── Checkout ── */
.checkout-page { padding: 3rem 0 5rem; }
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 2rem; align-items: start; }
.checkout-form { background: var(--white); border-radius: var(--r-md); padding: 2rem; box-shadow: var(--sh-sm); }
.checkout-form h2 { font-size: 1.3rem; margin-bottom: 1.5rem; padding-bottom: .8rem; border-bottom: 1px solid var(--cream-dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--text-dark); margin-bottom: .4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: .7rem 1rem; border: 1.5px solid var(--sand);
  border-radius: var(--r-sm); font-size: .92rem; font-family: inherit;
  color: var(--text-dark); transition: border-color .2s; outline: none;
  background: var(--cream);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--brown); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group .field-note { font-size: .78rem; color: var(--text-muted); margin-top: .3rem; }
.full { grid-column: 1 / -1; }

.order-summary-box { background: var(--white); border-radius: var(--r-md); padding: 1.5rem; box-shadow: var(--sh-sm); position: sticky; top: 100px; }
.order-summary-box h2 { font-size: 1.2rem; margin-bottom: 1.2rem; }
.order-items { max-height: 320px; overflow-y: auto; margin-bottom: 1rem; }
.order-item { display: flex; gap: .8rem; padding: .7rem 0; border-bottom: 1px solid var(--cream-dark); align-items: center; }
.order-item:last-child { border-bottom: none; }
.order-item__img { width: 60px; height: 60px; border-radius: var(--r-sm); overflow: hidden; flex-shrink: 0; }
.order-item__img img { width: 100%; height: 100%; object-fit: cover; }
.order-item__name { font-size: .88rem; font-weight: 600; flex: 1; }
.order-item__qty { font-size: .78rem; color: var(--text-muted); }
.order-item__price { font-size: .9rem; font-weight: 700; color: var(--brown); }

.pesapal-btn {
  width: 100%; padding: 1rem; border-radius: 50px;
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-dark) 100%);
  color: var(--white); font-size: 1rem; font-weight: 700;
  border: none; cursor: pointer; transition: var(--tr); margin-top: 1rem;
  display: flex; align-items: center; justify-content: center; gap: .6rem;
}
.pesapal-btn:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); }
.pesapal-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.payment-trust { text-align: center; font-size: .78rem; color: var(--text-muted); margin-top: .8rem; }
.payment-trust svg { color: var(--green); vertical-align: middle; }

/* ── About Page ── */
.about-hero {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-dark) 100%);
  padding: 5rem 0; text-align: center; color: var(--white);
}
.about-hero h1 { color: var(--white); font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1rem; }
.about-hero p { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); }
.about-image img { width: 100%; height: 400px; object-fit: cover; }
.about-content h2 { margin-bottom: 1rem; }
.about-content p { color: var(--text-body); line-height: 1.8; margin-bottom: 1rem; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.value-card { background: var(--white); padding: 1.8rem; border-radius: var(--r-md); text-align: center; box-shadow: var(--sh-sm); }
.value-icon { font-size: 2.5rem; margin-bottom: .8rem; }
.value-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.value-card p { font-size: .9rem; color: var(--text-muted); }

/* ── Contact Page ── */
.contact-page { padding: 4rem 0 6rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: var(--text-muted); line-height: 1.7; margin-bottom: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--cream-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--brown); }
.contact-item-body h4 { font-size: .9rem; font-weight: 700; margin-bottom: .2rem; }
.contact-item-body p, .contact-item-body a { font-size: .9rem; color: var(--text-muted); }
.contact-form-wrap { background: var(--white); padding: 2rem; border-radius: var(--r-md); box-shadow: var(--sh-sm); }

/* ── Footer ── */
footer {
  background: var(--bg-dark); color: rgba(255,255,255,.8);
  padding: 4rem 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand { }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--gold); margin-bottom: .8rem; }
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 1.2rem; }
.social-links { display: flex; gap: .7rem; }
.social-link {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; transition: var(--tr);
}
.social-link:hover { background: var(--brown); }
.footer-col h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gold); margin-bottom: 1rem; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { font-size: .88rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.2rem 0; display: flex;
  align-items: center; justify-content: space-between;
  font-size: .82rem; color: rgba(255,255,255,.4);
  flex-wrap: wrap; gap: .5rem;
}
.footer-bottom a { color: var(--gold); }

/* ── Newsletter ── */
.newsletter-section {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-light) 100%);
  padding: 5rem 0; text-align: center;
}
.newsletter-section h2 { color: var(--white); margin-bottom: .7rem; }
.newsletter-section p { color: rgba(255,255,255,.8); margin-bottom: 2rem; }
.newsletter-form { display: flex; max-width: 460px; margin: 0 auto; gap: 0; border-radius: 50px; overflow: hidden; box-shadow: var(--sh-lg); }
.newsletter-form input { flex: 1; padding: .85rem 1.4rem; border: none; outline: none; font-size: .95rem; font-family: inherit; }
.newsletter-form button { padding: .85rem 1.8rem; background: var(--gold); color: var(--text-dark); font-weight: 700; font-size: .9rem; transition: var(--tr); white-space: nowrap; }
.newsletter-form button:hover { background: var(--gold-light); }
.newsletter-success { color: var(--gold-light); font-size: 1rem; padding: 1rem; }

/* ── Testimonials ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: var(--white); padding: 2rem; border-radius: var(--r-md);
  box-shadow: var(--sh-sm); position: relative;
}
.testimonial-card::before {
  content: '"'; position: absolute; top: 1rem; left: 1.5rem;
  font-family: 'Playfair Display', serif; font-size: 4rem;
  color: var(--gold); opacity: .3; line-height: 1;
}
.testimonial-text { font-size: .95rem; line-height: 1.7; color: var(--text-body); margin-bottom: 1.2rem; padding-top: .5rem; }
.testimonial-author { display: flex; align-items: center; gap: .8rem; }
.testimonial-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--cream-dark); object-fit: cover; }
.testimonial-name { font-weight: 600; font-size: .9rem; color: var(--text-dark); }
.testimonial-location { font-size: .78rem; color: var(--text-muted); }

/* ── Breadcrumb ── */
.breadcrumb { padding: 1rem 0; font-size: .85rem; color: var(--text-muted); }
.breadcrumb a { color: var(--brown); }
.breadcrumb span { margin: 0 .4rem; }

/* ── Toast ── */
.uc-toast {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  background: var(--text-dark); color: var(--white);
  padding: .85rem 1.5rem; border-radius: var(--r-sm);
  font-size: .9rem; font-weight: 500;
  box-shadow: var(--sh-lg); z-index: 9999;
  transform: translateY(20px); opacity: 0;
  transition: all .3s ease;
}
.uc-toast.visible { transform: translateY(0); opacity: 1; }
.uc-toast--success { border-left: 4px solid var(--success); }
.uc-toast--error { border-left: 4px solid var(--error); }

/* ── Misc ── */
.text-brown { color: var(--brown); }
.text-gold { color: var(--gold); }
.badge-strip { display: flex; gap: .5rem; flex-wrap: wrap; }
.no-results { grid-column: 1/-1; text-align: center; padding: 3rem; color: var(--text-muted); }
.form-success { text-align: center; padding: 2rem; color: var(--green); }
.page-loader { text-align: center; padding: 5rem; color: var(--text-muted); }

/* ── Shipping note box ── */
.shipping-box {
  background: var(--cream-dark); border-radius: var(--r-sm); padding: 1rem 1.2rem;
  font-size: .85rem; line-height: 1.6; margin: 1rem 0;
  border-left: 3px solid var(--green);
}
.shipping-box strong { color: var(--green); }

/* ── Confirmation page ── */
.confirmation-page { padding: 5rem 0; text-align: center; }
.confirmation-icon { font-size: 4rem; margin-bottom: 1rem; }
.confirmation-page h1 { margin-bottom: .8rem; }
.confirmation-page p { color: var(--text-muted); max-width: 500px; margin: 0 auto 2rem; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .shop-sidebar { display: none; }
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .product-detail__grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .product-images { position: static; }
  .grid-4, .grid-3 { grid-template-columns: 1fr 1fr; }
}

/* Currency in mobile menu */
.nav-currency-mobile { display: none; }
.nav-currency-label { font-size: .75rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; }
.nav-currency-btns { display: flex; gap: .4rem; flex-wrap: wrap; margin-top: .5rem; }

@media (max-width: 768px) {
  .section { padding: 55px 0; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); flex-direction: column; padding: 1.5rem;
    border-bottom: 1px solid var(--sand); box-shadow: var(--sh-md);
    gap: 1rem;
  }
  .nav-links.open { display: flex; }
  #menu-toggle { display: flex; }
  /* Hide currency buttons from top bar, show in dropdown instead */
  .nav-actions .currency-selector { display: none; }
  .nav-currency-mobile { display: block; padding-top: .8rem; border-top: 1px solid var(--sand); margin-top: .3rem; }
  .hero { min-height: 75vh; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .trust-bar-inner { flex-direction: column; text-align: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .category-grid { grid-template-columns: 1fr 1fr; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .cart-item { grid-template-columns: 80px 1fr; }
  .cart-item__image { width: 80px; height: 80px; }
}

/* ── WhatsApp Float Button ── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: .55rem;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  padding: .7rem 1.1rem .7rem .85rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  font-size: .88rem;
  font-weight: 600;
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,.55);
  color: #fff;
}
.whatsapp-float svg { flex-shrink: 0; }
@media (max-width: 600px) {
  .whatsapp-float { bottom: 16px; right: 16px; padding: .65rem; border-radius: 50%; }
  .whatsapp-float span { display: none; }
}
