@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
  --primary: #2D5A3D;
  --secondary: #8B7355;
  --accent: #A8C5A7;
  --gold: #C9A962;
  --gold-light: #E8D5A3;
  --sage: #9CAF88;
  --background: #FAF8F5;
  --text: #2C2C2C;
  --light-accent: #E8E4DF;
  --white: #FFFFFF;
  --shadow: 0 4px 20px rgba(45, 90, 61, 0.1);
  --shadow-hover: 0 8px 30px rgba(45, 90, 61, 0.15);
  --transition: 0.3s ease;
  --radius: 4px;
  --radius-lg: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.2;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0;
  gap: 16px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.logo img {
  height: 60px !important;
  width: auto;
  object-fit: contain;
}
/* Mobile: logo plus grand pour meilleure visibilité */
@media (max-width: 768px) {
  .logo img {
    height: 55px !important;
  }
}

.footer-brand .logo img {
  height: 100px !important;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-actions button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  transition: var(--transition);
}

.header-actions button:hover {
  color: var(--primary);
}

.search-overlay {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 500px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.search-overlay.open {
  opacity: 1;
  visibility: visible;
}

.search-overlay input {
  width: 100%;
  padding: 16px 20px;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-lg);
  background: var(--white);
}

.search-overlay input:focus {
  outline: none;
}

.search-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--secondary);
}

.search-close:hover {
  color: var(--primary);
}

.cart-icon {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.7rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--background) 0%, var(--light-accent) 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(168, 197, 167, 0.2) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.hero-subtitle {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 24px;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: 32px;
  line-height: 1.8;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(90deg, #2D5A3D, #4a7c59, #6b9b6e);
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(45, 90, 39, 0.3);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 90, 39, 0.4);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(45, 90, 39, 0.3);
}

.voir-btn {
  display: inline-block;
  padding: 14px 24px;
  border: 2px solid #2D5A3D;
  border-radius: 50px;
  background: transparent;
  color: #2D5A3D;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.voir-btn:hover {
  background: #2D5A3D;
  color: white;
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  box-shadow: none;
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  z-index: -1;
}

/* Categories Section */
.categories {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--secondary);
  max-width: 600px;
  margin: 0 auto;
}

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

.category-card {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  z-index: 1;
}

.category-link {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 10000;
}

.category-link:hover {
  text-decoration: none;
}

.categories {
  padding: 60px 0;
  background: var(--white);
  position: relative;
  z-index: 1;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45, 90, 61, 0.7) 0%, transparent 50%);
}

.category-card-content {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 1;
  color: var(--white);
}

.category-card h3 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.category-card p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.category-card.main {
  grid-row: span 2;
}

/* Featured Products */
.featured-products {
  padding: 100px 0;
  background: var(--white);
}

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

@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: var(--background);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.product-card .product-image {
  height: 700px;
  min-height: 700px;
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
}

.product-image img {
  width: 100%;
  height: 100%;
  max-height: 550px;
  object-fit: contain;
  transition: transform 0.5s ease;
}

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

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 500;
}

.product-info {
  padding: 20px;
}

.product-category {
  font-size: 0.75rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.product-price {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}

.product-actions {
  display: flex;
  gap: 12px;
}

.product-actions button {
  flex: 1;
  padding: 12px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.product-actions button:hover {
  background: var(--secondary);
}

/* About Teaser */
.about-teaser {
  padding: 100px 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 900px) {
  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-text h2 {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 24px;
}

.about-text p {
  color: var(--secondary);
  margin-bottom: 24px;
  line-height: 1.8;
}

/* Footer */
.footer {
  background: var(--primary);
  color: var(--white);
  padding: 60px 0 24px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  margin-top: 16px;
  opacity: 0.8;
  line-height: 1.7;
}

.footer h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  padding: 8px 0;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  padding-left: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0.7;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--white);
  color: var(--primary);
}

/* Page Header */
.page-header {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--background) 0%, var(--light-accent) 100%);
  text-align: center;
}

