:root {
  /* ========== BACKGROUNDS ========== */
  --bg-page: #FAFAFA;
  --bg-surface: #FFFFFF;
  --bg-elevated: #F5F5F5;
  --bg-overlay: rgba(255,255,255,0.85);

  /* ========== TEXT ========== */
  --text-primary: #111111;
  --text-secondary: #6B6B6B;
  --text-muted: #9A9A9A;
  --text-inverse: #FFFFFF;

  /* ========== ACCENTS ========== */
  --accent-main: #111111;
  --accent-contrast: #FFFFFF;
  --accent-gold: #C9A24D;

  /* ========== BORDERS ========== */
  --border-subtle: #E6E6E6;
  --border-strong: #111111;

  /* ========== SHADOWS ========== */
  --shadow-soft: 0 10px 40px rgba(0,0,0,0.08);
  --shadow-hover: 0 28px 70px rgba(0,0,0,0.18);  /* HERO SPECIFIC */
  --hero-bg-start: #0B0B0B;
  --hero-bg-end: #141414;

  --hero-heading: #F5F5F5;
  --hero-text: #B5B5B5;

  --hero-btn-bg-start: #FFFFFF;
  --hero-btn-bg-end: #EDEDED;
  --hero-btn-text: #0B0B0B;
   /* TRENDING */
  --section-bg: var(--bg-page);
  --section-heading: var(--text-primary);
  --section-subtext: var(--text-secondary);

  /* CATEGORY BAR */
  --category-bg: var(--bg-surface);
  --category-border: var(--border-subtle);

  --category-text: var(--text-secondary);
  --category-text-hover: var(--text-primary);
  --category-hover-bg: rgba(0,0,0,0.04);
  --category-active-bg: var(--accent-main);
  --category-active-text: var(--accent-contrast);
  --category-indicator: var(--accent-main);
 /* PRODUCT CARD */
  --product-bg: var(--bg-surface);
  --product-text: var(--text-primary);
  --product-muted: var(--text-muted);

  --product-img-bg-start: #F2F2F2;
  --product-img-bg-mid: #FAFAFA;

  --wishlist-bg: var(--bg-overlay);
  --wishlist-text: var(--text-primary);
  --wishlist-bg-hover: var(--accent-main);
  --wishlist-text-hover: var(--accent-contrast);

  --quickview-overlay: rgba(0,0,0,0.88);
  
  --text-primary: #111111;
  --text-secondary: #6b6b6b;

  
  --hover-bg: rgba(0,0,0,0.05);

  --active-bg: #111111;
  --active-text: #ffffff;

 
 

  --offcanvas-bg: #ffffff;
  
  }
/* Smooth scroll already enabled */
html {
  scroll-behavior: smooth;
}

/* OFFSET FOR STICKY NAVBAR + HERO */
#productsSection {
  scroll-margin-top: 80px; /* adjust to your navbar height */
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg-page: #0B0B0B;
    --bg-surface: #141414;
    --bg-elevated: #1C1C1C;
    --bg-overlay: rgba(20,20,20,0.85);

    --text-primary: #F5F5F5;
    --text-secondary: #B5B5B5;
    --text-muted: #8A8A8A;
    --text-inverse: #0B0B0B;

    --accent-main: #FFFFFF;
    --accent-contrast: #0B0B0B;

    --border-subtle: rgba(255,255,255,0.12);
    --border-strong: #FFFFFF;

    --shadow-soft: 0 18px 55px rgba(0,0,0,0.9);
    --shadow-hover: 0 30px 85px rgba(0,0,0,1);
     --hero-bg-start: #000000;
    --hero-bg-end: #141414;

    --hero-heading: #FFFFFF;
    --hero-text: #B5B5B5;

    --hero-btn-bg-start: #FFFFFF;
    --hero-btn-bg-end: #EDEDED;
    --hero-btn-text: #0B0B0B;
     --category-hover-bg: rgba(255,255,255,0.08);
   --product-img-bg-start: #1C1C1C;
    --product-img-bg-mid: #2A2A2A;

    --quickview-overlay: rgba(0,0,0,0.95);
      --nav-bg: #0b0b0b;
    --nav-border: rgba(255,255,255,0.12);

    --text-primary: #ffffff;
    --text-secondary: #b5b5b5;

    --icon-color: #ffffff;
    --hover-bg: rgba(255,255,255,0.08);

    --active-bg: #ffffff;
    --active-text: #0b0b0b;

    --topbar-bg: #000000;
    --topbar-text: #ffffff;

    --offcanvas-bg: #141414;
  }
}

