/* ============================================================
   VR Handlooms — Master Design System
   Premium Luxury E-Commerce Stylesheet
   ============================================================ */

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

/* ── CSS Custom Properties ─────────────────────────────────── */
/* ── CSS Custom Properties ─────────────────────────────────── */
:root {

/* ===== PRIMARY TEXT / FOOTER ===== */
--primary-navy: #2A1C12;
--primary-navy-light: #4A3524;
--primary-navy-dark: #16100B;

/* ===== GOLD HIGHLIGHT ===== */
--secondary-copper: #C89B3C;
--secondary-copper-light: #E5C46A;
--secondary-copper-dark: #A9791A;

/* ===== GOLD ACCENTS ===== */
--accent-gold: #C89B3C;
--accent-gold-light: #E5C46A;
--accent-gold-pale: #F8E7B5;

/* ===== BACKGROUNDS ===== */
--bg-ivory: #FAF7F2;
--bg-ivory-dark: #F2ECE2;
--bg-white: #FFFFFF;

/* ===== TEXT ===== */
--text-dark: #2A1C12;
--text-muted: #6E5D4A;
--text-light: #9B8A74;

/* ===== STATUS ===== */
--success: #0E8C5A;
--success-bg: #EAF8F1;

--warning: #D19A17;
--warning-bg: #FFF8E5;

--error: #D64242;
--error-bg: #FDECEC;

--info: #8B6A18;
--info-bg: #FFF8E3;

--white: #FFFFFF;

/* ===== PREMIUM EFFECTS ===== */
--gold-gradient:
linear-gradient(
135deg,
#A9791A 0%,
#C89B3C 25%,
#F2D57A 50%,
#C89B3C 75%,
#A9791A 100%
);

--luxury-shadow:
0 10px 30px rgba(200,155,60,0.18);


  /* Typography */
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent: 'Cormorant Garamond', 'Georgia', serif;

  /* Type Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(27,42,65,0.05);
  --shadow-md: 0 4px 12px rgba(27,42,65,0.08);
  --shadow-lg: 0 8px 30px rgba(27,42,65,0.12);
  --shadow-xl: 0 16px 50px rgba(27,42,65,0.16);
  --shadow-glow: 0 0 30px rgba(184,115,51,0.15);
  --shadow-card: 0 2px 8px rgba(27,42,65,0.06), 0 0 1px rgba(27,42,65,0.08);
  --shadow-card-hover: 0 12px 40px rgba(27,42,65,0.14);

  /* Borders */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;
  --border-subtle: 1px solid rgba(27,42,65,0.08);
  --border-light: 1px solid #E5E1DB;
  --border-copper: 1px solid var(--secondary-copper);

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --transition-fast: 150ms var(--ease-smooth);
  --transition-base: 300ms var(--ease-smooth);
  --transition-slow: 500ms var(--ease-smooth);
  --transition-slower: 800ms var(--ease-smooth);

  /* Layout */
  --container-max: 1320px;
  --container-narrow: 900px;
  --nav-height: 75px;
  --nav-height-scrolled: 70px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text-dark);
 
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

ul, ol { list-style: none; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}
h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
}

h1 { font-size: var(--text-5xl); letter-spacing: -0.02em; }
h2 { font-size: var(--text-4xl); letter-spacing: -0.01em; }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

.text-accent {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--secondary-copper);
}

.text-muted { color: var(--text-muted); }
.text-copper { color: var(--secondary-copper); }
.text-gold { color: var(--accent-gold); }
.text-navy { color: var(--primary-navy); }

.section-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--secondary-copper);
  margin-bottom: var(--space-3);
  display: inline-block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  color: var(--primary-navy);
  margin-bottom: var(--space-4);

    overflow:hidden;
    white-space:nowrap;
    width:0;
    animation:typingReveal 2s ease forwards;
}

@keyframes typingReveal{
    from{
        width:0;
    }
    to{
        width:100%;
    }
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

/* ── Container ─────────────────────────────────────────────── */
.container {


  margin: 0 auto;

}

.container-narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: 10px;
}

.section-sm {
  padding: var(--space-12) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
  padding-top: 40px;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.8rem 2rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease-smooth);
}

.btn:hover::after {
  transform: translateX(100%);
}

.btn-primary {
  background: var(--primary-navy);
  color: var(--bg-white);
  border: 2px solid var(--primary-navy);
}

.btn-primary:hover {
  background: var(--primary-navy-light);
  border-color: var(--primary-navy-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-navy);
  border: 2px solid var(--primary-navy);
}

.btn-secondary:hover {
  background: var(--primary-navy);
  color: var(--bg-white);
  transform: translateY(-2px);
}

.btn-copper {
  background: var(--secondary-copper);
  color: var(--bg-white);
  border: 2px solid var(--secondary-copper);
}

.btn-copper:hover {
  background: var(--secondary-copper-dark);
  border-color: var(--secondary-copper-dark);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold), var(--secondary-copper));
  color: var(--bg-white);
  border: 2px solid transparent;
}

.btn-gold:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border: 2px solid #25D366;
}

.btn-whatsapp:hover {
  background: #1DA851;
  border-color: #1DA851;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: var(--text-xs);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: var(--text-base);
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--radius-full);
  font-size: var(--text-lg);
}

