/* ===== BASE STYLES ===== */
:root {
  --primary: #5d4037; /* Brun cacao profond */
  --secondary: #8d6e63; /* Brun clair */
  --accent: #d7ccc8; /* Beige naturel */
  --light: #efebe9; /* Fond clair */
  --dark: #3e2723; /* Texte foncé */
  --highlight: #ffab91; /* Orange doux */
  --success: #4caf50; /* Vert */
  --white: #ffffff;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
  font-family: "Maven Pro", sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--light);
  overflow-x: hidden;
}

.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 25px;
  border-radius: 5px;
  color: white;
  z-index: 10000;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s ease;
}

.notification.show {
  opacity: 1;
  transform: translateX(0);
}

.notification.success {
  background-color: #4caf50;
}

.notification.error {
  background-color: #f44336;
}
/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--primary);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--highlight);
}

/* ===== HEADER STYLES ===== */
header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  padding: 1.2rem 5%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.header-scrolled {
  padding: 0.8rem 5%;
  background: rgba(61, 39, 35, 0.95);
  backdrop-filter: blur(8px);
}

.logo img {
  height: 120px;
  padding: 2px;
  transition: var(--transition);
}

.header-scrolled .logo img {
  height: 50px;
}

/* Navigation */
header nav ul {
  display: flex;
  gap: 1.8rem;
  list-style: none;
}

nav li {
  position: relative;
}

nav a {
  display: flex;
  margin-top: -60px;
  color: var(--white);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

nav a::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--highlight);
  transition: var(--transition);
}

nav a:hover {
  color: var(--highlight);
}

nav a:hover::before {
  width: 100%;
}

/* Icons */
.material-icons {
  font-size: 1.2rem;
}

/* ===== HERO SECTION ===== */
.hero {
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 8rem 5% 4rem;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("/images/beurre-de-cacao.jpg") center/cover no-repeat;
  color: var(--white);
}

.hero-content {
  max-width: 600px;
  animation: fadeInUp 1s ease-out;
}

.hero h1 {
  color: var(--white);
  font-size: 4rem;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* ===== BENEFITS SECTION ===== */
:root {
  --primary-color: #8b5a2b;
  --secondary-color: #d4a76a;
  --accent-color: #ff9f43;
  --light-bg: #fff9f0;
  --dark-text: #3a2d1b;
  --light-text: #ffffff;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--light-bg);
  margin: 0;
  padding: 0;
}

.products-benefits {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.products-benefits h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 3rem;
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  letter-spacing: 0.5px;
}

.products-benefits h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  margin: 1rem auto 0;
  border-radius: 2px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
}

.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.product-image-container {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent-color);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-content {
  padding: 1.8rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-content h3 {
  color: var(--primary-color);
  margin: 0 0 1rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.product-benefits {
  margin: 0 0 1.5rem;
  padding: 0;
  flex-grow: 1;
}

.product-benefits li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.7rem;
  line-height: 1.5;
  color: var(--dark-text);
  list-style: none;
}

.product-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  background: var(--secondary-color);
  border-radius: 50%;
}

.product-cta {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  border: none;
  padding: 0.8rem;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: auto;
  text-align: center;
  display: block;
  text-decoration: none;
}

