:root {
    /* Primary Colors */
    --bonnet-red:#c20016;/*#dd2525;*/      /* C2 M94 Y87 K0 */
    --bonnet-sky: #80D0ED;      /* C50 M2 Y0 K0 */
    --bonnet-blue: #2E7AB4;     /* C83 M41 Y0 K0 */
    --bonnet-gold: #cda967;     /* Gold for gradient */
    --white: #FFFFFF;
    
    /* Neutral Colors */
    --black: #000000;
    --dark-gray: #333333;
    --medium-gray: #666666;
    --light-gray: #F5F5F5;
    --border-gray: #E0E0E0;
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px;
    --section-padding-mobile: 40px;
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
    --transition-fast: all 0.2s ease;
}
body{overflow-x:hidden !important;}.d-flex{display:flex;}.m-auto{margin:auto;}
/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition-smooth);
}

input, textarea {
    font-family: inherit;
    border: none;
    outline: none;
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-gray);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: var(--section-padding) 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 0.95rem;
    /*text-transform: uppercase;*/
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: var(--transition-smooth);
    cursor: pointer;outline:none !important;
}

.btn-primary {
    background-color: var(--bonnet-red);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #c71019;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 20, 30, 0.3);
}

.btn-secondary {
    background-color: var(--bonnet-blue);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #245f92;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--bonnet-red);
    border: 2px solid var(--bonnet-red);
}
.btn-outline:hover {
    background-color: var(--bonnet-red);
    color: var(--white);
}
.btn-outline.white{
    color:var(--white);
    border-color:var(--white);
}
.play {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  margin: auto;
  width: 50px;
  height: 50px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image:url('../images/play.png');
}
.text_couper{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;}
.text_couper_1{text-overflow:ellipsis;overflow:hidden;white-space:nowrap;}
/* Section Titles */
.section-title {
    text-align: center;
    font-size:30px;/*2.5rem;*/
    font-weight: 700;
    color: var(--bonnet-blue);
    margin-bottom: 3rem;
    position: relative;
}
.section-title.recette{text-align:left;}
.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--bonnet-red), var(--bonnet-gold));
    margin: 20px auto 0;
    border-radius: 2px;
}
.section-title.recette::after {margin:20px 0 0 0;}
.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bonnet-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

/* ===================================
   HEADER
   =================================== */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Header Top */
.header-top {
    background-color:var(--bonnet-gold);
    padding: 10px 0;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.social-links a {
    color: var(--white);
    font-size: 1rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
}

.social-links a:hover {
    background-color: var(--bonnet-red);
    transform: scale(1.1);
}

.header-links {
    display: flex;
    gap: 25px;
}

.header-links a {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
}

.header-links a:hover {
    /*color: var(--bonnet-red);*/
}

/* Main Navigation */
.main-nav {
    padding:10px 0;
    background-color: var(--white);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    color: var(--dark-gray);
    font-weight:500;
    font-size: 0.95rem;
    text-transform: uppercase;
    padding: 10px 0;
    display: block;
    outline: none !important;
}

.nav-item > a:hover, .nav-item > a.active{
    color: var(--bonnet-red);
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 250px;
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition-smooth);
    border-top: 3px solid var(--bonnet-red);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    /*transform: translateY(0);*/
}

.dropdown-menu li a {
    display: block;
    padding: 12px 30px;
    color: var(--dark-gray);
    font-size: 0.9rem;
    font-weight: 500;text-transform: uppercase;
}

.dropdown-menu li a:hover {
    background-color: var(--light-gray);
    color: var(--bonnet-red);
    padding-left: 35px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--bonnet-red);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Search */
.nav-actions .search-toggle {
    color: var(--bonnet-red);
    font-size: 1.3rem;
    padding: 8px;
}

.search-bar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    padding: 30px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: var(--transition-smooth);
}

.search-bar.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-form {
    display: flex;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.search-form input {
    flex: 1;
    padding: 15px 50px 15px 20px;
    border: 2px solid var(--border-gray);
    border-radius: 50px;
    font-size: 1rem;
}

.search-form button {
    position: absolute;
    right: 5px;
    background-color: var(--bonnet-red);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--medium-gray);
}

/* ===================================
   HERO SLIDER
   =================================== */
.hero-slider {
    position: relative;
    height: 500px;
    /*overflow: hidden;*/
}

.slider-wrapper {
    position: relative;
    height: 100%;
}
.slider-wrapper:before{
    content:"";position:absolute;bottom:-60px;left:0;z-index:2;
    width:100%;height:100px;background-size:cover;background-image:url('../images/ruban.svg');
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease;
}
.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent);
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}
.slide-content .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.content-wrapper {
    max-width: 600px;
}