/* ================= GLOBAL ================= */
body {
  background: var(--bg-page);
  color: var(--text-primary);
}
/* ================= HERO BASE ================= */
.hero {
  min-height: 100vh;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  background: var(--bg-page);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 100vh;
}
/* ================= IMAGE ================= */
.hero-images {
  position: relative;
  overflow: hidden;
}

/* EACH SLIDE */
.hero-slide {
  position: absolute;
  inset: 0;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  opacity: 0;
  transform: scale(1.08);
  animation: heroSlide 12s infinite ease-in-out;
}

/* IMAGE 1 */
.hero-slide.slide-1 {
  background-image: url('/images/homeimg1.png');
  animation-delay: 0s;
}

/* IMAGE 2 */
.hero-slide.slide-2 {
  background-image: url('/images/homeimg2.png');
  animation-delay: 6s;
}

/* DARK OVERLAY */
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.15)
  );
}

/* ================= SLIDE ANIMATION ================= */
@keyframes heroSlide {
  0% {
    opacity: 0;
    transform: scale(1.08);
  }
  10% {
    opacity: 1;
    transform: scale(1);
  }
  45% {
    opacity: 1;
  }
  55% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}


/* ================= CONTENT ================= */
.hero-content {
  background: linear-gradient(
    135deg,
    var(--hero-bg-start),
    var(--hero-bg-end)
  );
  color: var(--hero-text);

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 5rem 4rem;
  box-shadow: var(--shadow-soft);
  animation: contentSlide 1s ease-out forwards;
}

/* ================= HEADING ================= */
.hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--hero-heading);

  opacity: 0;
  transform: translateY(30px);
  animation: textFadeUp 0.8s ease forwards;
  animation-delay: 0.3s;
}

/* ================= PARAGRAPH ================= */
.hero-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-style: italic;            /* 👈 italic */
  font-weight: 400;

  line-height: 1.75;
  margin: 1.2rem 0 2.2rem;
  color: #B5B5B5;

  max-width: 520px;

  opacity: 0;
  transform: translateY(30px);
  animation: textFadeUp 0.8s ease forwards;
  animation-delay: 0.5s;
}


/* ================= BUTTON ================= */
.hero-content .btn {
  align-self: flex-start;

  background: linear-gradient(
    135deg,
    var(--hero-btn-bg-start),
    var(--hero-btn-bg-end)
  );
  color: var(--hero-btn-text);

  padding: 0.9rem 2.6rem;
  border-radius: 14px;
  text-decoration: none;

  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  box-shadow: 0 15px 35px rgba(0,0,0,0.35);

  opacity: 0;
  transform: translateY(30px);
  animation: textFadeUp 0.8s ease forwards;
  animation-delay: 0.7s;

  transition: all 0.35s ease;
}

.hero-content h1 span {
  color: #C9A24D; /* gold only on 1 word */
}

.hero-content .btn:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: var(--shadow-hover);
}

