:root {
  --primary-brown: #6b2e14;
  --light-bg: #f7f5f2;
  --text-dark: #1a1a1a;
}

html, body {
  overflow-x: hidden;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  
}

.top-bar {
  background: #6b2e14; /* brand brown */
  color: white;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  font-size: 14px;
  position: relative;
}

.top-bar-track {
  display: flex;
  width: max-content;
  animation: topBarScroll 20s linear infinite;
}

.top-bar-track span {
  padding-right: 50px;
}

/* Animation */
@keyframes topBarScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* Pause on hover */
.top-bar:hover .top-bar-track {
  animation-play-state: paused;
}


.close-top-bar {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 16px;
  color: white;
  z-index: 10;
  transition: color 0.3s ease;
}

.close-top-bar:hover {
  color: #ddd;
}

.currency-bar {
  background: #ffffff;
  border-bottom: 1px solid #eee;
  padding: 10px 80px;
  display: flex;
  justify-content: flex-end; /* pushes content to the right */
  align-items: center;
  font-size: 14px;
}

.currency-symbol {
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.currency-symbol:hover {
  color: #6b2e14; /* brand brown */
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 80px;
  background: white;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: black;
  font-weight: 500;
}

.icons {
  display: flex;
  gap: 20px;
  font-size: 18px;
}

.profile-menu {
  position: relative;
  cursor: pointer;
}

.profile-icon {
  font-size: 20px;
}



.profile-menu {
  position: relative;
  cursor: pointer;
}

/* Dropdown hidden by default */
.profile-dropdown {
  position: absolute;
  top: 100%;   /* places it directly below the icon */
  right: 0;
  background: #fff;
  width: 200px;
  flex-direction: column;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  padding: 10px 0;
  display: none;  /* hidden initially */
  z-index: 10000; /* very high to be on top */
}

/* Links inside dropdown */
.profile-dropdown a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
}

.profile-dropdown a:hover {
  background: #f5f5f5;
}

/* Show dropdown when .active is added */
.profile-dropdown.active {
  display: flex;
}

/* Show dropdown on hover */
.profile-menu:hover .profile-dropdown {
  display: flex;
}


/* Sticky Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  padding: 20px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
}

/* Right section */
.right-section {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* Search box */
.search-box {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  padding: 8px 15px;
  border-radius: 4px;
}

.search-box input {
  border: none;
  background: transparent;
  outline: none;
  width: 180px;
  font-size: 14px;
}

.search-box i {
  font-size: 14px;
  color: #555;
}

/* Icon badge */
.icon-badge {
  position: relative;
}

.icon-badge span {
  position: absolute;
  top: -6px;
  right: -8px;
  background: black;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 50%;
}

.icons {
  display: flex;
  gap: 22px;
  align-items: center;
}

.icon-badge i {
  font-size: 18px;
  cursor: pointer;
}
/* Hero */
.hero {
  height: 85vh;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-slider {
  display: flex;
  width: 200%;
  height: 100%;
  transition: transform 1.5s ease-in-out;
}

.hero-slide {
  position: relative;
  width: 100vw;
  height: 85vh;
  flex-shrink: 0;
}

/* Video */
.slide-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark overlay */
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

/* Text */
.hero-content {
  position: absolute;
  left: 50%;
  bottom: 80px;     /* distance from bottom */
  left: 60px;       /* distance from left */
  transform: none;  /* remove centering */
  color: white;
  text-align: left;
  z-index: 1;
   opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}


/* Animate IN only */
.hero-slide.active .hero-content {
  opacity: 1;
  transform: translateY(0);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 50px;
  margin-bottom: 20px;
}

/* Button */
.btn-primary {
  background: var(--primary-brown);
  color: white;
  padding: 12px 30px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #4e1f0d;
}

/* ===============================
   TABLET RESPONSIVE
================================ */
@media (max-width: 1024px) {
  .hero {
    height: 80vh;
  }

  .hero-slide {
    height: 80vh;
  }

  .hero-content {
    bottom: 40px;
    left: 40px;
    max-width: 360px;
  }

  .hero-content h1 {
    font-size: 38px;
  }
}

/* ===============================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 768px) {
  .hero,
  .hero-slide {
    height: 55vh; /* instead of 70vh */
  }

  .slide-video {
    object-fit: cover; /* ensures nice crop */
  }
}

/* ===============================
   SMALL MOBILE
================================ */
@media (max-width: 480px) {
   .hero,
  .hero-slide {
    height: 55vh; /* instead of 70vh */
  }

  .slide-video {
    object-fit: cover; /* ensures nice crop */
  }
  .hero-content h1 {
    font-size: 24px;
  }
}


.dual-banner {
  position: relative;
  padding: 120px 80px;
  display: flex;
  gap: 60px;
  background: #fff;
}

/* Banner card */
.banner-card {
  position: relative;
  flex: 1;
  height: 380px;
  overflow: hidden;
}

.banner-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}


/* Overlay content */
.banner-content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  color: white;
}

.banner-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 15px;
}

/* Button */
.banner-btn {
  display: inline-block;
  padding: 10px 26px;
  background: #fff;
  color: #222;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.banner-btn:hover {
  background: #6b2e14;
  color: white;
}

/* Hover zoom */
.banner-card:hover img {
  transform: scale(1.05);
}


