:root {
  --bg: #FFF;
  --panel: #111213;
  --text: #f5f5f5;
  --muted: #b8b8b8;
  --gold: #D4AF37;
  --gold-strong: #b9962e;
  --border: #2b2b2b;
  --white: #ffffff;
  --shadow: 0 8px 24px rgba(0,0,0,.35);
}

html, body {
    background: #ffffff !important;
}

*{ box-sizing: border-box; }
html,body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body {
  padding-top: 100px; /* adjust for your navbar height */
}

h1,h2,h3,h4{
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing:.2px;
  margin:0 0 .6rem;
}
.container{ width:min(1200px, 92%); margin:0 auto; }
.muted{ color: var(--muted); }
.small{ font-size:.9rem; }
.lead{ font-size:1.15rem; color: var(--muted); }
.section{ padding: 56px 0; }
.section-title{ font-size:2rem; margin-bottom: 24px; }
a{ color: inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
hr.sep{ border:0; height:1px; background: var(--border); margin: 24px 0; }
.mt{ margin-top:16px; }
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 20px; border-radius: 999px; border:1px solid var(--border);
  background: transparent; color: var(--text); cursor:pointer; transition:.25s;
  box-shadow:none; text-decoration:none;
}
.btn:hover{ transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-lg{ padding: 14px 26px; font-weight:600; }
.btn-gold{ background: linear-gradient(180deg, var(--gold), var(--gold-strong)); color:#111; border-color:transparent; }
.btn-ghost{ background: transparent; border-color: var(--border); color: var(--text); }
.btn-outline{ background: transparent; border-color: var(--gold); color: var(--gold); }
.btn-outline:hover{ background: rgba(212,175,55,.08); }
.select{ display:grid; gap:6px; }
.select select{
  background:#0f1012; color:var(--text); border:1px solid var(--border);
  padding:10px 12px; border-radius:12px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(12, 12, 12, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}


.header-inner{ display:flex; align-items:center; justify-content:space-between; padding:14px 0; }
.logo{ display:flex; align-items:center; gap:10px; font-weight:600; }
.logo-mark{
  width:36px; height:36px; border-radius:50%; display:grid; place-items:center;
  background: linear-gradient(180deg, var(--gold), var(--gold-strong)); color:#111; font-weight:800;
  font-family:"Playfair Display", Georgia, serif;
}
.logo-text{ letter-spacing:.5px; }


/* NAVBAR LINKS — Bold, clean, modern */
.site-nav a {
  font-family: "Arizonia", sans-serif;
  font-weight: 600;           /* semi-bold for strong presence */
  font-size: 1rem;
  letter-spacing: 1px;        /* subtle spacing */
  text-transform: uppercase;  /* elegant all-caps look */
  color: #f5f5f5;
  text-decoration: none;
  padding: 8px 14px;
  transition: color 0.3s ease, transform 0.2s ease;
}

.site-nav a:hover {
  color: #D4AF37;             /* gold hover effect */
  transform: translateY(-2px);
}

.nav-auth {
  color: #D4AF37;             /* make login/register stand out */
  font-weight: 700;
}


.mobile-nav-toggle{ display:none; }

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.logo-img {
  width: 80px;       /* Adjust depending on your logo size */
  height: 200px;
  display: block;
}

.logo-text {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text);
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.logo-img {
  height: 55px; /* ideal for most navbars */
  width: auto;
  display: block;
  filter: brightness(1.1);
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 1px; /* space between the two images */
  text-decoration: none;
}

.logo-square {
  height: 48px; /* smaller square logo */
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.logo-rect {
  height: 40px; /* keep proportional size */
  width: auto;
  display: block;
  transition: transform 0.3s ease;
  position: relative;
  top: 4px; /* 👈 pushes it slightly downward */
}

.logo-link:hover .logo-square,
.logo-link:hover .logo-rect {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .logo-link {
    gap: 6px;
  }
  .logo-square {
    height: 40px;
  }
  .logo-rect {
    height: 32px;
  }
}
/* CART dropdown (DESKTOP) */
.nav-cart-dd{
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-cart-dd .dropdown-content{
  display: none;               /* IMPORTANT */
  position: absolute;          /* IMPORTANT */
  top: 100%;
  right: 0;
  min-width: 180px;
  background: rgba(0,0,0,.95);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 8px 0;
  z-index: 99999;
  box-shadow: 0 16px 30px rgba(0,0,0,.45);
}

.nav-cart-dd .dropdown-content a{
  width: 100%;
  display: block;
  padding: 10px 14px;
  font-family: "Inter", sans-serif; /* clean */
  font-size: 14px;
  letter-spacing: .4px;
  text-transform: none;         /* stop uppercase */
}

/* hover open (desktop) */
@media (min-width: 769px){
  .nav-cart-dd:hover .dropdown-content{
    display: block;
  }
}

@media (max-width: 768px){
  .nav-cart-dd .dropdown-content{
    position: static;
    width:100%;
    margin-top:6px;
  }

  .nav-cart-dd .dropdown-content a{
    padding-left:18px;
  }
}

.nav-cart-dd.open .dropdown-content{
  display:block;
}
/* Hero */
.hero{ background: radial-gradient(1200px 600px at 70% -50%, rgba(212,175,55,.25), transparent 60%); }
.hero-inner{ display:grid; grid-template-columns: 1.15fr .85fr; gap:40px; padding: 56px 0 24px; }
.hero-copy h1{ font-size: 3rem; }
.hero-art{ display:grid; place-items:center; }
.bottle-placeholder{ width: 320px; height: 420px; border-radius: 24px; background:#151618; border:1px solid var(--border); position:relative; box-shadow: var(--shadow); }
.bottle{ width: 120px; height: 200px; border-radius: 12px; background: linear-gradient(180deg, #e8e0c9, #c1b38c); position:absolute; left:50%; top:50%; transform: translate(-50%,-50%); }

/* ---------- HERO SECTION (BANNER) ---------- */
.luxury-banner {
  position: relative;
  background: url("../images/ban.png") center center / cover no-repeat;
  /* 👆 'cover' fills banner area and keeps the image natural without squashing */

  background-color: #000; /* fallback */
  height: 98vh; /* taller, luxurious hero section */
  display: flex;
  align-items: center; /* vertical alignment */
  justify-content: flex-start; /* text stays left */
  padding-left: 10%;
  color: #fff;
  overflow: hidden;
  margin-top: -90px;
  z-index: 0;
}

/* FIX: push hero down below fixed header */
.luxury-banner.desktop-hero{
  padding-top: 240px;   /* adjust 100–140 depending on header height */
  min-height: calc(100vh - 120px);
  box-sizing: border-box;
}

/* Optional: soft gradient to ensure text readability */
.luxury-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.3) 25%,
    transparent 60%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  text-align: left;
  transform: translateY(15%); /* 👈 moves the text slightly downward */
}

.hero-content h1 {
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 1.2rem;
}

.hero-content p {
  font-family: "Arizonia", sans-serif;
  font-size: 1.2rem;
  color: #eaeaea;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.btn-gold {
  background: linear-gradient(180deg, #c89b47 0%, #9b7630 100%) !important;
  color: #fff !important;
  padding: 14px 38px !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  cursor: pointer !important;
  font-family: "Cinzel", serif !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25) !important;
}

.btn-gold:hover {
  background: linear-gradient(180deg, #b1823b 0%, #8b6427 100%) !important;
  transform: translateY(-2px) !important;
}

/* Products */
.product-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:22px; }
.product-grid.small{ grid-template-columns: repeat(4, 1fr); }
.product-card{ background: #0f1012; border:1px solid var(--border); border-radius: 16px; overflow:hidden; transition:.25s; }
.product-card:hover{ transform: translateY(-3px); box-shadow: var(--shadow); }
.product-image img{ aspect-ratio: 1 / 1.2; object-fit: cover; width:100%; }
.product-info{ padding:16px; display:grid; gap:8px; }
.product-name{ font-size:1.05rem; }
.product-price{ color: var(--gold); font-weight:600; }

/* Promo */
.promo{ display:flex; align-items:center; justify-content:space-between; gap:20px; background:#0f1012; border:1px solid var(--border); border-radius:16px; padding:22px; }

/* Product detail */
.product-detail{ display:grid; grid-template-columns: 1fr 1fr; gap:32px; }
.product-gallery img{ border-radius:16px; border:1px solid var(--border); background:#0f1012; }
.product-price.big{ font-size:1.6rem; color: var(--gold); }
.actions{ display:flex; gap:12px; align-items:center; margin-top:16px; }

/* Shop */
.shop-toolbar{ display:flex; align-items:center; justify-content:space-between; gap:16px; margin-bottom:16px; }
.shop-toolbar input[type="search"]{
  background:#0f1012; color:var(--text); border:1px solid var(--border);
  padding:10px 12px; border-radius:12px; min-width: 240px;
}

/* Forms */
.form{ display:grid; gap:14px; }
.form label{ display:grid; gap:6px; }
.form input, .form textarea{
  background:#0f1012; color:var(--text); border:1px solid var(--border); padding:12px 12px; border-radius:12px;
}

/* Smooth infinite strip */
.scroll-strip {
  width: 100%;
  overflow: hidden;
  background: #D4AF37;
  padding: 10px 0;
  white-space: nowrap;
}

.scroll-track {
  display: flex;
  width: max-content;
  animation: scrollSmooth 25s linear infinite;
}

/* Each repeated text block */
.scroll-item {
  display: inline-block;
  padding-right: 3rem;
  font-weight: 600;
  color: white;
  font-size: 1.1rem;
  font-family: 'Arizona', serif;   /* ← Arizona font styling */
  letter-spacing: 1.5px;
}

@keyframes scrollSmooth {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== MINNA AROMA — STORY SECTION ===== */

.story-showcase {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 8%;
  gap: 40px;
  background: #f8f5ef; /* subtle cream luxury background */
}

/* LEFT TEXT BLOCK */
.story-content {
  flex: 1;
}

/* Mini line on top */
.story-mini-text {
  font-family: "Cinzel", serif; /* Minna Aroma style */
  font-size: 1.1rem;
  color: #BFA76A;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* Main title */
.story-title {
  font-family: "Cinzel", serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #000;
  letter-spacing: 1px;
}

/* Paragraph */
.story-description {
  font-family: "Arizona", sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  max-width: 600px;
  margin-bottom: 35px;
}

/* Button */
.story-btn {
  display: inline-block;
  padding: 12px 34px;
  background: #D4AF37;
  color: white;
  text-decoration: none;
  border-radius: 0px; /* sharp and clean */
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

.story-btn:hover {
  background: #b9972f;
}

/* RIGHT SIDE IMAGES */
.story-images {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.story-img-left,
.story-img-right {
  width: 48%;
  object-fit: cover;
  border-radius: 0px; /* removed round edges */
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .story-showcase {
    flex-direction: column;
    text-align: center;
    padding: 60px 6%;
  }

  .story-images {
    flex-direction: column;
  }

  .story-img-left,
  .story-img-right {
    width: 100%;
  }

  .story-vs {
    display: none;
  }
}

/* Section Heading */
.cat-heading {
  text-align: center;
  font-family: "Cinzel", serif;
  font-size: 2.4rem;
  color: #333;
  margin-bottom: 40px;
}

/* Featured Categories Heading Styling */
.category-heading {
  margin-top: 50px;       
  margin-bottom: 35px;   /* increased space below heading */
  text-align: center;
  font-family: "Cinzel", serif;
  letter-spacing: 1px;
}

/* Golden underline */
.category-heading::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #D4AF37;
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

/* Grid Layout */
.categories-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr; /* left big + right small */
  grid-template-rows: auto auto; 
  gap: 25px;
  padding: 0 8%;
  margin-bottom: 60px;
}

/* Common Category Style */
.cat-item {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 0px;
}

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

/* Large box on left */
.cat-large {
  grid-row: span 2;
}

.cat-label{
  font-family: "Cinzel", serif;
  font-weight: 600;
  font-size: 18px;              /* solid, not tiny */
  letter-spacing: 0.8px;        /* subtle, not wide */
  text-transform: none;         /* keeps it elegant */
  color: #fff;

  position: absolute;
  top: 18px;
  right: 18px;

  padding: 8px 14px;
  border-radius: 12px;

  background: rgba(26, 21, 3, 0.32); /* key: makes it look premium */
  backdrop-filter: blur(3px);   /* glass luxury */
  -webkit-backdrop-filter: blur(6px);

  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  line-height: 1;
}
/* Hover effect */
.cat-item:hover img {
  transform: scale(1.05);
  transition: 0.5s;
}

/* Responsive */
@media (max-width: 900px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }

  .cat-large {
    grid-row: span 1;
  }
}

/* Footer */
/* ---------- REFINED FOOTER ---------- */
.site-footer {
  position: relative;
  background: url("../images/f.png") center bottom / cover no-repeat;
  height: 50vh; /* Keep original height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  margin-top: 0;
  min-height: 380px;
}

.site-footer::before {
  z-index: 0;  /* make sure overlay stays behind everything */
}

/* Dark overlay */
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.70), 
  rgba(0, 0, 0, 0.70));
  z-index: 1;
}

/* Proper grid alignment */
.footer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* equal columns */
  align-items: flex-start; 
  justify-items: center; /* ensures each section centers horizontally in its grid cell */
  gap: 40px;
  text-align: center;
  padding: 40px 8% 20px; 
}

/* Optional tweak: keep grid from shifting due to varying widths */
@media (min-width: 768px) {
  .footer-grid {
    max-width: 1200px;
    margin: 0 auto; /* center the entire grid on screen */
  }
}

/* Left Section */
.footer-brand-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: -15px; /* Slight upward adjustment */
  text-align: left;
}

.footer-logo {
  width: 180px; /* slightly larger than before */
  margin-bottom: 4px; /* gives breathing space */
  margin-left: 13px;
  filter: brightness(1.2);
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.03); /* smooth hover effect */
}

/* Text Styling */
.footer-desc,
.footer-info {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  color: #e0e0e0;
  font-size: 0.95rem;
  letter-spacing: 1.2px;
  line-height: 1.6;
  margin-top: 4px;
  margin-left: 8px;
  ;
}
.footer-info strong,
.footer-desc strong {
  font-weight: 400; /* semi-bold for elegance */
  color: #ffffff; /* makes them pop */
}

/* Link styling */
.footer-link {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 1px;
  font-weight: 600; /* bold links too */
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #D4AF37;
}


/* Center section (Links) */
.footer-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #D4AF37;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  text-align: center; 
  margin-top: 20px;
  /* Centers the "Explore" title */
}


.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif; /* switched for consistency */
  text-align: center; /* Centers all the link items */
}

.footer-links li {
  margin: 8px 0;
}

.footer-links a {
  color: #d8d8d8;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block; /* ensures clean alignment */
  line-height: 1; /* increases space between lines */
  margin: 4px 0;
}

.footer-links a:hover {
  color: #D4AF37;
  transform: translateY(-1px); /* elegant hover lift */
}


/* Right Section (Visit Us) */
.footer-right {
  text-align: center;
  margin-top: 1px;
}

.footer-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #D4AF37;
  margin-bottom: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-top: 10px;
}

.footer-address {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.8px;
  line-height: 1.7;
  text-transform: uppercase;
  margin: 0 auto 30px auto; /* increased space between address & questions */
  max-width: 320px;
}

.footer-questions {
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  color: #D4AF37;
  font-weight: 700; /* bold */
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-top: 5px;
  margin-bottom: 14px; /* slightly increased spacing */
  text-align: center;
}

.footer-dm {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border: 1px solid #D4AF37;
  border-radius: 30px;
  padding: 8px 22px; /* slightly larger for balance */
  transition: all 0.3s ease;
  text-align: center;
}

.footer-dm:hover {
  background: #D4AF37;
  color: #111;
  transform: translateY(-2px);
}

.footer-bottom {
  position: relative;              /* inside footer, but not affected by grid */
  display: flex;                   /* centers perfectly */
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  color: #ccc;
  letter-spacing: 0.4px;
  background: transparent;
  padding: 12px 0 18px 0;          /* nice bottom padding */
  margin-top: 15px;                /* small gap from content */
  z-index: 10;                     /* ensures it shows above overlay */
}

.dev-credit {
  color: #ffffff !important;
  font-weight: 600;
  text-decoration: none;
  margin-left: 6px;
  transition: color 0.3s ease;
}

.dev-credit:hover {
  color: #D4AF37;
}

/* Cart */
.cart-layout{ display:grid; grid-template-columns: 1.4fr .6fr; gap:24px; }
.cart-items{ display:grid; gap:14px; }
.cart-item{ display:grid; grid-template-columns: 88px 1fr auto; gap:14px; align-items:center; background:#0f1012; border:1px solid var(--border); border-radius:12px; padding:10px; }
.cart-item img{ width:88px; height:100px; object-fit:cover; border-radius:8px; }
.qty{ display:flex; align-items:center; gap:8px; }
.qty button{ width:28px; height:28px; border-radius:8px; border:1px solid var(--border); background:#111; color:var(--text); }
.cart-summary{ background:#0f1012; border:1px solid var(--border); border-radius:12px; padding:16px; height:fit-content; position:sticky; top:90px; }
.summary-row{ display:flex; align-items:center; justify-content:space-between; margin:8px 0; }
.summary-row.total{ font-weight:700; color: var(--gold); }

/* Checkout */
.checkout-layout{ display:grid; grid-template-columns: 1fr .8fr; gap:24px; }
.order-summary{ background:#0f1012; border:1px solid var(--border); border-radius:12px; padding:16px; height:fit-content; position:sticky; top:90px; }
.order-item{ display:flex; align-items:center; justify-content:space-between; margin:8px 0; }

/* Utilities */
.narrow{ max-width: 800px; }

@media (max-width: 640px) {
  .logo {
    flex-direction: column;
    align-items: center;
  }
}

/* ---------- AUTH PAGE PERFECT CENTER ---------- */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: #ffffff;
}

body:not(.auth-page) {
  padding-top: 90px;
}
/* ---------- AUTH PAGE CENTERING ---------- */
body.auth-page {
  overflow: hidden;         /* disables scrolling only for login/register */
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
}

.auth-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100dvh - 90px); /* subtract header height */
  width: 100vw;
  background: #ffffff;
  overflow: hidden;
  margin: 0;
  padding: 40px 0; /* keeps spacing consistent */
  position: relative;
  z-index: 0;
}
.auth-card {
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 18px;
  width: 340px;
  min-height: 400px;     /* consistent height for both forms */
  text-align: center;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 35px 35px 40px;
  box-sizing: border-box;
  transition: all 0.3s ease;  /* smooth toggle between login/register */
  position: relative;
}

/* Make both forms take same space */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  width: 100%;
  flex: 1;                  /* keeps them centered within same height */
  justify-content: center;
}

.auth-title {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #111;
  margin-bottom: 0.3rem;
}

.auth-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 1rem;
  text-align: center;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  width: 100%;
}

.auth-form label {
  text-align: left;
  font-size: 0.8rem;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.auth-form input {
  width: 100%;
  padding: 8px 10px;
  background: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.85rem;
  color: #111;
}

.auth-form input:focus {
  border-color: #D4AF37;
  outline: none;
  background: #fff;
}

.btn-gold {
  background: linear-gradient(180deg, #c89b47 0%, #9b7630 100%);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  padding: 8px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.btn-gold:hover {
  background: linear-gradient(180deg, #b1823b 0%, #8b6427 100%);
  transform: translateY(-2px);
}

.auth-footer {
  font-size: 0.8rem;
  color: #666;
  margin-top: 1rem;
  font-family: 'Poppins', sans-serif;
}

.auth-footer a {
  color: #D4AF37;
  font-weight: 600;
  text-decoration: none;
}

.auth-footer a:hover {
  text-decoration: underline;
}

/* Hide register form when toggled */
.auth-form.hidden {
  display: none;
}
.auth-forgot {
  text-align: center;
  width: 100%;
  margin-top: 12px;   /* pushes it slightly down */
  margin-bottom: 8px;
}

.forgot-link {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: #D4AF37;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.forgot-link:hover {
  color: #b9962e;
  text-decoration: underline;
}

.auth-error {
  color: #000;
  font-weight: 500;
  margin-top: 10px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
  background: linear-gradient(180deg, #25D366, #1EBE57);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.whatsapp-icon {
  width: 30px;
  height: 30px;
  filter: brightness(1.1);
}

/* ---------- LUXURY FADE-IN SCROLL ANIMATIONS ---------- */

/* Keyframes for smooth upward fade-in */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Default state: hidden before scroll */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

/* When visible: fade in beautifully */
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- PAGE BANNER (ABOUT) ---------- */
.page-banner {
  position: relative;
 background: url("../images/shop-banner.png") center center / contain no-repeat;
  background-attachment: scroll; /* optional: or 'fixed' for parallax look */
  background-position-y: 50%; /* adjust to show best part of the image */
  background-color: #FFF;
  height: 215px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-top: 20px;
  padding: 0;
  overflow: hidden;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end; /* breadcrumb stays near bottom */
  height: 100%;
  text-align: center;
  padding-bottom: 30px;
}

.banner-title {
  font-family: "Cinzel", serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.breadcrumb {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  color: #e0e0e0;
  letter-spacing: 0.5px;
}

.breadcrumb a {
  color: #D4AF37;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #b9962e;
  text-decoration: underline;
}

.breadcrumb span {
  color: #ccc;
  margin:0 4px;
}


/* ---------- ABOUT SECTION (WHITE) ---------- */


.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

.about-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 0 60px rgba(124, 85, 85, 0.35); /* glowing golden aura */
  transition: all 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 80px rgba(212, 175, 55, 0.5);
}

.about-subtitle {
  color: rgb(17, 17, 17);
 font-family: "Arizona", cursive;
  font-size: 1.3rem;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.about-title {
  font-family: "Cinzel", serif;
  font-size: 2.25rem;
  color: #D4AF37;
  margin-bottom: 25px;
}

.about-content p {
  font-family: "Arizona", sans-serif;
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 16px;
  text-align: justify;
}

/* ---------- STATS SECTION ---------- */
.stats-section {
  background: #0d0d0d;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-box h3 {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  color: #D4AF37;
  margin-bottom: 8px;
}

.stat-box p {
  font-family: "Poppins", sans-serif;
  color: #ccc;
  font-size: 0.95rem;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image img {
    width: 85%;
    margin: 0 auto 30px;
  }

  .about-title {
    font-size: 2rem;
  }

  .legacy-text {
    font-size: 1rem;
    width: 90%;
  }
}

/* ---------- SIGNATURE COLLECTION ---------- */
.signature-collection {
  position: relative;
  background: #ffffff;
  text-align: center;
  padding: 80px 6%; /* smaller vertical padding */
  overflow: hidden;
  z-index: 1;
}

/* Large faint mandala background */
.signature-collection::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 850px;
  height: 850px;
  background: url("/minna-aroma/images/mandala.png") center/contain no-repeat;
  opacity: 0.12;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.signature-title {
  font-family: "Cinzel", serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: #111;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.signature-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background: #D4AF37;
  margin: 14px auto 0;
  border-radius: 2px;
}

.signature-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
  position: relative;
  z-index: 2;
}

/* Reduce overall side padding + gap between text & image */
.signature-item {
  display: flex;
  align-items: center;
  justify-content: center; /* centers content instead of pushing apart */
  gap: 130px; /* was 60px */
  padding: 0 4%; /* was 4–6%, now tighter */
  max-width: 1500px;
  margin: 0 auto;
}

.signature-item.reverse {
  flex-direction: row-reverse;
}

/* Image */
.signature-image img {
  width: 260px; /* slightly smaller for better proportion */
  border-radius: 14px;
  box-shadow: none;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.signature-image img:hover {
  transform: scale(1.05);
  filter: brightness(1.15);
  box-shadow: 0 0 80px rgba(212, 175, 55, 0.5);
}

/* Text */
.signature-text {
  max-width: 420px; /* slightly reduced */
  text-align: left;
}

.signature-text h3 {
  font-family: "Arizona", sans-serif;
  font-size: 1.6rem;
  color: #b9962e;
  margin-bottom: 10px;
  text-align: justify;
}

.signature-desc {
  font-family: "Arizona", sans-serif;
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 6px;
  text-align: justify;
}

.signature-note {
  font-family: "Arizonia", cursive;
  font-size: 1.1rem;
  color: #b9962e;
  line-height: 1.6;
  margin-top: 4px;
}

/* Text styling */
.signature-text {
  max-width: 480px;
  text-align: left;
}

.signature-text h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  color: #b9962e;
  margin-bottom: 10px;
}

.signature-desc {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 8px;
}

.signature-note {
  font-family: "Arizonia", cursive;
  font-size: 1.1rem;
  color: #b9962e;
  line-height: 1.6;
  margin-top: 6px;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .signature-item,
  .signature-item.reverse {
    flex-direction: column;
    text-align: center;
  }
  .signature-text {
    text-align: center;
  }
}

/* ---------- BENEFIT SECTION (OUR PROMISE) ---------- */
.benefit-section {
  background: #ffffff;
  color: #111;
  padding: 50px 0 80px; /* reduced top padding from 80px to 50px */
  text-align: center;
  margin-top: 0 !important; /* removes unwanted extra space */
}

.section-heading {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  color: #111;
  margin-bottom: 8px;
}

.section-subtext {
  font-family: "Arizonia", cursive; /* fixed typo from "Arizona" */
  color: #777;
  font-size: 1.5rem;
  margin-bottom: 45px; /* slightly tighter */
}

.section-heading::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background: #D4AF37;
  margin: 14px auto 0;
  border-radius: 2px;
}


.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  justify-items: center;
}

.benefit-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 35px 25px ; /* reduced slightly for better balance */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: #D4AF37; /* gold border for premium hover */
  box-shadow: 0 8px 22px rgba(212, 175, 55, 0.2);
}

.benefit-card img,
.benefit-card i {
  width: 55px;
  margin-bottom: 15px; /* ⬅️ increased spacing between icon and heading */
  filter: brightness(0) saturate(100%) invert(67%) sepia(45%) saturate(585%)
    hue-rotate(10deg) brightness(92%) contrast(90%);
  transition: transform 0.3s ease;
}

.benefit-card img:hover,
.benefit-card i:hover {
  transform: translateY(-3px);
}

/* Title */
.benefit-card h3 {
  color: #D4AF37;
  font-family: "Cinzel", serif;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.benefit-card p {
  font-family: "Arizona", sans-serif;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 280px; /* ensures text stays neat */
  margin: 0 auto;
}

/* ---------- RESPONSIVE DESIGN ---------- */
@media (max-width: 900px) {
  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .benefit-section {
    padding: 50px 0; /* reduced for mobile too */
  }
} 

/* SHOP SECTION/
/* ---------- SHOP BANNER ---------- */
body, html {
  margin: 0;
  padding: 0;
}

.site-header {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

.shop-banner {
  margin-top: -16px !important; /* pushes banner up to close hidden gap */
  padding: 0 !important;
  position: relative;
  top: 0;
  z-index: 1;
}

.shop-banner {
  position: relative;
  background: url("../images/shop-banner.png") center center / contain no-repeat;
  background-color: #000; /* fallback color if image doesn’t fill width */
  height: 215px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-top: 0;   /* removes gap */
  padding: 0;
  overflow: hidden;
}

.shop-banner .banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.shop-banner .banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.shop-banner .banner-title {
  font-family: "Cinzel", serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
}

/* ---------- SEARCH ---------- */
.search-section {
  display: flex;
  justify-content: center;
  margin-top: -20px;
}

.search-bar {
  width: 60%;
  max-width: 900px;
  padding: 12px 20px;
  border: 1px solid #ccc;
  border-radius: 30px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
  margin-left: 200px;
}

.search-bar:focus {
  border-color: #D4AF37;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

/* Suggestion Dropdown */
.search-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 40px auto;
}

.suggestion-box {
  position: absolute;
  top: 48px;
  width: 100%;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  z-index: 9999;
}

.suggestion-box div {
  padding: 10px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  color: #111;
}

.suggestion-box div:hover {
  background: #f5f5f5;
}

/* ---------- CATEGORY SECTION ---------- */
.category-section {
  padding: 20px 0;
   /* background: linear-gradient(
    rgba(212, 175, 55, 0.15),
    rgba(255, 255, 255, 0.9)
  ); */
  text-align: center;
}

.category-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 35px;
  flex-wrap: nowrap;   /* 🔥 THIS keeps them in same line */
  margin-top: 30px;
}

.category-item {
  text-align: center;
  width: 120px;
  flex: 0 0 auto;
}

.category-item img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #d4af37;
  transition: 0.3s ease;
}

.category-item img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1100px) {
  .category-grid {
    flex-wrap: wrap;   /* allow wrap on smaller screens */
  }
}

.category-item p {
  font-family: "Cinzel", serif;
  color: #111;
  margin-top: 12px;
}

/* CATEGORY PAGE PRODUCT GRID */
.category-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  padding: 40px 8%;
}

