*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  --gold:    #c9a84c;
  --gold2:   #a07830;
  --gold3:   #f0d080;
  --dark:    #0e0c09;
  --dark2:   #181510;
  --dark3:   #221e16;
  --dark4:   #2e2820;
  --cream:   #f5f0e8;
  --cream2:  #ede5d5;
  --text:    #1a1610;
  --muted:   #7a7060;
  --border:  #d5c9b0;
  --white:   #ffffff;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  min-height: 100vh;
}

/* ── TOP BAR ── */
.topbar {
  background: #2c3d19;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 9px 20px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* ── NAVBAR ── */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 100;
  gap: -2px;
}

.nav-left { display: flex; gap: 4px; }
.nav-link {
  background: none;
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--gold2); background: #f5efe0; }

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-icon {
  font-size: 1.4rem;
  color: var(--gold);
}
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #2c3d19;
  letter-spacing: 1px;
  line-height: 1;
}
.brand-sub {
  font-size: 0.6rem;
  letter-spacing: 4px;
  color: var(--gold2);
  margin-top: 2px;
}

.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-search-wrap { position: relative; }
.nav-search-wrap input {
  padding: 8px 16px 8px 36px;
  border: 1px solid var(--border);
  border-radius: 24px;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  background: var(--cream);
  color: var(--text);
  outline: none;
  width: 147px;
  transition: border 0.2s, width 0.3s;
}
.nav-search-wrap input:focus { border-color: var(--gold); width: 240px; }
.search-ico {
  position: absolute;
  left: 12px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  color: var(--muted);
}
.cart-ico {
  font-size: 1rem;
  font-weight: 500;
  color: #2c3d19;
  cursor: pointer;
  background: var(--cream2);
  padding: 8px 14px;
  border-radius: 24px;
  border: 1px solid var(--border);
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}

/* ── HAMBURGER BUTTON ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
  position: sticky;
  top: 72px;
  z-index: 99;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link {
  font-size: 0.85rem;
  padding: 12px 16px;
  text-align: left;
  border-radius: 8px;
  width: 100%;
  border-bottom: 1px solid var(--cream2);
}
.mobile-menu .nav-link:last-of-type { border-bottom: none; }

.mobile-search-wrap {
  position: relative;
  margin-top: 8px;
}
.mobile-search-wrap input {
  width: 100%;
  padding: 10px 16px 10px 38px;
  border: 1px solid var(--border);
  border-radius: 24px;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  background: var(--cream);
  color: var(--text);
  outline: none;
}
.mobile-search-wrap input:focus { border-color: var(--gold); }
.mobile-search-ico {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  color: var(--muted);
}
.mobile-cart {
  margin-top: 8px;
  text-align: center;
  justify-content: center;
}

/* ── HERO ── */
.hero {
  background: var(--dark);
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 60px 80px;
  gap: 60px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, #c9a84c18 0%, transparent 70%);
  pointer-events: none;
}