/* ── Navigation ────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: all var(--transition-base);
  background: rgba(248,245,240,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.navbar.scrolled {
  height: var(--nav-height-scrolled);
  background: rgba(255,255,255,0.95);
  box-shadow: var(--shadow-md);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.navbar-brand img,
.navbar-brand-img{
 height:70px;
    width:auto;
    object-fit:contain;
    transition:all .3s ease;
}
.navbar{
    height:85px;
    display:flex;
    align-items:center;
    padding:0 25px;
}

.navbar-brand-name{
    font-size:38px;
    line-height:1;
    font-weight:700;
}

.navbar-brand-tagline{
    font-size:13px;
    letter-spacing:2px;
}

.navbar.scrolled .navbar-brand img {
  height: 40px;
  width: 40px;
}

.navbar-brand-text {
  display: flex;
  flex-direction: column;
}

.navbar-brand-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1.1;
}

.navbar-brand-tagline {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.9rem;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary-copper);
  background: rgba(184,115,51,0.06);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--secondary-copper);
  border-radius: 1px;
}

.navbar-actions {
  display: flex;
  align-items: center;
}

.nav-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--text-dark);
  font-size: var(--text-lg);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-action-btn:hover {
  background: rgba(184,115,51,0.08);
  color: var(--secondary-copper);
}

.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  background: var(--secondary-copper);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.cart-badge:empty { display: none; }

.wishlist-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  background: var(--secondary-copper);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.wishlist-badge:empty { display: none; }

/* Search Bar */
.search-container {
  position: relative;
  flex: 0 1 220px;
}

.search-input {
  width: 100%;
  padding: 0.6rem 1rem 0.6rem 2.5rem;
  border: 1.5px solid #E5E1DB;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  background: var(--bg-white);
  color: var(--text-dark);
  transition: all var(--transition-fast);
}

.search-input:focus {
  outline: none;
  border-color: var(--secondary-copper);
  box-shadow: 0 0 0 3px rgba(184,115,51,0.1);
}

.search-icon {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: var(--text-sm);
  pointer-events: none;
}

.search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: var(--border-light);
  max-height: 400px;
  overflow-y: auto;
  z-index: 100;
  display: none;
  animation: fadeSlideDown 0.2s var(--ease-smooth);
}

.search-suggestions.active { display: block; }

.search-suggestion-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.search-suggestion-item:hover {
  background: var(--bg-ivory);
}

.search-suggestion-item img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.search-suggestion-info {
  flex: 1;
}

.search-suggestion-name {
  font-size: var(--text-sm);
  font-weight: 500;
}

.search-suggestion-price {
  font-size: var(--text-xs);
  color: var(--secondary-copper);
  font-weight: 600;
}

/* Mobile Menu Toggle */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
  cursor: pointer;
}

.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary-navy);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar-toggle.active span:nth-child(2) { opacity: 0; }
.navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Hero Banner ───────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 92vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: var(--nav-height);
}



.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--space-6);
  max-width: var(--container-max);
  margin: 0 auto;
  z-index: 2;
}

.hero-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  margin-bottom: var(--space-4);
  animation: fadeSlideUp 0.8s var(--ease-smooth) 0.2s both;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: #fff;
  line-height: 1.1;
  max-width: 700px;
  margin-bottom: var(--space-6);
  animation: fadeSlideUp 0.8s var(--ease-smooth) 0.4s both;
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.85);
  max-width: 550px;
  line-height: 1.7;
  margin-bottom: var(--space-8);
  animation: fadeSlideUp 0.8s var(--ease-smooth) 0.6s both;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  animation: fadeSlideUp 0.8s var(--ease-smooth) 0.8s both;
}

.hero-btn-primary {
  padding: 1rem 2.5rem;
  background: var(--secondary-copper);
  color: #fff;
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  border: 2px solid var(--secondary-copper);
  transition: all var(--transition-base);
}

.hero-btn-primary:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.hero-btn-secondary {
  padding: 1rem 2.5rem;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.hero-btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-3);
  z-index: 3;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--transition-base);
}

.hero-dot.active {
  background: var(--accent-gold);
  width: 32px;
}

/* ── Value Propositions ────────────────────────────────────── */
.value-props {
  background: var(--bg-white);
  border-bottom: var(--border-subtle);
}

.value-props-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  padding-top: 30px;
  padding-bottom: 20px;
}

.value-prop-card {
  text-align: center;
  padding-top: 15px;
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
}

.value-prop-card:hover {
  background: var(--bg-ivory);
  transform: translateY(-4px);
}

.value-prop-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-5);
  background: linear-gradient(135deg, var(--bg-ivory), var(--accent-gold-pale));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--secondary-copper);
  transition: all var(--transition-base);
}

.value-prop-card:hover .value-prop-icon {
  background: linear-gradient(135deg, var(--accent-gold), var(--secondary-copper));
  color: #fff;
  transform: scale(1.1);
}

.value-prop-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--primary-navy);
  margin-bottom: var(--space-2);
}

.value-prop-text {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Category / Collection Cards ───────────────────────────── */

.collections-grid{
    display:grid;
    grid-template-columns:
        repeat(auto-fit,minmax(180px,1fr));

    gap:30px;
    align-items:start;
    text-align:center;
}

.category-circle-card{
    text-decoration:none;
    color:inherit;
}

.category-circle-image{
    width:180px;
    height:180px;

    margin:0 auto 15px;

    border-radius:50%;
    overflow:hidden;

    background:#eee;

    transition:.3s;
}

.category-circle-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.category-circle-card:hover .category-circle-image{
    transform:translateY(-5px);
}

.category-circle-title{
    font-size:1.5rem;
    font-weight:700;
    color:#4a3200;
    line-height:1.3;
    margin-bottom:10px;
}

.category-circle-count{
    font-size:1rem;
    color:#666;
}

.collection-card:hover .collection-card-img {
  transform: scale(1.08);
}

.collection-card:hover .collection-card-overlay {
  background: linear-gradient(
    to top,
    rgba(27,42,65,0.92) 0%,
    rgba(27,42,65,0.30) 60%,
    transparent 100%
  );
}

.collection-card-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all var(--transition-fast);
  opacity: 0;
  transform: translateY(10px);
}

.collection-card:hover .collection-card-btn {
  opacity: 1;
  transform: translateY(0);
}

.collection-card-btn:hover {
  color: #fff;
  gap: var(--space-3);
}

@media(max-width:768px){

    .collections-grid{
        grid-template-columns:
            repeat(2,1fr);

        gap:20px;
    }

    .category-circle-image{
        width:130px;
        height:130px;
    }

    .category-circle-title{
        font-size:1rem;
    }

}

