/* ===== VARIABLES ===== */
:root {
  --beige:    #ffffff;
  --beige-light: #F5ECD7;
  --brown:    #8B5E3C;
  --green:    #4a6741;
  --dark:     #2C1A0E;
  --cream:    #FDF6EC;
  --gold:     #C9A84C;
  --muted:    #8B7355;
  --white:    #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--beige);
  color: var(--dark);
  line-height: 1.6;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--beige);
  border-bottom: 1px solid rgba(139,94,60,0.15);
  padding: 0 2rem;
  height: 70px;
}

.nav-container {
  max-width: 1440px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo img { height: 32px; object-fit: contain; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.05em;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover,
.nav-links a.active { color: var(--green); }

.nav-explore {
  background: var(--dark);
  color: var(--cream);
  border: none;
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-explore:hover { background: var(--green); }

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--dark);
  cursor: pointer;
  z-index: 1100;
  position: relative;
  padding: 0.5rem;
}

/* ===== MOBILE MENU OVERLAY ===== */
.menu-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: var(--beige);
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

.menu-overlay.open { transform: translateX(0); }

.menu-content {
  padding: 2rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.menu-header img { height: 32px; }

.menu-close {
  background: none; border: none;
  font-size: 1.4rem;
  color: var(--dark);
  cursor: pointer;
}

.menu-links {
  list-style: none;
  flex: 1;
}

.menu-links li {
  border-bottom: 1px solid rgba(44,26,14,0.15);
}

.menu-links a {
  display: block;
  padding: 1.2rem 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
}

.menu-links a:hover { color: var(--green); }

.menu-socials {
  display: flex;
  gap: 1.5rem;
  margin: 2rem 0;
}

.menu-socials a {
  font-size: 1.5rem;
  color: var(--brown);
  transition: color 0.2s;
}

.menu-socials a:hover { color: var(--green); }

.btn-explore-menu {
  display: block;
  text-align: center;
  background: var(--brown);
  color: var(--cream);
  padding: 1rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding: 100px 4rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}

.hero-text { max-width: 520px; }

.hero-sub {
  font-size: 1.1rem;
  color: var(--brown);
  margin-bottom: 0.5rem;
  font-style: italic;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 380px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-dark {
  display: inline-block;
  background: var(--brown);
  color: var(--cream);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.btn-dark:hover { background: var(--dark); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--green); }

/* Hero Slider */
.hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  height: 480px;
}

.slider-track {
  display: flex;
  height: 100%;
  animation: autoScroll 12s linear infinite;
}

.slider-track:hover {
  animation-play-state: paused;
}

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

.slide {
  min-width: 32%;
  height: 100%;
  padding: 0 8px;
  flex-shrink: 0;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}





/* ===== CATEGORIES ===== */
.categories {
  padding: 5rem 4rem;
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.cat-card {
  display: block;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--green);
  background: var(--white);
  transition: transform 0.3s, box-shadow 0.3s;
}

.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(44,26,14,0.15);
}

.cat-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.cat-card span {
  display: block;
  padding: 0.8rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--green);
  letter-spacing: 0.05em;
}

/* ===== PRODUCTS ===== */
.products,
.new-arrivals {
  padding: 5rem 4rem;
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.product-card {
  background: var(--green);
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--green);
  transition: transform 0.3s, box-shadow 0.3s;
  
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(44,26,14,0.2);
}

.product-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

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

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

.badge-new {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
}

.product-info {
  padding: 1rem;
  background: var(--beige-light);
}

.product-ref {
  font-size: 0.85rem;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.product-ref span { font-weight: 600; }




.btn-contact {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--brown);
  color: var(--brown);
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-contact:hover {
  background: var(--brown);
  color: var(--cream);
}

.products-cta { margin-top: 1rem; }

/* ===== SERVICES ===== */
.services {
  padding: 5rem 4rem;
  background: var(--beige-light);
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1440px;
  margin: 0 auto;
}

.service-card {
  background: var(--brown);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  color: var(--cream);
  border: 2px solid var(--brown);
  transition: transform 0.3s;
}

.service-card:hover { transform: translateY(-4px); }

.service-card i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.88rem;
  opacity: 0.85;
  line-height: 1.7;
}

