@import url('https://fonts.googleapis.com/css2?family=MoMo+Trust+Sans:wght@300;400;500;600;700&display=swap');


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

:root {
    --vert-principal: #264D37;
    --creme: #FAF8F5;
    --beige: #E8E4DC;
    --blanc-casse: #FDFCFA;
    --texte-sombre: #2A2A2A;
    --texte-clair: #6B6B6B;
}

body {
    font-family: 'MoMo Trust Sans', sans-serif;
    background: var(--creme);
    color: var(--texte-sombre);
    line-height: 1.6;
}

/* Header avec contraste */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--vert-principal);
    padding: 2px 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(38, 77, 55, 0.15);
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo,
.nav-link {
    font-family: 'MoMo Trust Sans', sans-serif;
}

.logo {
    display: block;
    transition: opacity 0.3s;
}

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

.logo:hover {
    opacity: 0.8;
}

nav {
    display: flex;
    gap: 3rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--creme);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    transition: all 0.3s;
    position: relative;
    opacity: 0.8;
}

.cart-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.cart-icon {
    width: 24px;
    height: 24px;
    fill: var(--creme);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #D32F2F;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

.cart-badge.hidden {
    display: none;
}

nav a.active {
    opacity: 1;
    font-weight: 600;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--creme);
    transition: width 0.3s;
}

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

nav a:hover {
    opacity: 1;
}

/* Menu hamburger caché sur desktop */
.menu-toggle {
    display: none;
}

/* Hero minimaliste */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 4rem 2rem;
    background: linear-gradient(135deg, var(--creme) 0%, var(--blanc-casse) 100%);
}

.hero-content {
    text-align: center;
    max-width: 900px;
}

.hero h1 {
    font-size: 6rem;
    font-weight: 700;
    color: var(--vert-principal);
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero h2 {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--texte-clair);
    margin-bottom: 4rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.divider {
    width: 80px;
    height: 2px;
    background: var(--vert-principal);
    margin: 3rem auto;
}

/* Section content pour les autres pages */
section {
    padding: 10rem 4rem 6rem;
    min-height: 100vh;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-header h1 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--vert-principal);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--texte-clair);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    margin-top: 4rem;
}

.contact-item {
    margin-bottom: 3rem;
}

.contact-item h3 {
    font-size: 0.9rem;
    color: var(--vert-principal);
    margin-bottom: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-item p,
.contact-item a {
    font-size: 1.1rem;
    color: var(--texte-sombre);
    text-decoration: none;
    transition: color 0.3s;
    line-height: 1.8;
}

.contact-item a:hover {
    color: var(--vert-principal);
}

.social-links-main {
    display: flex;
    gap: 1.5rem;
}

.social-links-main a {
    width: 50px;
    height: 50px;
    border: 1px solid var(--vert-principal);
    color: var(--vert-principal);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links-main a:hover {
    background: var(--vert-principal);
}

.social-links-main a:hover svg {
    fill: var(--creme);
}

.social-links-main svg {
    width: 22px;
    height: 22px;
    fill: var(--vert-principal);
    transition: fill 0.3s;
}

.contact-message {
    font-size: 1.05rem;
    color: var(--texte-clair);
    line-height: 1.9;
}

/* Grid à propos */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-top: 4rem;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--texte-clair);
    margin-bottom: 2rem;
}

.about-text a {
    color: var(--vert-principal);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: opacity 0.3s;
}

.about-text a:hover {
    opacity: 0.8;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: contain;
}

/* Compétences NON cliquables */
.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3rem;
}

.skill-tag {
    background: transparent;
    color: var(--vert-principal);
    padding: 0.7rem 1.8rem;
    border: 1px solid var(--vert-principal);
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: default;
    user-select: none;
}

/* Portfolio Content */
.portfolio-content p {
    font-size: 1.1rem;
    color: var(--texte-clair);
    line-height: 1.9;
    margin-bottom: 3rem;
}

