/* ============================================
   TANTAN — Main Stylesheet
   ============================================ */

/* --- Variables --- */
:root {
  --cream:        #fffdf7;
  --sand-light:   #f5e6c8;
  --sand:         #e8d3a0;
  --sand-dark:    #d4b87a;
  --golden:       #d4943a;
  --golden-dark:  #b07830;
  --tan:          #8b6240;
  --brown:        #5c3d2e;
  --dark:         #2c1f0f;
  --text:         #3a2d1e;
  --muted:        #9a8060;
  --white:        #ffffff;
  --shadow-sm:    0 2px 8px  rgba(58,45,30,0.10);
  --shadow-md:    0 6px 24px rgba(58,45,30,0.14);
  --shadow-lg:    0 12px 48px rgba(58,45,30,0.20);
  --radius:       14px;
  --radius-sm:    8px;
  --ease:         0.25s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body  { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; background: var(--cream); color: var(--text); line-height: 1.6; }
img   { max-width: 100%; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
button { font-family: inherit; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 { line-height: 1.2; color: var(--dark); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--ease);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary  { background: var(--golden); color: var(--white); border-color: var(--golden); }
.btn-primary:hover { background: var(--golden-dark); border-color: var(--golden-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,148,58,0.45); }
.btn-outline  { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-dark     { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--brown); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-full { width: 100%; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  background: var(--golden);
  text-align: center;
  padding: 0.55rem 1rem;
}

.ann-link {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0.95;
  transition: opacity 0.2s;
}

.ann-link:hover { opacity: 1; }

/* ============================================
   NAVIGATION
   ============================================ */
header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,253,247,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(58,45,30,0.07);
}
nav {
  max-width: 1200px; margin: 0 auto;
  padding: 0 2rem; height: 68px;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.logo {
  font-size: 1.65rem; font-weight: 800;
  color: var(--golden); letter-spacing: -0.5px; flex-shrink: 0;
}
.logo em { font-style: normal; color: var(--tan); }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a {
  padding: 0.5rem 0.9rem; border-radius: var(--radius-sm);
  font-weight: 500; color: var(--text);
  transition: all var(--ease);
}
.nav-links a:hover, .nav-links a.active { background: var(--sand-light); color: var(--golden); }
.basket-nav-link {
  display: flex; align-items: center; gap: 0.45rem;
  background: var(--golden) !important; color: var(--white) !important;
  padding: 0.5rem 1.1rem !important; border-radius: var(--radius-sm) !important;
}
.basket-nav-link:hover { background: var(--golden-dark) !important; }
.basket-badge {
  background: var(--white); color: var(--golden);
  font-size: 0.72rem; font-weight: 800; min-width: 20px; height: 20px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: transform var(--ease);
}
.basket-badge.pop { transform: scale(1.4); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 0.4rem;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all var(--ease);
}

/* ============================================
   HERO — HOME
   ============================================ */
.hero {
  min-height: 92vh;
  background:
    radial-gradient(ellipse at 75% 40%, rgba(212,148,58,0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 85%, rgba(232,211,160,0.18) 0%, transparent 50%),
    linear-gradient(150deg, #2c1f0f 0%, #5c3d2e 35%, #8b6240 65%, #c8883a 100%);
  display: flex; align-items: center;
  padding: 5rem 2rem; position: relative; overflow: hidden;
}
.hero::after {
  content: '☀️';
  position: absolute; top: 6%; left: 0;
  font-size: clamp(5rem, 12vw, 11rem);
  opacity: 0.18; pointer-events: none; user-select: none;
  animation: sunTrack 32s linear infinite;
}
@keyframes sunTrack {
  0%   { transform: translateX(-14vw) translateY(3rem); }
  50%  { transform: translateX(44vw)  translateY(0);    }
  100% { transform: translateX(110vw) translateY(3rem); }
}

.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-block;
  background: rgba(212,148,58,0.25); border: 1px solid rgba(212,148,58,0.45);
  color: var(--sand); padding: 0.35rem 1rem;
  border-radius: 100px; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 4.8rem); font-weight: 800;
  color: var(--white); letter-spacing: -1.5px; margin-bottom: 1.25rem; max-width: 680px;
}
.hero h1 .glow { color: var(--sand); }
.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,253,247,0.72);
  max-width: 480px; margin-bottom: 2.5rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================
   FEATURES STRIP
   ============================================ */
.features-strip {
  background: var(--white);
  padding: 3.5rem 2rem;
}
.features-strip .container { max-width: 1200px; margin: 0 auto; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  text-align: center; padding: 1.75rem 1.25rem;
  border-radius: var(--radius); background: var(--sand-light);
  transition: transform var(--ease);
}
.feature-card:hover { transform: translateY(-4px); }
.feature-icon { font-size: 2.2rem; margin-bottom: 0.75rem; }
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.35rem; }
.feature-card p  { font-size: 0.85rem; color: var(--muted); }

/* ============================================
   SECTION SHARED
   ============================================ */
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 800; margin-bottom: 0.6rem; }
.section-header p  { color: var(--muted); font-size: 1.05rem; }
.section-cta { text-align: center; margin-top: 2.5rem; }

/* ============================================
   FEATURED PRODUCTS (Home)
   ============================================ */
.featured-section {
  padding: 5rem 2rem;
  background: var(--sand-light);
}
.featured-section .container { max-width: 1200px; margin: 0 auto; }

/* ============================================
   SOCIAL SECTION (Home)
   ============================================ */
.social-section {
  padding: 5rem 2rem;
  background: var(--dark);
  text-align: center;
}
.social-section h2 { color: var(--white); font-size: 2.2rem; margin-bottom: 0.75rem; }
.social-section p  { color: rgba(255,253,247,0.6); margin-bottom: 2.5rem; font-size: 1.05rem; }
.social-buttons { display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; }
.social-btn {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.85rem 1.75rem; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 1rem; color: var(--white);
  transition: all var(--ease);
}
.social-btn svg { width: 22px; height: 22px; fill: var(--white); flex-shrink: 0; }
.social-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.35); }
.social-btn.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.social-btn.facebook  { background: #1877f2; }
.social-btn.tiktok    { background: #010101; border: 1px solid rgba(255,255,255,0.2); }
.social-btn.telegram  { background: #2aabee; }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--brown) 60%, var(--tan) 100%);
  padding: 4rem 2rem; text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 800; color: var(--white); margin-bottom: 0.6rem; }
.page-hero p  { color: rgba(255,253,247,0.65); font-size: 1.05rem; }

/* ============================================
   PRODUCT GRID
   ============================================ */
.products-section {
  padding: 4rem 2rem;
  max-width: 1200px; margin: 0 auto;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.75rem;
}

/* Product Card */
.product-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: all var(--ease);
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }

.product-img {
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  position: relative;
  overflow: hidden;
}

/* Stock photo fills the full image area — consistent across all cards */
.prod-beach-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center; /* overridden per-card via inline style */
  display: block;
  transition: transform 0.55s ease;
}