/* ===== ABOUT ===== */
.about {
  padding: 5rem 4rem;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-main {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid var(--green);
}

.about-img-main img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.about-name-tag {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: rgba(44,26,14,0.85);
  color: var(--cream);
  padding: 0.75rem 1.2rem;
  border-radius: 8px;
  backdrop-filter: blur(4px);
}

.about-name-tag p {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
}

.about-name-tag span {
  font-size: 0.78rem;
  opacity: 0.8;
}

.about-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.about-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  background: var(--brown);
  color: var(--cream);
  padding: 1.5rem 2rem;
  border-radius: 12px;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.85;
}


/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 5rem 0;
  background: var(--beige-light);
  text-align: center;
  overflow: hidden;
}

.testimonials .section-label,
.testimonials .section-title {
  padding: 0 4rem;
}

.testi-wrapper {
  overflow: hidden;
  margin: 2rem 0;
  cursor: grab;
}

.testi-wrapper:active { cursor: grabbing; }

.testi-track {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 2rem;
  animation: testiScroll 20s linear infinite;
  width: max-content;
}

.testi-track:hover {
  animation-play-state: paused;
}

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

.testi-card {
  background: var(--brown);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  color: var(--cream);
  width: 300px;
  flex-shrink: 0;
  text-align: center;
  transition: transform 0.3s;
}

.testi-card:hover {
  transform: translateY(-6px);
}

.testi-photo {
  width: 70px; height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  display: block;
  border: 3px solid var(--gold);
}

.testi-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.testi-role {
  font-size: 0.78rem;
  opacity: 0.75;
  margin-bottom: 0.75rem;
}

.testi-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.testi-quote {
  font-style: italic;
  font-size: 0.88rem;
  line-height: 1.7;
  opacity: 0.9;
}

.testi-cta {
  margin-top: 2rem;
  padding: 0 4rem;
}

/* ===== CONTACT ===== */
.contact {
  padding: 5rem 4rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-sub {
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.contact-form {
  background: var(--brown);
  padding: 2rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
  margin-bottom: 2rem;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(253,246,236,0.6); }

.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold); }

.btn-send {
  background: var(--dark);
  color: var(--cream);
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s;
  align-self: center;
}

.btn-send:hover { background: var(--green); }

.contact-socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.contact-socials a {
  font-size: 1.6rem;
  color: var(--brown);
  transition: color 0.2s;
}

.contact-socials a:hover { color: var(--green); }

/* ===== FOOTER ===== */
.footer {
  background: var(--beige-light);
  border: 2px solid var(--green);
  margin: 2rem 4rem;
  border-radius: 12px;
  padding: 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-brand img { height: 28px; }

.footer-info p {
  font-size: 0.85rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-info i { color: var(--green); width: 16px; }

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 2rem;
}

.footer-links a {
  text-decoration: none;
  font-size: 0.88rem;
  color: var(--green);
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--dark); }

.footer-bottom {
  border-top: 1px solid rgba(74,103,65,0.2);
  padding-top: 1rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .navbar { padding: 0 2rem; }
  .hero, .categories, .products, .new-arrivals, .about { padding-left: 2rem; padding-right: 2rem; }
  .services { padding-left: 2rem; padding-right: 2rem; }
  .testimonials { padding-left: 2rem; padding-right: 2rem; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-slider { grid-template-columns: 1fr; max-width: 500px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-explore { display: none; }
  .hamburger {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 90px 1.5rem 3rem;
    text-align: center;
    gap: 2rem;
  }

  .hero-text { max-width: 100%; }
  .hero-desc { margin: 0 auto 2rem; }
  .hero-buttons { justify-content: center; }
  .hero-slider { height: 300px; }

  .categories { padding: 3rem 1.5rem; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  .products, .new-arrivals { padding: 3rem 1.5rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  .services { padding: 3rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }

  .about {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
    gap: 2rem;
  }

  .testimonials { padding: 3rem 1.5rem; }
  .testi-slider { grid-template-columns: 1fr; }

  .contact { padding: 3rem 1.5rem; }

  .footer {
    margin: 1.5rem;
    padding: 1.5rem;
  }

  .footer-content { flex-direction: column; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
}
/* ===== COLLECTION PAGE ===== */
.collection-hero {
  padding: 120px 4rem 3rem;
  text-align: center;
  max-width: 1440px;
  margin: 0 auto;
}

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  border: 2px solid var(--green);
  background: transparent;
  color: var(--dark);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--dark);
  color: var(--cream);
  border-color: var(--dark);
}

.collection-grid {
  padding: 0 4rem 5rem;
  max-width: 1440px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .collection-hero,
  .collection-grid {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}