/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
      font-family: 'Montserrat','Helvetica Neue','Poppins', Helvetica, Arial, sans-serif;
      background:#f7f7f7;
      color:#333;

  /* font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; */
  font-size: 16px;
  /* color: #1a1a1a; */
  /* background: #fff; */
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 0;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  cursor: pointer;
}

.btn-primary {
  background: #1a1a1a;
  color: #fff;
  border: 2px solid #1a1a1a;
}

.btn-primary:hover {
  background: #333;
  border-color: #333;
}

.btn-outline {
  background: transparent;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
}

.btn-outline:hover {
  background: #1a1a1a;
  color: #fff;
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 80px 40px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: 0.5px;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.main-nav {
  display: flex;
  gap: 28px;
  flex: 1;
}

.main-nav a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #1a1a1a;
  transition: color 0.2s;
}

.main-nav a:hover {
  color: #888;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.search-wrap {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 20px;
  overflow: hidden;
  padding: 4px 12px;
  gap: 6px;
}

.search-input {
  border: none;
  outline: none;
  font-size: 13px;
  width: 140px;
  background: transparent;
}

.search-btn {
  display: flex;
  align-items: center;
  color: #555;
  padding: 0;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #1a1a1a;
  transition: color 0.2s;
  position: relative;
}

.icon-btn:hover {
  color: #888;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #1a1a1a;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-btn {
  display: none;
  font-size: 22px;
  color: #1a1a1a;
  margin-left: auto;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid #e8e8e8;
  padding: 16px 40px;
  gap: 16px;
}

.mobile-nav a {
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
}

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

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 90vh;
  min-height: 500px;
  background-image: url('https://static.wixstatic.com/media/88aac0_03ae3e1fac2a467ba8abb5badb397da1_mv2.jpeg/v1/fill/w_1920,h_1080,al_c,q_85/88aac0_03ae3e1fac2a467ba8abb5badb397da1_mv2.jpeg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.38); */
}

/* Hero fade-up animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  /* color: #fff; */
}

.hero-content h1 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 32px;
  line-height: 1.1;
  /* animate in: starts hidden, slides up */
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

.hero-content .btn-primary {
  background: #fff;
  color: #1a1a1a;
  border-color: #fff;
  font-size: 13px;
  /* animate in after the heading */
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.65s forwards;
}

/* .hero-content .btn-primary:hover {
  background: transparent;
  color: #fff;
} */

/* ===== MARQUEE ===== */
.marquee-strip {
  background: #1a1a1a;
  color: #fff;
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 40px;
  animation: marquee 18s linear infinite;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

/* ===== SCROLL ARROW ===== */
@keyframes bounceUpDown {
  0%, 100% { transform: translateY(0); }
  40%       { transform: translateY(10px); }
  60%       { transform: translateY(5px); }
}

.scroll-arrow-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px 0;
  background: #fafafa;
}

.scroll-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  background: none;
  border: none;
  text-decoration: none;
  animation: bounceUpDown 1.6s ease-in-out infinite;
  transition: color 0.2s, transform 0.2s;
}

.scroll-arrow:hover {
  color: #555;
  animation-play-state: paused;
  transform: translateY(6px);
}

.scroll-arrow svg {
  width: 36px;
  height: 36px;
}

/* ===== PRODUCT SLIDER ===== */
.product-slider-section {
  background: #fafafa;
}

.slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1280px;
  margin: 0 auto;
}

.slider-track {
  display: flex;
  gap: 24px;
  overflow: hidden;
  scroll-behavior: smooth;
  flex: 1;
}

.slider-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  transition: background 0.2s, color 0.2s;
  z-index: 2;
}

.slider-arrow:hover {
  background: #1a1a1a;
  color: #fff;
}

/* ===== PRODUCT CARD ===== */
.product-card {
  flex: 0 0 calc(25% - 18px);
  min-width: 220px;
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #f0f0f0;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.85);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.product-card:hover .quick-add {
  transform: translateY(0);
}

