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


        :root {
            --beige: #f5f5dc;
            --kaki: #8d9b6a;
            --saumon: #fa8072;
            --orange: #dd8537;
            --gray-600: #6b7280;
            --gray-700: #374151;
            --gray-800: #1f2937;
        }

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

        h1, h2, h3, h4 {
            font-family: 'Georgia', serif;
        }


        .container {
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1rem;
            padding-right: 1rem;
        }


        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(245, 245, 220, 0.95);
            backdrop-filter: blur(4px);
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.36);
            z-index: 50;
            transition: transform 0.3s ease;
        }

        .header-content {
            padding-top: 1rem;
            padding-bottom: 1rem;
        }

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

        .header-logo {
            text-align: center;
            margin-bottom: 1rem;
        }

        .header-logo a {
            font-size: 2.5rem;
            font-family: 'Georgia', serif;
            font-weight: bold;
            color: var(--kaki);
            text-decoration: none;
            transition: opacity 0.3s ease;
        }

        .header-logo a:hover {
            opacity: 0.6;
  transition: transform 0.3s ease;
        }

        .nav-container {
            display: flex;
            justify-content: center;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-button {
            color: var(--gray-600);
            text-decoration: none;
            font-size: 0.88rem;
            font-weight: 500;
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-button:hover {
            color: var(--kaki);
        }

        .nav-button::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--kaki);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-button:hover::after {
            width: 100%;
        }


        @media (min-width: 768px) {
            .header-flex {
                flex-direction: row;
            }

            .header-logo {
                text-align: left;
                margin-bottom: 0;
            }

            .nav-container {
                justify-content: flex-end;
            }
            .nav-button {
            font-size: 1.1rem;
            }
        }


        .header-hidden {
            transform: translateY(-100%);
        }

        .header-visible {
            transform: translateY(0);
        }


        .hero-section {
            background-color: var(--beige);
            padding-bottom: 5rem;
            padding-top: 8rem;
        }

        .hero-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .hero-text {
            width: 100%;
            margin-bottom: 3rem;
        }

        .hero-title {
            font-size: 3rem;
            font-weight: bold;
            color: var(--kaki);
            margin-bottom: 1.5rem;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--gray-600);
            margin-bottom: 1.5rem;
        }

        .hero-description {
            color: var(--gray-700);
            font-size: 1.1rem;
            margin-bottom: 2rem;
            line-height: 1.75;
        }

        .note {
  font-size: 0.8rem;
  line-height: 1.5;
  display: block;
  color: var(--gray-700);
  font-style: italic;
}


        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .hero-image {
            width: 100%;
        }

        .hero-img {
            width: 100%;
            height: 20rem;
            object-fit: cover;
            border-radius: 0.5rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }


        .btn {
            padding: 0.75rem 2rem;
            border-radius: 0.5rem;
            text-decoration: none;
            text-align: center;
            font-weight: 500;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-primary {
            background-color: var(--kaki);
            color: white;
            border: none;
        }

        .btn-primary:hover {
            background-color: transparent;
            color: var(--kaki);
            border: 2px solid var(--kaki);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            transform: translateY(-5px);
        }

        .btn-outline {
            border: 2px solid var(--kaki);
            color: var(--kaki);
            background-color: transparent;
        }

        .btn-outline:hover {
            background-color: var(--kaki);
            color: white;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            transform: translateY(-5px);
        }


        @media (max-width: 639px) {
  .hero-title {
    padding-top: 3rem;
  }
}

        @media (min-width: 640px) {
            .hero-buttons {
                flex-direction: row;
            }

            .hero-title {
                font-size: 3rem;
            }

            .hero-subtitle {
                font-size: 1.8rem;
            }

        }


        @media (min-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
        }

        @media (min-width: 1024px) {
            .hero-container {
                flex-direction: row;
                align-items: center;
            }

            .hero-text {
                width: 50%;
                margin-bottom: 0;
            }

            .hero-image {
                width: 55%;
                padding-left: 3rem;
            }

            .hero-img {
                height: 22rem;
            }

            .hero-title {
                font-size: 3rem;
            }
        }

        @media (min-width: 1280px) {
            .hero-title {
                font-size: 4rem;
            }

        }


        .about-section {
            background-color: var(--kaki);
            color: white;
            padding-top: 5rem;
            padding-bottom: 5rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 1.875rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.6rem;
            color: var(--gray-700);

        }

        .about-content {
            max-width: 64rem;
            margin-left: auto;
            margin-right: auto;
        }

        .about-intro {
            text-center;
            margin-bottom: 3rem;
        }

        .about-text {
            font-size: 1.125rem;
            line-height: 1.75;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
        }

        .profile-image {
            display: flex;
            justify-content: center;
            margin-top: -1rem;
            margin-bottom: -1.6rem;
        }

        .profile-img {
            width: 16rem;
            height: 15rem;
            border-radius: 50%;
            object-fit: cover;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }

        .mission-vision {
            display: grid;
            gap: 2rem;
        }

        .mission-card,
        .vision-card {
            background-color: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(4px);
            padding: 2rem;
            border-radius: 0.5rem;
        }

        .card-title {
            font-size: 1.6rem;
            font-family: 'Georgia', serif;
            font-weight: bold;
            margin-bottom: 2rem;
            margin-top: -1.2rem;
            text-align: center;
            color: var(--gray-600);
        }

        .card-text {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.75;
        }

        @media (min-width: 768px) {
            .section-title {
                font-size: 2.25rem;
            }

            .mission-vision {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (min-width: 1024px) {
            .section-title {
                font-size: 3.5rem;
            }
        }


        .products-section {
            background-color: var(--beige);
            padding-top: 5rem;
            padding-bottom: 5rem;
        }
        .all-products-section{
            background-color: var(--kaki);
            padding-top: 5rem;
            padding-bottom: 5rem;
        }

        .products-section .section-title {
            color: var(--kaki);
        }


        .products-section .section-subtitle {
            color: var(--gray-600);
        }


        .products-grid {
            display: grid;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .product-card {
            background-color: #f5f6f1;
            padding: 1.5rem;
            border-radius: 0.5rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
        }

        .product-card:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
        }

        .product-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 0.5rem;
    margin-bottom: 0.6rem;
}

        .product-title {
            font-size: 1.6rem;
            font-family: 'Georgia', serif;
            font-weight: bold;
            color: var(--kaki);
            margin-bottom: 0.4rem;
            text-align: center;
        }

        .product-description {
            color: var(--gray-700);
            line-height: 1.75;
            font-style: italic;
            margin-bottom: 0.4rem;
        }

        .product-price {
    font-size: 1.4rem;
    font-weight: bold;
    color: #485b1f;
    text-align: left;
    margin-left: 0.6rem;
    margin-bottom: 0rem;
}

.product-ref {
    font-size: 0.8rem;
    font-style: italic;
    color: var(--gray-600);
    margin-right: 0.6rem;
    text-align: right;
    margin-bottom: -0.8rem;
}


.products-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  width: 60%;
  margin: 0 auto 3rem;
  align-items: center;
  margin-top: -2.4rem;
  margin-bottom: 2.2rem;
  padding: 1rem 2rem;
  background-color: var(--beige);
  border: 1px solid var(--kaki);
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.filters-label {
  font-weight: bold;
  color: var(--gray-700);
  font-size: 1.8rem;
  font-weight: 750;
  align-self: center;
  margin-right: 1rem;
}


.filter-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 1rem;
  min-width: 150px;
}

.filter-group label {
  font-weight: bold;
  color: var(--kaki);
  font-size: 0.95rem;
}


.products-filters select {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--kaki);
  background-color: #fff;
  color: var(--gray-700);
  transition: all 0.3s ease;
  width: 100%;
  cursor: pointer;
}