.category-products .product-item {
  background: #fff;
  border: 1px solid #e6e6e6;
  padding: 15px;
  text-align: center;
  transition: 0.3s;
}

.category-products .product-item:hover {
  transform: translateY(-5px);
}

.category-products .product-image img {
  width: 100%;
  height: 260px;      /* Makes perfect square card */
  object-fit: cover;
}

.category-products .product-info a {
  font-family: "Cinzel", serif;
  font-size: 1.1rem;
  color: #000;
  margin-top: 10px;
  display: block;
}

.category-products .price {
  font-weight: 600;
  color: #D4AF37;
  margin-top: 5px;
}

.all-products-section .section-heading {
    text-align: center !important;
    width: 100%;
    margin: 0 auto;
    margin-top: 30px;
}

/* ---------- BEST SELLERS SECTION ---------- */
.bestsellers-section {
  /* background: rgba(212, 175, 55, 0.1);  */
  /* gold tone with 50% transparency */
  padding: 30px 8%;
  text-align: center;
  border-radius: 8px; /* optional for smooth edges */
}

.section-heading {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  color: #111;
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
  margin-bottom: 30px;
}

.section-heading::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background: #D4AF37;
  margin: 14px auto 0;
  border-radius: 2px;
}

/* Product grid */
.bestseller-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  justify-items: center;
  align-items: start;
}