.product-cta:hover {
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--accent-color)
  );
  transform: translateY(-2px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.product-card:nth-child(1) {
  animation-delay: 0.1s;
}
.product-card:nth-child(2) {
  animation-delay: 0.2s;
}
.product-card:nth-child(3) {
  animation-delay: 0.3s;
}
.product-card:nth-child(4) {
  animation-delay: 0.4s;
}
.product-card:nth-child(5) {
  animation-delay: 0.5s;
}
.product-card:nth-child(6) {
  animation-delay: 0.6s;
}
.product-card:nth-child(7) {
  animation-delay: 0.7s;
}

@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .products-benefits h2 {
    font-size: 2rem;
  }

  .product-image-container {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .products-benefits {
    padding: 0 1.5rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .product-content {
    padding: 1.5rem;
  }
}
/* ===== CALL TO ACTION ===== */
.call-to-action {
  padding: 4rem 5%;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("/patyo/assets/images/cacao-bowl.jpg") center/cover no-repeat;
  color: var(--white);
}

.call-to-action h2 {
  color: var(--white);
}

.call-to-action h2::after {
  background: var(--white);
}

.call-to-action p {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

/* ===== BUTTONS ===== */
.button {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  text-align: center;
}

.primary {
  background: var(--highlight);
  color: var(--dark);
  box-shadow: 0 4px 15px rgba(255, 171, 145, 0.4);
}

.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 171, 145, 0.6);
}

.secondary {
  border: 2px solid var(--white);
  color: var(--white);
}

.secondary:hover {
  background: var(--white);
  color: var(--dark);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.floating {
  animation: float 3s ease-in-out infinite;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 6rem;
  }

  .hero-content {
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  h1 {
    margin: 100px;
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  nav ul {
    gap: 1rem;
  }
}

@media (max-width: 576px) {
  header {
    padding: 1rem 5%;
  }

  .logo img {
    height: 90px;
  }

  .benefits ul {
    grid-template-columns: 1fr;
  }
}

/* ===== MOBILE MENU ===== */
.menu-toggle {
  display: none;
  cursor: pointer;
  z-index: 1001;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
  }

  .menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark);
    padding: 80px 30px;
    transition: var(--transition);
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 1.5rem;
  }

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

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

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-section {
    text-align: center;
  }

  .footer-section h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

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

  .footer-links a {
    justify-content: center;
  }

  .contact-info li {
    justify-content: center;
  }
}

/* ===== MENU HAMBURGER ===== */
.hamburger {
  display: none; /* Caché par défaut sur desktop */
  padding: 15px;
  cursor: pointer;
  background: transparent;
  border: none;
  z-index: 1000;
}

.hamburger-box {
  width: 30px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  width: 100%;
  height: 3px;
  background-color: var(--white);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: var(--white);
  position: absolute;
  left: 0;
  transition: transform 0.3s ease;
}

.hamburger-inner::before {
  top: -8px;
}

.hamburger-inner::after {
  top: 8px;
}

/* État ouvert du menu */
.hamburger.active .hamburger-inner {
  background-color: transparent;
}

.hamburger.active .hamburger-inner::before {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .hamburger-inner::after {
  transform: translateY(-8px) rotate(-45deg);
}
/* ===== MENU MOBILE ===== */
@media (max-width: 768px) {
  .hamburger {
    display: block; /* Visible sur mobile */
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 60%;
    max-width: 300px;
    height: 60vh;
    background: var(--dark);
    padding: 100px 30px 30px;
    transition: right 0.4s ease;
    z-index: 999;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
  }

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

  .main-nav-list {
    flex-direction: column;
    gap: 1.5rem;
  }

  .main-nav a {
    font-size: 1.1rem;
    padding: 2rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .main-nav a i {
    font-size: 1.3rem;
  }
}
.quantity-btn:disabled {
  background: var(--accent) !important;
  color: var(--secondary) !important;
  cursor: not-allowed;
  opacity: 0.7;
}
/* ===== STRUCTURE ===== */
.registration-container {
  max-width: 500px;
  margin: 2rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(93, 64, 55, 0.1);
}

.registration-header {
  text-align: center;
  margin-bottom: 2rem;
}

.registration-header h1 {
  color: #5d4037;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.registration-header p {
  color: #795548;
}

/* ===== FORMULAIRE ===== */
.registration-form .form-group {
  margin-bottom: 1.5rem;
}

.registration-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: #5d4037;
  font-weight: 500;
}

.registration-form input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #d7ccc8;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s;
}

.registration-form input:focus {
  border-color: #8d6e63;
  box-shadow: 0 0 0 3px rgba(141, 110, 99, 0.2);
  outline: none;
}

.password-strength {
  height: 4px;
  background: #efebe9;
  margin-top: 0.5rem;
  border-radius: 2px;
  overflow: hidden;
}

.password-strength-bar {
  height: 100%;
  width: 0%;
  background: #8d6e63;
  transition: width 0.3s;
}

/* ===== BOUTONS ===== */
.btn-register {
  width: 100%;
  padding: 1rem;
  background: #5d4037;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-register:hover {
  background: #3e2723;
}

/* ===== LIENS ===== */
.registration-links {
  margin-top: 1.5rem;
  text-align: center;
}

.registration-links a {
  color: #8d6e63;
  text-decoration: none;
  transition: color 0.3s;
}

.registration-links a:hover {
  color: #5d4037;
  text-decoration: underline;
}