/* ================= ANIMATIONS ================= */
@keyframes imageReveal {
  from {
    opacity: 0;
    transform: scale(1.12);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes contentSlide {
  from {
    opacity: 0;
    transform: translateX(32px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes textFadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ================= RESPONSIVE ================= */
/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-images {
    min-height: 55vh;
  }

  .hero-content {
    padding: 3.5rem 2.2rem;
    text-align: center;
  }

  .hero-content .btn {
    align-self: center;
  }
}
/* ================= TYPEWRITER ================= */
/* ================= TAGLINE ================= */
.hero-content .tagline {
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.75;
  max-width: 520px;
  margin: 1.2rem 0 2.2rem;
  color: var(--hero-text);

  opacity: 0;
  transform: translateY(18px);
  animation: taglineFade 0.8s ease forwards;
  animation-delay: 0.5s;
}

/* subtle entrance, not cringe */
@keyframes taglineFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.trending-section {
  background: var(--section-bg);
}

/* Title */
.trending-section h2 {
  color: var(--section-heading);
}

.trending-subtitle {
  color: var(--section-subtext);
}

/* CATEGORY BAR */
/* ================= CATEGORY BAR ================= */
.category-bar {
  position: sticky;
  top: 0;
  z-index: 20;

  background: var(--category-bg) !important;
  border-bottom: 1px solid var(--category-border) !important;
  padding: 14px 0;
}

.category-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;

  scrollbar-width: none;
}

.category-scroll::-webkit-scrollbar {
  display: none;
}

.category-btn {
  position: relative;

  border: none !important;
  background: transparent !important;

  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 999px;

 
  color: var(--category-text)!important;
  cursor: pointer;

  transition:
    color 0.3s ease,
    background 0.3s ease;
}

.category-btn:hover {
   color: var(--category-text-hover) !important;
  background: var(--category-hover-bg) ;
}

.category-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;

  width: 0;
  height: 2px;
background: var(--category-active-bg) ;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.category-btn:hover::after {
  width: 60%;
}

.category-btn.active {
 background: var(--category-active-bg) ;
  color: var(--category-active-text) ;     /* deep black */
pointer-events: none;
  font-weight: 500;
}

.category-btn.active::after {
  width: 100%;
}

.product-box {
  position: relative;
  background: var(--product-bg);
  color: var(--product-text);
  border-radius: 22px;
  overflow: hidden;

  box-shadow:
    0 12px 30px rgba(0,0,0,0.08),
    0 4px 10px rgba(0,0,0,0.04);

  transition:
    transform 0.5s cubic-bezier(.2,.8,.2,1),
    box-shadow 0.5s cubic-bezier(.2,.8,.2,1);
}

.product-box:hover {
  transform: translateY(-8px);
  box-shadow:
    0 28px 70px rgba(0,0,0,0.18),
    0 10px 24px rgba(0,0,0,0.08);
}


/* IMAGE */
.product-img-wrapper {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
 background: linear-gradient(
    110deg,
    var(--product-img-bg-start) 10%,
    var(--product-img-bg-mid) 18%,
    var(--product-img-bg-start) 30%
  );
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite linear;
}


.product-img {
 background: var(--product-bg);
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition:
    opacity 0.55s ease,
    transform 0.7s cubic-bezier(.2,.8,.2,1);
}

@keyframes shimmer {
  to {
    background-position-x: -200%;
  }
}
/* FRONT IMAGE */
.product-img.front {
  opacity: 1;
  transform: scale(1);
}

.product-img.back {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
}


/* HOVER EFFECT */
.product-box:hover .product-img.front {
  opacity: 0;
  transform: scale(1.02);
}

.product-box:hover .product-img.back {
  opacity: 1;
  transform: scale(1.06);
}

.wishlist-icon {
  position: absolute;
  top: 16px;
  right: 16px;

  width: 36px;
  height: 36px;
  border-radius: 50%;
 background: var(--wishlist-bg);
  color: var(--wishlist-text);
  backdrop-filter: blur(8px);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 15px;
  color: #111;

  cursor: pointer;

  box-shadow:
    0 8px 18px rgba(0,0,0,0.16);

  transition:
    transform .35s cubic-bezier(.2,.8,.2,1),
    background .35s ease,
    box-shadow .35s ease;
}

.wishlist-icon:hover {
  transform: scale(1.12);
  background: var(--wishlist-bg-hover);
  color: var(--wishlist-text-hover);
  box-shadow:
    0 14px 30px rgba(0,0,0,0.25);
}
.wishlist-icon.active {
  background: var(--wishlist-bg-hover);
  color: var(--wishlist-text-hover);
}
.wishlist-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
}


/* INFO */


/* QUICK VIEW */
.quick-view {
  position: absolute;
  inset: auto 0 0 0;
  height: 100%;
 background: linear-gradient(
    180deg,
    rgba(0,0,0,0.0),
    var(--quickview-overlay)
  );

  display: flex;
  align-items: flex-end;
  justify-content: center;

  padding-bottom: 22px;

  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
}

.product-box:hover .quick-view {
  transform: translateY(0);
}


.quick-view a {
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;

  padding: 10px 22px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 999px;

  transition:
    background 0.35s ease,
    color 0.35s ease;
}
.quick-view a:hover {
  background: #FFFFFF;
  color: #111111;
}


/* ================= FOOTER – PREMIUM BLACK ================= */
.footer {
  background: #0B0B0B;
  color: #D1D5DB;
  padding: 72px 20px 32px;
  font-family: 'Inter', sans-serif;
}

/* ================= MAIN ROW ================= */
.footer-container {
  max-width: 1280px;
  margin: auto;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 64px;
}

/* BRAND COLUMN */
.footer-brand {
  flex: 1.6;
}

/* OTHER COLUMNS */
.footer-col {
  flex: 1;
}

/* LOGO */
.footer-logo {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #FFFFFF;
  margin-bottom: 14px;
}

/* DESCRIPTION */
.footer-desc {
  font-size: 14px;
  line-height: 1.75;
  color: #9CA3AF;
  max-width: 340px;
}

/* HEADINGS */
.footer h4 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #FFFFFF;
}

/* LINKS */
.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: #9CA3AF;
  font-size: 14px;
  text-decoration: none;
  transition: color .25s ease;
}