.product-card {
  background: #fff;
  text-align: left;
  border-radius: 0px;
  transition: all 0.3s ease;
  cursor: default;
}

.bestseller-grid .product-card {
   border: 2px solid rgba(212, 175, 55, 0.5) !important;
}

.product-card img {
  width: 100%;
  border-radius: 0px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}
.product-card{
  transition: transform .22s ease, box-shadow .22s ease;
}
.product-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
}
.product-card img{
  transition: transform .22s ease;
}

.product-card h3 {
  font-family: "Arizona", sans-serif;
  font-size: 1rem;
  color: #111;
  margin-bottom: 5px;
  text-align: left;
   padding-left: 15px; 
}

.product-card .price {
  font-family: "Poppins", sans-serif;
  color: #b9962e;
  font-weight: 500;
  font-size: 0.95rem;
   padding-left: 15px; 
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .bestseller-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 600px) {
  .bestseller-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- TRENDING COLLECTION ---------- */
.trending-section {
  padding: 70px 0;
  text-align: center;
  background: #ffffff;
}

.trend-wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* Viewport */
.trend-window {
  overflow: hidden;
  padding: 0 10px;
}

/* Track */
.trend-track {
  display: flex;
  gap: 20px;              /* match JS gap (cardWidth + 20) */
  transition: transform 0.45s ease;
}

/* Card: SQUARE, NO RADIUS, 4 PER VIEW */
.trend-card {
  flex: 0 0 calc((100% - 60px) / 4);    /* 4 cards + 3 gaps = 100% */
  max-width: calc((100% - 60px) / 4);
  display: block;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 0 !important;                      /* no rounded corners */
  padding: 12px 12px 20px;
  text-align: center;
  color: #000;
}

/* Square image */
.trend-card img {
  width: 100%;
  aspect-ratio: 1 / 1;                   /* perfect square */
  object-fit: cover;
  border-radius: 0 !important;
}

/* Title + price */
.trend-card h3 {
  font-family: "Cinzel", serif;
  font-size: 1rem;
  margin-top: 14px;
  margin-bottom: 6px;
}

.trend-card .price {
  font-family: "Poppins", sans-serif;
  color: #D4AF37;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Hover */
.trend-card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

/* ---------- ARROWS OUTSIDE ---------- */
.trend-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid #D4AF37;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  transition: 0.25s;
  z-index: 10;
}

.trend-arrow span {
  font-size: 24px;
  color: #D4AF37;
}

/* Put them in the white space, NOT over the boxes */
.trend-left {
  left: -70px;
  opacity: 30%;
}

.trend-right {
  right: -70px;
  opacity: 30%;
}

.trend-arrow:hover {
  background: #D4AF37;
}

.trend-arrow:hover span {
  color: #ffffff;
}

/* Mobile tweak */
@media (max-width: 900px) {
  .trend-left { left: -25px; }
  .trend-right { right: -25px; }
  .trend-card {
    flex: 0 0 70%;
    max-width: 70%;
  }
}
 /* FIX PRODUCT IMAGE BOX STYLE */
.product-gallery {
  width: 480px;         /* normal box width */
  height: auto;
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 10px;
}

.main-product-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

/* Arrows styling (smaller, cleaner, centered vertically) */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: 0.2s;
}

