@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #F9F6F0;
  color: #5C4033;
  font-family: "Space Grotesk", sans-serif;
  overflow-x: hidden;
}

:root {
  --font-heading: 'Allison', cursive;
  --font-body: 'Poppins', sans-serif;
  --color-primary: #8BC34A;
  --color-primary-dark: #5D8456;
  --color-secondary: #FFD700;
  --color-cream: #FAF8F3;
}

h1, h2, h3, .logo-text, .hero-title, .section-title,
.product-info h3, .cart-header h2, .footer h3, .footer h4, p, a {
  font-family: var(--font-heading) !important;
  font-weight: normal;
}

.logo-text {
  font-size: 2rem;
}

.hero-collection h1 {
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 1;
}

.product-info h3 {
  font-size: 2.2rem;
  line-height: 1.2;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
  background: rgba(249, 246, 240, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}
.navbar .navbar-content {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .navbar-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 1001;
}
.navbar .navbar-logo img {
  width: 45px;
  height: 45px;
}
.navbar .navbar-logo span {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #5C4033;
}
.navbar .navbar-menu {
  list-style: none;
  display: flex;
  gap: 50px;
}
.navbar .navbar-menu li a {
  color: rgba(92, 64, 51, 0.7);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  position: relative;
  transition: color 0.3s;
}
.navbar .navbar-menu li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #6B8E23;
  transition: width 0.3s ease;
}
.navbar .navbar-menu li a:hover, .navbar .navbar-menu li a.active {
  color: #5C4033;
}
.navbar .navbar-menu li a:hover::after, .navbar .navbar-menu li a.active::after {
  width: 100%;
}
.navbar .navbar-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}
.navbar .navbar-icons .cart-icon {
  position: relative;
  color: #5C4033;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s;
  background: transparent;
  border: none;
  padding: 0;
  font-family: inherit;
}
.navbar .navbar-icons .cart-icon:hover {
  color: #6B8E23;
  transform: scale(1.1);
}
.navbar .navbar-icons .cart-icon .cart-count {
  position: absolute;
  top: -8px;
  right: -12px;
  background: #6B8E23;
  color: white;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}