.hero-text { flex: 1; z-index: 1; }
.hero-pre {
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-desc {
  font-size: 0.95rem;
  color: #9a9080;
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 36px;
  font-weight: 300;
}
.hero-btn {
  padding: 14px 36px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.3s, color 0.3s;
}
.hero-btn:hover { background: var(--gold); color: var(--dark); }

.hero-visual {
  flex: 0 0 320px;
  position: relative;
  height: 320px;
  z-index: 1;
}
.hero-circle {
  width: 240px; height: 240px;
  border-radius: 50%;
  border: 1px solid #c9a84c30;
  background: #c9a84c08;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto 0;
  animation: slowSpin 20s linear infinite;
}

/* ye sale banner ki css hai  */
/* =========================
   HERO SLIDER
========================= */

.hero-slider{
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    border-radius: 20px;
    background: #f5f5f5;
}

.hero-slide{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity .8s ease-in-out;
    user-select: none;
    -webkit-user-drag: none;
}

.hero-slide.active{
    opacity: 1;
    z-index: 2;
}

/* =========================
   Large Laptop
========================= */

@media (max-width: 1400px){
    .hero-slider{
        height: 480px;
    }
}

/* =========================
   Laptop
========================= */

@media (max-width: 1200px){
    .hero-slider{
        height: 430px;
    }
}

/* =========================
   Tablet
========================= */

@media (max-width: 992px){
    .hero-slider{
        height: 340px;
        border-radius: 16px;
    }
}

/* =========================
   Mobile
========================= */

@media (max-width: 768px){

    .hero-slider{
        height: 240px;
        border-radius: 12px;
    }

    .hero-slide{
        object-position: center;
    }

}

/* =========================
   Small Mobile
========================= */

@media (max-width: 576px){

    .hero-slider{
        height: 200px;
        border-radius: 10px;
    }

}

/* =========================
   Extra Small Mobile
========================= */

@media (max-width: 400px){

    .hero-slider{
        height: 170px;
    }

}




@keyframes slowSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.hero-icon-big {
  font-size: 5rem;
  animation: slowSpin 20s linear infinite reverse;
}
.floating-tag {
  position: absolute;
  background: var(--dark3);
  border: 1px solid var(--gold2);
  color: var(--gold3);
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  animation: floatTag 4s ease-in-out infinite;
}
.tag1 { top: 10px;  left: 0;    animation-delay: 0s; }
.tag2 { top: 10px;  right: 0;   animation-delay: 1s; }
.tag3 { bottom: 60px; left: 0;  animation-delay: 2s; }
.tag4 { bottom: 60px; right: 0; animation-delay: 3s; }
@keyframes floatTag {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ── CATEGORIES ── */
.cat-section {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 28px 40px;
}
.cat-grid {
  display: flex;
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 18px 28px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s;
  font-family: 'Jost', sans-serif;
  min-width: 110px;
}
.cat-card:hover { border-color: var(--gold); background: #f5ede0; transform: translateY(-2px); }
.cat-card.active { background: var(--dark); border-color: var(--gold); }
.cat-card.active .cat-label { color: var(--cream); }
.cat-card.active .cat-count { background: var(--gold); color: var(--dark); }
.cat-emoji { font-size: 1.5rem; }
.cat-label { font-size: 0.78rem; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.cat-count {
  font-size: 0.7rem;
  background: var(--cream2);
  border: 1px solid var(--border);
  padding: 2px 10px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 600;
}

/* ── PRODUCTS SECTION ── */
.products-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 50px 40px 80px;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
  gap: 16px;
  flex-wrap: wrap;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: #2c3d19;
  letter-spacing: 0.5px;
}
.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-top: 8px;
}
.section-controls { display: flex; align-items: center; gap: 16px; }
.results-txt { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.5px; }
.section-controls select {
  padding: 9px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  color: var(--text);
  background: var(--white);
  cursor: pointer;
  outline: none;
}
.section-controls select:focus { border-color: var(--gold); }

/* ── GRID ── */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

/* ── PRODUCT CARD ── */
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
  animation: fadeUp 0.5s ease both;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  border-color: var(--gold);
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(22px); }
  to   { opacity:1; transform:translateY(0); }
}

.card-img {
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-icon { font-size: 5rem; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4)); }

.cat-pill {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(0,0,0,0.5);
  color: var(--gold3);
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(201,168,76,0.3);
}
.discount-pill {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}
.stock-pill {
  position: absolute;
  bottom: 12px; right: 12px;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}