.gallery-arrow:hover {
  background: rgba(0,0,0,0.7);
}

.arrow-left {
  left: 15px;
}

.arrow-right {
  right: 15px;
}

/* ------------ IMAGE GALLERY WITH ARROWS ------------ */

/* Make product image small & boxed */
.product-gallery {
    width: 350px;
    margin-top: 20px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

/* Fix main image size */
.main-product-image {
    width: 100%;
    height: 500px;      /* smaller */
    object-fit: cover;
    border-radius: 16px;
}

/* Arrows */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.55);
  color: white;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: .2s;
}
.gallery-arrow:hover {
  background: rgba(0,0,0,0.75);
}
.arrow-left { left: 10px; }
.arrow-right { right: 10px; }


/* Thumbnails */
.thumbnail-row {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.thumbnail {
  width: 75px;
  height: 75px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.25s;
}

.thumbnail:hover {
  border-color: #D4AF37;
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 992px) {
 .product-layout {
  display: grid;
  grid-template-columns: 420px 1fr;  /* Left small, right big */
  gap: 60px;
  align-items: start;
}

  .product-desc {
    width: 100%;
  }

  .product-buttons {
    justify-content: center;
  }
}

/*. TESTIMONIAL SECTION   */
.testimonial-section {
  padding: 30px 0;
  background: white;
  text-align: center;
  position: relative;
}

/* Only 3 testimonials visible */
.testimonial-slider-wrapper {
  width: 78%;
  margin: 40px auto;
  overflow: hidden !important;   /* hide 4th card */
}

/* track */
.testimonial-slider {
  display: flex;
  gap: 25px;
  transition: 0.4s ease;
}

/* cards */
.testimonial-card {
  font-family: "Arizona",serif;
  flex: 0 0 calc(33.33% - 18px);
  min-width: calc(33.33% - 18px);
  max-width: calc(33.33% - 18px);
  margin-top: 12PX;
  padding: 25px 20px;
  border: 2px solid #D4AF37;
  background: #fff;
  border-radius: 10px;
  color: #000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.testimonial-card strong {
    display: block;
    margin-top: 14px;
    color: #D4AF37;
    font-style: bold;
    font-weight: 600;
    font-family: "Cinzel", sans-serif;
    letter-spacing: 0.5px;
}

/* arrows outside */
.testi-arrow {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  background: #fff;
  border: 2px solid #D4AF37;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 50;
}

/* Left arrow OUTSIDE */
.testi-arrow.left {
  left: 60px;
  color: #D4AF37;
  opacity: 30%;
}

/* Right arrow OUTSIDE */
.testi-arrow.right {
  right: 60px;
  color: #D4AF37;
  opacity: 30%;
}

.testi-arrow:hover {
  background: #D4AF3730;
}

/* ================================
   MINNA AROMA • SHOPPING CART CSS
   (scoped to .cart-section)
   ================================ */

:root{
  --ma-gold:#D4AF37;
  --ma-gold-dark:#b8921d;
  --ink:#111;
  --ink-2:#333;
  --ink-3:#666;
  --muted:#888;
  --line:#EEE;
  --line-soft:#F3F3F3;
  --card:#FFF;
  --page:#ffffff; /* warm off-white */
}

/* Optional: remove banner space version */
.cart-no-banner{
  padding-top:0px;              /* space from sticky header */
  background:var(--page);
}

/* Base section */
.cart-section{
  color:var(--ink);
  padding:60px 8%;
  display:flex;
  justify-content:center;
  background:var(--page);
}

.cart-container{
  display:flex;
  gap:40px;
  flex-wrap:wrap;
  max-width:1200px;
  width:100%;
   align-items: flex-start;
}

/* ---------- LEFT: Title + Items ---------- */
.cart-left{
  flex:1 1 720px;
  min-width:620px;
}

.cart-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    /* width: 100%; */
    min-height: 350px;   /* ensures same visual height */
}