.navbar .navbar-icons .cart-icon .cart-count.hidden {
  display: none;
}
.navbar .navbar-social {
  display: flex;
  gap: 20px;
}
.navbar .navbar-social a {
  color: rgba(92, 64, 51, 0.6);
  font-size: 1.2rem;
  transition: all 0.3s;
}
.navbar .navbar-social a:hover {
  color: #6B8E23;
  transform: scale(1.15);
}
.navbar .hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}
.navbar .hamburger span {
  width: 25px;
  height: 2px;
  background: #5C4033;
  transition: all 0.3s;
}
.navbar .hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.navbar .hamburger.active span:nth-child(2) {
  opacity: 0;
}
.navbar .hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.hero {
  min-height: 100vh;
  padding: 120px 60px 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  justify-content: space-around;
}
.hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero .hero-background .nature-texture {
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 50%, rgba(156, 175, 136, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(139, 115, 85, 0.06) 0%, transparent 50%), radial-gradient(circle at 40% 20%, rgba(107, 142, 35, 0.05) 0%, transparent 40%);
  opacity: 0.6;
}
.hero .hero-main {
  flex: 1;
  max-width: 800px;
}
.hero .hero-label {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #6B8E23;
  margin-bottom: 40px;
  padding: 10px 0;
  border-top: 2px solid #6B8E23;
  border-bottom: 2px solid #6B8E23;
}
.hero .hero-title {
  margin-bottom: 40px;
  overflow: hidden;
}
.hero .hero-title h1 .title-line {
  display: block;
  overflow: hidden;
}
.hero .hero-title h1 .title-line .word {
  display: inline-block;
  font-family: "Playfair Display", serif;
  font-size: clamp(4rem, 11vw, 10rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #5C4033;
  animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: translateY(100%);
}
.hero .hero-title h1 .title-line:nth-child(1) .word {
  animation-delay: 0.3s;
}
.hero .hero-title h1 .title-line:nth-child(2) .word {
  animation-delay: 0.5s;
}
.hero .hero-title h1 .title-line.featured .word {
  color: #8B7355;
  font-style: italic;
  animation-delay: 0.7s;
}
.hero .hero-subtitle p {
  font-size: 1.3rem;
  font-weight: 500;
  color: rgba(92, 64, 51, 0.7);
  animation: fadeIn 1s ease forwards;
  animation-delay: 1.2s;
  opacity: 0;
}
.hero .hero-product {
  position: relative;
  width: 450px;
  flex-shrink: 0;
}
.hero .hero-product .product-visual {
  position: relative;
}
.hero .hero-product .product-visual .organic-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
  height: 380px;
  border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  background: linear-gradient(135deg, rgba(156, 175, 136, 0.15), rgba(107, 142, 35, 0.1));
  animation: morphing 8s ease-in-out infinite;
}
.hero .hero-product .product-visual .product-image {
  position: relative;
  width: auto;
  height: 600px;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
  animation: gentleFloat 5s ease-in-out infinite;
}
.hero .hero-product .product-visual .product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #6B8E23;
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 3;
}
.hero .hero-product .product-visual .product-label {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: white;
  padding: 25px 35px;
  border-radius: 8px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
  z-index: 3;
  max-width: 100%;
}
.hero .hero-product .product-visual .product-label h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #5C4033;
  margin-bottom: 5px;
}
.hero .hero-product .product-visual .product-label p {
  font-size: 0.95rem;
  color: rgba(92, 64, 51, 0.6);
}
.hero .hero-scroll {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.hero .hero-scroll span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(92, 64, 51, 0.5);
}
.hero .hero-scroll .scroll-line {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(107, 142, 35, 0.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@keyframes morphing {
  0%, 100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  25% {
    border-radius: 38% 62% 63% 37%/41% 44% 56% 59%;
  }
  50% {
    border-radius: 56% 44% 33% 67%/48% 62% 38% 52%;
  }
  75% {
    border-radius: 42% 58% 66% 34%/63% 37% 63% 37%;
  }
}
@keyframes gentleFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}
@keyframes scrollLine {
  0%, 100% {
    opacity: 0.4;
    height: 60px;
  }
  50% {
    opacity: 1;
    height: 75px;
  }
}
.story {
  min-height: 100vh;
  padding: 120px 60px;
}
.story .story-grid {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 50px;
}
.story .story-grid .story-image-1 {
  grid-column: 1/2;
  grid-row: 1/3;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.story .story-grid .story-image-1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.story .story-grid .story-image-1 .image-caption {
  position: absolute;
  bottom: -25px;
  right: -25px;
  background: white;
  padding: 18px 30px;
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 600;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
}
.story .story-grid .story-text-1 {
  grid-column: 2/4;
  grid-row: 1;
  padding: 60px 0 0 40px;
}
.story .story-grid .story-text-1 h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.15;
  margin-bottom: 35px;
  color: #8B7355;
}
.story .story-grid .story-text-1 p {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.9;
  color: rgba(92, 64, 51, 0.8);
  max-width: 650px;
}
.story .story-grid .story-stats {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  gap: 60px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.story .story-grid .story-stats .stat-item {
  display: flex;
  flex-direction: column;
}
.story .story-grid .story-stats .stat-item .stat-number {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #6B8E23;
  line-height: 1;
}
.story .story-grid .story-stats .stat-item .stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(92, 64, 51, 0.6);
  margin-top: 12px;
}
.story .story-grid .story-image-2 {
  grid-column: 3;
  grid-row: 2;
  border-radius: 8px;
  overflow: hidden;
}
.story .story-grid .story-image-2 img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.story .story-grid .story-text-2 {
  grid-column: 1/4;
  grid-row: 3;
  text-align: center;
  padding: 100px 0 50px;
}
.story .story-grid .story-text-2 blockquote {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  line-height: 1.7;
  color: #5C4033;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
}
.story .story-grid .story-text-2 blockquote::before {
  content: '"';
  position: absolute;
  top: -50px;
  left: -50px;
  font-size: 10rem;
  color: rgba(156, 175, 136, 0.15);
  font-family: serif;
}

.products {
  min-height: 100vh;
  padding: 100px 60px;
  background: #5C4033;
  color: white;
}
.products .products-title {
  max-width: 1600px;
  margin: 0 auto 80px;
}
.products .products-title h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 6vw, 5rem);
  color: white;
}
.products .products-grid {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: 35px;
}
.products .product-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}
.products .product-card.featured {
  grid-column: span 2;
  grid-row: span 2;
}
.products .product-card.featured .featured-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  background: white;
  color: #5C4033;
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 3;
}
.products .product-card .product-card-image {
  position: relative;
  width: 100%;
  height: 100%;
}
.products .product-card .product-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.products .product-card .product-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(92, 64, 51, 0.95) 0%, rgba(92, 64, 51, 0.3) 60%, transparent 100%);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.5s;
}
.products .product-card .product-card-overlay .category-tag {
  position: absolute;
  top: 25px;
  left: 25px;
  background: white;
  color: #5C4033;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.products .product-card .product-card-overlay h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  margin-bottom: 18px;
  color: white;
}
.products .product-card .product-card-overlay p {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.7;
  margin-bottom: 30px;
  opacity: 0.9;
  color: white;
}
.products .product-card .product-card-overlay .product-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  border-bottom: 2px solid white;
  padding-bottom: 6px;
  align-self: flex-start;
}
.products .product-card .product-card-overlay .product-link svg {
  transition: transform 0.3s;
}
.products .product-card .product-card-overlay .product-link:hover svg {
  transform: translateX(7px);
}
.products .product-card:hover .product-card-image img {
  transform: scale(1.08);
}
.products .product-card:hover .product-card-overlay {
  opacity: 1;
}