.page-header h1 {
  font-size: 3.5rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.page-header p {
  color: var(--secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Products Page */
.products-section {
  padding: 60px 0;
}

.products-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

.filters {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-lg);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.filter-group {
  margin-bottom: 24px;
}

.filter-group h4 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--light-accent);
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  cursor: pointer;
  transition: var(--transition);
}

.filter-group label:hover {
  color: var(--primary);
}

.filter-group input[type="checkbox"] {
  accent-color: var(--primary);
}

.products-count {
  margin-bottom: 24px;
  color: var(--secondary);
}

/* Product Detail Page */
.product-detail-section {
  padding: 60px 0 30px;
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.product-gallery {
  display: grid;
  gap: 16px;
}

.product-gallery > div {
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border-radius: 12px;
  overflow: hidden;
}

.product-gallery > div img {
  width: 100%;
  height: auto;
  max-height: 550px;
  object-fit: contain;
}

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

.product-thumbnails img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
  opacity: 0.7;
  transition: var(--transition);
}

.product-thumbnails img:hover,
.product-thumbnails img.active {
  opacity: 1;
}

.product-info-detail h1 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.product-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  color: var(--secondary);
  font-size: 0.9rem;
}

.product-price-detail {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 24px;
}

.product-description {
  color: var(--secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.quantity-selector label {
  font-weight: 500;
}

.quantity-controls {
  display: flex;
  align-items: center;
  border: 1px solid var(--light-accent);
  border-radius: var(--radius);
}

.quantity-controls button {
  width: 44px;
  height: 44px;
  background: var(--light-accent);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quantity-controls button:hover {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

.quantity-controls button {
  width: 32px;
  height: 32px;
  border: none;
  outline: none;
  background: #f5f5f5;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1.1rem;
}

.quantity-controls button:focus {
  outline: none;
  box-shadow: none;
}

.quantity-controls span {
  width: 44px;
  text-align: center;
  font-weight: 500;
}

.add-to-cart-btn {
  padding: 12px 28px;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.product-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--light-accent);
}

.product-features div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

.product-features svg {
  color: var(--primary);
}

/* About Page */
.about-section {
  padding: 60px 0;
}

.about-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-full img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-full h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 24px;
}

.about-full p {
  color: var(--secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

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

.value-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  text-align: center;
}

.value-icon {
  width: 60px;
  height: 60px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
}

.value-card h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.value-card p {
  color: var(--secondary);
  font-size: 0.9rem;
}

/* Contact Page */
.contact-section {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 24px;
}

.contact-info p {
  color: var(--secondary);
  margin-bottom: 32px;
  line-height: 1.8;
}

.contact-details {
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--light-accent);
}

.contact-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-item p {
  margin: 0;
  color: var(--secondary);
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--light-accent);
  border-radius: var(--radius);
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* Cart Sidebar */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(40px) brightness(1.15) saturate(2) contrast(1.1);
  -webkit-backdrop-filter: blur(40px) brightness(1.15) saturate(2) contrast(1.1);
  border-left: 1px solid rgba(255,255,255,0.5);
  z-index: 9999;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(0,0,0,0.1);
}

.cart-footer {
  z-index: 9999;
}

.cart-sidebar.open {
  right: 0;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px) brightness(1.1);
  -webkit-backdrop-filter: blur(8px) brightness(1.1);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1999;
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-header {
  padding: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.cart-header h3 {
  font-size: 1.5rem;
  color: var(--primary);
}

.cart-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

.cart-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius);
}

.cart-item-info h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.cart-item-price {
  color: var(--primary);
  font-weight: 500;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.qty-btn,
.qty-remove {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255,255,255,0.4);
  outline: none;
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1rem;
}

.qty-btn:focus,
.qty-remove:focus {
  outline: none;
  box-shadow: none;
}

.qty-btn:hover,
.qty-remove:hover {
  background: #e5e5e5;
}

.qty-remove {
  margin-left: auto;
  color: #e74c3c;
}