/* ── Product Cards ─────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.product-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
  position: relative;
}

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

.product-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/3;
  background: var(--bg-ivory);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: transform 0.6s var(--ease-smooth);
}

.product-card:hover .product-card-image img {
  transform: scale(1.06);
}

.product-card-badges {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  z-index: 2;
}

.product-badge {
  padding: 0.25rem 0.65rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-sm);
  line-height: 1.4;
}

.badge-new {
  background: var(--primary-navy);
  color: #fff;
}

.badge-sale {
  background: var(--error);
  color: #fff;
}

.badge-bestseller {
  background: var(--secondary-copper);
  color: #fff;
}

.product-card-actions {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-base);
  z-index: 2;
}

.product-card:hover .product-card-actions {
  opacity: 1;
  transform: translateX(0);
}

.product-action-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: var(--bg-white);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-fast);
}

.product-action-btn:hover {
  background: var(--secondary-copper);
  color: #fff;
}

.product-action-btn.wishlisted {
  background: var(--error);
  color: #fff;
}

.product-card-quick-add {
  padding: var(--space-3);
  backdrop-filter: blur(8px);
  transition: transform var(--transition-base);
  text-align: center;
  margin-top:12px;
}

.product-card-quick-add button{
    width:100%;
    padding:12px;
    background:var(--secondary-copper);
    color:#fff;
    border:none;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.product-card-quick-add button:hover{
    background:var(--accent-gold);
}
.product-card-quick-add button {
  width: 100%;
  padding: 0.6rem;
  background: var(--secondary-copper);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.product-card-quick-add button:hover {
  background: var(--accent-gold);
}

.product-card-body {
  padding: var(--space-4) var(--space-5) var(--space-5);
}

.product-card-category {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-1);
}

.product-card-title {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: var(--space-2);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-title a:hover {
  color: var(--secondary-copper);
}

.product-card-price {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.price-current {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--primary-navy);
}

.price-original {
  font-size: var(--text-sm);
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-discount {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--success);
  background: var(--success-bg);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-sm);
}

/* ── Product Slider / Rail ─────────────────────────────────── */
.product-rail {
  position: relative;
  overflow: hidden;
}

.product-rail-track {
  display: flex;
  gap: var(--space-6);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: var(--space-4);
  padding-left: 25px;
}

.product-rail-track::-webkit-scrollbar { display: none; }

.product-rail-track .product-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
}

.rail-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--bg-white);
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 5;
  transition: all var(--transition-fast);
  font-size: var(--text-lg);
}

.rail-nav:hover {
  background: var(--primary-navy);
  color: #fff;
}

.rail-nav-prev { left: -8px; }
.rail-nav-next { right: -8px; }

/* ── Video Shopping Section ────────────────────────────────── */


.video-shopping-section {
  position: relative;
  overflow: hidden;
}

.video-shopping-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: var(--radius-full);
}

.video-shopping-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
    padding-top: 50px;
}

.video-shopping-content {
  color: #000;
}

.video-shopping-label {
  color: var(--accent-gold);
}

.video-shopping-title {
  color: #000;
  font-size: var(--text-4xl);
  margin-bottom: var(--space-6);
}

.video-shopping-text {
  color: rgba(255,255,255,0.75);
  font-size: var(--text-lg);
  line-height: 1.7;
  margin-bottom: var(--space-8);
}

.video-shopping-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}

.vs-feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: #000;
}

.vs-feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(184,115,51,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.video-shopping-image{
    display:flex;
    justify-content:center;
    align-items:center;
}

.video-img{
    width:75%;
    max-width:420px;
    height:420px;
    object-fit:cover;
    border-radius:28px;
    box-shadow:0 25px 50px rgba(0,0,0,.18);
}

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-card {
  background: var(--bg-white);
  padding: var(--space-10) var(--space-8);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-card);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 40px;
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--accent-gold-pale);
  line-height: 1;
}

.testimonial-stars {
  color: var(--accent-gold);
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
  letter-spacing: 0.1em;
}

.testimonial-text {
  font-family: var(--font-accent);
  font-size: var(--text-xl);
  color: var(--text-dark);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: var(--space-6);
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-navy);
}

.testimonial-location {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-8);
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--accent-gold-pale);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.testimonial-dot.active {
  background: var(--secondary-copper);
  width: 24px;
}


/* Slider Wrapper */

.testimonials-slider{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    max-width:950px;
    margin:auto;
}

/* Navigation Buttons */

.testimonial-nav{
    width:52px;
    height:52px;
    border:none;
    border-radius:50%;
    background:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    cursor:pointer;
    transition:.3s;
    flex-shrink:0;
}

.testimonial-nav:hover{
    transform:translateY(-2px);
}

.testimonial-nav i{
    font-size:18px;
}

/* Card */

.testimonial-card{
    flex:1;
}

/* Dots */

.testimonials-dots{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-top:30px;
}

.testimonial-dot{
    width:10px;
    height:10px;
    border:none;
    border-radius:50%;
    cursor:pointer;
    transition:.3s;
}

.testimonial-dot.active{
    width:30px;
    border-radius:20px;
}.testimonials-dots{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    margin-top:30px;
}

.testimonial-dot{
    width:10px;
    height:10px;
    border:none;
    border-radius:50%;
    cursor:pointer;
    transition:.3s;
}

.testimonial-dot.active{
    width:30px;
    border-radius:20px;
}

/* Mobile */

@media(max-width:768px){

    .testimonials-slider{
        gap:10px;
    }

    .testimonial-nav{
        display:none;
    }

    .testimonial-card{
        width:100%;
    }

}

/* ── Shop Page — Filters ───────────────────────────────────── */
.shop-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}

.filter-sidebar {

  top: calc(var(--nav-height) + var(--space-6));
  background: var(--bg-white);
  border-radius: var(--radius-l);
  padding: 10px;
  box-shadow: var(--shadow-card);
}

.filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: var(--border-light);
}