.craft {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
.craft .craft-left {
  padding: 120px 80px;
  background: #F9F6F0;
}
.craft .craft-left .craft-content {
  max-width: 600px;
}
.craft .craft-left .craft-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.15;
  margin-bottom: 70px;
  color: #8B7355;
}
.craft .craft-left .craft-content .craft-steps {
  display: flex;
  flex-direction: column;
  gap: 45px;
  margin-bottom: 70px;
}
.craft .craft-left .craft-content .craft-steps .craft-step {
  padding-bottom: 35px;
  border-bottom: 1px solid rgba(92, 64, 51, 0.15);
  cursor: pointer;
  transition: all 0.4s;
}
.craft .craft-left .craft-content .craft-steps .craft-step:hover {
  border-color: #6B8E23;
}
.craft .craft-left .craft-content .craft-steps .craft-step:hover .step-num {
  color: #6B8E23;
}
.craft .craft-left .craft-content .craft-steps .craft-step .step-header {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 18px;
}
.craft .craft-left .craft-content .craft-steps .craft-step .step-header .step-num {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(92, 64, 51, 0.4);
  transition: color 0.3s;
}
.craft .craft-left .craft-content .craft-steps .craft-step .step-header h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: #5C4033;
}
.craft .craft-left .craft-content .craft-steps .craft-step p {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.8;
  color: rgba(92, 64, 51, 0.7);
  padding-left: 55px;
}
.craft .craft-left .craft-content .craft-cta {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: #5C4033;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border-bottom: 2px solid #5C4033;
  padding-bottom: 6px;
  transition: all 0.3s;
}
.craft .craft-left .craft-content .craft-cta svg {
  transition: transform 0.3s;
}
.craft .craft-left .craft-content .craft-cta:hover {
  color: #6B8E23;
  border-color: #6B8E23;
  gap: 22px;
}
.craft .craft-left .craft-content .craft-cta:hover svg {
  transform: translateX(5px);
}
.craft .craft-right {
  background: #5C4033;
  position: relative;
}
.craft .craft-right .craft-images {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.craft .craft-right .craft-images .craft-image-main {
  width: 85%;
  height: 75%;
}
.craft .craft-right .craft-images .craft-image-main img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  transition: opacity 0.4s ease;
}