.product-info {
  padding: 12px 0 4px;
}

.product-name {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}

.product-price {
  font-size: 14px;
  color: #555;
}

/* ===== OUR STORY ===== */
.our-story {
  background: #fff;
}

.our-story-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.our-story-text h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.our-story-text p {
  font-size: 15px;
  color: #555;
  margin-bottom: 32px;
  line-height: 1.8;
}

.our-story-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* ===== LIMITED OFFER ===== */
.limited-offer {
  background: #f5f5f5;
}

.limited-offer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}

.category-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 12px;
}

.limited-offer-text h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
}

.limited-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 28px;
  line-height: 1.7;
}

.limited-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ===== GALLERY ===== */
.gallery-section {
  background: #fff;
}

.gallery-slideshow {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1280px;
  margin: 0 auto;
}

.gallery-track {
  display: flex;
  gap: 16px;
  overflow: hidden;
  flex: 1;
}

.gallery-track img {
  flex: 0 0 calc(33.333% - 11px);
  height: 320px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-track img:hover {
  transform: scale(1.02);
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.gallery-dot.active {
  background: #1a1a1a;
}

/* ===== FAQ ===== */
.faq-section {
  background: #fafafa;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.faq-question:hover {
  color: #555;
}

.faq-icon {
  font-size: 22px;
  font-weight: 300;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer.open {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #1a1a1a;
  color: #ccc;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 40px 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.5fr;
  gap: 60px;
}

.footer-logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 6px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: #ccc;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #fff;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.newsletter-form input {
  padding: 10px 14px;
  font-size: 13px;
  border: 1px solid #444;
  background: #2a2a2a;
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-form input::placeholder {
  color: #888;
}

.newsletter-form input:focus {
  border-color: #888;
}

.newsletter-form .btn-primary {
  background: #fff;
  color: #1a1a1a;
  border-color: #fff;
  font-size: 12px;
  padding: 10px 24px;
  align-self: flex-start;
}

.newsletter-form .btn-primary:hover {
  background: #ddd;
  border-color: #ddd;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding: 20px 40px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 12px;
  color: #888;
}

.footer-bottom a {
  color: #888;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .product-card {
    flex: 0 0 calc(33.333% - 16px);
  }

  .our-story-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .our-story-img img {
    height: 360px;
  }

  .limited-offer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 20px;
  }

  .header-inner {
    padding: 0 20px;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-nav {
    padding: 16px 20px;
  }

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

  .product-card {
    flex: 0 0 calc(50% - 12px);
  }

  .gallery-track img {
    flex: 0 0 calc(50% - 8px);
    height: 220px;
  }

  .limited-offer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 20px 24px;
  }

  .footer-bottom {
    padding: 16px 20px;
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .product-card {
    flex: 0 0 calc(100% - 0px);
  }

  .gallery-track img {
    flex: 0 0 100%;
  }

  .limited-offer-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 24px;
  }
}
/* ===== IMAGE ZOOM EFFECT ===== */
.zoom-container {
  overflow: hidden;
}

.zoom-image {
  width: 100%;
  transition: transform 0.5s ease-out;
  transform: scale(1);
}
    .details-hero {
      padding: 80px 40px;
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }
    .details-img img {
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
    }
    .details-info {
      padding-top: 20px;
    }
    .details-info h1 {
      font-size: 28px;
      font-weight: 800;
      margin-bottom: 12px;
    }
    .details-info .price {
      font-size: 22px;
      color: #555;
      margin-bottom: 24px;
    }
    .details-info p {
      font-size: 15px;
      color: #666;
      line-height: 1.8;
      margin-bottom: 32px;
    }
    .back-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      font-weight: 600;
      color: #1a1a1a;
      text-decoration: none;
      margin: 24px 40px;
      letter-spacing: 0.5px;
    }
    .back-link:hover { color: #888; }
    @media (max-width: 768px) {
      .details-hero {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 32px;
      }
      .back-link { margin: 20px; }
    }