.filter-header h3 {
  font-size: var(--text-lg);
}

.filter-clear {
  font-size: var(--text-xs);
  color: var(--secondary-copper);
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.filter-group {
  margin-bottom: var(--space-6);
}

.filter-group-title {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: var(--space-3);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  cursor: pointer;
  font-size: var(--text-sm);
  color: var(--text-dark);
  transition: color var(--transition-fast);
}

.filter-option:hover {
  color: var(--secondary-copper);
}

.filter-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--secondary-copper);
}

.filter-option-count {
  margin-left: auto;
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* Price Range Slider */
.price-range-container {
  padding: var(--space-2) 0;
}

.price-range-slider {
  position: relative;
  width: 100%;
  height: 4px;
  background: var(--bg-ivory);
  border-radius: 2px;
  margin: var(--space-4) 0;
}

.price-range-values {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
  color: var(--text-dark);
  font-weight: 500;
}

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: transparent;
  pointer-events: none;
  position: absolute;
  top: 0;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--secondary-copper);
  cursor: pointer;
  pointer-events: all;
  border: 3px solid #fff;
  box-shadow: var(--shadow-md);
}

/* Sort Bar */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: var(--border-light);
}

.shop-result-count {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.shop-result-count strong {
  color: var(--primary-navy);
}

.sort-select {
  padding: 0.5rem 2rem 0.5rem 1rem;
  border: var(--border-light);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-dark);
  background: var(--bg-white);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M5 6L0 0h10z' fill='%236B7280'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
}

.sort-select:focus {
  outline: none;
  border-color: var(--secondary-copper);
}

.view-toggles {
  display: flex;
  gap: var(--space-2);
}

.view-toggle {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--bg-ivory);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.view-toggle.active {
  background: var(--primary-navy);
  color: #fff;
}

/* ── Product Detail ────────────────────────────────────────── */


.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-6));
}

.product-main-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 7/5;
  background: var(--bg-ivory);
  margin-bottom: var(--space-4);
  cursor: crosshair;
}

.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: transform 0.3s var(--ease-smooth);
}

.product-zoom-lens {
  display: none;
  position: absolute;
  width: 150px;
  height: 150px;
  border: 2px solid var(--secondary-copper);
  border-radius: var(--radius-md);
  pointer-events: none;
  z-index: 3;
}

.product-thumbnails {
  display: flex;
  gap: var(--space-3);
  overflow-x: auto;
}

.product-thumbnail {
  width: 80px;
  height: 100px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.product-thumbnail.active,
.product-thumbnail:hover {
  border-color: var(--secondary-copper);
}

.product-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  padding: var(--space-4) 0;
}

.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-6);
  margin-top: 40px;
  flex-wrap: wrap;
}

.product-breadcrumb a:hover { color: var(--secondary-copper); }

.product-breadcrumb .separator {
  color: var(--text-light);
}

.product-detail-name {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  color: var(--primary-navy);
  margin-bottom: var(--space-2);
}

.product-detail-sku {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-6);
}

.product-detail-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: var(--border-light);
}

.product-detail-price .price-current {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--primary-navy);
}

.product-detail-price .price-original {
  font-size: var(--text-xl);
}

.product-specs {
  margin-bottom: var(--space-8);
}

.product-spec-row {
  display: flex;
  padding: var(--space-3) 0;
  border-bottom: var(--border-subtle);
  font-size: var(--text-sm);
}

.product-spec-label {
  width: 140px;
  color: var(--text-muted);
  font-weight: 500;
  flex-shrink: 0;
}

.product-spec-value {
  color: var(--text-dark);
  font-weight: 500;
}

.stock-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
}

.stock-in {
  background: var(--success-bg);
  color: var(--success);
}

.stock-out {
  background: var(--error-bg);
  color: var(--error);
}

.stock-low {
  background: var(--warning-bg);
  color: var(--warning);
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  margin-bottom: var(--space-6);
}

.qty-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--bg-ivory);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  transition: all var(--transition-fast);
}

.qty-btn:hover {
  background: var(--primary-navy);
  color: #fff;
}

.qty-input {
  width: 60px;
  height: 40px;
  text-align: center;
  border: var(--border-light);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
}

.qty-input:focus { outline: none; border-color: var(--secondary-copper); }

.product-detail-actions {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}

.product-detail-actions .btn {
  flex: 1;
  min-width: 140px;
}

.product-gallery{
    position:sticky;
    overflow:visible;
    top:calc(var(--nav-height) + var(--space-6));
    z-index:1;
}

.product-zoom-result{
    position:absolute;
    left:105%;
    top:0;
    width:500px;
    height:500px;
    border-radius:16px;
    background-size:cover;
    background-position:center;
    display:none;
    z-index:9999;
    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.25);
}



── Cart Page ─────────────────────────────────────────────── */

/* =========================
   CART PAGE
========================= */

.cart-page {
    padding-top: calc(var(--nav-height) + 40px);
    padding-bottom: 60px;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    align-items: start;
}