.cart-modal {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  z-index: 2000;
  transition: right 0.4s ease;
}
.cart-modal.active {
  right: 0;
}
.cart-modal .cart-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s;
}
.cart-modal.active .cart-modal-overlay {
  opacity: 1;
}
.cart-modal .cart-modal-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 500px;
  height: 100%;
  background: white;
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
}
.cart-modal .cart-header {
  padding: 30px;
  border-bottom: 1px solid rgba(92, 64, 51, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-modal .cart-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #5C4033;
  display: flex;
  align-items: center;
  gap: 15px;
}
.cart-modal .cart-header h2 i {
  color: #6B8E23;
}
.cart-modal .cart-header .cart-close {
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #5C4033;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
}
.cart-modal .cart-header .cart-close:hover {
  background: #F9F6F0;
}
.cart-modal .cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 30px;
}
.cart-modal .cart-body .cart-empty {
  text-align: center;
  color: rgba(92, 64, 51, 0.5);
  font-size: 1.1rem;
  padding: 60px 20px;
}
.cart-modal .cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(92, 64, 51, 0.1);
}
.cart-modal .cart-item:last-child {
  border-bottom: none;
}
.cart-modal .cart-item .cart-item-image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
}
.cart-modal .cart-item .cart-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cart-modal .cart-item .cart-item-info h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: #5C4033;
  margin-bottom: 8px;
}
.cart-modal .cart-item .cart-item-info .cart-item-category {
  font-size: 0.85rem;
  color: #6B8E23;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
.cart-modal .cart-item .cart-item-info .cart-item-price {
  font-weight: 700;
  color: #8B7355;
  font-size: 1.1rem;
}
.cart-modal .cart-item .cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.cart-modal .cart-item .cart-item-actions .btn-remove {
  background: transparent;
  border: none;
  color: rgba(92, 64, 51, 0.4);
  cursor: pointer;
  font-size: 1.2rem;
  transition: color 0.3s;
}
.cart-modal .cart-item .cart-item-actions .btn-remove:hover {
  color: #e74c3c;
}
.cart-modal .cart-item .cart-item-actions .quantity-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart-modal .cart-item .cart-item-actions .quantity-controls button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(92, 64, 51, 0.2);
  background: white;
  color: #5C4033;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: all 0.3s;
}
.cart-modal .cart-item .cart-item-actions .quantity-controls button:hover {
  background: #6B8E23;
  color: white;
  border-color: #6B8E23;
}
.cart-modal .cart-item .cart-item-actions .quantity-controls span {
  min-width: 30px;
  text-align: center;
  font-weight: 600;
}
.cart-modal .cart-footer {
  padding: 30px;
  border-top: 2px solid rgba(92, 64, 51, 0.1);
  background: #F9F6F0;
}
.cart-modal .cart-footer .cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.cart-modal .cart-footer .cart-total span {
  font-size: 1.3rem;
  font-weight: 600;
  color: #5C4033;
}
.cart-modal .cart-footer .cart-total .total-price {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #8B7355;
}
.cart-modal .cart-footer .btn-checkout {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: #6B8E23;
  color: white;
  padding: 18px 40px;
  border: none;
  border-radius: 5px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}
.cart-modal .cart-footer .btn-checkout:hover {
  background: #4A6741;
  gap: 22px;
}
.cart-modal .cart-footer .checkout-info {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(92, 64, 51, 0.6);
  margin-top: 15px;
}

.footer {
  background: #5C4033;
  color: rgba(255, 255, 255, 0.9);
  padding: 100px 60px 50px;
}
.footer .footer-main {
  max-width: 1600px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.footer .footer-main .footer-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 25px;
  color: white;
}
.footer .footer-main .footer-info p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 15px;
}
.footer .footer-main .footer-info p strong {
  color: white;
  font-weight: 600;
}
.footer .footer-main .footer-contact h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: white;
}
.footer .footer-main .footer-contact p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 12px;
}
.footer .footer-main .footer-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer .footer-main .footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s;
}
.footer .footer-main .footer-links a:hover {
  color: #9CAF88;
  padding-left: 10px;
}
.footer .footer-main .footer-newsletter p {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: white;
}
.footer .footer-main .footer-newsletter .newsletter-form {
  display: flex;
  gap: 12px;
}
.footer .footer-main .footer-newsletter .newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding: 15px 0;
  color: white;
  font-size: 1.05rem;
}
.footer .footer-main .footer-newsletter .newsletter-form input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.footer .footer-main .footer-newsletter .newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.footer .footer-main .footer-newsletter .newsletter-form input:focus {
  outline: none;
  border-color: white;
}
.footer .footer-main .footer-newsletter .newsletter-form button {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  width: 55px;
  height: 55px;
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 4px;
}
.footer .footer-main .footer-newsletter .newsletter-form button:hover {
  background: white;
  color: #5C4033;
  border-color: white;
}
.footer .footer-bottom {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer .footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
}
.footer .footer-bottom .footer-legal {
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
}
.footer .footer-bottom .footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}
.footer .footer-bottom .footer-legal a:hover {
  color: #9CAF88;
}