/* Bouton de téléchargement */
.download-btn {
    display: block;
    width: fit-content;
    margin: 3rem auto;
    padding: 1.2rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-transform: uppercase;
    background: var(--vert-principal);
    color: var(--creme);
    border: none;
    border-radius: 50px;
    transition: all 0.3s;
}

.download-btn:hover {
    background: #1e3d2a;
    color: var(--creme);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(38, 77, 55, 0.3);
}

.download-btn::before {
    content: '↓';
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* Boutique - Filtres de catégories */
.category-filters {
    display: flex;
    justify-content: flex-start;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(38, 77, 55, 0.15);
}

.category-btn {
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 400;
    color: var(--texte-clair);
    cursor: pointer;
    padding: 0.5rem 0;
    letter-spacing: 0.03em;
    transition: all 0.3s;
    position: relative;
}

.category-btn.active {
    color: var(--vert-principal);
    font-weight: 600;
}

.category-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--vert-principal);
    transition: width 0.3s;
}

.category-btn.active::after {
    width: 100%;
}

.category-btn:hover {
    color: var(--vert-principal);
}

/* Grille de produits */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 3rem;
    align-items: start;
    margin-top: 4rem;
}

.product-card {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    width: 100%;
    padding-top: 133%;
    background: var(--blanc-casse);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
}

.product-image img.hover-image {
    opacity: 0;
}

.product-card:hover .product-image img.hover-image {
    opacity: 1;
}

.product-card:hover .product-image img:not(.hover-image) {
    opacity: 0;
}

/* Hover sur mobile avec touch */
.product-card.touch-active .product-image img.hover-image {
    opacity: 1;
}

.product-card.touch-active .product-image img:not(.hover-image) {
    opacity: 0;
}

.product-info {
    text-align: left;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--texte-sombre);
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 0.8rem;
    /* Reduced further from 0.9rem */
    color: var(--texte-clair);
    margin-bottom: 1rem;
}

.product-colors {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-start;
    /* Aligned left */
    flex-wrap: wrap;
}

.section-divider {
    grid-column: 1 / -1;
    height: 1px;
    background: rgba(38, 77, 55, 0.15);
    margin: 2rem 0;
}

.color-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.2s;
}

.color-dot:hover {
    transform: scale(1.2);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--vert-principal);
    color: var(--creme);
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.badge-sold-out {
    background: var(--texte-clair);
}

/* Panier - Main Container */
.cart-container {
    padding: 10rem 4rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--vert-principal);
    margin-bottom: 3rem;
    text-align: center;
}

/* Cart Items */
.cart-items {
    background: var(--blanc-casse);
    padding: 2rem;
    margin-bottom: 3rem;
    border-radius: 8px;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--beige);
    align-items: center;
}

.cart-item:last-child {
    border-bottom: none;
}

.item-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
}

.item-details h3 {
    font-size: 1.2rem;
    color: var(--vert-principal);
    margin-bottom: 0.5rem;
}

.item-details p {
    color: var(--texte-clair);
    font-size: 0.9rem;
    margin: 0.25rem 0;
}

.item-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--texte-sombre);
}

.remove-btn {
    background: none;
    border: none;
    color: #D32F2F;
    cursor: pointer;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    text-decoration: underline;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.remove-btn:hover {
    opacity: 1;
}

.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--texte-clair);
}

.empty-cart h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.continue-shopping {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background: var(--vert-principal);
    color: var(--creme);
    text-decoration: none;
    transition: all 0.3s;
}

.continue-shopping:hover {
    background: #1e3d2a;
    transform: translateY(-2px);
}

/* Cart Summary */
.cart-summary {
    background: var(--blanc-casse);
    padding: 2rem;
    margin-bottom: 3rem;
    border-radius: 8px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--beige);
}

.summary-row:last-child {
    border-bottom: none;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--vert-principal);
    padding-top: 1.5rem;
}