.product-card:hover .prod-beach-img {
  transform: scale(1.07);
}

/* Golden warm overlay — applied to every product image for consistent brand tone */
.product-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 190, 70, 0.20) 0%,
    rgba(220, 130, 20, 0.16) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Emoji fallback (shown if Unsplash image fails to load) */
.prod-emoji-fb {
  font-size: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Product gradient themes */
.g1 { background: linear-gradient(135deg, #fdecc8 0%, #e8a040 100%); }
.g2 { background: linear-gradient(135deg, #f0e8d0 0%, #c8a060 100%); }
.g3 { background: linear-gradient(135deg, #fce8a0 0%, #d49030 100%); }
.g4 { background: linear-gradient(135deg, #e8c880 0%, #7c4e18 100%); }
.g5 { background: linear-gradient(135deg, #f8ead0 0%, #e09878 100%); }
.g6 { background: linear-gradient(135deg, #fcd8b0 0%, #c86840 100%); }
.g7 { background: linear-gradient(135deg, #ece0d0 0%, #b09070 100%); }
.g8 { background: linear-gradient(135deg, #f4ede0 0%, #c8a870 100%); }

/* Fruity flavour gradients */
.gfrs { background: linear-gradient(135deg, #ffd0d8 0%, #e83058 100%); } /* strawberry */
.gfro { background: linear-gradient(135deg, #ffe4b0 0%, #ff7800 100%); } /* orange     */
.gfrw { background: linear-gradient(135deg, #c8f0a8 0%, #e82848 100%); } /* watermelon */
.gfrc { background: linear-gradient(135deg, #f4ede0 0%, #c8a060 100%); } /* coconut    */

/* Spray tan solution depth gradients */
.gspl { background: linear-gradient(135deg, #fef8e8 0%, #e8d068 100%); } /* light  */
.gspm { background: linear-gradient(135deg, #f0d890 0%, #c87828 100%); } /* medium */
.gspd { background: linear-gradient(135deg, #d49050 0%, #4c2808 100%); } /* dark   */

.product-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.product-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.35rem; }
.product-desc { color: var(--muted); font-size: 0.875rem; flex: 1; margin-bottom: 1.2rem; line-height: 1.5; }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
.product-price { font-size: 1.3rem; font-weight: 800; color: var(--golden); }
/* Category sections on products page */
.cat-section { margin-bottom: 4rem; }
.cat-title {
  font-size: 1.55rem; font-weight: 800; color: var(--dark);
  margin-bottom: 1.5rem; padding-bottom: 0.8rem;
  border-bottom: 3px solid var(--sand);
  display: flex; align-items: center; gap: 0.6rem;
}
.cat-icon { font-size: 1.3rem; }

.add-btn {
  background: var(--golden); color: var(--white);
  border: none; padding: 0.55rem 1.1rem;
  border-radius: var(--radius-sm); font-size: 0.875rem; font-weight: 700;
  cursor: pointer; transition: all var(--ease); white-space: nowrap;
}
.add-btn:hover   { background: var(--golden-dark); transform: scale(1.04); }
.add-btn.confirm { background: #2e7d32; }

/* ── Out of Stock ── */
.product-card.out-of-stock { opacity: 0.7; }
.product-card.out-of-stock .product-img { filter: grayscale(50%); }
.oos-badge {
  display: inline-flex; align-items: center;
  padding: 0.45rem 1rem;
  background: #fff5f5; color: #c53030;
  border: 1.5px solid #fed7d7; border-radius: var(--radius-sm);
  font-size: 0.82rem; font-weight: 700; white-space: nowrap;
}

/* ============================================
   TOAST
   ============================================ */
.toast {
  position: fixed; bottom: 1.75rem; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--dark); color: var(--white);
  padding: 0.85rem 1.75rem; border-radius: 100px;
  font-size: 0.9rem; font-weight: 600; z-index: 9999;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  white-space: nowrap; box-shadow: var(--shadow-lg);
  pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ============================================
   BASKET PAGE
   ============================================ */
.basket-wrapper {
  max-width: 1050px; margin: 0 auto; padding: 3rem 2rem;
}
.basket-layout {
  display: grid; grid-template-columns: 1fr 320px;
  gap: 2rem; align-items: start;
}
.basket-list { display: flex; flex-direction: column; gap: 1rem; }

.basket-item {
  background: var(--white); border-radius: var(--radius);
  padding: 1.25rem; display: flex; align-items: center; gap: 1.25rem;
  box-shadow: var(--shadow-sm); transition: box-shadow var(--ease);
}
.basket-item:hover { box-shadow: var(--shadow-md); }
.basket-item-img {
  width: 76px; height: 76px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; flex-shrink: 0;
}
.basket-item-info { flex: 1; min-width: 0; }
.basket-item-name  { font-weight: 700; font-size: 0.975rem; margin-bottom: 0.2rem; }
.basket-item-price { color: var(--golden); font-weight: 700; font-size: 0.9rem; }
.basket-item-controls { display: flex; align-items: center; gap: 0.6rem; }
.qty-btn {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--sand); background: var(--cream);
  cursor: pointer; font-size: 1.1rem; font-weight: 700; color: var(--text);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--ease); line-height: 1;
}
.qty-btn:hover { border-color: var(--golden); color: var(--golden); }
.qty-val { font-weight: 700; min-width: 24px; text-align: center; font-size: 1rem; }
.remove-btn {
  background: none; border: none; color: var(--muted);
  cursor: pointer; font-size: 1.25rem; padding: 0.2rem 0.4rem;
  transition: color var(--ease); line-height: 1;
}
.remove-btn:hover { color: #c0392b; }

.basket-summary-card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.75rem; box-shadow: var(--shadow-sm);
  position: sticky; top: 84px;
}
.basket-summary-card h3 {
  font-size: 1.2rem; margin-bottom: 1.25rem;
  padding-bottom: 1rem; border-bottom: 2px solid var(--sand-light);
}
.sum-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.5rem 0; font-size: 0.93rem; color: var(--muted);
  border-bottom: 1px solid var(--sand-light);
}
.sum-row:last-of-type { border-bottom: none; }
.sum-row.total {
  font-weight: 800; font-size: 1.2rem; color: var(--dark);
  padding-top: 1rem; margin-top: 0.5rem;
  border-top: 2px solid var(--sand); border-bottom: none;
}
.sum-row.total span:last-child { color: var(--golden); }
.free-delivery { color: #2e7d32 !important; font-weight: 700; }

.basket-summary-card .btn { margin-top: 1.5rem; }

/* Empty basket */
.empty-basket {
  text-align: center; padding: 5rem 2rem;
  grid-column: 1 / -1;
}
.empty-basket .big-emoji { font-size: 5rem; margin-bottom: 1.25rem; }
.empty-basket h2 { font-size: 1.8rem; color: var(--muted); margin-bottom: 0.5rem; }
.empty-basket p  { color: var(--muted); margin-bottom: 2rem; }

/* ============================================
   CHECKOUT PAGE
   ============================================ */
.checkout-wrapper {
  max-width: 1000px; margin: 0 auto; padding: 3rem 2rem;
}
.checkout-layout {
  display: grid; grid-template-columns: 1fr 300px;
  gap: 2rem; align-items: start;
}
.checkout-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow-sm);
}
.checkout-card h2 {
  font-size: 1.3rem; margin-bottom: 0.4rem;
  padding-bottom: 1.1rem; border-bottom: 2px solid var(--sand-light);
  margin-bottom: 1.5rem;
}
.payment-options {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem;
}
.pay-option {
  border: 2px solid var(--sand); border-radius: var(--radius-sm);
  padding: 1.25rem 1rem; cursor: pointer;
  transition: all var(--ease); text-align: center;
}
.pay-option:hover { border-color: var(--golden); }
.pay-option.selected { border-color: var(--golden); background: rgba(212,148,58,0.07); }
.pay-option .p-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.pay-option h4 { font-size: 1rem; margin-bottom: 0.2rem; color: var(--dark); }
.pay-option p  { font-size: 0.8rem; color: var(--muted); }

.card-form { display: none; flex-direction: column; gap: 1rem; }
.card-form.show { display: flex; }
.cash-info { display: none; background: var(--sand-light); border-radius: var(--radius-sm); padding: 1.25rem; }
.cash-info.show { display: block; }
.cash-info h4 { margin-bottom: 0.4rem; color: var(--dark); }
.cash-info p  { font-size: 0.9rem; color: var(--muted); }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.78rem; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.6px;
}
.form-group input {
  padding: 0.8rem 1rem; border: 2px solid var(--sand);
  border-radius: var(--radius-sm); font-size: 1rem;
  font-family: inherit; background: var(--cream); color: var(--text);
  transition: border-color var(--ease);
}
.form-group input:focus { outline: none; border-color: var(--golden); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.checkout-card .btn { margin-top: 1.5rem; }

/* Checkout order summary */
.checkout-summary {
  background: var(--white); border-radius: var(--radius);
  padding: 1.75rem; box-shadow: var(--shadow-sm);
  position: sticky; top: 84px;
}
.checkout-summary h3 {
  font-size: 1.1rem; margin-bottom: 1.25rem;
  padding-bottom: 1rem; border-bottom: 2px solid var(--sand-light);
}
.co-item {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 0.5rem; padding: 0.6rem 0; border-bottom: 1px solid var(--sand-light);
  font-size: 0.875rem;
}
.co-item:last-of-type { border-bottom: none; }
.co-item-name { color: var(--text); flex: 1; }
.co-item-qty  { color: var(--muted); font-size: 0.78rem; margin-top: 0.1rem; }
.co-item-price{ font-weight: 700; color: var(--golden); flex-shrink: 0; }

/* Order success */
.order-success {
  display: none; text-align: center;
  padding: 4rem 2rem; grid-column: 1 / -1;
}
.order-success.show { display: block; }
.order-success .s-emoji { font-size: 5rem; margin-bottom: 1.5rem; }
.order-success h2 { font-size: 2rem; margin-bottom: 0.75rem; }
.order-success p  { color: var(--muted); max-width: 380px; margin: 0 auto 2rem; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--dark); color: rgba(255,253,247,0.65);
  padding: 4rem 2rem 2rem; margin-top: 4rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand .logo { display: block; margin-bottom: 1rem; font-size: 1.7rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.75; max-width: 260px; }
.footer-col h4 { color: var(--white); font-size: 0.95rem; font-weight: 700; margin-bottom: 1.1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul a { font-size: 0.875rem; transition: color var(--ease); }
.footer-col ul a:hover { color: var(--golden); }

.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.fsoc {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--ease);
}
.fsoc svg { width: 18px; height: 18px; fill: var(--white); }
.fsoc:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,0.4); }
.fsoc.ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.fsoc.fb { background: #1877f2; }
.fsoc.tt { background: #1a1a1a; border: 1px solid rgba(255,255,255,0.12); }
.fsoc.tg { background: #2aabee; }

.footer-bottom {
  border-top: 1px solid rgba(255,253,247,0.1);
  padding-top: 2rem; text-align: center; font-size: 0.82rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  padding: 4rem 0 5rem;
  background: var(--cream);
}
.contact-intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
}
.contact-intro p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform var(--ease), box-shadow var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.contact-card-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.contact-card-icon svg {
  width: 28px; height: 28px;
  fill: #fff;
}
.contact-card-icon.ig  { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.contact-card-icon.fb  { background: #1877f2; }
.contact-card-icon.tt  { background: #010101; }
.contact-card-icon.tg  { background: #2aabee; }
.contact-card h3 {
  font-size: 1.05rem;
  color: var(--dark);
}
.contact-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}
.contact-card .contact-handle {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--golden);
  margin-top: auto;
}

/* ============================================
   ABOUT PREVIEW (home page)
   ============================================ */
.about-preview {
  background: var(--sand-light);
  padding: 5rem 0;
  text-align: center;
}
.about-preview-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.about-preview-badge {
  display: inline-block;
  background: var(--golden);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}
.about-preview h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--dark);
  margin-bottom: 1rem;
}
.about-preview p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story {
  padding: 5rem 0;
  background: var(--cream);
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.about-story-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-story-icon {
  font-size: 2.6rem;
}
.about-story-block h3 {
  font-size: 1.35rem;
  color: var(--dark);
}
.about-story-block p {
  color: var(--muted);
  line-height: 1.75;
}

.about-mission {
  background: var(--golden);
  padding: 4.5rem 1.5rem;
  text-align: center;
}
.mission-quote {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.35;
  max-width: 700px;
  margin: 0 auto 0.75rem;
  border: none;
}
.quote-mark {
  font-size: 1.4em;
  opacity: 0.6;
  line-height: 0;
  vertical-align: -0.2em;
}
.mission-sub {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-values {
  padding: 5rem 0;
  background: var(--sand-light);
}

.about-cta {
  padding: 5rem 0;
  background: var(--cream);
  text-align: center;
}
.about-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.about-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--dark);
  margin-bottom: 1rem;
}
.about-cta p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .basket-layout,
  .checkout-layout  { grid-template-columns: 1fr; }
  .basket-summary-card,
  .checkout-summary { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .about-story-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hamburger { display: flex; }
  .nav-links {
    display: none; position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--cream); flex-direction: column;
    padding: 1rem; gap: 0.2rem;
    box-shadow: var(--shadow-md); z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 0.7rem 1rem; }
  .hero { min-height: auto; padding: 5rem 1.5rem 4rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; max-width: 320px; }
  .payment-options { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .social-buttons { flex-direction: column; align-items: center; }
  .basket-item { flex-wrap: wrap; }
  .basket-item-controls { width: 100%; justify-content: space-between; }
}

@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
}