@media (max-width: 1400px) {
  .hero .hero-product {
    width: 380px;
  }
  .hero .hero-product .product-visual .product-label {
    left: 0;
    bottom: -20px;
    padding: 20px 25px;
  }
}
@media (max-width: 1024px) {
  .navbar .logo-text {
    display: none;
  }
  .navbar .navbar-content {
    padding: 0 40px;
  }
  .navbar .navbar-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: #F9F6F0;
    flex-direction: column;
    padding: 50px 40px;
    gap: 35px;
    transition: left 0.4s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  }
  .navbar .navbar-menu.active {
    left: 0;
  }
  .navbar .hamburger {
    display: flex;
  }
  .navbar .navbar-social {
    display: none;
  }
  .hero {
    padding: 120px 40px 80px;
    flex-direction: column;
    gap: 60px;
    min-height: auto;
  }
  .hero .hero-main {
    max-width: 100%;
  }
  .hero .hero-product {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .hero .hero-product .product-visual .organic-shape {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
  .hero .hero-product .product-visual .product-label {
    position: static;
    margin-top: 30px;
  }
  .hero .hero-scroll {
    display: none;
  }
  .story {
    padding: 100px 40px;
  }
  .story .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .story .story-grid .story-image-1,
  .story .story-grid .story-text-1,
  .story .story-grid .story-stats,
  .story .story-grid .story-image-2,
  .story .story-grid .story-text-2 {
    grid-column: 1 !important;
    grid-row: auto !important;
  }
  .story .story-grid .story-text-1 {
    padding: 0;
  }
  .story .story-grid .story-stats {
    gap: 40px;
  }
  .story .story-grid .story-text-2 {
    padding: 60px 0 0;
  }
  .story .story-grid .story-text-2 blockquote::before {
    display: none;
  }
  .products {
    padding: 80px 40px;
  }
  .products .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .products .products-grid .product-card.featured {
    grid-column: span 1;
    grid-row: span 1;
  }
  .craft {
    grid-template-columns: 1fr;
  }
  .craft .craft-left {
    padding: 100px 40px;
  }
  .craft .craft-left .craft-content {
    max-width: 100%;
  }
  .craft .craft-right .craft-images {
    position: relative;
    min-height: 60vh;
  }
  .footer {
    padding: 80px 40px 50px;
  }
  .footer .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  .cart-modal .cart-modal-content {
    max-width: 450px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 100px 25px 60px;
  }
  .hero .hero-label {
    font-size: 0.8rem;
    margin-bottom: 30px;
  }
  .hero .hero-subtitle p {
    font-size: 1.1rem;
  }
  .hero .hero-product {
    max-width: 100%;
  }
  .hero .hero-product .product-visual .product-label {
    padding: 20px;
  }
  .hero .hero-product .product-visual .product-label h3 {
    font-size: 1.3rem;
  }
  .hero .hero-product .product-visual .product-label p {
    font-size: 0.9rem;
  }
  .story {
    padding: 80px 25px;
  }
  .story .story-grid {
    gap: 30px;
  }
  .story .story-grid .story-image-1 .image-caption {
    position: static;
    margin-top: 15px;
    font-size: 1rem;
    padding: 15px 20px;
  }
  .story .story-grid .story-stats {
    gap: 30px;
  }
  .story .story-grid .story-text-2 {
    padding: 40px 0 0;
  }
  .products {
    padding: 60px 25px;
  }
  .products .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .products .product-card .product-card-overlay {
    padding: 30px 25px;
  }
  .products .product-card .product-card-overlay h3 {
    font-size: 1.5rem;
  }
  .products .product-card .product-card-overlay p {
    font-size: 0.95rem;
  }
  .craft .craft-left {
    padding: 80px 25px;
  }
  .craft .craft-left .craft-steps {
    gap: 35px;
    margin-bottom: 50px;
  }
  .craft .craft-left .craft-steps .craft-step .step-header {
    gap: 15px;
  }
  .craft .craft-left .craft-steps .craft-step p {
    padding-left: 0;
  }
  .craft .craft-right .craft-images {
    min-height: 50vh;
  }
  .footer {
    padding: 60px 25px 40px;
  }
  .footer .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer .footer-bottom .footer-legal {
    justify-content: center;
    gap: 20px;
  }
  .cart-modal .cart-modal-content {
    max-width: 100%;
  }
  .cart-modal .cart-modal-content .cart-header {
    padding: 25px 20px;
  }
  .cart-modal .cart-modal-content .cart-header h2 {
    font-size: 1.6rem;
  }
  .cart-modal .cart-modal-content .cart-body {
    padding: 20px;
  }
  .cart-modal .cart-modal-content .cart-footer {
    padding: 25px 20px;
  }
  .cart-modal .cart-modal-content .cart-footer .cart-total .total-price {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .hero .hero-title h1 .title-line .word {
    font-size: clamp(2.5rem, 12vw, 4rem) !important;
  }
  .story .story-stats {
    flex-direction: column;
    gap: 25px;
  }
  .footer .footer-newsletter .newsletter-form {
    flex-direction: column;
  }
  .footer .footer-newsletter .newsletter-form button {
    width: 100%;
    height: 50px;
  }
}
/* PANIER MODERNE */
.cart-icon {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: #2C2C2C;
  cursor: pointer;
  transition: 0.2s;
}

.cart-icon:hover {
  background: rgba(0, 0, 0, 0.05);
}

.cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #8BC34A;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-modal-content {
  max-width: 420px;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
}

.cart-header {
  padding: 1.5rem;
  background: #FAFAFA;
  border-bottom: 1px solid #E0E0E0;
}

.cart-header h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #2C2C2C;
}