.cart-items {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.cart-header{
    padding:25px 30px;
    border-bottom:1px solid #eee;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.cart-header h3{
    margin:0;
    color:#1b234f;
}

.cart-item{
   display:grid;
    grid-template-columns:
        120px
        1fr
        100px
        150px
        120px
        60px;
    gap:20px;
    align-items:center;
    padding:25px;
    border-bottom:1px solid #eee;
    transition:.3s;
}

.cart-item:hover{
    background:#faf8f4;
}

.cart-item-image{
    width:120px;
    min-width:120px;
    height:150px;
    border-radius:12px;
    overflow:hidden;
}

.cart-item-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.cart-item-info{
    flex:1;
}

.cart-item-info h4{
    font-size:22px;
    margin-bottom:8px;
    color:#1b234f;
}

.cart-item-meta{
    font-size:14px;
    color:#777;
    margin-bottom:10px;
}

.cart-item-price{
    font-size:24px;
    font-weight:700;
    color:#1b234f;
    min-width:100px;
}

.cart-qty{
    display:flex;
    align-items:center;
    gap:10px;
}

.cart-qty button{
    width:42px;
    height:42px;
    border:none;
    background:#f5f2ec;
    border-radius:10px;
    font-size:20px;
    font-weight:600;
}

.cart-qty input{
    width:60px;
    height:42px;
    text-align:center;
    border:1px solid #ddd;
    border-radius:10px;
}

.cart-item-total{
    font-size:28px;
    font-weight:700;
    color:#1b234f;
    min-width:120px;
    text-align:right;
}

.cart-item-remove{
    width:48px;
    height:48px;
    border:none;
    background:#f5f5f5;
    border-radius:10px;
    color:#888;
    cursor:pointer;
    transition:.3s;
}

.cart-item-remove:hover{
    background:#ffefef;
    color:#dc3545;
}

.cart-summary{
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    position:sticky;
    top:100px;
}

.cart-summary h3{
    color:#1b234f;
    margin-bottom:25px;
    padding-bottom:15px;
    border-bottom:1px solid #eee;
}

.cart-summary-row{
    display:flex;
    justify-content:space-between;
    margin-bottom:18px;
    font-size:16px;
}

.cart-summary-row.total{
    margin-top:20px;
    padding-top:20px;
    border-top:2px solid #1b234f;
    font-size:28px;
    font-weight:700;
    color:#1b234f;
}

.cart-summary .btn{
    width:100%;
    margin-top:25px;
    height:60px;
    font-size:18px;
    font-weight:600;
    border-radius:14px;
}


/* ── Checkout ──────────────────────────────────────────────── */
.checkout-form {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  padding: var(--space-8);
}

.form-group {
  margin-bottom: var(--space-5);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--primary-navy);
  margin-bottom: var(--space-2);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #E5E1DB;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-dark);
  background: var(--bg-white);
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--secondary-copper);
  box-shadow: 0 0 0 3px rgba(184,115,51,0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.payment-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.payment-method {
  border: 2px solid #E5E1DB;
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  margin-top: -60px;
}

.payment-method:hover {
  border-color: var(--secondary-copper);
}

.payment-method.selected {
  border-color: var(--secondary-copper);
  background: rgba(184,115,51,0.04);
}

.payment-method input { display: none; }

.payment-method-icon {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-2);
}

.payment-method-name {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--primary-navy);
}

.payment-method-desc {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--primary-navy);
  color: rgba(255,255,255,0.8);
  padding: var(--space-16) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-10);
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img {
  height: auto;
  width: 100px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.footer-brand p {
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--space-5);
  color: rgba(255,255,255,0.6);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition-fast);
  font-size: var(--text-sm);
}

.footer-social a:hover {
  background: var(--secondary-copper);
  border-color: var(--secondary-copper);
  color: #fff;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  color: #fff;
  margin-bottom: var(--space-5);
  position: relative;
  padding-bottom: var(--space-3);
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--secondary-copper);
}

.footer-links li {
  margin-bottom: var(--space-3);
}

.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  transition: all var(--transition-fast);
  margin-left: -30px;
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  font-size: var(--text-sm);
}

.footer-contact-icon {
  width: 20px;
  text-align: center;
  color: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  padding: var(--space-6) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-payment-icons {
  display: flex;
  gap: var(--space-3);
  align-items: center;
}

.footer-payment-icons img {
  height: 24px;
  opacity: 0.6;
  transition: opacity var(--transition-fast);
}

.footer-payment-icons img:hover { opacity: 1; }

/* ── WhatsApp Float ────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: #25D366;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition-base);
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: var(--text-dark);
  font-size: var(--text-sm);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* ── Toast Notifications ───────────────────────────────────── */
.toast-container {
  position: fixed;
  top: calc(var(--nav-height) + 16px);
  right: 16px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.toast {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  min-width: 320px;
  max-width: 420px;
  animation: toastSlideIn 0.4s var(--ease-smooth);
  border-left: 4px solid var(--primary-navy);
}

.toast-success { border-left-color: var(--success); }
.toast-error { border-left-color: var(--error); }
.toast-warning { border-left-color: var(--warning); }

.toast-icon {
  font-size: var(--text-xl);
  flex-shrink: 0;
}

.toast-success .toast-icon { color: var(--success); }
.toast-error .toast-icon { color: var(--error); }
.toast-warning .toast-icon { color: var(--warning); }

.toast-content { flex: 1; }
.toast-title { font-weight: 600; font-size: var(--text-sm); }
.toast-message { font-size: var(--text-xs); color: var(--text-muted); }

.toast-close {
  background: none;
  color: var(--text-muted);
  font-size: var(--text-lg);
  padding: var(--space-1);
  cursor: pointer;
}

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

.skeleton-text { height: 14px; margin-bottom: var(--space-2); }
.skeleton-title { height: 24px; width: 60%; margin-bottom: var(--space-3); }
.skeleton-image { aspect-ratio: 3/4; }
.skeleton-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

/* ── Empty States ──────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: var(--space-16) var(--space-8);
}

.empty-state-icon {
  font-size: 4rem;
  color: var(--accent-gold-pale);
  margin-bottom: var(--space-6);
}

.empty-state-title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: var(--primary-navy);
  margin-bottom: var(--space-3);
}

.empty-state-text {
  color: var(--text-muted);
  max-width: 400px;
  margin: 0 auto var(--space-8);
}

/* ── Page Headers / Breadcrumbs ────────────────────────────── */
.page-hero {
  padding-top: var(--nav-height);
  background: var(--primary-navy);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(184,115,51,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero-inner {
  padding: var(--space-16) 0;
  text-align: center;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  color: #fff;
  margin-bottom: var(--space-3);
}

.page-hero-subtitle {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
}

.page-hero .product-breadcrumb {
  justify-content: center;
  margin-top: var(--space-4);
}

.page-hero .product-breadcrumb,
.page-hero .product-breadcrumb a {
  color: rgba(255,255,255,0.6);
}

.page-hero .product-breadcrumb a:hover {
  color: var(--accent-gold);
}

/* ── About Page ────────────────────────────────────────────── */
.about-manifesto {
  font-family: var(--font-accent);
  font-size: var(--text-2xl);
  color: var(--text-dark);
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-8) 0;
  font-style: italic;
  border-left: 4px solid var(--accent-gold);
  padding-left: var(--space-8);
  text-align: left;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.offering-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
}

.offering-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.offering-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.offering-card:hover img { transform: scale(1.06); }

.offering-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,42,65,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-6);
}

.offering-card-title {
  color: #fff;
  font-family: var(--font-heading);
  font-size: var(--text-xl);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

.pillar-card {
  text-align: center;
  padding: var(--space-6) var(--space-4);
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.pillar-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-4);
  background: linear-gradient(135deg, var(--bg-ivory), var(--accent-gold-pale));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--secondary-copper);
}