.cart-title{
  font-family:"Cinzel",serif;
  font: size 1.5em;
  letter-spacing:.5px;
  margin:0 0 18px 0;
  color:var(--ink);
  text-align: center;
}

/* Table “card” wrapper */
.cart-card{
  background:var(--card);
  border-radius:14px;
  box-shadow:0 10px 20px rgba(0,0,0,.06);
  border:1px solid rgba(0,0,0,.05);
  padding:12px 16px 18px 16px;
}

/* Product table */
.cart-table{
  width:100%;
  border-collapse:collapse;
  font-family:"Poppins",sans-serif;
  background:var(--card);
}

.cart-table thead th{
  text-align:left;
  padding:16px 12px;
  border-bottom:1px solid var(--line);
  font-weight:600;
  color:var(--ink-3);
}

.cart-table tbody td{
  padding:16px 12px;
  border-bottom:1px solid var(--line-soft);
  vertical-align:middle;
  color:var(--ink-2);
}

/* Product info cell */
.cart-section .product-info{
  display:flex;
  align-items:center;
  gap:15px;
}

.cart-section .product-info img{
  width:64px;height:64px;
  object-fit:cover;
  border-radius:8px;
}

.cart-section .product-info h3{
  font-size:1rem;
  margin:0;
  color:var(--ink);
  font-family:"Cinzel",serif;
  letter-spacing:.2px;
}
.cart-section .product-info p{
  font-size:.85rem;
  color:var(--muted);
  margin:2px 0 0 0;
}

