/* ============================================================
   GAABIS Beachwear — Main Stylesheet
   Design: Luxo Minimalista · Bege · Dourado · Verão Premium
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --sand:       #F5F0E8;
  --sand-dark:  #EDE7D9;
  --gold:       #C9A96E;
  --gold-dark:  #B8924F;
  --gold-light: #E2C895;
  --caramel:    #D4A574;
  --brown:      #8B6914;
  --white:      #FFFFFF;
  --text:       #2C2416;
  --text-muted: #8C7B60;
  --border:     #E5DDD0;
  --shadow:     rgba(44, 36, 22, 0.08);
  --shadow-lg:  rgba(44, 36, 22, 0.15);

  --font-body:    'Inter', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  --radius:    12px;
  --radius-sm: 6px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
a:hover { color: var(--gold); }

/* ── Typography ─────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
}

.display-font { font-family: var(--font-display); }
.text-gold    { color: var(--gold) !important; }
.text-sand    { color: var(--text-muted) !important; }

/* ── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar       { width: 6px; }
::-webkit-scrollbar-track { background: var(--sand); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── Utility Classes ────────────────────────────────────────── */
.bg-sand     { background: var(--sand) !important; }
.bg-gold     { background: var(--gold) !important; }
.border-gold { border-color: var(--gold) !important; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }

.divider-gold {
  width: 50px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 16px auto 0;
  border: none;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  border: none;
  padding: 12px 32px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--brown) 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.35);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  padding: 11px 30px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sand {
  background: var(--sand);
  color: var(--text);
  border: 1.5px solid var(--border);
  padding: 11px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: pointer;
}
.btn-sand:hover { background: var(--sand-dark); border-color: var(--gold); }

/* ── Navbar ─────────────────────────────────────────────────── */
#navbar {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0;
  transition: var(--transition);
  position: sticky;
  top: 0;
  z-index: 1000;
}
#navbar.scrolled {
  box-shadow: 0 4px 30px var(--shadow);
}

.navbar-brand img { height: 42px; }
.navbar-brand .brand-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 2px;
}
.navbar-brand .brand-sub {
  font-size: 0.6rem;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-top: -4px;
  text-align: center;
}

.nav-link {
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  color: var(--text) !important;
  padding: 28px 16px !important;
  position: relative;
  transition: var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 20px; left: 16px;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after { width: calc(100% - 32px); }
.nav-link:hover,
.nav-link.active { color: var(--gold) !important; }

.navbar-icons { gap: 6px; }
.nav-icon-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--text);
  font-size: 1.1rem;
  transition: var(--transition);
  position: relative;
}
.nav-icon-btn:hover { background: var(--sand); color: var(--gold); }

.cart-badge {
  position: absolute;
  top: 4px; right: 4px;
  width: 17px; height: 17px;
  background: var(--gold);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

/* Navbar search form */
.navbar-search-form {
  display: flex;
  align-items: center;
  background: var(--sand);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
}
.navbar-search-form:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
}
.navbar-search-input {
  background: transparent;
  border: none;
  outline: none;
  padding: 7px 14px;
  font-size: 0.82rem;
  color: var(--text);
  width: 180px;
  transition: var(--transition);
}
.navbar-search-input::placeholder { color: var(--text-muted); }
.navbar-search-btn {
  background: transparent;
  border: none;
  padding: 7px 12px;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex; align-items: center;
}
.navbar-search-btn:hover { color: var(--gold); }

/* Announcement bar */
.announcement-bar {
  background: linear-gradient(90deg, var(--gold) 0%, var(--caramel) 50%, var(--gold) 100%);
  color: white;
  text-align: center;
  padding: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ── Hero Slider ─────────────────────────────────────────────── */
.hero-section { position: relative; overflow: hidden; }

.hero-slide {
  min-height: 88vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}
.hero-slide::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(44,36,22,0.55) 0%, rgba(44,36,22,0.1) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  line-height: 1.7;
}

.carousel-indicators button {
  width: 8px !important; height: 8px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.5) !important;
  border: none !important;
}
.carousel-indicators .active { background: var(--gold) !important; width: 24px !important; border-radius: 4px !important; }

/* ── Category Cards ──────────────────────────────────────────── */
.category-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  cursor: pointer;
}
.category-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.category-card:hover img { transform: scale(1.07); }

.category-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(44,36,22,0.75) 0%, rgba(44,36,22,0.05) 60%);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: var(--transition);
}
.category-card:hover .category-card-overlay {
  background: linear-gradient(0deg, rgba(44,36,22,0.8) 0%, rgba(44,36,22,0.15) 60%);
}
.category-card-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: white;
  font-weight: 400;
  margin-bottom: 4px;
}
.category-card-count { font-size: 0.75rem; color: rgba(255,255,255,0.7); letter-spacing: 1px; }
.category-card-btn {
  margin-top: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}
.category-card:hover .category-card-btn { opacity: 1; transform: translateY(0); }