.products-filters select:hover {
  border-color: #8d9b6a;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.products-filters select:focus {
  outline: none;
  border-color: #8d9b6a;
  box-shadow: 0 0 0 3px rgba(141, 155, 106, 0.25);
}


        .products-cta {
            text-align: center;
            font-size: 2.25rem;
        }
        .products-cta .btn {
        width: 100%;
    font-size: 1.6rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    background-color: var(--kaki);
    color: white;
    transition: all 0.3s ease;
}

.products-cta .btn:hover {
    background-color: rgba(141, 155, 106, 0.9);
    transform: translateY(-6px);
}


        @media (min-width: 768px) {
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .products-cta .btn {
        width: 70%;
        }
        }


        .contact-section {
            background-color: var(--kaki);
            color: white;
            padding-top: 5rem;
            padding-bottom: 5rem;
        }

        .all-contact-section {
            background-color: var(--beige);
            color: white;
            padding-top: 5rem;
            padding-bottom: 5rem;
        }

        .contact-subtitle {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 600;
}
.contact-subtitle-produits {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

        .contact-content {
            max-width: 72rem;
            margin-left: auto;
            margin-right: auto;
        }

        .contact-grid {
            display: grid;
            gap: 4rem;
        }


        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-input {
            width: 100%;
            padding: 0.75rem 1rem;
            border-radius: 0.5rem;
            background-color: #f1f1f1;
            color: #1a1a1a;
            border: none;
            outline: none;
            transition: all 0.3s ease;
            font-size: 0.8rem;
        }
        .form-input::placeholder {
    color: #878983;
    }

        .form-input:focus {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            outline: 2px solid rgba(255, 255, 255, 0.3);
        }

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

        .form-textarea-little{
            resize: vertical;
            min-height: 80px;
        }


        .form-button {
            width: 78%;
            background-color: var(--gray-600);
            color: white;
            padding: 0.9rem 2rem;
            border-radius: 0.5rem;
            border: none;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
            margin: 0 auto;
        }

        .form-button:hover {
            background-color: var(--gray-800);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transform: translateY(-2px);
        }

        .form-message {
  margin-top: 15px;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
}


        .contact-items {
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .contact-icon {
            font-size: 1.4rem;
        }
        .contact-form-container,
.contact-info-container {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.all-contact-form-container,
.all-contact-info-container {
    background-color: rgba(255, 255, 255, 0.4);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

input[name="_gotcha"] {
  display: none !important;
}

        @media (min-width: 768px) {
            .contact-grid {
            grid-template-columns: 2fr 1fr;

            }
        }



        .footer {
            background-color: var(--orange);
            color: white;
            padding-top: 2rem;
            padding-bottom: 2rem;
        }

        .footer-notice {
            text-align: center;
            margin-bottom: 1.4rem;
            margin-top: -1.2rem;
        }

        .footer-notice-content {
            background-color: rgba(255, 255, 255, 0.1);
            width: 100%;
            margin: 0 auto;
            backdrop-filter: blur(4px);
            padding: 1rem;
            border-radius: 0.5rem;
        }

        .footer-notice-text {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .footer-grid {
            display: grid;
            gap: 2rem;
            margin-bottom: 0.5rem;
        }

        .footer-brand h3 {
            font-size: 1.6rem;
            color: black;
            font-family: 'Georgia', serif;
            font-weight: bold;
            margin-bottom: 1.2rem;
        }
        .footer-brand h3 a {
    text-decoration: none;
    color: black;
}

.footer-brand h3 a:hover {
    text-decoration: underline;
    color: #374151;
}



        .footer-brand p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
        }

        .social-links {
            display: flex;
            gap: 1.4rem;
            margin-top: -0.2rem;
            margin-bottom: 0.2rem;
            color: black;
        }

        .social-link {
            color: white;
            font-size: 1.5rem;
            text-decoration: none;
            transition: opacity 0.3s ease;
        }

        .social-link:hover {
            opacity: 0.8;
        }

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

        .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

        .footer-link {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s ease;
        }

        .footer-link:hover {
            opacity: 0.5;
        }


        .footer-copyright {
    font-size: 0.875rem;
    color: black;
    font-weight: bold;
    margin-top: -0.8rem;
    margin-bottom: 0.8rem;
}


        .footer-creator h4 {
        font-size: 1.2rem;
            font-weight: bold;
            color: black;
            margin-bottom: 1rem;
        }

        .footer-creator-info {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            font-size: 0.875rem;
            margin-bottom: 0.6rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .footer-credit {
            text-align: center;
            margin-top: -0.4rem;
            padding-top: 0.5rem;
            margin-bottom: -1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }

        .footer-credit p {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .footer-credit a {
            color: inherit;
            text-decoration: none;
            transition: opacity 0.3s ease;
        }

        .footer-credit a:hover {
            opacity: 0.6;
        }

        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .footer-creator {
                text-align: right;
            }

            .footer-creator-info {
                align-items: flex-end;
            }
            .footer-notice-content {
            color: inherit;
            text-decoration: none;
        }
        }


        .contact-link {
  color: inherit;
  text-decoration: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.contact-link:hover {
  opacity: 0.5;
}


.legal-main {
    background-color: var(--beige);
    padding-top: 8rem;
    padding-bottom: 2rem;
}

.legal-content {
    max-width: 1200px;
    margin: 0 auto;
    background: #fffdf5;
    padding: 2rem 2.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.legal-content h1 {
    text-align: center;
    color: var(--kaki);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.legal-content h2 {
    color: var(--kaki);
    font-size: 1.6rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-content p {
    color: var(--gray-800);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.legal-content a {
    color: var(--kaki);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.legal-content a:hover {
    color: var(--gray-800);
    text-decoration: underline;
}



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

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

        .parallax-element {
            transform: translateY(0);
            transition: transform 0.3s ease-out;
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }


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


        input[name="_gotcha"] {
            display: none !important;
        }


        @media (max-width: 639px) {
            .nav-links {
                gap: 1.5rem;
            }

            .hero-section {
                padding-top: 6rem;
                padding-bottom: 4rem;
            }

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

            .section-title {
                font-size: 1.75rem;
            }

            .container {
                padding-left: 1rem;
                padding-right: 1rem;
            }
        }