.pillar-title {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  color: var(--primary-navy);
  margin-bottom: var(--space-2);
}

.pillar-text {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.5;
}

/* Timeline */
.timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: var(--space-8) 0;
  flex-wrap: wrap;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--space-4);
}

.timeline-step p,
.timeline-step-title {
  width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

.timeline-step-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--secondary-copper), var(--accent-gold));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: var(--space-3);
  box-shadow: var(--shadow-glow);
}

.timeline-step-title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--primary-navy);
}

.timeline-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary-copper), var(--accent-gold));
  margin-bottom: 2rem;
}

/* ── Wishlist ──────────────────────────────────────────────── */
.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

/* ── Modal ─────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(27,42,65,0.5);
  backdrop-filter: blur(4px);
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s var(--ease-smooth);
}

.modal-overlay.active { display: flex; }

.modal {
  background: var(--bg-white);
  border-radius: var(--radius-2xl);
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--space-8);
  box-shadow: var(--shadow-xl);
  animation: fadeSlideUp 0.3s var(--ease-smooth);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-6);
}

.modal-close {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--bg-ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal-close:hover { background: var(--error-bg); color: var(--error); }

/* ── Map Section ───────────────────────────────────────────── */
.map-section{
    padding:0 0 60px;
}

.map-embed{
    width:100%;
    max-width:1400px;
    height:350px;
    margin:0 auto;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.map-embed iframe{
    width:100%;
    height:100%;
    border:none;
    display:block;
}

/* Laptop */
@media (max-width:1200px){
    .map-embed{
        height:500px;
    }
}

/* Tablet */
@media (max-width:768px){
    .map-embed{
        height:400px;
        border-radius:16px;
    }
}

/* Mobile */
@media (max-width:480px){
    .map-embed{
        height:300px;
        border-radius:12px;
    }
}

/* ── Pagination ────────────────────────────────────────────── */
.pagination {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-10);
}

.pagination-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--bg-white);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.pagination-btn:hover,
.pagination-btn.active {
  background: var(--primary-navy);
  color: #fff;
}

/* ── Order Confirmation ────────────────────────────────────── */
.order-success {
  text-align: center;
  padding: var(--space-16) var(--space-8);
  background: var(--bg-white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-card);
}

.order-success-icon {
  width: 80px;
  height: 80px;
  background: var(--success-bg);
  color: var(--success);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto var(--space-6);
}

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

@keyframes kenBurns {
  0% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.08) translate(-1%, -1%); }
  100% { transform: scale(1.04) translate(1%, 0); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6), 0 0 0 10px rgba(37,211,102,0.1); }
}

@keyframes toastSlideIn {
  from { opacity: 0; transform: translateX(100%); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes toastSlideOut {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(100%); }
}

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

.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-smooth), transform 0.6s var(--ease-smooth);
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Loading Spinner ───────────────────────────────────────── */
.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--bg-ivory-dark);
  border-top-color: var(--secondary-copper);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.page-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-16);
}

/* ── Navbar Brand Image ────────────────────────────────────── */
.navbar-brand-img {
  height: auto;
  width: 100px;
  border-radius: var(--radius-full);
  object-fit: contain;
  transition: transform var(--transition-base);
}

.navbar.scrolled .navbar-brand-img {
  height: 40px;
  width: 40px;
}

/* ── Mobile Nav Overlay ────────────────────────────────────── */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(27,42,65,0.5);
  backdrop-filter: blur(4px);
  z-index: 998;
  animation: fadeIn 0.2s var(--ease-smooth);
}

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

/* ── Body scroll lock ──────────────────────────────────────── */
body.menu-open {
  overflow: hidden;
}

/* ── Back to Top Button ────────────────────────────────────── */
#back-to-top {
  display: none;
  position: fixed;
  bottom: 88px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--primary-navy);
  color: #fff;
  font-size: var(--text-base);
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 900;
  transition: all var(--transition-fast);
  cursor: pointer;
}

#back-to-top.visible {
  display: flex;
}

#back-to-top:hover {
  background: var(--secondary-copper);
  transform: translateY(-2px);
}

/* ── Responsive: Tablets (max 992px) ───────────────────────── */
@media (max-width: 992px) {

  /* Navbar */
  .navbar-nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-white);
    padding: var(--space-6) var(--space-4);
    z-index: 999;
    overflow-y: auto;
    animation: fadeSlideDown 0.25s var(--ease-smooth);
    gap: 0;
  }

  .navbar-nav.mobile-open {
    display: flex;
  }

  .navbar-nav .nav-link {
    padding: 0.9rem 1rem;
    font-size: var(--text-base);
    border-radius: var(--radius-md);
    border-bottom: 1px solid var(--bg-ivory-dark);
  }

  .video-nav{
    white-space: nowrap;
}