/* ===== VALIDATION ===== */
.is-invalid {
  border-color: #d32f2f !important;
}

.invalid-feedback {
  color: #d32f2f;
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 25px;
  border-radius: 5px;
  color: white;
  z-index: 10000;
  transform: translateX(150%);
  transition: transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.notification.show {
  transform: translateX(0);
}

.notification.success {
  background: #4caf50;
}

.notification.error {
  background: #f44336;
}

.cart-badge {
  background: #ff5722;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-left: 5px;
}

/* Checkout Page Styles */
.checkout-section {
  padding: 10rem 0;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.checkout-form {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.order-summary {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.form-group textarea {
  min-height: 100px;
}

.btn-confirm {
  background: #4caf50;
  color: white;
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
}

.order-items {
  margin-bottom: 2rem;
}

.order-item {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.order-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 1rem 0;
}

/* Confirmation Modal Styles */
.confirmation-section {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.confirmation-modal {
  background: white;
  padding: 3rem;
  border-radius: 8px;
  text-align: center;
  max-width: 600px;
  width: 90%;
}

.confirmation-icon {
  font-size: 4rem;
  color: #4caf50;
  margin-bottom: 1rem;
}

.confirmation-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

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

  .confirmation-actions {
    flex-direction: column;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 576px) {
  .registration-container {
    margin: 1rem;
    padding: 1.5rem;
  }

  .registration-header h1 {
    font-size: 1.5rem;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.registration-container {
  animation: fadeIn 0.5s ease-out;
}

/* ================ BASE STYLES ================ */
:root {
  --primary: #5d4037; /* Rich chocolate brown */
  --secondary: #8d6e63; /* Light chocolate */
  --accent: #d7ccc8; /* Warm beige */
  --light: #efebe9; /* Light background */
  --dark: #3e2723; /* Dark text */
  --white: #ffffff;
  --gold: #ffd700; /* Accent gold */

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;

  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
  font-family: "Montserrat", sans-serif;
  color: var(--dark);
  background-color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

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

section {
  padding: 80px 0;
  position: relative;
}

/* ================ HERO SECTION ================ */
.about-hero {
  background: linear-gradient(rgba(93, 64, 55, 0.85), rgba(93, 64, 55, 0.9)),
    url("https://images.unsplash.com/photo-1517142089942-ba376ce32a2e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80")
      no-repeat center/cover;
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--light));
  z-index: 1;
}

.about-hero .container {
  position: relative;
  z-index: 2;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
}

.about-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  color: var(--white);
}

.about-hero .subtitle {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  max-width: 700px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.5s forwards;
}

/* ================ MISSION SECTION ================ */
.about-mission {
  background-color: var(--white);
}

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

.mission-text h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.mission-text h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--gold), var(--primary));
  border-radius: 2px;
}

.mission-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.mission-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: perspective(1000px) rotateY(-10deg);
  transition: var(--transition);
  height: 400px;
}

.mission-image:hover {
  transform: perspective(1000px) rotateY(0deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.mission-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.mission-image:hover img {
  transform: scale(1.05);
}

/* ================ BENEFITS SECTION ================ */
.about-benefits {
  background-color: var(--light);
}

.about-benefits h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.benefit-card:nth-child(1) {
  animation-delay: 0.2s;
}
.benefit-card:nth-child(2) {
  animation-delay: 0.4s;
}
.benefit-card:nth-child(3) {
  animation-delay: 0.6s;
}
.benefit-card:nth-child(4) {
  animation-delay: 0.8s;
}

.benefit-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: var(--shadow-lg);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: inline-block;
  transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.2) rotate(10deg);
  color: var(--gold);
}

.benefit-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.benefit-card h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.benefit-card:hover h3::after {
  width: 80px;
}

/* ================ VALUES SECTION ================ */
.about-values {
  background-color: var(--white);
}

.about-values h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
}

.values-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.value-item {
  background: var(--light);
  padding: 30px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.value-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gold), var(--primary));
  opacity: 0;
  z-index: -1;
  transition: var(--transition);
}

.value-item:hover::before {
  opacity: 1;
}

.value-item:hover {
  color: var(--white);
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.value-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  transition: var(--transition);
}

.value-item:hover h3 {
  color: var(--white);
}

/* ================ TEAM SECTION ================ */
/* ===== ABOUT PAGE STYLES ===== */