/* Quantity pill */
.quantity-control{
  display:flex; align-items:center;
  border:1px solid #DDD;
  border-radius:24px;
  overflow:hidden;
}
.quantity-control button{
  width:34px;height:34px;
  border:none;
  background:#F7F7F7;
  cursor:pointer;
  font-size:18px;
}
.quantity-control input{
  width:30px;
  text-align:center;
  border:none;
  font-size:1rem;
  font-weight:600;
  color:var(--ink);
}

/* Remove icon at row end */
.row-remove{
  background:transparent;border:0;
  font-size:18px; line-height:1;
  cursor:pointer; opacity:.6;
}
.row-remove:hover{ opacity:1; }

/* Actions row under table */
.cart-actions{
  margin-top:14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  font-family:"Poppins",sans-serif;
}

.coupon-wrap{ display:flex; gap:10px; }
.coupon-wrap input{
  padding:10px 14px;
  border:1px solid #DDD;
  border-radius:24px;
  outline:none;
  background:#FFF;
}

.apply-btn{
  background:var(--ma-gold);
  color:#FFF;
  border:none;
  padding:10px 18px;
  border-radius:24px;
  cursor:pointer;
  transition:.25s;
}
.apply-btn:hover{ background:var(--ma-gold-dark); }

.clear-cart{
  color:#777; font-size:.92rem;
  text-decoration:none;
}
.clear-cart:hover{ color:var(--ink); }