.video-nav{
    white-space: nowrap !important;
    padding-left:10px !important;
    padding-right:10px !important;
}

  .navbar-nav .nav-link:last-child { border-bottom: none; }

  .navbar-toggle {
    display: flex;
    order: 1;
  }

  .navbar-brand {
    order: 2;
    margin-left: 0;
    flex: 1;
    justify-content: center;
  }

  .navbar-actions {
    order: 3;
  }

  .search-container {
    display: none;
  }

  /* Hero */
  .hero { height: 70vh; min-height: 500px; }
  .hero-title { font-size: var(--text-3xl); }

  /* Grids */
  .value-props-grid { grid-template-columns: repeat(2, 1fr); }
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .shop-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-sidebar .cart-summary { position: static !important; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .video-shopping-grid { grid-template-columns: 1fr; }
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
  .map-section { grid-template-columns: 1fr; }
  .wishlist-grid { grid-template-columns: repeat(3, 1fr); }

  .section-title { font-size: var(--text-3xl); }
  h1 { font-size: var(--text-4xl); }
}

/* ── Responsive: Mobile (max 768px) ────────────────────────── */
@media (max-width: 768px) {

  /* Navbar layout */
  .navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--space-4);
    gap: var(--space-2);
  }

  .navbar-toggle { order: 1; }

  .navbar-brand {
    order: 2;
    flex: 1;
    justify-content: center;
  }

  .navbar-brand-tagline { display: none; }

  .navbar-actions { order: 3; }

  /* Search hidden on mobile */
  .search-container { display: none !important; }

  /* Hero */
  .hero { height: 65vh; }
  .hero-actions { flex-direction: column; }
  .hero-btn-primary, .hero-btn-secondary {
    width: 100%;
    text-align: center;
  }

  /* Grids */
  .value-props-grid { grid-template-columns: 1fr 1fr; gap: var(--space-4); }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .wishlist-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .payment-methods { grid-template-columns: 1fr; }

  /* Product rail */
  .product-rail-track .product-card { flex: 0 0 240px; }

  /* Page hero */
  .page-hero-title { font-size: var(--text-3xl); }

  /* Cart */
  .cart-item {
    flex-wrap: wrap;
    gap: var(--space-3);
    padding: var(--space-4);
  }

  .cart-item-image {
    width: 80px;
    min-width: 80px;
    height: 100px;
  }

  .cart-item-info {
    flex: 1;
    min-width: 0;
  }

  .cart-item-info h4 { font-size: var(--text-base); }

  .cart-item-price,
  .cart-item-total {
    font-size: var(--text-lg);
    min-width: auto;
  }

  .cart-item-remove {
    width: 36px;
    height: 36px;
  }

  /* Sections */
  .section { padding: var(--space-12) 0; }
  .section-title { font-size: var(--text-2xl); }

}

/* ── Responsive: Small Mobile (max 480px) ─────────────────── */
@media (max-width: 480px) {
  :root {
    --nav-height: 64px;
  }



  .value-props-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: var(--space-3); }
  .product-card-body { padding: var(--space-3); }
  .product-card-title { font-size: var(--text-sm); }

  .about-manifesto { font-size: var(--text-lg); }

  .timeline { flex-direction: column; }
  .timeline-connector {
    width: 2px;
    height: 30px;
    margin-bottom: 0;
  }

  /* Cart — fully stacked */
  .cart-item {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }

  .cart-item-image {
    width: 100%;
    height: 200px;
    border-radius: var(--radius-lg);
  }

  .quantity-selector { justify-content: flex-start; }

  .cart-item-total,
  .cart-item-price {
    font-size: var(--text-base);
  }
}

/* ── Print Styles ──────────────────────────────────────────── */
@media print {
  .navbar, .footer, .whatsapp-float, .toast-container, .mobile-nav-overlay { display: none; }
  body { background: #fff; }
  .hero { height: auto; min-height: auto; }
}

/* ===== DESKTOP NAV FIX ===== */

.navbar-inner{
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
}

.navbar-nav{
    display:flex !important;
    flex-direction:row !important;
    align-items:center !important;
    justify-content:center !important;
    gap:24px !important;
    list-style:none !important;
    margin:0 !important;
    padding:0 !important;
}

.navbar-nav li{
    display:block !important;
}

.navbar-toggle{
    display:none !important;
}

@media (max-width:768px){

    .navbar-toggle{
        display:flex !important;
    }

    .navbar-nav{
        position:fixed;
        top:72px;
        left:-100%;
        width:280px;
        height:calc(100vh - 72px);

        background:#fff;
        flex-direction:column !important;
        align-items:flex-start !important;

        padding:20px;

        transition:.3s ease;
        z-index:9999;
    }

    .navbar-nav.active{
        left:0;
    }

    .mobile-nav-overlay{
        position:fixed;
        inset:0;
        background:rgba(0,0,0,.45);
        opacity:0;
        visibility:hidden;
        transition:.3s;
        z-index:9998;
    }

    .mobile-nav-overlay.active{
        opacity:1;
        visibility:visible;
    }
}

/* ==========================================
   MOBILE NAVIGATION
========================================== */

.mobile-nav-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.5);
    z-index:998;
    opacity:0;
    visibility:hidden;
    transition:.3s;
}

.mobile-nav-overlay.active{
    opacity:1;
    visibility:visible;
}

@media(max-width:768px){

    .navbar-toggle{
        display:flex;
        z-index:1001;
    }

    .navbar-nav{
        position:fixed;
        top:0;
        left:-100%;
        width:280px;
        height:100vh;
        background:#fff;
        flex-direction:column;
        align-items:flex-start;
        justify-content:flex-start;
        padding:100px 25px 30px;
        gap:15px;
        box-shadow:0 10px 30px rgba(0,0,0,.15);
        transition:.35s ease;
        z-index:999;
    }

    .navbar-nav.mobile-open{
        left:0;
    }

    .navbar-nav li{
        width:100%;
    }

    .navbar-nav .nav-link{
        width:100%;
        padding:12px 15px;
        border-radius:10px;
        font-size:16px;
    }

    body.menu-open{
        overflow:hidden;
    }

    .search-container{
        display:none;
    }

    .navbar-brand-img{
        width:50px !important;
        height:50px !important;
        margin-left: 15px;
    }

    .navbar-brand-name{
        font-size:22px !important;
    }
}