.slide-title {
    font-size:40px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.product-showcase {
    max-width: 400px;
}

.product-showcase img {
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: float 3s ease-in-out infinite;
}

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

/* Slider Controls */
.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--bonnet-red);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.slider-control:hover {
    background-color: var(--bonnet-red);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.slider-control.prev { left: 30px; }
.slider-control.next { right: 30px; }

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    transition: var(--transition-smooth);
}

.dot.active {
    background-color: var(--bonnet-red);
    width: 40px;
    border-radius: 6px;
}

/* ===================================
   REACH PEAK SECTION
   =================================== */
.reach-peak {
    background: linear-gradient(180deg, var(--bonnet-sky) 0%, var(--white) 100%);
    padding: 60px 0;
    text-align: center;
}

.reach-peak .section-title {
    font-size:30px;/*3rem;*/
    color: var(--bonnet-blue);
    font-style: italic;
}

/* ===================================
   RECIPE SECTION
   =================================== */
.recipe-section {
    position:relative;
    padding:80px 0 150px 0;
    background-color:var(--bonnet-red);/*var(--light-gray);*/
}
.pattern-layer {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 164px;
  z-index:1;
  background-image: url(../images/pattern.png);
  background-repeat: repeat-x;
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.decorative-swoosh {
    width: 150px;
    height: 4px;
    background: linear-gradient(to right, var(--bonnet-red), var(--bonnet-gold));
    margin: 0 auto 20px;
    border-radius: 2px;
}

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

.recipe-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.recipe-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

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

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

.recipe-content {
    padding: 25px;
}

.recipe-title {
    font-size: 1.5rem;
    color: var(--bonnet-blue);
    margin-bottom: 10px;
}

.recipe-description {
    color: var(--medium-gray);
    margin-bottom: 15px;
}

.recipe-link {
    color: var(--bonnet-red);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.recipe-link:hover {
    gap: 10px;
}

.section-footer {
    position: relative;
  z-index: 2;
    text-align: center;
}

/* ===================================
   BRAND PROFILE SECTION
   =================================== */
.brand-profile {
    padding: var(--section-padding) 0;
    background-color: var(--white);
}

.profile-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
    background-color: #FFFBF0;
    border: 3px solid var(--bonnet-gold);
    border-radius: 12px;
}

.profile-title {
    text-align: center;
    font-size: 2rem;
    color: var(--bonnet-blue);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.profile-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 20px;
    text-align: justify;
}

/* ===================================
   PRODUCTS SECTION
   =================================== */
.products-section {
    padding: var(--section-padding) 0;
    background-color: var(--light-gray);
    background-image: url("../images/bg_lait.webp");
    background-size: cover;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 30px;
}

.product-card{
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    /*
    background-color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    */
}
/*
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
*/
.product-image {
    height: 220px;
    display:flex;
    align-items:center;
    justify-content:center;/*background:repeating-radial-gradient(circle at center,
    #cda967 0 12%,
    rgba(205,169,103,0.85) 12% 24%);*//*var(--bonnet-gold);*/
    margin-bottom:20px;border-radius:15px;
}

.product-image img {max-width:100%;
    max-height: 100%;margin-bottom:-60px;transition:0.3s;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}
.product-card:hover img{margin-bottom:-40px;}
.product-name {
    font-size:18px;/*1.4rem;*/
    color: var(--bonnet-blue);
    margin-bottom: 15px;font-weight:500;
}

.product-description {
    color: var(--medium-gray);
    margin-bottom: 20px;line-height:20px;
}

/* ===================================
   NEWSLETTER SECTION
   =================================== */
.newsletter-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--bonnet-red), var(--bonnet-blue));
    color: var(--white);
}

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

.newsletter-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.newsletter-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

.newsletter-form input {
    flex: 1;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 15px 40px;
}

/* ===================================
   FOOTER
   =================================== */
.main-footer {
    background-color: var(--bonnet-red);
    color: var(--white);
}

.footer-top {
    padding: 60px 0 40px;
}

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

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    text-transform: uppercase;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;text-transform: capitalize;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    /*color: var(--bonnet-red);
    padding-left: 5px;*/
}

.footer-social {
    display: flex;
    gap: 15px;
    max-width: 160px;
    flex-wrap: wrap;
}

.footer-social a {
    min-width: 40px;width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.footer-social a:hover {
    background-color: var(--bonnet-red);
    transform: scale(1.1);
}

.footer-bottom {
    background-color:var(--white);/*rgba(0, 0, 0, 0.2);*/
    padding:20px 0;color: #a6907b;
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;line-height:10px;
}

.footer-logo img {
    height: 50px;
}

.footer-tagline {
    font-size: 1.1rem;
    font-weight: 600;/*text-transform: uppercase;*/
    font-style: italic;margin-bottom:0;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.8;margin-bottom:0;
}

/* ===================================
   BACK TO TOP BUTTON
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--bonnet-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--bonnet-blue);
    transform: translateY(-5px);
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}