/* ── Section Titles ──────────────────────────────────────────── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
}
.section-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ── Product Cards ───────────────────────────────────────────── */
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid transparent;
}
.product-card:hover {
  border-color: var(--border);
  box-shadow: 0 12px 40px var(--shadow-lg);
  transform: translateY(-4px);
}

.product-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--sand);
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.product-card:hover .product-card-img img { transform: scale(1.06); }

.product-card-actions {
  position: absolute; top: 12px; right: 12px;
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0; transform: translateX(10px);
  transition: var(--transition);
}
.product-card:hover .product-card-actions { opacity: 1; transform: translateX(0); }

.product-action-btn {
  width: 36px; height: 36px;
  background: white;
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 8px var(--shadow);
}
.product-action-btn:hover { background: var(--gold); color: white; }

.product-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.badge-new  { background: var(--text); color: white; }
.badge-sale { background: #E63946; color: white; }
.badge-hot  { background: var(--gold); color: white; }

.product-card-body { padding: 16px; }
.product-card-category {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.product-card-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-card-price { display: flex; align-items: baseline; gap: 8px; }
.price-current { font-size: 1rem; font-weight: 700; color: var(--text); }
.price-old     { font-size: 0.8rem; color: var(--text-muted); text-decoration: line-through; }
.price-sale    { color: #E63946; }

.product-card-cta {
  margin-top: 12px;
  opacity: 0;
  transform: translateY(6px);
  transition: var(--transition);
}
.product-card:hover .product-card-cta { opacity: 1; transform: translateY(0); }

/* Quick add to cart on card */
.btn-add-cart {
  width: 100%;
  padding: 10px;
  background: var(--text);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}
.btn-add-cart:hover { background: var(--gold); }

/* ── Lifestyle Banner ────────────────────────────────────────── */
.lifestyle-banner {
  position: relative;
  min-height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.lifestyle-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(44,36,22,0.65) 0%, transparent 65%);
}
.lifestyle-banner-content {
  position: relative;
  padding: 60px;
  max-width: 500px;
}

/* ── Reviews ─────────────────────────────────────────────────── */
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}
.review-card:hover { box-shadow: 0 8px 30px var(--shadow); }
.stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; }
.reviewer-name { font-weight: 600; color: var(--text); margin-bottom: 2px; }
.review-text { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* ── Instagram Grid ──────────────────────────────────────────── */
.instagram-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; }
.insta-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.insta-item:hover img { transform: scale(1.1); }
.insta-overlay {
  position: absolute; inset: 0;
  background: rgba(201,169,110,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
  color: white; font-size: 1.3rem;
}
.insta-item:hover .insta-overlay { opacity: 1; }

/* ── Newsletter ──────────────────────────────────────────────── */
.newsletter-section {
  background: linear-gradient(135deg, var(--text) 0%, #3d3224 100%);
  padding: 80px 0;
}
.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: white;
  font-weight: 400;
}
.newsletter-subtitle { color: rgba(255,255,255,0.65); font-size: 0.9rem; letter-spacing: 1px; }
.newsletter-form { max-width: 480px; }
.newsletter-input {
  flex: 1;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  padding: 14px 20px;
  color: white;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-input:focus { border-color: var(--gold); background: rgba(255,255,255,0.15); }
.newsletter-btn {
  background: var(--gold);
  border: none;
  color: white;
  padding: 14px 28px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.newsletter-btn:hover { background: var(--gold-dark); }

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 28px;
}
.footer-brand .brand-text { color: white; font-size: 1.8rem; }
.footer-brand .brand-sub  { color: var(--gold-light); }
.footer-desc { font-size: 0.85rem; line-height: 1.8; max-width: 260px; }
.footer-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 20px;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  transition: var(--transition);
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  margin-top: 48px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  display: flex; justify-content: space-between; align-items: center;
}
.payment-icons { display: flex; gap: 6px; }
.payment-icon {
  width: 36px; height: 24px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
  font-weight: 700;
}

/* ── Product Detail Page ─────────────────────────────────────── */
.product-gallery { position: sticky; top: 90px; }
.gallery-main {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--sand);
  margin-bottom: 12px;
  cursor: zoom-in;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-main:hover img { transform: scale(1.03); }

.gallery-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.gallery-thumb {
  width: 72px; height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  background: var(--sand);
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active,
.gallery-thumb:hover { border-color: var(--gold); }

.product-title { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 6px; }
.product-sku   { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 1px; }
.product-price-box { padding: 20px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin: 20px 0; }
.price-main    { font-size: 1.8rem; font-weight: 700; color: var(--text); }
.price-compare { font-size: 1rem; color: var(--text-muted); text-decoration: line-through; margin-left: 10px; }
.price-discount-badge {
  background: #E63946;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  margin-left: 10px;
}

.variant-label { font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; display: block; }
.variant-options { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }

.variant-btn {
  padding: 8px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  background: white;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
}
.variant-btn.active,
.variant-btn:hover { border-color: var(--gold); color: var(--gold); background: #FDF8EF; }
.variant-btn.out-of-stock { opacity: 0.4; cursor: not-allowed; text-decoration: line-through; }

.color-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 0 0 2px transparent;
}
.color-dot.active,
.color-dot:hover { box-shadow: 0 0 0 2px var(--gold); }

.qty-input-wrap {
  display: flex; align-items: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  width: fit-content;
}
.qty-btn {
  width: 40px; height: 44px;
  background: var(--sand);
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.qty-btn:hover { background: var(--gold); color: white; }
.qty-input {
  width: 56px; height: 44px;
  border: none;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  outline: none;
  background: white;
}

/* ── Cart ────────────────────────────────────────────────────── */
.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 20px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-img {
  width: 100px; height: 130px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--sand);
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name  { font-weight: 600; color: var(--text); margin-bottom: 4px; font-size: 0.95rem; }
.cart-item-variants { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 12px; }

/* ── Checkout ────────────────────────────────────────────────── */
.checkout-step {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
}
.checkout-step-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.order-summary-card {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 24px;
  position: sticky;
  top: 100px;
}
.summary-row {
  display: flex; justify-content: space-between;
  font-size: 0.9rem;
  padding: 6px 0;
  color: var(--text-muted);
}
.summary-row.total {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  border-top: 1px solid var(--border);
  margin-top: 10px;
  padding-top: 14px;
}

.payment-option {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; gap: 14px;
}
.payment-option:hover,
.payment-option.selected { border-color: var(--gold); background: #FDF8EF; }
.payment-icon-circle {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--sand);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
}

/* ── Forms ───────────────────────────────────────────────────── */
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 16px;
  font-size: 0.9rem;
  color: var(--text);
  background: white;
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
  outline: none;
}
.form-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* ── Auth Pages ──────────────────────────────────────────────── */
.auth-page {
  min-height: 100vh;
  background: var(--sand);
  display: flex; align-items: center; justify-content: center;
}
.auth-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  width: 100%; max-width: 440px;
  box-shadow: 0 20px 60px var(--shadow-lg);
}
.auth-logo { text-align: center; margin-bottom: 32px; }
.auth-title { font-family: var(--font-display); font-size: 1.8rem; text-align: center; margin-bottom: 6px; }
.auth-subtitle { text-align: center; color: var(--text-muted); font-size: 0.85rem; margin-bottom: 32px; }

/* ── Page Header (listing, etc.) ─────────────────────────────── */
.page-header {
  background: linear-gradient(135deg, var(--sand) 0%, #EDE7D9 100%);
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--border);
}
.page-header-title { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.breadcrumb {
  margin: 0; padding: 0;
  font-size: 0.8rem;
}
.breadcrumb-item + .breadcrumb-item::before { color: var(--text-muted); }
.breadcrumb-item.active { color: var(--text-muted); }

/* ── Product Listing Filters ─────────────────────────────────── */
.filters-sidebar { position: sticky; top: 100px; }
.filter-group { margin-bottom: 28px; }
.filter-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

/* ── Pagination ──────────────────────────────────────────────── */
.pagination-wrap { display: flex; justify-content: center; margin-top: 48px; }
.page-link {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm) !important;
  color: var(--text);
  margin: 0 3px;
  font-size: 0.9rem;
  transition: var(--transition);
}
.page-link:hover,
.page-link.active {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: white !important;
}

/* ── Toast Notifications ─────────────────────────────────────── */
.toast-container { z-index: 9999 !important; }
.toast-gaabis {
  background: white;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 30px var(--shadow-lg);
  min-width: 300px;
}
.toast-gaabis.toast-error { border-left-color: #E63946; }
.toast-gaabis.toast-success { border-left-color: #2DC653; }

/* ── Success Page ────────────────────────────────────────────── */
.success-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, #2DC653, #1aab3f);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: white;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(45,198,83,0.3);
}

/* ── Loading Skeleton ────────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--sand) 25%, var(--sand-dark) 50%, var(--sand) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}
@keyframes skeleton-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Animations ──────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.5s ease both; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 991px) {
  .hero-slide { min-height: 60vh; }
  .section-pad { padding: 56px 0; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .nav-link { padding: 14px 16px !important; }
  .nav-link::after { bottom: 6px; }
}

@media (max-width: 767px) {
  .hero-slide { min-height: 85vh; }
  .hero-title  { font-size: 2.2rem; }
  .hero-content .d-flex { flex-wrap: wrap; }
  .cart-item   { grid-template-columns: 80px 1fr; }
  .cart-item > :last-child { grid-column: 1 / -1; }
  .lifestyle-banner-content { padding: 32px 24px; }
  .auth-card { padding: 32px 24px; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-thumbs .gallery-thumb { width: 58px; height: 58px; }
  .newsletter-form.d-flex { flex-wrap: wrap; }
  .newsletter-input { border-radius: var(--radius-sm) !important; width: 100%; }
  .newsletter-btn { border-radius: var(--radius-sm) !important; width: 100%; margin-top: 8px; }
}

@media (max-width: 575px) {
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-bottom  { flex-direction: column; gap: 16px; text-align: center; }
}