.cart-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: #757575;
}

.cart-close:hover {
  background: rgba(0, 0, 0, 0.05);
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #F5F5F5;
}

.cart-item-image {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
}

.cart-item-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}

.cart-item-category {
  font-size: 0.75rem;
  color: #8BC34A;
  text-transform: uppercase;
}

.quantity-controls {
  display: flex;
  gap: 0.5rem;
  background: #F5F5F5;
  border-radius: 20px;
  padding: 0.25rem 0.5rem;
}

.quantity-controls button {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: #5D8456;
  cursor: pointer;
}

.quantity-controls button:hover {
  background: #8BC34A;
  color: white;
}

.btn-remove {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: #BDBDBD;
}

.btn-remove:hover {
  background: #FFEBEE;
  color: #E53935;
}

.cart-footer {
  padding: 1.5rem;
  background: #FAFAFA;
  border-top: 1px solid #E0E0E0;
}

.total-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: #5D8456;
}

.btn-checkout {
  width: 100%;
  padding: 1rem;
  background: #8BC34A;
  color: white;
  border: none;
  border-radius: 0px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(139, 195, 74, 0.3);
}

.btn-checkout:hover {
  background: #7CB342;
}

.hero-product {
  position: relative;
  width: 450px;
  flex-shrink: 0;
}

.product-slider {
  position: relative;
  width: 100%;
}

.product-slide {
  display: none;
  animation: slideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.product-slide.active {
  display: block;
}
.product-slide.slide-out {
  animation: slideOut 0.4s ease forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-30px);
  }
}
.slider-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 50px;
  padding-top: 30px;
}
.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(92, 64, 51, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.slider-dots .dot.active {
  background: #6B8E23;
  width: 24px;
  border-radius: 4px;
}
.slider-dots .dot:hover:not(.active) {
  background: rgba(92, 64, 51, 0.4);
}

.slider-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  color: #5C4033;
  z-index: 10;
  transition: all 0.3s ease;
}
.slider-arrow:hover {
  background: #6B8E23;
  color: white;
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 6px 24px rgba(107, 142, 35, 0.3);
}
.slider-arrow.slider-prev {
  left: -20px;
}
.slider-arrow.slider-next {
  right: -20px;
}

@media (max-width: 1024px) {
  .hero-product {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .slider-arrow.slider-prev {
    left: -10px;
  }
  .slider-arrow.slider-next {
    right: -10px;
  }
}
@media (max-width: 768px) {
  .slider-dots {
    margin-top: 30px;
    padding-top: 20px;
  }
  .slider-arrow {
    width: 36px;
    height: 36px;
  }
  .slider-arrow.slider-prev {
    left: 0;
  }
  .slider-arrow.slider-next {
    right: 0;
  }
}/*# sourceMappingURL=style.css.map */