/* Order Form */
.order-form {
    background: var(--blanc-casse);
    padding: 2rem;
    border-radius: 8px;
}

.order-form h2 {
    font-size: 1.5rem;
    color: var(--vert-principal);
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--texte-sombre);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--beige);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.submit-order {
    width: 100%;
    padding: 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: var(--vert-principal);
    color: var(--creme);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
    border-radius: 50px;
}

.submit-order:hover {
    background: #1e3d2a;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(38, 77, 55, 0.3);
}

.submit-order:disabled {
    background: var(--beige);
    cursor: not-allowed;
    transform: none;
}

/* Success Message */
.success-message {
    display: none;
    background: #d4edda;
    color: #155724;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin: 2rem 0;
}

.success-message.show {
    display: block;
}

.success-message h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Page Produit */
.product-container {
    padding: 10rem 4rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.breadcrumb {
    font-size: 0.9rem;
    color: var(--texte-clair);
    margin-bottom: 2rem;
}

.breadcrumb a {
    color: var(--texte-clair);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--vert-principal);
}

.breadcrumb span {
    margin: 0 0.5rem;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 150px;
}

.gallery-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gallery-images img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.product-info h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--vert-principal);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.product-layout .product-info .product-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--texte-sombre);
    margin-bottom: 2rem;
}

.product-description {
    font-size: 1.05rem;
    color: var(--texte-clair);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.variant-section {
    margin-bottom: 2rem;
}

.variant-label {
    font-weight: 600;
    color: var(--texte-sombre);
    margin-bottom: 1rem;
    display: block;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.color-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.color-option {
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.color-swatch {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid transparent;
    transition: all 0.3s;
    cursor: pointer;
    aspect-ratio: 1;
}

.color-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.color-option input[type="radio"]:checked+.color-swatch {
    border-color: var(--vert-principal);
    box-shadow: 0 0 0 2px var(--creme), 0 0 0 4px var(--vert-principal);
}

.color-option:hover .color-swatch {
    transform: scale(1.1);
}

.color-name {
    text-align: center;
    font-size: 0.75rem;
    color: var(--texte-clair);
    margin-top: 0.5rem;
}

.size-options {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.size-option {
    position: relative;
}

.size-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.size-label {
    display: block;
    padding: 1rem 2rem;
    border: 2px solid var(--beige);
    background: var(--blanc-casse);
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    border-radius: 50px;
}

.size-option input[type="radio"]:checked+.size-label {
    border-color: var(--vert-principal);
    background: var(--vert-principal);
    color: var(--creme);
}

.size-option:hover .size-label {
    border-color: var(--vert-principal);
}

.size-price {
    display: block;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.add-to-cart {
    width: 100%;
    padding: 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: var(--vert-principal);
    color: var(--creme);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 2rem;
    border-radius: 50px;
}

.add-to-cart:hover {
    background: #1e3d2a;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(38, 77, 55, 0.3);
}

.product-features {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--beige);
}

.feature {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: var(--vert-principal);
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--texte-sombre);
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--texte-clair);
    line-height: 1.6;
}

.specifications {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--blanc-casse);
}

.specifications h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--vert-principal);
    margin-bottom: 1.5rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--beige);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 500;
    color: var(--texte-sombre);
}

.spec-value {
    color: var(--texte-clair);
}

.care-instructions {
    margin-top: 2rem;
    padding: 2rem;
    background: #f0f8f0;
    border-left: 4px solid var(--vert-principal);
}

.care-instructions h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--vert-principal);
    margin-bottom: 1rem;
}

.care-instructions ul {
    list-style: none;
    padding: 0;
}

.care-instructions li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--texte-clair);
    font-size: 0.95rem;
}

.care-instructions li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--vert-principal);
    font-weight: bold;
}