/* ---------- RIGHT: Summary ---------- */
.cart-summary{
  background:var(--card);
  padding:24px;
  border-radius:14px;
  box-shadow:0 10px 20px rgba(0,0,0,.06);
  border:1px solid rgba(0,0,0,.05);
  width:340px;
  font-family:"Poppins",sans-serif;
  color:var(--ink);
  position:sticky;
  top:90px;             /* sticks under header */
  align-self:flex-start;
}

.cart-summary h3{
  font-family:"Cinzel",serif;
  text-align:center;
  margin:4px 0 18px 0;
  color:var(--ink);
}

.summary-line,
.summary-total{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:10px;
  color:var(--ink-2);
}

.summary-total{
  font-weight:700;
  border-top:2px solid var(--ink);
  padding-top:12px;
  font-size:1.05rem;
}

.checkout-btn{
  width:100%;
  padding:12px 16px;
  background:var(--ma-gold);
  color:#FFF;
  border:none;
  border-radius:30px;
  font-size:1rem;
  font-weight:600;
  cursor:pointer;
  transition:.25s;
  margin-top:12px;
}
.checkout-btn:hover{ background:var(--ma-gold-dark); }
/* =====================================
   CART – MOBILE (fresh clean layout)
   Makes left section like your reference
   ===================================== */