.stock-pill.low { background: #fff3cd; color: #856404; }
.stock-pill.out { background: #f8d7da; color: #721c24; }

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.card-brand {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold2);
  font-weight: 600;
}
.card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
}
.card-stars { display: flex; align-items: center; gap: 4px; }
.star { font-size: 0.82rem; }
.star.full  { color: var(--gold); }
.star.half  { color: var(--gold); opacity: 0.6; }
.star.empty { color: #ddd; }
.rating-num   { font-size: 0.8rem; font-weight: 600; color: var(--text); }
.review-count { font-size: 0.72rem; color: var(--muted); }

.card-price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 4px;
}
.price {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  font-family: 'Cormorant Garamond', serif;
}
.price-orig {
  font-size: 0.78rem;
  color: #bbb;
  text-decoration: line-through;
}
.stock-label {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
}
.stock-label.in  { background: #e8f5e9; color: #2e7d32; }
.stock-label.low { background: #fff8e1; color: #f57f17; }
.stock-label.out { background: #fce4ec; color: #c62828; }

.add-btn {
  margin-top: 8px;
  width: 100%;
  padding: 12px;
  background: #2c3d19;
  color: var(--gold3);
  border: 1px solid var(--dark4);
  border-radius: 4px;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.add-btn:hover   { background: var(--gold); color: #2c3d19; border-color: var(--gold); }
.add-btn.added   { background: #2e7d32; color: #fff; border-color: #2e7d32; }
.add-btn.sold-out { background: #eee; color: #bbb; cursor: not-allowed; border-color: #ddd; }

/* ── SKELETON ── */
.skeleton {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.skel-img {
  height: 200px;
  background: linear-gradient(90deg, var(--cream2) 25%, var(--cream) 50%, var(--cream2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}
.skel-body { padding: 18px; display: flex; flex-direction: column; gap: 8px; }
.skel-line {
  border-radius: 4px;
  background: linear-gradient(90deg, var(--cream2) 25%, var(--cream) 50%, var(--cream2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── NO DATA ── */
.no-data {
  grid-column: 1/-1;
  text-align: center;
  padding: 80px 20px;
  color: var(--muted);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
}

/* ABOUT CARD CSS */

/* =============================================
       CTA BANNER
    ============================================= */
.cta-banner {
    background: #fff;
    padding: 70px 0;
}

.cta-banner h2 {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 4vw, 48px);
    color: #2c3d19;
    margin-bottom: 25px;
}

.cta-banner p {
    width: 80%;          /* Left aur Right equal gap */
    max-width: 1200px;   /* Optional */
    margin: 0 auto;      /* Center container */
    text-align: center;    /* Text left se start hoga */
    line-height: 1.8;
    font-size: 17px;
    color: #2c3d19;
}

.cta-banner-btn {
  background: #fff;
  color: var(--gold);
  border: none;
  padding: 14px 36px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.cta-banner-btn:hover {
  background: var(--cream);
  transform: translateY(-1px);
}


/* ── FOOTER ── */
.footer {
  background: #2c3d19;
  color: var(--cream2);
  padding: 60px 80px 30px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  border-top: 1px solid var(--gold2);
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--gold3);
  margin-bottom: 14px;
  letter-spacing: 1px;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--gold);
  line-height: 1.8;
  font-weight: 300;
  max-width: 300px;
}
.footer-cats h4,
.footer-info h4 {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-cats a,
.footer-info a {
  display: block;
  font-size: 0.85rem;
  color: #C9A84C;
  margin-bottom: 10px;
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-cats a:hover,
.footer-info a:hover { color: #7a7060; }
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.social-icons a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--gold2);
  color: var(--gold3);
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-icons a:hover {
  background: var(--gold3);
  color: var(--dark);
  transform: translateY(-4px);
}
.social-icons svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.footer-bottom {
  grid-column: 1/-1;
  border-top: 1px solid #C9A84C;
  padding-top: 24px;
  text-align: center;
  font-size: 0.78rem;
  color:  var(--gold);
  letter-spacing: 1px;
}

/* ── PRODUCT IMAGE ── */
.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ══════════════════════════════════
   RESPONSIVE — NAVBAR ONLY
   ══════════════════════════════════ */

/* Show hamburger, hide desktop nav on mobile */
@media (max-width: 768px) {
  .navbar {
    padding: 0 16px;
    height: 64px;
  }

  /* hide desktop nav links and search */
  .nav-left { display: none; }
  .nav-right .nav-search-wrap { display: none; }

  /* show hamburger */
  .hamburger { display: flex; }

  /* brand smaller */
  .brand-name { font-size: 1.35rem; }
}

/* ══════════════════════════════════
   RESPONSIVE — REST OF PAGE
   ══════════════════════════════════ */
@media (max-width: 768px) {
  html, body { overflow-x: hidden; width: 100%; }

  .hero { padding: 30px 16px; flex-direction: column; min-height: auto; text-align: center; }
  .hero-visual { display: none; }
  .hero-desc { max-width: 100%; }

  .cat-section { padding: 20px 16px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-card { min-width: 0; width: 100%; }

  .products-section { padding: 30px 16px 60px; }
  .grid { grid-template-columns: 1fr 1fr; gap: 14px; }

  .section-controls { flex-direction: column; width: 100%; }
  .section-controls select { width: 100%; }

  .footer { padding: 40px 20px; grid-template-columns: 1fr; text-align: center; }
  .social-icons { justify-content: center; }
  .footer-brand p { max-width: 100%; }
}

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

/* become partner */
.partner-black,
.partner-gold {
  color: inherit;
  font-weight: inherit;
}

.footer-cats a:hover .partner-black,
.footer-cats a:hover .partner-gold {
  color: inherit;
}
.partner-gold{
  color:#c9a84c ;
}

.partner-black{
color: #2c3d19;
}

/* top bar menu css  */
@media (max-width: 768px) {

  .topbar {
    overflow: hidden;
    white-space: nowrap;
    display: block;
  }

  .topbar span {
    display: inline-block;
    animation: topSlide 12s linear infinite;
    margin-right: 30px;
  }

  .topbar span:nth-child(1),
  .topbar span:nth-child(2),
  .topbar span:nth-child(3) {
    animation-delay: 0s;
  }

}

@keyframes topSlide {

  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }

}
/* logo pe click krny sy home page pe jaye ga  */
.logo-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}