.cart-footer {
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.cart-total span:last-child {
  font-weight: 600;
  color: var(--primary);
}

.cart-empty {
  text-align: center;
  padding: 48px 24px;
  color: var(--secondary);
}

/* Newsletter */
.newsletter {
  background: var(--accent);
  padding: 40px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin-bottom: 48px;
}

.newsletter h3 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.newsletter p {
  color: var(--secondary);
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 16px;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
}

.newsletter-form button {
  padding: 14px 24px;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-card.main {
    grid-row: span 1;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .products-layout {
    grid-template-columns: 1fr;
  }

  .filters {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
  }

  .filter-group {
    margin-bottom: 0;
  }

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

  .about-content,
  .about-full,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 8px 0;
  }

  .header-inner {
    padding: 6px 0;
    flex-wrap: wrap;
  }

  .nav-links {
    display: none !important;
    order: 3;
    width: 100%;
    justify-content: flex-start;
    margin-top: 10px;
    position: absolute;
    top: 55px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  .nav-links.mobile-open {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .header-actions {
    position: absolute;
    right: 60px;
    top: 20px;
  }

  .mobile-menu-btn {
    display: flex !important;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Footer mobile */
  .footer-content {
    flex-direction: column;
    text-align: left;
  }

  .footer-brand,
  .footer-links {
    text-align: left;
  }

  .footer-links a,
  .footer-links p {
    text-align: left;
    justify-content: flex-start;
  }

  .footer-brand p {
    text-align: left;
  }

  .social-links {
    justify-content: flex-start;
  }

  .footer-bottom {
    text-align: left;
  }

  /* About page mobile */
  .about-full {
    flex-direction: column;
    gap: 20px;
  }

  .about-full img {
    width: 100%;
    height: 250px !important;
    object-fit: cover;
  }

  .about-full div {
    width: 100%;
  }

  .about-section {
    padding: 40px 0;
  }

  .about-section .container {
    padding: 0 20px;
  }

  .about-full h2 {
    font-size: 1.5rem;
  }

  .about-full p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .values {
    flex-direction: column;
    gap: 16px;
  }

  .value-card {
    padding: 20px;
  }

  .about-teaser {
    padding: 40px 0;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-image {
    width: 100%;
  }

  .about-image img {
    width: 100%;
    height: 250px !important;
    object-fit: cover;
  }

  .about-text {
    padding: 20px;
  }

  .hero {
    padding-top: 100px;
    min-height: auto;
    padding-bottom: 60px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-image img,
  .hero-image div {
    height: 300px;
    font-size: 60px !important;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .categories-grid,
  .products-grid,
  .values {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

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

  .cart-sidebar {
    width: 100%;
    right: -100%;
  }

  .newsletter-form {
    flex-direction: column;
  }

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

  .page-header h1 {
    font-size: 2rem;
  }

  .page-header {
    padding: 120px 0 40px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  .categories {
    padding: 60px 0;
  }

  .category-card-content h3 {
    font-size: 1.2rem;
  }

  .category-card-content {
    bottom: 16px;
    left: 16px;
    right: 16px;
  }

  .featured-products {
    padding: 60px 0;
  }

  .about-teaser {
    padding: 60px 0;
  }

  .about-content {
    gap: 32px;
  }

  .about-image img {
    height: 300px;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  .about-full {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
  }

  .about-full img {
    height: 300px;
  }

  .about-full > div,
  .about-text {
    height: auto !important;
  }

  .about-full h2 {
    font-size: 1.8rem;
  }

  .about-section {
    padding: 40px 0;
  }

  .values {
    gap: 16px;
  }

  .value-card {
    padding: 24px;
  }

  .contact-section {
    padding: 40px 0;
  }

  .contact-grid {
    gap: 32px;
  }

  .contact-info h2 {
    font-size: 1.8rem;
  }

  .contact-form {
    padding: 24px;
  }

  .product-detail-section {
    padding: 40px 0;
  }

  .product-info-detail h1 {
    font-size: 1.8rem;
  }

  .product-price-detail {
    font-size: 1.5rem;
  }

  .products-section {
    padding: 40px 0;
  }

  .products-layout {
    gap: 24px;
  }

  .filters {
    padding: 16px;
  }

  .filter-group h4 {
    font-size: 0.9rem;
  }

  .filter-group label {
    font-size: 0.85rem;
  }

  .container {
    padding: 0 16px;
  }

  .footer {
    padding: 48px 0 24px;
  }

  .footer-content {
    gap: 32px;
  }

  .footer-brand .logo {
    font-size: 1.5rem;
  }

  .footer h4 {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .footer-links a,
  .footer-links p {
    font-size: 0.85rem;
  }

  .newsletter {
    padding: 24px;
  }

  .newsletter h3 {
    font-size: 1.4rem;
  }

  .btn {
    padding: 14px 24px;
    font-size: 0.85rem;
  }

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

  .logo {
    font-size: 1.4rem;
  }

  .product-actions button {
    padding: 10px;
    font-size: 0.8rem;
  }

  .quantity-controls button,
  .quantity-controls span {
    width: 36px;
    height: 36px;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeIn 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Blog */
.page-header {
  padding: 60px 20px;
  background: #FAF8F5;
  color: #2D5A3D;
  text-align: center;
  margin-top: 80px;
}

.page-header h1 {
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.page-header p {
  font-size: 1rem;
  color: #8B7355;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

.page-header .line {
  width: 40px;
  height: 1px;
  background: #A8C5A7;
  margin: 16px auto 0;
}

.blog-section {
  padding: 30px 20px;
  background: #FAF8F5;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.blog-card {
  background: white;
  border: 1px solid #EEE;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card:hover {
  border-color: #A8C5A7;
}

.blog-image {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.blog-content {
  padding: 16px;
}

.blog-category {
  display: inline-block;
  color: #8B7355;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.blog-card h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: #2C2C2C;
}

.blog-card p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 12px;
  line-height: 1.5;
}

.blog-link {
  color: #2D5A3D;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.blog-link:hover {
  color: #1a3d28;
}

.related-articles {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid var(--light-accent);
}

.related-articles h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 24px;
  text-align: center;
}

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

.related-card {
  display: block;
  background: var(--light-accent);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.related-img {
  font-size: 50px;
  text-align: center;
  padding: 30px;
  background: var(--white);
}

.related-content {
  padding: 20px;
}

.related-content h4 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.related-content p {
  font-size: 0.9rem;
  color: var(--text);
  opacity: 0.8;
}

@media (max-width: 768px) {
  .related-grid {
    grid-template-columns: 1fr;
  }
}

.article-hero {
  background: linear-gradient(135deg, #edf6ef 0%, #f7fbf8 60%, #f2f8f3 100%);
  color: var(--text);
  padding: 120px 0 54px;
  text-align: left;
  position: relative;
  margin-top: 72px;
  border-bottom: 1px solid rgba(45, 90, 61, 0.12);
}

.article-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 14% 20%, rgba(45, 90, 61, 0.09), transparent 45%),
    radial-gradient(circle at 82% 12%, rgba(100, 142, 112, 0.11), transparent 38%);
  opacity: 0.9;
}

.article-hero .container {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.article-hero .tag {
  display: inline-block;
  background: rgba(45,90,61,0.11);
  color: var(--primary);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.65px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.article-hero .article-kicker {
  margin-bottom: 8px;
  color: #5f7e6a;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.85px;
  text-transform: uppercase;
}

.article-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.15rem, 4.5vw, 3.35rem);
  color: #1f3528;
  font-weight: 600;
  margin: 10px 0 14px;
  line-height: 1.15;
  letter-spacing: 0;
}

.article-hero .date {
  color: #5e7264;
  font-size: 0.92rem;
}

.article-meta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(45, 90, 61, 0.14);
  color: #355742;
  font-size: 0.76rem;
  font-weight: 600;
}

.article-body {
  background: #ffffff;
  padding: 40px 28px 70px;
  margin: 0 auto;
  max-width: 880px;
  position: relative;
}

.article-cover {
  margin: 0 0 24px;
  border-radius: 12px;
  overflow: hidden;
  background: #f2f6f3;
  border: 1px solid rgba(45, 90, 61, 0.1);
}

.article-cover img {
  width: 100%;
  height: clamp(260px, 50vw, 460px);
  object-fit: cover;
}

.article-cover figcaption {
  padding: 10px 14px;
  font-size: 0.78rem;
  color: #607567;
  border-top: 1px solid rgba(45, 90, 61, 0.1);
  background: #fbfdfc;
}

.article-intro {
  font-size: 1.25rem !important;
  line-height: 1.65 !important;
  color: #2d3f34 !important;
  margin: 0 0 30px !important;
  font-weight: 400;
}

.article-body h2 {
  color: #1f3528;
  margin: 38px 0 14px;
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.article-body h3 {
  color: #274634;
  margin: 28px 0 14px;
  font-size: 1.45rem;
}

.article-body p {
  margin-bottom: 18px;
  line-height: 1.88;
  font-size: 1.08rem;
  color: #2d3d33;
}

.article-body ul, .article-body ol {
  margin: 0 0 22px 18px;
  line-height: 1.8;
}

.article-body li {
  margin-bottom: 10px;
  padding-left: 2px;
}

.article-body strong {
  color: var(--primary);
  font-weight: 700;
}

.article-cta {
  background: linear-gradient(135deg, #eef7f1 0%, #f6fbf8 100%);
  color: var(--white);
  padding: 34px 30px;
  border-radius: 12px;
  text-align: left;
  margin: 48px 0 8px;
  border: 1px solid rgba(45, 90, 61, 0.16);
}

.article-cta h3 {
  color: #21412f;
  font-size: 1.55rem;
  margin-bottom: 10px;
}

.article-cta p {
  color: #48604f;
  margin-bottom: 18px;
}

.article-cta a {
  display: inline-block;
  background: #2d5a3d;
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid #2d5a3d;
  box-shadow: 0 6px 16px rgba(45, 90, 61, 0.2);
}

.article-cta a:hover {
  transform: translateY(-2px);
  background: #234a32;
  border-color: #234a32;
  box-shadow: 0 8px 20px rgba(45, 90, 61, 0.24);
}

.article-end-sections {
  margin-top: 60px;
  margin-bottom: 0;
  display: grid;
  gap: 22px;
}

.footer {
  margin-top: 80px;
}

.article-end-block {
  border: 1px solid rgba(45, 90, 61, 0.14);
  border-radius: 12px;
  background: #fbfdfc;
  padding: 18px 18px 16px;
}

.article-end-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.article-end-head h3 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  color: #1f3528;
  font-size: 1.25rem;
}

.article-end-link {
  color: #2d5a3d;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.45px;
}

.article-end-list {
  display: grid;
  gap: 10px;
}

.article-end-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(45, 90, 61, 0.1);
  border-radius: 10px;
  padding: 10px 12px;
  transition: all 0.22s ease;
}

.article-end-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.article-end-item:hover {
  transform: translateY(-2px);
  border-color: rgba(45, 90, 61, 0.24);
  box-shadow: 0 6px 18px rgba(45, 90, 61, 0.1);
}

.article-end-item strong {
  font-size: 0.95rem;
  color: #1f3528;
  line-height: 1.35;
}

.article-end-item span {
  font-size: 0.72rem;
  color: #5f7366;
  text-transform: uppercase;
  letter-spacing: 0.45px;
}

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

.article-product-card {
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(45, 90, 61, 0.12);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
  transition: all 0.22s ease;
}

.article-product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(45, 90, 61, 0.1);
  border-color: rgba(45, 90, 61, 0.24);
}

.article-product-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.article-product-card strong {
  color: #1f3528;
  font-size: 0.78rem;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .article-hero {
    padding: 92px 0 40px;
    margin-top: 60px;
  }
  .article-hero h1 {
    font-size: 2rem;
  }
  .article-meta {
    gap: 8px;
    margin-top: 14px;
  }
  .article-meta span {
    font-size: 0.7rem;
    padding: 6px 10px;
  }
  .article-body {
    padding: 26px 16px 42px;
    max-width: 100%;
  }
  .article-cover img {
    height: 240px;
  }
  .article-intro {
    font-size: 1.08rem !important;
  }
  .article-body h2 {
    font-size: 1.55rem;
  }
  .article-body p,
  .article-body li {
    font-size: 1rem;
  }
  .article-cta {
    padding: 24px 18px;
    border-radius: 10px;
  }
  .article-cta h3 {
    font-size: 1.3rem;
  }
  .article-end-sections {
    margin-top: 30px;
    gap: 14px;
  }
  .article-end-block {
    padding: 14px 12px;
  }
  .article-end-head h3 {
    font-size: 1.04rem;
  }
  .article-end-link {
    font-size: 0.68rem;
  }
  .article-end-item {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px;
  }
  .article-end-item strong {
    font-size: 0.9rem;
  }
  .article-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .article-product-card img {
    width: 40px;
    height: 40px;
  }
}

/* Share Button */
.share-box {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: row-reverse;
}

.share-box input[type="checkbox"] {
  width: 70px;
  height: 70px;
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  outline: none;
  background: transparent;
  border: none;
  border-radius: 50%;
  position: relative;
  box-shadow: none;
}

.share-box input[type="checkbox"]::before {
  content: '\f1e0';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Font Awesome 5 Free';
  font-weight: 700;
  font-size: 1.8rem;
  color: #2D5A3D;
  transition: all 0.3s;
}

.share-box input[type="checkbox"]:checked::before {
  content: '\f00d';
}

.share-box input[type="checkbox"]:checked ~ .share-menu {
  width: 420px;
}

.share-menu {
  width: 0;
  display: flex;
  flex-direction: row-reverse;
  overflow: hidden;
  transition: all 0.4s;
  margin-right: 10px;
  align-items: center;
}

.share-menu a {
  flex-shrink: 0;
}

.share-menu .share-item {
  width: 50px;
  height: 50px;
  background: transparent;
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 8px;
  box-shadow: none;
  transition: all 0.3s;
}

.share-menu .share-item:hover {
  transform: scale(1.1);
}

.share-menu .share-item i {
  font-size: 1.8rem;
  color: #2D5A3D;
}

.share-menu .share-item.whatsapp i { color: #25d366; }
.share-menu .share-item.instagram i { color: #c32aa3; }
.share-menu .share-item.facebook i { color: #1877f2; }
.share-menu .share-item.twitter i { color: #000000; }
.share-menu .share-item.tiktok i { color: #000000; }
.share-menu .share-item.link i { color: #2D5A3D; }