@media (max-width:768px){

  /* overall spacing */
  .cart-section{ padding:14px 10px !important; }
  .cart-container{
    max-width: 100% !important;
    width: 100% !important;
    gap: 14px !important;
  }
  .cart-left{
    width: 100% !important;
    min-width: 0 !important;
  }

   .cart-box{
    width: 100% !important;
    padding: 16px 14px !important;
  }


  /* order summary should be normal block (down) */
 .cart-summary{
    position: static !important;
    top: auto !important;
    width: 100% !important;
    margin: 14px 0 0 0 !important;
  }

  /* hide table header */
  .cart-table thead{ display:none !important; }

  /* table -> card rows */
  .cart-table, .cart-table tbody, .cart-table tr, .cart-table td{
    display:block !important;
    width:100% !important;
  }

  .cart-table tbody tr{
    position:relative;
    background:#fff;
    border:1px solid rgba(0,0,0,0.06);
    border-radius:14px;
    padding:12px;
    margin-bottom:12px;
    box-shadow:0 8px 18px rgba(0,0,0,0.06);
  }

  .cart-table tbody td{
    border:none !important;
    padding:0 !important;
  }

  /* product row layout: image + text */
  .cart-table tbody td.product-info{
    display:grid !important;
    grid-template-columns:86px 1fr;
    gap:12px;
    align-items:start;
    padding-right:34px; /* space for X button */
  }

  .cart-section .product-info img{
    width:86px !important;
    height:86px !important;
    border-radius:10px !important;
    object-fit:cover !important;
  }

  /* title + category (inside product-info text div) */
  .cart-section .product-info h3{
    font-size:15px !important;
    line-height:1.2 !important;
    margin:0 !important;
    color:#111 !important;
    font-family:inherit !important; /* cleaner Apple-ish */
    font-weight:600 !important;
  }
  .cart-section .product-info p{
    margin:4px 0 0 0 !important;
    font-size:13px !important;
    color:#888 !important;
  }

  /* move PRICE under category like: "1 × ₹599.00" */
  .cart-table tbody td:nth-child(2){
    margin-left:98px;               /* aligns under text column */
    margin-top: -40px !important; 
    font-size:14px;
    color:#C4A24C;                  /* your gold */
    font-weight:600;
  }
  /* add "1 × " before price (uses current qty value visually) */
  .cart-table tbody td:nth-child(2)::before{
    content: attr(data-qty-prefix);
  }
  /* We will inject prefix from JS? No. So use a simple constant "1 × " */
  .cart-table tbody td:nth-child(2)::before{
    content:"1 × ";
    color:#b9b9b9;
    font-weight:500;
  }

  /* quantity: align to right under price */
 .cart-table tbody td:nth-child(3){
    display:flex !important;
    justify-content:flex-end !important;
    margin-top:6px !important;
  }

  /* hide subtotal for mobile clean */
  .cart-table tbody td:nth-child(4){
    display:none !important;
  }

  /* delete button: top-right small */
  .cart-table tbody td:nth-child(5){
    position:absolute;
    top:10px;
    right:10px;
  }
  .delete-item, .row-remove{
    width:28px !important;
    height:28px !important;
    border-radius:999px !important;
    border:1px solid rgba(0,0,0,0.12) !important;
    background:#fff !important;
    font-size:18px !important;
    line-height:1 !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    opacity:0.75;
  }

  /* qty pill – compact like your sample */
  .quantity-control{
    width:100px !important;
    height:30px !important;
    border-radius:999px !important;
    border:1px solid rgba(0,0,0,0.12) !important;
    overflow:hidden !important;
    background:#f3f3f3 !important;
  }
  .quantity-control .qty-btn{
    width:36px !important;
    height:34px !important;
    border:0 !important;
    background:#f3f3f3 !important;
    font-size:16px !important;
  }
  .quantity-control .qty-input{
    width:48px !important;
    height:34px !important;
    border:0 !important;
    background:#fff !important;
    font-weight:600 !important;
  }

  /* continue shopping button spacing */
  .cart-box{ padding:16px !important; }
}

/* =========================================================
   🌿 GLOBAL RESPONSIVE DESIGN FOR MINNA AROMA - MOBILE VIEW
   ========================================================= */

/* Base adjustments for all elements */
* {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

/* ======================================
   NAVBAR
====================================== */
@media (max-width: 992px) {
  nav {
    padding: 12px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #111;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    color: #fff;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .menu-toggle {
    display: block;
    cursor: pointer;
    font-size: 1.5rem;
    color: #fff;
  }
}

/* Hide menu icon on large screens */
.menu-toggle {
  display: none;
}

/* ======================================
   HERO / BANNERS
====================================== */
@media (max-width: 900px) {
  .page-banner {
    height: 220px;
    background-position: center;
  }

  .page-banner h1 {
    font-size: 1.8rem;
  }
}

/* ---------- NAV CART ICON ---------- */
.nav-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px; /* balances spacing with CONTACT */
  vertical-align: middle;
  transition: transform 0.3s ease;
  position: relative;
  top: 2px; /* fine-tunes vertical alignment */
}

.nav-cart:hover {
  transform: scale(1.1);
}

.cart-icon {
  width: 28px;     /* slightly bigger */
  height: 30px;
  filter: invert(0%); /* makes it white */
  transition: filter 0.3s ease, transform 0.3s ease;
}

.nav-cart:hover .cart-icon {
  filter: brightness(0) saturate(100%) invert(67%) sepia(45%) saturate(585%)
    hue-rotate(10deg) brightness(92%) contrast(90%); /* gold hover */
  transform: scale(1.05);
}

/* ======================================
   GRID SECTIONS (Shop, Best Sellers, etc.)
====================================== */
@media (max-width: 900px) {
  .bestseller-grid,
  .product-grid,
  .benefit-grid,
  .signature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 600px) {
  .bestseller-grid,
  .product-grid,
  .benefit-grid,
  .signature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .product-card img {
    border-radius: 6px;
  }
}

/* ======================================
   ABOUT PAGE (Signature Collection, etc.)
====================================== */
@media (max-width: 768px) {
  .signature-item {
    flex-direction: column;
    gap: 20px;
    padding: 0;
  }

  .signature-text {
    text-align: center;
  }

  .signature-image img {
    width: 80%;
    margin: 0 auto;
  }
}

/* ======================================
   FOOTER
====================================== */
@media (max-width: 768px) {
  footer {
    text-align: center;
    padding: 30px 5%;
  }

  .footer-columns {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .footer-columns div {
    width: 100%;
  }

  .footer-logo img {
    max-width: 120px;
  }
}

/* ======================================
   CATEGORY SECTION
====================================== */
@media (max-width: 768px) {
  .category-grid {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 0;
    scroll-behavior: smooth;
  }

  .category-item {
    flex: 0 0 auto;
    width: 100px;
  }

  .category-item img {
    width: 80px;
    height: 80px;
  }

  .category-item p {
    font-size: 0.8rem;
  }

  .category-grid::-webkit-scrollbar {
    display: none;
  }
}


.page-banner {
    margin-top: 120px !important; 
}


.site-nav { 
  display: flex; 
  align-items: center; 
  gap: 28px; 
}

.site-nav .nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

/* REMOVE fixed box for cart only */
.site-nav .nav-cart {
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
}

/* Make icon bigger (real size) */
.site-nav .nav-cart .cart-icon {
  width: 30px;
  height: 30px;
  display: block;
  object-fit: contain;
}
/* safety: make sure no overlay blocks page */
.overlay,
.nav-overlay,
.menu-overlay,
.modal-backdrop {
  display: none !important;
  pointer-events: none !important;
}

.checkout-btn.disabled {
  background: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
}

body:not(.auth-page){
  padding-top: 70px !important;
}