/* Hero Section */
.about-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), url("images/about-bg.jpg"))
    no-repeat center/cover;
  color: white;
  text-align: center;
  padding: 120px 0;
  position: relative;
}

.about-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-hero .subtitle {
  font-size: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeIn 1s ease 0.5s forwards;
}

/* Intro Section */
.about-intro {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.intro-content h2 {
  font-size: 2.5rem;
  color: #5d4037;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.intro-content h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #8d6e63;
}

.intro-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

/* Products Showcase */
.products-showcase {
  padding: 80px 0;
  background-color: white;
}

.products-showcase h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #5d4037;
  margin-bottom: 60px;
}

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

.product-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
  height: 250px;
  overflow: hidden;
}

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

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

.product-content {
  padding: 25px;
}

.product-content h3 {
  font-size: 1.5rem;
  color: #5d4037;
  margin-bottom: 15px;
}

.product-content p {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6;
}

.product-benefits {
  margin-top: 20px;
  padding-left: 20px;
}

.product-benefits li {
  margin-bottom: 8px;
  color: #5d4037;
  position: relative;
}

.product-benefits li::before {
  content: "✓";
  color: #8d6e63;
  font-weight: bold;
  position: absolute;
  left: -20px;
}

/* Values Section */
.about-values {
  padding: 80px 0;
  background-color: #f5f0e6;
}

.about-values h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #5d4037;
  margin-bottom: 60px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #8d6e63;
}

.value-card h3 {
  font-size: 1.5rem;
  color: #5d4037;
  margin-bottom: 15px;
}

.value-card p {
  color: #666;
  line-height: 1.6;
}

/* Team/History Section */
.about-team {
  padding: 80px 0;
  background-color: white;
}

.about-team h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #5d4037;
  margin-bottom: 40px;
}

.team-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.team-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-hero h1 {
    font-size: 2.8rem;
  }

  .about-hero .subtitle {
    font-size: 1.3rem;
  }

  .intro-content h2,
  .products-showcase h2,
  .about-values h2,
  .about-team h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 100px 0;
  }

  .about-hero h1 {
    font-size: 2.5rem;
  }

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

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

@media (max-width: 576px) {
  .about-hero h1 {
    font-size: 2rem;
  }

  .about-hero .subtitle {
    font-size: 1.1rem;
  }

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

  .intro-content h2,
  .products-showcase h2,
  .about-values h2,
  .about-team h2 {
    font-size: 1.8rem;
  }
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-hero {
  background: linear-gradient(rgba(93, 64, 55, 0.85), rgba(93, 64, 55, 0.9)),
    url("https://images.unsplash.com/photo-1515694346937-94d85e41e6f0?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80")
      no-repeat center/cover;
  color: white;
  text-align: center;
  padding: 100px 0;
  position: relative;
}

.contact-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease;
}

.contact-hero .subtitle {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeIn 1s ease 0.5s forwards;
}

.containers h1 {
  color: white;
  padding: 2rem;
}

.contact-form-section {
  padding: 80px 0;
  background-color: var(--light);
}

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

.contacts-info {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  align-self: start;
}

.contacts-info h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--primary);
  position: relative;
  padding-bottom: 10px;
}

.contacts-info h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gold);
}

.info-item {
  display: flex;
  margin-bottom: 25px;
  align-items: flex-start;
}

.info-icon {
  font-size: 1.5rem;
  margin-right: 15px;
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 40px;
}

.social-icon {
  display: inline-flex;
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--gold);
  transform: translateY(-5px);
}

/* Form Styles */
.form-container {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.alert {
  padding: 20px;
  margin-bottom: 30px;
  border-radius: var(--radius-sm);
}

.alert-danger {
  background: #ffebee;
  border-left: 4px solid #f44336;
  color: #c62828;
}

.alert-success {
  background: #e8f5e9;
  border-left: 4px solid #4caf50;
  color: #2e7d32;
}

.contact-form {
  display: grid;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

label {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary);
}

input,
select,
textarea {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0;
}

.form-checkbox input {
  margin-top: 3px;
}

.form-checkbox label {
  font-weight: normal;
  font-size: 0.9rem;
}

.submit-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-btn:hover {
  background: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    order: -1;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 80px 0;
  }

  .contact-hero h1 {
    font-size: 2.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .contact-info,
  .form-container {
    padding: 30px;
  }

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