@media(max-width:768px){

.cart-layout{
    grid-template-columns:1fr;
}

.cart-summary{
    position:static;
}

.cart-item{
    grid-template-columns:90px 1fr;
    gap:15px;
}

.cart-item-price,
.cart-item-total,
.quantity-selector{
    grid-column:2;
}

.cart-item-remove{
    grid-column:2;
    width:100%;
}

}

.order-success-card{
    max-width:700px;
    margin:60px auto;
    background:#fff;
    padding:50px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.success-icon{
    font-size:80px;
    color:#28a745;
    margin-bottom:20px;
}

.order-success-card h2{
    margin-bottom:15px;
}

.order-number-box{
    margin:25px 0;
    padding:15px;
    background:#f7f7f7;
    border-radius:10px;
    font-size:18px;
}

.success-buttons{
    display:flex;
    gap:15px;
    justify-content:center;
    margin-top:25px;
}

@media(max-width:768px){

    .order-success-card{
        padding:30px 20px;
        margin:30px 15px;
    }

    .success-buttons{
        flex-direction:column;
    }

}

/* ── Checkout ──────────────────────────────────────────────── */
.checkout-layout{
    width:100%;
    max-width:1600px;
    margin:40px auto;
    padding:0 40px;

    display:grid;
    grid-template-columns:minmax(0,2.2fr) minmax(320px,1fr);
    gap:40px;

    align-items:start;
}
.checkout-card{
    background:#fff;
    padding:35px;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.checkout-left{
    width:100%;
}

.checkout-right{
    width:100%;
}

#checkout-section{
    background:#fff;
    border-radius:24px;
    padding:40px;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    border:none;
}

.checkout-form{
    padding:0;
    box-shadow:none;
    background:none;
}

.checkout-item{
    display:flex;
    align-items:center;
    gap:15px;
    padding:15px 0;
    border-bottom:1px solid #eee;
}

.checkout-item img{
    width:70px;
    height:90px;
    object-fit:cover;
    border-radius:10px;
    flex-shrink:0;
}

.checkout-item-info{
    flex:1;
    min-width:0;
}

.checkout-item-info h6{
    margin:0 0 5px;
    font-size:15px;
    font-weight:600;
    color:#222;
}

.checkout-item-info p{
    margin:0 0 4px;
    font-size:13px;
    color:#777;
}

.checkout-item strong{
    white-space:nowrap;
    font-size:18px;
}

.checkout-summary{
    position:sticky;
    top:100px;

    background:#fff;
    padding:25px;

    border-radius:24px;

    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.form-input,
.form-select,
.form-textarea{

    width:100%;
    height:56px;

    border:1px solid #e5e7eb;
    border-radius:14px;

    padding:0 18px;

    background:#fff;

    transition:.3s;
}

.form-textarea{
    min-height:130px;
    padding-top:15px;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus{

    border-color:#8B1538;
    box-shadow:0 0 0 4px rgba(139,21,56,.08);
}

.checkout-summary{

    position:sticky;
    top:100px;

    background:#fff;

    border-radius:24px;

    padding:30px;

    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.checkout-summary h3{

    font-size:28px;
    margin-bottom:25px;

    padding-bottom:15px;

    border-bottom:1px solid #eee;
}

.checkout-item{

    display:flex;
    align-items:center;
    gap:15px;

    padding:15px 0;

    border-bottom:1px solid #eee;
}

.checkout-item img{

    width:70px;
    height:90px;

    object-fit:cover;

    border-radius:10px;
}

.checkout-item h6{

    margin:0;
    font-size:15px;
    font-weight:600;
}

.checkout-item small{
    color:#777;
}

.checkout-item strong{
    margin-left:auto;
}

.summary-row{

    display:flex;
    justify-content:space-between;

    padding:12px 0;
}

.summary-row.total{

    margin-top:15px;

    border-top:2px solid #111;

    padding-top:20px;

    font-size:24px;
    font-weight:700;
}

.payment-method{

    border:2px solid #e5e7eb;
    border-radius:18px;

    padding:18px;

    background:#fff;

    transition:.3s;
}

.payment-method:hover{

    border-color:#8B1538;

    transform:translateY(-2px);
}

.payment-method input{
    display:block;
}

#place-order-btn{

    width:100%;

    height:60px;

    border:none;

    border-radius:14px;

    font-size:18px;
    font-weight:600;

    background:#8B1538;
    color:#fff;

    transition:.3s;
}

#place-order-btn:hover{

    transform:translateY(-2px);

    background:#6f102d;
}

@media(max-width:992px){

    .checkout-layout{

        grid-template-columns:1fr;
        gap:20px;
    }

    .checkout-right{
        order:-1;
    }

    .checkout-summary{

        position:relative;
        top:auto;
    }

    #checkout-section{
        padding:25px;
    }
}

@media (max-width:768px){

  .page-hero-inner{
      padding: 50px 0;
  }

  .page-hero-title{
      font-size: 2rem;
      margin-bottom:10px;
  }

  .page-hero-subtitle{
      font-size:14px;
  }

}

@media(max-width:768px){

    .page-hero{
        padding-top:70px;
    }

    .page-hero-inner{
        padding:50px 20px;
    }

    .page-hero-title{
        font-size:42px;
    }

}.page-hero-inner{
    padding:70px 20px;
    text-align:center;
    max-width:1200px;
    margin:0 auto;
}


/* ── policy css ───────────────────────*/
.policy-content{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.policy-content h2{
    font-size:28px;
    margin-bottom:15px;
    color:var(--primary-navy);
}

.policy-content p{
    font-size:16px;
    line-height:1.9;
    color:#666;
    margin-bottom:30px;
}

@media(max-width:768px){
    .policy-content{
        padding:25px;
    }

    .policy-content h2{
        font-size:22px;
    }

    .policy-content p{
        font-size:15px;
    }
}