/* Footer */
footer {
    background: var(--vert-principal);
    color: var(--creme);
    padding: 3rem 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.footer-section h3 {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-section p,
.footer-section a {
    color: var(--creme);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--creme);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    opacity: 0.8;
}

.social-links a:hover {
    background: var(--creme);
    opacity: 1;
}

.social-links a:hover svg {
    fill: var(--vert-principal);
}

.social-links svg {
    width: 18px;
    height: 18px;
    fill: var(--creme);
    transition: fill 0.3s;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(250, 248, 245, 0.2);
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 5px 1rem;
    }

    .logo img {
        height: 50px;
    }

    /* Menu hamburger */
    .menu-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        background: var(--creme);
        margin: 5px 0;
        transition: 0.3s;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--vert-principal);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    nav.active {
        right: 0;
    }

    nav a {
        font-size: 1.2rem;
    }

    .hero {
        padding: 8rem 2rem 4rem;
    }

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

    .hero h2 {
        font-size: 1.3rem;
    }

    /* Common Section mobile */
    section,
    .product-container,
    .cart-container {
        padding: 8rem 2rem 2rem;
    }

    .section-header h1 {
        font-size: 2.5rem;
    }

    /* Contact Mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        align-items: center;
    }

    /* About Mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        align-items: center;
    }

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

    /* Boutique Mobile */
    .category-filters {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .category-btn {
        font-size: 0.95rem;
    }

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

    /* Panier Mobile */
    .page-title {
        font-size: 2rem;
    }

    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 1rem;
    }

    .item-image {
        width: 80px;
        height: 80px;
    }

    .item-price {
        grid-column: 2;
        text-align: right;
    }

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

    /* Product Page Mobile */
    .product-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .product-gallery {
        position: static;
    }

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

    .color-options {
        grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    }

    .color-swatch {
        width: 50px;
        height: 50px;
    }

    .size-options {
        flex-direction: column;
    }

    /* Footer Mobile */
    footer {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content>* {
    animation: fadeInUp 0.8s ease forwards;
}

.hero h1 {
    animation-delay: 0.1s;
}

.hero h2 {
    animation-delay: 0.2s;
}

.divider {
    animation-delay: 0.3s;
}

/* Highlights Section */
.highlights {
    padding: 6rem 4rem;
    background: var(--creme);
}

.highlight-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: 1200px;
    /* Increased slightly to accommodate gap */
    margin: 0 auto;
}

.highlight-card {
    text-decoration: none;
    color: inherit;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* border: 1px solid rgba(255, 255, 255, 0.2); Removed as requested */
    border: none;
    border-radius: 20px;
    /* More rounded */
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    /* Removing flex to allow image to fill */
    position: relative;
    /* For absolute positioning of button */
    height: 450px;
    /* Fixed height for consistency */
    width: 350px;
    /* Fixed width as requested */
    max-width: 100%;
    /* Responsive fallback */
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(38, 77, 55, 0.15);
}

.highlight-image {
    width: 100%;
    height: 100%;
}

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

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

.highlight-content {
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 100%;
    padding: 0 2rem;
    /* Add horizontal padding */
    display: flex;
    justify-content: flex-end;
    /* Align right */
    align-items: center;
    z-index: 2;
    background: transparent;
}

.highlight-content h3,
.highlight-content p {
    display: none;
    /* Hide text as requested */
}

.highlight-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--vert-principal);
}

.highlight-content p {
    color: var(--texte-clair);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.btn-text {
    font-weight: 700;
    color: var(--vert-principal);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    display: inline-block;
    padding: 1rem 2rem;
    background: #FFFFFF;
    border: none;
    border-radius: 50px;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Mobile specific overrides */
@media (max-width: 768px) {
    .btn-text {
        font-weight: 500;
        /* Thinner weight */
        font-size: 0.8rem;
        /* Smaller size */
        padding: 0.8rem 1.5rem;
        /* Smaller padding */
        white-space: nowrap;
        /* Prevent line break */
    }
}

.btn-text:hover {
    background: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}


/* Hero Text Shadow for better readability */
.hero h1,
.hero h2 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}