.footer ul li a:hover {
  color: #FFFFFF;
}

/* ================= SOCIAL ================= */
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;

  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 15px;
  color: #FFFFFF;

  transition:
    background .25s ease,
    transform .25s cubic-bezier(.2,.8,.2,1);
}

.footer-social a:hover {
  background: #FFFFFF;
  color: #111111;
  transform: translateY(-3px);
}

/* ================= NEWSLETTER ================= */
.newsletter p {
  font-size: 14px;
  margin-bottom: 14px;
  color: #9CA3AF;
}

.newsletter form {
  display: flex;
  gap: 10px;
}

.newsletter input {
  flex: 1;
  padding: 10px 14px;

  border-radius: 999px;
  border: 1px solid #2A2A2A;
  outline: none;

  background: transparent;
  color: #FFFFFF;

  font-size: 14px;
}

.newsletter input::placeholder {
  color: #6B7280;
}

.newsletter button {
  background: #FFFFFF;
  color: #111111;

  border: none;
  border-radius: 999px;
  padding: 10px 20px;

  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;

  transition: background .25s ease;
}

.newsletter button:hover {
  background: #E5E7EB;
}

/* ================= BOTTOM BAR ================= */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 44px;
  padding-top: 22px;

  display: flex;
  justify-content: space-between;

  font-size: 13px;
  color: #9CA3AF;
}

.footer-credit {
  color: #6B7280;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .footer-container {
    flex-wrap: wrap;
  }

  .footer-col {
    flex: 1 1 45%;
  }
}

@media (max-width: 576px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer-col {
    width: 100%;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .newsletter form {
    flex-direction: column;
  }

  .newsletter button {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ================= MOBILE MENU – PREMIUM ================= */
.mobile-menu {
  width: 280px;
  background: #FFFFFF;
}

.mobile-menu .offcanvas-header {
  padding: 22px;
  border-bottom: 1px solid #E6E6E6;
}

/* LOGO */
.mobile-logo {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #111111;
}

/* MENU LIST */
.mobile-nav {
  list-style: none;
  padding: 12px 0;
  margin: 0;
}

/* MENU ITEMS */
.mobile-link {
  width: 100%;
  background: transparent;
  border: none;

  padding: 14px 22px;
  text-align: left;

  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;

  color: #111111;

  border-radius: 14px;
  position: relative;

  transition:
    background 0.25s ease,
    color 0.25s ease;
}

/* ACTIVE STATE */
.mobile-link.active {
  background: rgba(0,0,0,0.06);
  color: #111111;
  font-weight: 600;
}

/* LEFT INDICATOR */
.mobile-link.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;

  width: 3px;
  height: 60%;

  background: #111111;
  border-radius: 0 6px 6px 0;

  transform: translateY(-50%);
}

/* HOVER */
.mobile-link:hover {
  background: rgba(0,0,0,0.04);
}

/* CLOSE BUTTON */
.offcanvas .btn-close {
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.offcanvas .btn-close:hover {
  opacity: 1;
}

/* ================= MOBILE HERO IMAGE – CLEAN ================= */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
  }

  .hero-image {
    min-height: 60vh;

    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;

    transform: none;
    animation: none;

    background-color: #FAFAFA;
  }
}