.banner-card img {
  transition: transform 0.6s ease;
}

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

.banner-card:hover::after {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.25)
  );
}


@media (max-width: 768px) {
  .dual-banner {
    flex-direction: column;
     padding: 40px 15px;
  }
 
  .banner-card {
    width: 100%;
  }


  .banner-left,
  .banner-right {
    margin: 0;
  }


   .banner-card img {
    height: 300px;
    object-fit: cover;
  }
}


@media (max-width: 768px) {
  .currency-bar {
    padding: 10px 15px;
  }
}


/* Categories */
.categories {
  background: var(--light-bg);
  padding: 80px;
  text-align: center;
}


.categories h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 50px;
}

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

@media (max-width:768px){
    .categories {
    padding: 40px 15px;
  }

  

}

@media (max-width: 768px) {
  .category-grid {
    display: flex;              /* switch from grid → flex */
    gap: 15px;
    overflow-x: auto;           /* enable horizontal scroll */
    padding-bottom: 10px;

    scroll-snap-type: x mandatory; /* smooth snapping */
  }

  .category-card {
    flex: 0 0 auto;             /* prevent shrinking */
    width: 120px;               /* fixed width */
    text-align: center;

    scroll-snap-align: start;
  }
}

.category-card img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  transition: 0.3s ease;
}

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

.category-card h4 {
  margin-top: 15px;
}

/* Products */
.new-arrivals {
  padding: 80px;
}

.new-arrivals h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 40px;
}

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



.product-card h5 {
  margin-top: 10px;
}

.price {
  color: var(--primary-brown);
  font-weight: 600;
}

.product-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
   transition: transform 0.3s ease;
}

.product-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}


.product-card:hover {
  transform: translateY(-6px);
}
/* Overlay */
.product-card::after {
  content: "Quick View";
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  background: white;
  text-align: center;
  padding: 12px;
  font-weight: 500;
  transition: 0.3s ease;
}

.product-card:hover::after {
  bottom: 0;
}
/* Our Story */
.our-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px;
  background: var(--light-bg);
}

.story-text h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}

.story-text p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.story-image img {
  width: 100%;
}

/* Footer */
.footer {
  padding: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer h4 {
  margin-bottom: 10px;
}

.footer input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
}

/* Responsive */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .our-story {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 15px; /* reduce from 80px */
  }

  .logo {
    font-size: 16px;
  }

  .right-section {
    gap: 8px;
  }

  .icons {
    gap: 10px;
  }

  .icon-badge i {
    font-size: 16px;
  }

  .category-grid {
    flex-direction: column;
    align-items: center;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
}

a{
  text-decoration: none;
  color:#fff;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: #222;
}

/* Mobile Menu */
@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: white;
    flex-direction: column;
    padding: 100px 40px;
    gap: 30px;
    transition: 0.4s ease;
  }

  .nav-links.active {
    right: 0;
  }
}


.add-to-cart {
  margin-top: 10px;
  width: 100%;
  padding: 10px;
  background: transparent;
  border: 1px solid #222;
  cursor: pointer;
  transition: 0.3s ease;
}

.add-to-cart:hover {
  background: #222;
  color: white;
}

@keyframes cartBounce {
  0% { transform: scale(1); }
  30% { transform: scale(1.2); }
  60% { transform: scale(0.95); }
  100% { transform: scale(1); }
}

.cart-animate {
  animation: cartBounce 0.4s ease;
}

.fav-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.fav-btn i {
  color: #999;
  transition: 0.3s ease;
}

.fav-btn.active i {
  color: #6b2e14; /* brand brown */
}

.google-login {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.google-login .g_id_signin {
  width: 100% !important;
  max-width: 100%;
}



/* Hide mobile nav by default */
.mobile-only {
  display: none;
}

/* Hide desktop nav on mobile */
@media (max-width: 768px) {

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: flex;
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    flex-direction: column;
    padding: 100px 30px;
    gap: 25px;
    background: white;
    transition: right 0.4s ease;
    z-index: 999;
  }

  .mobile-only.active {
    right: 0;
  }

  /* Hamburger styling */
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .hamburger span {
    width: 22px;
    height: 2px;
    background: #222;
  }

  /* Mobile icons on top right */
  .right-section {
    display: flex;
    gap: 15px;
    align-items: center;
  }

  .search-box, .icons {
    display: flex;
  }
}


.mobile-only {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: white;
  transition: right 0.4s ease;
  z-index: 999;
}

.mobile-only.active {
  right: 0;
}

/* CLOSE ICON */
.menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  z-index: 1000;
}

@media (max-width: 768px) {
  .mobile-only {
    overflow-y: auto;
    padding: 80px 20px 40px;
  }

  .mobile-only a {
    font-size: 14px;
  }
}


.header,
.right-section,
.icons {
  min-width: 0;
}

.right-section {
  flex-shrink: 1;
}

.icons,
.hamburger {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .logo {
    flex: 1;
    min-width: 0;
    font-size: 16px;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}


@media (max-width: 768px) {
.search-box{
display:none;
}
}



@media (max-width: 480px) {
  .footer {
    padding: 30px 10px;
    gap: 20px;
  }

  .footer h3, .footer h4 {
    font-size: 14px;
  }

  .footer input {
    padding: 8px;
  }
}