/* ========================================================================
   BYOU COSMÉTIQUES - FICHIER CSS CONSOLIDÉ
   ========================================================================

   Ce fichier contient TOUT le CSS du site, extrait de tous les templates HTML.
   Il remplace le CSS inline pour de meilleures performances et maintenabilité.

   TABLE DES MATIÈRES :
   ====================
   1.  Variables CSS & Imports
   2.  Reset & Base Styles
   3.  Layout & Containers
   4.  Navigation (navbar)
   5.  Footer
   6.  Alerts & Messages
   7.  Newsletter
   8.  Promo Popup
   9.  Store/Shop Page
   10. Product Cards & Grids
   11. Shopping Cart
   12. Checkout
   13. Payments
   14. Account/Dashboard
   15. Articles/Blog
   16. Utilities
   17. Responsive Design

   ======================================================================== */


/* ========================================================================
   1. VARIABLES CSS & IMPORTS
   ======================================================================== */

/* Raleway hébergée localement (font variable, latin + latin-ext, swap, woff2) — supprime la dépendance Google Fonts qui bloquait le LCP */
@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('../fonts/raleway/raleway-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('../fonts/raleway/raleway-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
    /* Couleurs principales */
    --byou-primary: #2c2c2c;
    --byou-secondary: #6c6c6c;
    --byou-accent: #8C7973;
    --byou-accent-hover: #7a6a64;
    --byou-bg-light: #f9f9f9;
    --byou-border: #e5e5e5;
    --byou-white: #ffffff;

    /* Couleurs système */
    --byou-success: #28a745;
    --byou-error: #dc3545;
    --byou-danger: #e53e3e;
    --byou-red: #ab0d0d;

    /* Couleurs catégories */
    --byou-visage: #A89B96;
    --byou-corps: #8C7973;
    --byou-cheveux: #766661;
    --byou-huiles: #9F8A84;
}


/* ========================================================================
   2. RESET & BASE STYLES
   ======================================================================== */

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

body {
    font-family: 'Raleway', sans-serif;
    color: var(--byou-primary);
    line-height: 1.6;
}


/* ========================================================================
   3. LAYOUT & CONTAINERS
   ======================================================================== */

.byou-container,
.my-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.my-container {
    max-width: 1200px;
    padding: 0 15px;
}


/* ========================================================================
   4. NAVIGATION (navbar.html)
   ======================================================================== */

.byou-topbar *, .byou-nav *, .byou-shipping * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Raleway', sans-serif;
}

.byou-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Topbar */
.byou-topbar {
    background: white;
    border-bottom: 1px solid var(--byou-border);
    padding: 10px 0;
    position: relative;
    z-index: 100;
}

.byou-topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Groupe réseaux sociaux + email - pas utilisé en desktop */
.byou-social-group {
    display: contents;
}

.byou-social {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icon {
    color: #6c6c6c;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon i {
    font-size: 20px;
}

.bi-instagram:hover { color: #E1306C; }
.bi-facebook:hover { color: #4267B2; }
.bi-tiktok:hover { color: #000000; }
.bi-snapchat:hover { color: #FFFC00; }

.byou-email {
    color: var(--byou-accent);
    text-decoration: none;
    font-size: 15px;
}

/* Logo mobile dans topbar - caché par défaut */
.byou-logo-mobile {
    display: none;
}

/* Navigation */
.byou-nav {
    background: white;
    padding: 12px 0;
    border-bottom: 1px solid var(--byou-border);
    position: relative;
    z-index: 99;
}

.byou-nav .byou-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

/* Logo - Centré */
.byou-logo {
    text-align: center;
    display: flex;
    justify-content: center;
    grid-column: 2;
}

.byou-logo img {
    height: 80px;
    width: auto;
    max-width: 180px;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.byou-logo img:hover {
    transform: scale(1.02);
}

/* Menu principal - En dessous du logo */
.byou-nav-menu {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
}

.byou-nav-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    list-style: none;
    margin: 8px 0 0 0;
    padding: 0;
}

.byou-nav-item {
    color: var(--byou-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.byou-nav-item:hover {
    color: var(--byou-accent);
}

/* Dropdowns standard */
.byou-dropdown {
    position: relative;
}

.byou-dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid var(--byou-border);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    list-style: none;
    padding: 10px 0;
    z-index: 100;
}

.byou-dropdown:hover .byou-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.byou-dropdown-content a {
    display: block;
    padding: 8px 20px;
    color: var(--byou-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.byou-dropdown-content a:hover {
    background: var(--byou-bg-light);
    color: var(--byou-accent);
}

/* Menu à plusieurs niveaux */
.byou-dropdown-content li,
.byou-subcategory-content li {
    list-style-type: none;
}

.byou-category-group {
    position: relative;
}

.byou-category-title {
    display: block;
    padding: 10px 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
    transition: all 0.3s;
    position: relative;
    border-left: 3px solid transparent;
}

.byou-subcategory-content {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 200px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-radius: 8px;
    padding: 10px 0;
    z-index: 200;
    margin: 0;
    padding-left: 0;
}

.byou-category-group:hover .byou-subcategory-content {
    display: block;
}

.byou-subcategory-content a {
    display: block;
    padding: 8px 20px;
    color: var(--byou-secondary);
    font-size: 14px;
    transition: all 0.3s;
}

.byou-subcategory-content a:hover {
    background: var(--byou-bg-light);
    color: var(--byou-accent);
}

/* Couleurs spécifiques pour chaque catégorie */
.byou-visage-category .byou-category-title {
    border-left-color: var(--byou-visage);
}

.byou-visage-category:hover .byou-category-title {
    background-color: rgba(168, 155, 150, 0.1);
    color: var(--byou-visage);
}

.byou-corps-category .byou-category-title {
    border-left-color: var(--byou-corps);
}

.byou-corps-category:hover .byou-category-title {
    background-color: rgba(140, 121, 115, 0.1);
    color: var(--byou-corps);
}

.byou-cheveux-category .byou-category-title {
    border-left-color: var(--byou-cheveux);
}

.byou-cheveux-category:hover .byou-category-title {
    background-color: rgba(118, 102, 97, 0.1);
    color: var(--byou-cheveux);
}

.byou-huiles-category .byou-category-title {
    border-left-color: var(--byou-huiles);
}

.byou-huiles-category:hover .byou-category-title {
    background-color: rgba(159, 138, 132, 0.1);
    color: var(--byou-huiles);
}

.byou-category-title::after {
    content: '›';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    opacity: 0.7;
}

/* Actions (recherche, connexion, panier) - À droite */
.byou-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    grid-column: 3;
}

/* Recherche */
.byou-search {
    position: relative;
    width: 200px;
}

.byou-search-input {
    width: 100%;
    padding: 8px 35px 8px 15px;
    border: 1px solid var(--byou-border);
    border-radius: 20px;
    font-size: 14px;
}

.byou-search-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--byou-secondary);
    cursor: pointer;
}

/* Auth links */
.byou-auth {
    display: flex;
    align-items: center;
    gap: 10px;
}

.byou-auth-link {
    color: var(--byou-primary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.byou-auth-link:hover {
    color: var(--byou-accent);
}

.byou-separator {
    color: var(--byou-border);
}

/* Panier */
.byou-cart {
    position: relative;
    color: var(--byou-primary);
    text-decoration: none;
    font-size: 22px;
    padding: 5px;
}

.byou-cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--byou-accent);
    color: white;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 12px;
    min-width: 20px;
    text-align: center;
    font-weight: 600;
}

/* Burger menu */
.byou-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    grid-column: 1;
    justify-self: start;
}

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

/* Bannière livraison */
.byou-shipping {
    background: var(--byou-accent);
    color: white;
    text-align: center;
    padding: 12px 0;
    font-size: 14px;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 90;
}

/* Masquer toutes les puces de liste */
ul, li {
    list-style-type: none !important;
}

.byou-dropdown-content li,
.byou-subcategory-content li,
.byou-nav-items li,
nav li {
    list-style: none !important;
    list-style-type: none !important;
    list-style-image: none !important;
    list-style-position: outside !important;
}

/* Liens connexion mobile - cachés sur desktop */
.byou-mobile-auth {
    display: none;
}


/* ========================================================================
   5. FOOTER (footer.html)
   ======================================================================== */

.byou-footer {
    background-color: var(--byou-bg-light);
    padding: 50px 0 25px;
    border-top: 1px solid var(--byou-border);
    font-family: 'Raleway', sans-serif;
}

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

.byou-footer-about h3 {
    font-size: 2.2rem;
    color: var(--byou-primary);
    margin-bottom: 25px;
    font-weight: 600;
}

.byou-footer-about p {
    color: var(--byou-secondary);
    line-height: 1.8;
    font-size: 1.2rem;
}

.byou-footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.byou-footer-links a {
    color: var(--byou-secondary);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1.5rem;
}

.byou-footer-links a:hover {
    color: var(--byou-accent);
}

.byou-footer-separator {
    height: 1px;
    background: var(--byou-border);
    margin: 30px 0;
}

.byou-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.byou-copyright {
    color: var(--byou-secondary);
    font-size: 1.1rem;
}

.byou-copyright p {
    margin: 5px 0;
}

.byou-footer-social {
    display: flex;
    gap: 25px;
}

.byou-footer-social a {
    color: var(--byou-secondary);
    font-size: 1.8rem;
    transition: color 0.3s;
}

.byou-footer-social a:hover {
    color: var(--byou-accent);
}

/* Bouton retour en haut */
.byou-scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 999;
}

.byou-scroll-top button {
    background: var(--byou-accent);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    font-size: 1.4rem;
}

.byou-scroll-top button.visible {
    opacity: 1;
    visibility: visible;
}

.byou-scroll-top button:hover {
    background: var(--byou-primary);
    transform: translateY(-3px);
}


/* ========================================================================
   6. ALERTS & MESSAGES (alerts.html)
   ======================================================================== */

/* Section vide - sera remplie avec le CSS de alerts.html */


/* ========================================================================
   7. NEWSLETTER (newsletter.html)
   ======================================================================== */

/* Section vide - sera remplie avec le CSS de newsletter.html */


/* ========================================================================
   8. PROMO POPUP (promo_popup.html)
   ======================================================================== */

/* Section vide - sera remplie avec le CSS de promo_popup.html */


/* ========================================================================
   9. STORE/SHOP PAGE (store.html)
   ======================================================================== */

/* Badge NEW pour les nouveaux produits */
.new-badge {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    background-color: var(--byou-red);
    color: white;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 1.8rem;
    margin-left: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(171, 13, 13, 0.2);
    transition: transform 0.2s ease;
}

.new-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(171, 13, 13, 0.3);
}

.product-info h3 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* Header */
.byou-store-header {
    background: linear-gradient(to right, var(--byou-bg-light), #f0e8e6);
    padding: 40px 0;
    text-align: center;
    border-bottom: 1px solid rgba(140, 121, 115, 0.1);
}

.store-title {
    font-size: 2.5rem;
    color: var(--byou-primary);
    font-weight: 300;
    margin: 0;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.store-title::after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background: var(--byou-accent);
    margin: 10px auto 0;
}

/* Layout */
.byou-store-content {
    padding: 60px 20px;
}

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

/* Filtres Mobile */
.mobile-filters-button {
    display: none;
    margin-bottom: 20px;
}

.filter-toggle {
    width: 100%;
    padding: 12px;
    background: var(--byou-white);
    border: 1px solid var(--byou-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--byou-primary);
    cursor: pointer;
}

/* Sidebar */
.store-sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.category-card {
    background: var(--byou-white);
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    overflow: hidden;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--byou-border);
}

.category-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--byou-primary);
}

.close-filters {
    display: none;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--byou-secondary);
    cursor: pointer;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li a {
    display: block;
    padding: 15px 20px;
    color: var(--byou-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.category-list li a:hover,
.category-list li a.active {
    background: var(--byou-bg-light);
    color: var(--byou-accent);
}

/* Produits */
.store-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--byou-border);
}

.product-count {
    font-size: 1.2rem;
    color: var(--byou-secondary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Cards Produits */
.product-card {
    background: var(--byou-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    position: relative;
}

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

.product-image {
    position: relative;
    padding-bottom: 100%;
    overflow: hidden;
}

.product-image .new-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #000000;
    font-size: 1.4rem;
    margin-left: 0;
    z-index: 2;
}

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

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

/* Actions */
.product-actions {
    position: absolute;
    right: 15px;
    top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--byou-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--byou-primary);
    transition: all 0.3s ease;
    text-decoration: none;
}

.action-btn:hover {
    background: var(--byou-accent);
    color: var(--byou-white);
}

/* Infos Produit */
.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    margin-bottom: 10px;
}

.product-info a {
    color: var(--byou-primary);
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.product-info a:hover {
    color: var(--byou-accent);
}

/* Prix */
.price {
    color: var(--byou-accent);
    font-size: 1.9rem;
    font-weight: 600;
}

.price-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.original-price {
    color: var(--byou-secondary);
    text-decoration: line-through;
    font-size: 1.5rem;
}

.promo-price {
    color: #e53e3e;
    font-size: 1.9rem;
    font-weight: 600;
}

.promo-tag {
    background-color: #e53e3e;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 1.8rem;
    font-weight: 500;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    border-radius: 4px;
    background: var(--byou-white);
    color: var(--byou-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.page-link:hover {
    background: var(--byou-bg-light);
    color: var(--byou-accent);
}

.page-link.active {
    background: var(--byou-accent);
    color: var(--byou-white);
}

/* Message pas de produits */
.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    background: var(--byou-bg-light);
    border-radius: 8px;
    color: var(--byou-secondary);
    font-size: 1.2rem;
}

/* CATEGORIE SEO */
.category-seo-content {
    margin-top: 60px;
    padding: 40px 0;
    background: var(--byou-bg-light);
}

.seo-content {
    padding: 40px 0;
    line-height: 1.6;
}

.seo-content h2 {
    font-size: 2.2rem;
    color: var(--byou-primary);
    margin-bottom: 20px;
    text-align: center;
}

.seo-content h3 {
    font-size: 1.8rem;
    color: var(--byou-accent);
    margin: 30px 0 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--byou-border);
}

.seo-content h4 {
    font-size: 1.5rem;
    color: var(--byou-primary);
    margin-bottom: 12px;
}

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

.seo-content a {
    color: var(--byou-accent);
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.seo-content a:hover {
    color: var(--byou-accent-hover);
    border-bottom-color: var(--byou-accent-hover);
}

.rich-content h2 {
    color: var(--byou-primary);
    font-size: 2.4rem;
    margin: 30px 0 20px;
}

.rich-content h3 {
    color: var(--byou-primary);
    font-size: 2rem;
    margin: 25px 0 15px;
}

.rich-content p {
    margin-bottom: 15px;
}

.rich-content ul,
.rich-content ol {
    margin: 15px 0;
    padding-left: 20px;
}

.rich-content li {
    margin-bottom: 8px;
}

/* Styles pour les étoiles de notation sur la page store */
.product-rating {
    margin: 10px 0 15px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.rating-stars {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
}

.rating-stars i {
    color: #F8CE0B;
    font-size: 1.8rem;
}

.rating-value {
    margin-left: 8px;
    font-weight: 600;
    font-size: 1.2rem;
    color: #555;
}

.review-count {
    font-size: 1.05rem;
    color: #777;
    margin-left: 4px;
}


/* ========================================================================
   10. HOME PAGE - HERO SLIDER & DESCRIPTION
   ======================================================================== */

/* Hero Section - Slider */
.byou-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 0;
    background: var(--byou-bg-light);
}

.byou-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 50 / 15;
}

/* Slides */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    background-color: var(--byou-bg-light);
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slide-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
    cursor: pointer;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 8s ease-out;
}

.slide.active .slide-image {
    animation: kenburns 8s ease-out forwards;
}

@keyframes kenburns {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.slide-link:hover .slide-image {
    transform: scale(1.03);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

/* Slide Content */
.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    opacity: 0;
    transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.slide-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 400;
    letter-spacing: 6px;
    margin: 0 0 15px 0;
    color: white;
    text-transform: uppercase;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.slide-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1.3rem);
    font-weight: 300;
    letter-spacing: 3px;
    margin: 0 0 35px 0;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.slide-cta {
    display: inline-block;
    padding: 12px 45px;
    border: 2px solid white;
    background: transparent;
    color: white;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
    border-radius: 2px;
    backdrop-filter: blur(5px);
}

.slide-link:hover .slide-cta {
    background: white;
    color: var(--byou-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow i {
    color: white;
    font-size: 20px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.slider-arrow.prev {
    left: 25px;
}

.slider-arrow.next {
    right: 25px;
}

/* Indicators */
.slider-indicators {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

.indicator.active {
    background: white;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Hero Section - Static Full Screen (Legacy) */
.byou-hero-static {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 50 / 15;
    overflow: hidden;
    margin-top: 0;
    background: var(--byou-bg-light);
}

.hero-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
    cursor: pointer;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 8s ease-out;
}

.hero-link:hover .hero-image {
    transform: scale(1.03);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.15) 100%);
    z-index: 1;
}

/* Hero Content - Centered Text */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    letter-spacing: 8px;
    margin: 0 0 20px 0;
    color: white;
    text-transform: uppercase;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 300;
    letter-spacing: 3px;
    margin: 0 0 40px 0;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: inline-block;
    padding: 14px 50px;
    border: 2px solid white;
    background: transparent;
    color: white;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
    border-radius: 2px;
    backdrop-filter: blur(5px);
}

.hero-link:hover .hero-cta {
    background: white;
    color: var(--byou-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Section Products (Home) */
.byou-products {
    padding: 60px 20px;
}

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

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--byou-primary);
}

/* Description Section */
.byou-description {
    padding: 80px 40px;
    background: var(--byou-bg-light);
}

.byou-description .content {
    max-width: 1400px;
    margin: 0 auto;
}

.byou-description h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    font-weight: 300;
    text-align: center;
    color: var(--byou-primary);
    letter-spacing: 1px;
}

.description-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.text-block p {
    line-height: 2;
    color: var(--byou-secondary);
    font-size: 1.2rem;
    margin: 0;
}

.byou-description a {
    color: var(--byou-accent);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.byou-description a:hover {
    color: var(--byou-primary);
}


/* ========================================================================
   11. SHOPPING CART (cart.html)
   ======================================================================== */

.byou-cart-header {
    background: var(--byou-bg-light);
    padding: 40px 0;
    text-align: center;
}

.cart-title {
    font-size: 2.5rem;
    color: var(--byou-primary);
    font-weight: 300;
    margin: 0;
    letter-spacing: 1px;
}

.byou-cart-content {
    padding: 60px 20px;
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
}

.empty-cart p {
    font-size: 1.2rem;
    color: var(--byou-secondary);
    margin-bottom: 20px;
}

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

.alert-block {
    background: rgba(229, 62, 62, 0.1);
    border: 1px solid var(--byou-danger);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.alert-text {
    color: var(--byou-danger);
    margin: 5px 0;
    font-size: 0.9rem;
}

.products-table {
    background: var(--byou-white);
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    overflow: hidden;
}

.product-row {
    display: grid;
    grid-template-columns: 0.3fr 0.4fr 0.4fr auto;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid var(--byou-border);
    background: var(--byou-white);
    gap: 15px;
}

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

.product-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.product-name {
    color: var(--byou-primary);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    transition: color 0.3s;
    display: block;
    margin-bottom: 8px;
}

.product-name:hover {
    color: var(--byou-accent);
}

.product-brand {
    color: var(--byou-secondary);
    font-size: 1.1rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: var(--byou-bg-light);
    color: var(--byou-primary);
    text-decoration: none;
    transition: all 0.3s;
}

.quantity-btn:hover {
    background: var(--byou-accent);
    color: var(--byou-white);
}

.quantity {
    min-width: 40px;
    text-align: center;
    font-weight: 500;
    font-size: 1.2rem;
}

.price-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.total-price {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--byou-primary);
}

.unit-price {
    font-size: 1rem;
    color: var(--byou-secondary);
}

.remove-btn {
    color: var(--byou-danger);
    text-decoration: none;
    transition: opacity 0.3s;
}

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

.summary-card {
    background: var(--byou-white);
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    padding: 25px;
}

.summary-card h2 {
    font-size: 2.5rem;
    color: var(--byou-primary);
    margin-bottom: 20px;
}

.summary-details {
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 2.9rem;
}

.total-amount {
    font-size: 2.7rem;
    font-weight: 600;
    color: var(--byou-primary);
}

.shipping-info {
    padding: 15px;
    background: var(--byou-bg-light);
    border-radius: 6px;
    margin: 20px 0;
    text-align: center;
    font-size: 1.9rem;
    color: var(--byou-secondary);
}

.payment-methods {
    text-align: center;
    margin: 20px 0;
}

.payment-methods img {
    max-height: 26px;
}

.checkout-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--byou-accent);
    color: var(--byou-white);
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    margin-bottom: 10px;
    transition: background 0.3s;
}

.checkout-btn:hover {
    background: var(--byou-primary);
}

.continue-shopping {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--byou-bg-light);
    color: var(--byou-primary);
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s;
}

.continue-shopping:hover {
    background: var(--byou-border);
}


/* ========================================================================
   12. CHECKOUT (checkout.html)
   ======================================================================== */

/* Section vide - sera remplie avec le CSS de checkout.html */


/* ========================================================================
   13. PAYMENTS (payments.html)
   ======================================================================== */

/* Section vide - sera remplie avec le CSS de payments.html */


/* ========================================================================
   14. PRODUCT DETAIL PAGE (product_detail.html)
   ======================================================================== */

/* Layout Principal */
.my-product-detail-section {
    padding: 60px 0;
    background: var(--byou-white);
}

.my-product-detail-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.my-product-detail-main-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Galerie Produit */
.my-product-detail-gallery {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.my-product-detail-carousel .owl-stage-outer {
    width: 100%;
}

.my-product-detail-image-container {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.my-product-detail-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.my-product-detail-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
}

.my-product-detail-carousel .owl-prev,
.my-product-detail-carousel .owl-next {
    width: 40px;
    height: 40px;
    background: var(--byou-accent) !important;
    color: var(--byou-white) !important;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

/* Informations Produit */
.my-product-detail-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: auto;
    overflow-y: hidden;
}

.my-product-essential-info {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--byou-border);
}

.my-product-detail-title {
    font-size: 2.5rem;
    color: var(--byou-primary);
    margin-bottom: 20px;
}

.my-short-description {
    margin: 1.5rem 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--byou-secondary);
}

/* Notation */
.my-product-detail-rating {
    margin-bottom: 0px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.my-product-detail-stars {
    color: var(--byou-accent);
    font-size: 1.9rem;
}

.my-product-detail-rating-info {
    display: flex;
    align-items: center;
    gap: 5px;
}

.my-product-detail-rating-value {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--byou-accent);
    margin: 0 8px;
}

.my-product-detail-review-separator {
    color: #ccc;
}

.my-product-detail-review-count {
    color: var(--byou-secondary);
    margin-left: 10px;
    font-size: 2.5rem;
}

/* Prix */
.my-product-detail-price-block {
    margin: 1px 0;
}

.my-product-detail-original-price {
    margin-bottom: 5px;
}

.my-product-detail-original-price .strikethrough {
    color: var(--byou-secondary);
    font-size: 1.8rem;
    text-decoration: line-through;
}

.my-product-detail-current-price {
    display: flex;
    align-items: center;
    gap: 15px;
}

.my-product-detail-current-price .promo-price {
    font-size: 2.5rem;
    font-weight: 600;
    color: #e53e3e;
}

.promo-badge {
    background-color: #e53e3e;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
}

.my-product-detail-savings {
    font-size: 1.9rem;
    color: #e53e3e;
    margin-top: 5px;
}

.my-product-detail-current-price:only-child {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--byou-accent);
}

/* Actions */
.my-product-detail-actions {
    margin-top: auto;
}

.my-product-detail-stock-status {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
}

.my-product-detail-out-of-stock {
    background: #fff5f5;
    color: var(--byou-error);
}

.my-product-detail-in-cart {
    background: #f0fff4;
    color: var(--byou-success);
}

.my-product-detail-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.my-product-detail-primary {
    background: var(--byou-accent);
    color: var(--byou-white);
}

.my-product-detail-secondary {
    background: var(--byou-bg-light);
    color: var(--byou-primary);
}

.my-product-detail-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Onglets */
.my-product-tabs {
    margin: 20px 0;
    background: var(--byou-white);
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.my-tabs-nav {
    display: flex;
    border-bottom: 1px solid var(--byou-border);
    background: var(--byou-bg-light);
    border-radius: 8px 8px 0 0;
    overflow-x: auto;
}

.my-tab-btn {
    padding: 15px 30px;
    background: none;
    border: none;
    color: var(--byou-secondary);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.my-tab-btn:hover {
    color: var(--byou-accent);
}

.my-tab-btn.active {
    color: var(--byou-accent);
    font-weight: 500;
}

.my-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--byou-accent);
}

.my-tab-panel {
    display: none;
    padding: 30px;
    height: auto;
    overflow-y: auto;
}

.my-tab-panel.active {
    display: block;
}

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

.my-spec-item {
    padding: 15px;
    background: var(--byou-bg-light);
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
}

/* Modal Suggestions */
.my-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    overflow: auto;
}

.my-modal-content {
    background-color: white;
    margin: 10% auto;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    position: relative;
}

.my-modal-header {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.my-modal-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.4rem;
}

.my-modal-close {
    color: #aaa;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.my-modal-close:hover {
    color: #333;
}

.my-modal-body {
    padding: 20px;
}

.my-modal-message {
    margin-bottom: 20px;
    color: #555;
}

.my-modal-suggestions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.my-modal-suggestion-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.my-modal-suggestion-item:hover {
    background-color: #f9f9f9;
}

.my-modal-suggestion-image {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.my-modal-suggestion-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.my-modal-suggestion-info {
    flex-grow: 1;
}

.my-modal-suggestion-info h4 {
    margin: 0 0 5px 0;
    font-size: 1rem;
}

.my-modal-suggestion-rating {
    margin: 5px 0;
}

.my-modal-suggestion-stars {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #F8CE0B;
}

.my-modal-suggestion-stars span {
    margin-left: 5px;
    color: #555;
    font-weight: 600;
}

.my-modal-suggestion-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.my-modal-suggestion-sale-price {
    color: #e53e3e;
    font-weight: 600;
}

.my-modal-suggestion-original-price {
    color: #999;
    text-decoration: line-through;
    font-size: 0.9rem;
}

.my-modal-suggestion-regular-price {
    color: #8C7973;
    font-weight: 600;
}

.my-modal-add-btn {
    background-color: #8C7973;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.my-modal-add-btn:hover {
    background-color: #6c6460;
}

.my-modal-footer {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    border-top: 1px solid #eee;
}

.my-modal-btn {
    padding: 10px 15px;
    border-radius: 4px;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    transition: all 0.2s ease;
}

.my-modal-continue {
    background-color: #f5f5f5;
    color: #333;
}

.my-modal-continue:hover {
    background-color: #e0e0e0;
}

.my-modal-cart {
    background-color: #8C7973;
    color: white;
}

.my-modal-cart:hover {
    background-color: #6c6460;
}

/* Section "Complétez votre routine" */
.my-also-bought-section {
    margin: 60px 0;
    padding: 40px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.my-also-bought-title {
    font-size: 1.8rem;
    color: var(--byou-primary);
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.my-also-bought-title:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--byou-accent);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.my-also-bought-carousel {
    padding: 10px 5px 30px;
}

.my-also-bought-item {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    margin: 10px 5px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.my-also-bought-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.my-also-bought-link {
    text-decoration: none;
    color: inherit;
    padding: 20px;
    display: block;
    flex-grow: 1;
}

.my-also-bought-image-container {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.my-also-bought-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.my-also-bought-name {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--byou-primary);
    line-height: 1.4;
    min-height: 50px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.my-also-bought-rating {
    color: #F8CE0B;
    font-size: 0.9rem;
    margin: 5px 0 10px;
    display: flex;
    align-items: center;
}

.my-also-bought-rating-value {
    margin-left: 5px;
    color: #555;
    font-weight: 600;
    font-size: 0.85rem;
}

.my-also-bought-price {
    display: flex;
    flex-direction: column;
    margin-top: auto;
}

.my-also-bought-sale-price {
    color: #e53e3e;
    font-weight: 600;
    font-size: 1.2rem;
}

.my-also-bought-original-price {
    color: #999;
    text-decoration: line-through;
    font-size: 0.9rem;
    margin-top: 3px;
}

.my-also-bought-regular-price {
    color: var(--byou-accent);
    font-weight: 600;
    font-size: 1.2rem;
}

.my-also-bought-add-btn {
    background-color: var(--byou-accent);
    color: white;
    text-decoration: none;
    padding: 12px;
    text-align: center;
    font-weight: 500;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.my-also-bought-add-btn:hover {
    background-color: var(--byou-primary);
    color: white;
}

.my-also-bought-carousel .owl-nav button.owl-prev,
.my-also-bought-carousel .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
    background: var(--byou-accent) !important;
    color: var(--byou-white) !important;
    border-radius: 50%;
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
}

.my-also-bought-carousel .owl-nav button.owl-prev {
    left: -20px;
}

.my-also-bought-carousel .owl-nav button.owl-next {
    right: -20px;
}

.my-also-bought-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.my-also-bought-carousel .owl-dot {
    display: inline-block;
    margin: 0 5px;
}

.my-also-bought-carousel .owl-dot span {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    display: block;
    transition: all 0.2s ease;
}

.my-also-bought-carousel .owl-dot.active span {
    background-color: var(--byou-accent);
    width: 12px;
    height: 12px;
}

/* Avis et Commentaires */
.my-product-detail-reviews {
    margin-top: 80px;
}

.my-product-detail-reviews-title {
    font-size: 2rem;
    color: var(--byou-primary);
    margin-bottom: 40px;
}

.my-product-detail-review-form {
    background: var(--byou-bg-light);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 60px;
}

.my-product-detail-review-form h3 {
    margin-bottom: 20px;
    font-weight: 400;
}

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

.my-form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--byou-primary);
}

.my-form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--byou-border);
    border-radius: 4px;
    font-size: 1rem;
}

.my-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.my-button-primary {
    background: var(--byou-accent);
    color: var(--byou-white);
}

.my-button-primary:hover {
    background: var(--byou-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.my-notice {
    color: var(--byou-secondary);
    text-align: center;
}

.my-notice a {
    color: var(--byou-accent);
    text-decoration: none;
}

.my-notice a:hover {
    color: var(--byou-primary);
}

/* Notation interactive */
.my-rate {
    display: inline-block;
    border: 0;
    margin-right: 10px;
}

.my-rate > input {
    display: none;
}

.my-rate > label {
    float: right;
    color: #ddd;
    position: relative;
}

.my-rate > label:before {
    display: inline-block;
    font-size: 2.5rem;
    padding: .3rem .2rem;
    cursor: pointer;
    font-family: FontAwesome;
    content: "\f005";
}

.my-rate .half:before {
    content: "\f089";
    position: absolute;
    padding-right: 0;
}

.my-rate > input:checked + label:hover,
.my-rate > input:checked ~ label:hover,
.my-rate > input:checked ~ label:hover ~ label,
.my-rate > label:hover ~ input:checked ~ label {
    color: var(--byou-accent) !important;
}

.my-stars .fa-star {
    color: var(--byou-accent);
}

.my-stars .fa-star-half-o {
    color: var(--byou-accent);
}

.my-stars .fa-star-o {
    font-size: 1.8rem;
    color: var(--byou-secondary);
}

/* Liste des Avis */
.my-reviews-list {
    display: grid;
    gap: 30px;
}

.my-review-item {
    padding: 30px;
    background: var(--byou-white);
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.my-review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.my-reviewer-name {
    font-weight: 600;
    color: var(--byou-primary);
}

.my-review-date {
    color: var(--byou-secondary);
    font-size: 0.9rem;
}

.my-review-rating {
    margin: 10px 0 15px;
}

.my-review-title {
    margin: 15px 0;
    color: var(--byou-primary);
    font-size: 1.2rem;
}

.my-review-text {
    color: var(--byou-secondary);
    line-height: 1.6;
}

.no-content {
    color: var(--byou-secondary);
    font-style: italic;
    text-align: center;
    padding: 2rem;
}


/* ========================================================================
   15. ARTICLES/BLOG (article.html)
   ======================================================================== */

/* Section vide - sera remplie avec le CSS de article.html */


/* ========================================================================
   16. UTILITIES
   ======================================================================== */

.seo-title {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}


/* ========================================================================
   17. RESPONSIVE DESIGN
   ======================================================================== */

/* Tablettes et écrans moyens (max-width: 1024px) */
@media (max-width: 1024px) {
    /* Container */
    .byou-container,
    .my-container {
        max-width: 90%;
        padding: 0 25px;
    }

    /* Hero Slider */
    .byou-slider {
        aspect-ratio: 50 / 15;
    }

    .slider-arrow {
        width: 45px;
        height: 45px;
    }

    .slider-arrow.prev {
        left: 20px;
    }

    .slider-arrow.next {
        right: 20px;
    }

    .slide-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
        letter-spacing: 5px;
    }

    .slide-subtitle {
        font-size: clamp(0.9rem, 1.8vw, 1.2rem);
        letter-spacing: 2px;
    }

    .slide-cta {
        padding: 11px 40px;
        font-size: 11px;
    }

    /* Hero Static (Legacy) */
    .byou-hero-static {
        height: auto;
        aspect-ratio: 50 / 15;
        min-height: unset;
        max-height: unset;
    }

    .hero-image {
        object-position: center 45%;
    }

    .hero-title {
        font-size: clamp(3rem, 6vw, 4.5rem);
        letter-spacing: 6px;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 2vw, 1.3rem);
        letter-spacing: 2px;
    }

    .hero-cta {
        padding: 13px 45px;
        font-size: 12px;
    }

    /* Navigation */
    .byou-nav-items {
        gap: 20px;
    }

    .byou-nav-item {
        font-size: 13px;
        letter-spacing: 0.3px;
    }

    .byou-logo img {
        height: 75px;
        max-width: 160px;
    }

    /* Dropdowns - réduire la largeur */
    .byou-dropdown-content {
        min-width: 200px;
    }

    .byou-category-title {
        font-size: 13px;
        padding: 8px 16px;
    }

    .byou-dropdown-content a,
    .byou-subcategory-content a {
        font-size: 13px;
        padding: 7px 16px;
    }

    .byou-subcategory-content {
        min-width: 180px;
    }

    /* Actions - réduire pour gagner de la place */
    .byou-actions {
        gap: 15px;
    }

    .byou-search {
        width: 160px;
    }

    .byou-search-input {
        font-size: 13px;
        padding: 7px 30px 7px 12px;
    }

    .byou-auth-link {
        font-size: 13px;
    }

    /* Store */
    .store-layout {
        grid-template-columns: 250px 1fr;
        gap: 30px;
    }

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

    .product-info a {
        font-size: 1.5rem;
    }

    .price {
        font-size: 1.7rem;
    }

    .store-title {
        font-size: 2.2rem;
    }

    /* Cart */
    .cart-layout {
        grid-template-columns: 1fr 350px;
        gap: 30px;
    }

    .product-row {
        grid-template-columns: 0.3fr 0.4fr 0.4fr auto;
        padding: 15px;
    }

    .product-name {
        font-size: 1.4rem;
    }

    .total-price {
        font-size: 2rem;
    }

    .summary-card {
        padding: 20px;
    }

    /* Product Detail */
    .my-product-detail-section {
        padding: 40px 0;
    }

    .my-product-detail-main-container {
        gap: 30px;
    }

    .my-product-detail-image-container {
        height: 450px;
    }

    .my-product-detail-title {
        font-size: 2.2rem;
    }

    .my-product-detail-current-price .promo-price,
    .my-product-detail-current-price:only-child {
        font-size: 2.2rem;
    }

    .my-short-description {
        font-size: 1.05rem;
    }

    .my-also-bought-image-container {
        height: 160px;
    }

    /* Description home */
    .description-layout {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
    }

    .byou-description h2 {
        font-size: 2.2rem;
    }

    /* Footer */
    .byou-footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .byou-footer-about {
        grid-column: 1 / -1;
    }

    .byou-footer-about h3 {
        font-size: 2rem;
    }

    .byou-footer-links a {
        font-size: 1.4rem;
    }
}

/* Tablettes portrait (max-width: 768px) */
@media (max-width: 768px) {
    /* Topbar */
    .byou-topbar-content {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 15px;
        position: relative;
    }

    /* Afficher le logo mobile dans la topbar */
    .byou-logo-mobile {
        display: block;
        flex-shrink: 0;
        position: absolute;
        left: 0;
    }

    .byou-logo-mobile img {
        height: 50px;
        width: auto;
        max-width: 100px;
    }

    /* Groupe réseaux sociaux + email en colonne en mobile, centré */
    .byou-social-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    /* Réseaux sociaux restent en ligne et centrés */
    .byou-social {
        gap: 15px;
        justify-content: center;
    }

    .social-icon i {
        font-size: 18px;
    }

    .byou-email {
        font-size: 13px;
        text-align: center;
    }

    /* Navigation - Menu burger */
    .byou-nav {
        position: sticky;
        top: 0;
        transition: all 0.3s ease;
    }

    .byou-burger {
        display: block;
        z-index: 1000;
    }

    .byou-nav .byou-container {
        grid-template-columns: auto 1fr auto;
        gap: 10px;
        transition: all 0.3s ease;
    }

    /* Logo masqué dans la nav principale en mobile, sera dans topbar */
    .byou-logo {
        display: none;
    }

    /* Burger à gauche */
    .byou-burger {
        grid-column: 1;
    }

    /* Actions au centre et à droite */
    .byou-actions {
        grid-column: 2 / 4;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .byou-auth {
        display: none;
    }

    /* Barre de recherche au centre, flexible */
    .byou-search {
        flex: 1;
        max-width: 100%;
        order: 1;
    }

    .byou-search-input {
        width: 100%;
    }

    /* Panier à droite */
    .byou-cart {
        order: 2;
        flex-shrink: 0;
    }

    /* Afficher les liens connexion dans le menu burger mobile */
    .byou-mobile-auth {
        display: block;
        border-top: 1px solid var(--byou-border);
        margin-top: 10px;
        padding-top: 10px;
    }

    .byou-mobile-auth:first-of-type {
        margin-top: 15px;
    }

    .byou-mobile-auth .byou-nav-item {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 12px 20px;
    }

    .byou-mobile-auth .byou-nav-item i {
        font-size: 18px;
    }

    /* Menu principal en mode mobile */
    .byou-nav-items {
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        width: 100%;
        background: white;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        margin-top: 15px;
    }

    .byou-nav-items.active {
        display: flex;
    }

    .byou-nav-items > li {
        width: 100%;
        border-bottom: 1px solid var(--byou-border);
    }

    .byou-nav-items > li:last-child {
        border-bottom: none;
    }

    .byou-nav-item {
        display: block;
        padding: 12px 20px;
        width: 100%;
        text-align: center;
    }

    /* Dropdowns en mode mobile */
    .byou-dropdown {
        width: 100%;
    }

    .byou-dropdown-content {
        position: static;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin: 0;
        padding: 0;
        border: none;
        box-shadow: none;
        background: var(--byou-bg-light);
    }

    .byou-dropdown.active .byou-dropdown-content {
        max-height: 1000px;
        padding: 10px 0;
    }

    .byou-dropdown > .byou-nav-item::after {
        content: ' +';
        margin-left: 5px;
    }

    .byou-dropdown.active > .byou-nav-item::after {
        content: ' -';
    }

    /* Sous-catégories en mode mobile */
    .byou-category-group {
        width: 100%;
    }

    .byou-category-title {
        text-align: center;
        border-left: none;
        border-bottom: 2px solid transparent;
        padding: 12px 20px;
    }

    .byou-visage-category .byou-category-title { border-bottom-color: var(--byou-visage); }
    .byou-corps-category .byou-category-title { border-bottom-color: var(--byou-corps); }
    .byou-cheveux-category .byou-category-title { border-bottom-color: var(--byou-cheveux); }
    .byou-huiles-category .byou-category-title { border-bottom-color: var(--byou-huiles); }

    .byou-subcategory-content {
        position: static;
        display: none;
        box-shadow: none;
        border-radius: 0;
        background: rgba(249, 249, 249, 0.5);
        width: 100%;
        padding: 10px 0;
    }

    .byou-category-group.active .byou-subcategory-content {
        display: block;
    }

    .byou-category-title::after {
        content: '+';
        font-size: 16px;
        right: 20px;
    }

    .byou-category-group.active .byou-category-title::after {
        content: '-';
    }

    /* Actions */
    .byou-actions {
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .byou-search {
        order: 3;
        width: 100%;
        max-width: 300px;
    }

    /* Home - Hero Slider Mobile */
    .byou-slider {
        aspect-ratio: 50 / 15;
    }

    .slide-image {
        object-position: center top;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .slider-arrow.prev {
        left: 10px;
    }

    .slider-arrow.next {
        right: 10px;
    }

    .slider-arrow i {
        font-size: 16px;
    }

    .slide-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        letter-spacing: 3px;
        margin-bottom: 10px;
    }

    .slide-subtitle {
        font-size: clamp(0.75rem, 1.5vw, 1rem);
        margin-bottom: 20px;
    }

    .slide-cta {
        padding: 10px 30px;
        font-size: 10px;
    }

    .slider-indicators {
        bottom: 15px;
        gap: 8px;
        padding: 8px 12px;
    }

    .indicator {
        width: 8px;
        height: 8px;
    }

    /* Home - Hero Static (Legacy) */
    .byou-hero-static {
        height: auto;
        aspect-ratio: 50 / 15;
        min-height: unset;
        max-height: unset;
    }

    .hero-image {
        object-position: center top;
    }

    .hero-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
        letter-spacing: 6px;
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 1.8vw, 1.2rem);
        letter-spacing: 2px;
        margin-bottom: 30px;
    }

    .hero-cta {
        padding: 12px 40px;
        font-size: 12px;
    }

    /* Store */
    .store-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .store-sidebar {
        position: static;
        order: 2;
    }

    .mobile-filters-button {
        display: block;
    }

    .store-sidebar {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1000;
        background: rgba(0, 0, 0, 0.5);
    }

    .store-sidebar.active {
        display: block;
    }

    .category-card {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 400px;
        max-height: 80vh;
        overflow-y: auto;
    }

    .close-filters {
        display: block;
    }

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

    .product-info a {
        font-size: 1.4rem;
    }

    .price {
        font-size: 1.6rem;
    }

    .promo-price {
        font-size: 1.6rem;
    }

    .original-price {
        font-size: 1.3rem;
    }

    .promo-tag {
        font-size: 1.5rem;
    }

    .product-image .new-badge {
        font-size: 1.2rem;
        padding: 4px 10px;
    }

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

    /* Description home */
    .description-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .byou-description {
        padding: 60px 20px;
    }

    .byou-description h2 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    /* Cart */
    .cart-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-row {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px 15px;
    }

    .product-details {
        order: 1;
    }

    .product-name {
        font-size: 1.3rem;
    }

    .quantity-controls {
        order: 2;
        justify-content: flex-start;
    }

    .price-info {
        order: 3;
    }

    .total-price {
        font-size: 1.8rem;
    }

    .remove-btn {
        order: 4;
    }

    .summary-card {
        padding: 20px;
    }

    .summary-card h2 {
        font-size: 2rem;
    }

    .summary-row {
        font-size: 2.5rem;
    }

    .total-amount {
        font-size: 2.2rem;
    }

    .shipping-info {
        font-size: 1.6rem;
    }

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

    .my-product-detail-main-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .my-product-detail-gallery {
        order: 1;
    }

    .my-product-detail-info {
        order: 2;
    }

    .my-product-detail-image-container {
        height: 350px;
    }

    .my-product-detail-title {
        font-size: 1.8rem;
    }

    .my-product-detail-current-price .promo-price,
    .my-product-detail-current-price:only-child {
        font-size: 2rem;
    }

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

    .my-short-description {
        font-size: 1rem;
    }

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

    .my-product-detail-review-count {
        font-size: 2rem;
    }

    /* Onglets responsive */
    .my-tabs-nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .my-tab-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .my-tab-panel {
        padding: 20px;
    }

    /* Carousel produits "Complétez votre routine" */
    .my-also-bought-section {
        margin: 40px 0;
        padding: 30px 0;
    }

    .my-also-bought-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .my-also-bought-image-container {
        height: 150px;
    }

    .my-also-bought-name {
        font-size: 1rem;
        min-height: 45px;
    }

    .my-also-bought-carousel .owl-nav button.owl-prev {
        left: -10px;
    }

    .my-also-bought-carousel .owl-nav button.owl-next {
        right: -10px;
    }

    /* Avis */
    .my-product-detail-reviews {
        margin-top: 40px;
    }

    .my-product-detail-reviews-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .my-product-detail-review-form {
        padding: 20px;
    }

    .my-review-item {
        padding: 20px;
    }

    /* Specs grid */
    .my-specs-grid {
        grid-template-columns: 1fr;
    }

    /* Modal suggestions */
    .my-modal-content {
        margin: 5% auto;
        max-width: 90%;
    }

    .my-modal-suggestion-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .my-modal-suggestion-image {
        width: 100%;
        height: 120px;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .my-modal-footer {
        flex-direction: column;
        gap: 10px;
    }

    .my-modal-btn {
        width: 100%;
    }

    /* Footer */
    .byou-footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .byou-footer-about {
        grid-column: auto;
    }

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

    .byou-scroll-top {
        bottom: 80px;
        right: 20px;
    }

    .byou-scroll-top button {
        width: 45px;
        height: 45px;
    }
}

/* Mobile (max-width: 480px) */
@media (max-width: 480px) {
    /* Container */
    .byou-container {
        padding: 0 15px;
    }

    /* Navigation */
    .byou-logo img {
        height: 75px;
        max-width: 140px;
    }

    .byou-burger {
        left: 15px;
        top: 15px;
        padding: 8px;
    }

    /* Topbar */
    .byou-social {
        gap: 15px;
    }

    .social-icon i {
        font-size: 18px;
    }

    /* Home - Hero Slider Small Mobile */
    .byou-slider {
        aspect-ratio: 50 / 20;
    }

    .slide-image {
        object-position: center top;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
    }

    .slider-arrow i {
        font-size: 14px;
    }

    .slide-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
        letter-spacing: 2px;
    }

    .slide-subtitle {
        font-size: 0.75rem;
        margin-bottom: 15px;
    }

    .slide-cta {
        padding: 8px 25px;
        font-size: 9px;
    }

    .slider-indicators {
        bottom: 10px;
        gap: 6px;
        padding: 6px 10px;
    }

    .indicator {
        width: 6px;
        height: 6px;
    }

    /* Home - Hero Mobile (Legacy) */
    .byou-hero-static {
        height: auto;
        aspect-ratio: 50 / 20;
        min-height: unset;
        max-height: unset;
    }

    .hero-image-wrapper {
        position: absolute;
        width: 100%;
        height: 100%;
    }

    .hero-image {
        position: absolute;
        object-fit: cover;
        object-position: center top;
        width: 100%;
        height: 100%;
        min-height: 100%;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
    }

    .hero-content {
        padding: 0 30px;
        z-index: 3;
    }

    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        letter-spacing: 3px;
        text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
    }

    .hero-subtitle {
        font-size: clamp(0.85rem, 2vw, 1.1rem);
        letter-spacing: 1.5px;
        margin-bottom: 25px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    .hero-cta {
        padding: 12px 35px;
        font-size: 11px;
        letter-spacing: 1.5px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

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

    /* Store */
    .byou-store-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .byou-product-card-title {
        font-size: 1.3rem;
    }

    .byou-product-card-price {
        font-size: 1.4rem;
    }

    .new-badge {
        font-size: 1.4rem;
        padding: 4px 12px;
        margin-left: 10px;
    }

    /* Cart */
    .byou-cart-product-name {
        font-size: 1.3rem;
    }

    .byou-cart-summary {
        padding: 20px;
    }

    /* Product Detail */
    .my-product-detail-section {
        padding: 20px 0;
    }

    .my-product-detail-image-container {
        height: 300px;
    }

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

    .my-product-detail-current-price .promo-price,
    .my-product-detail-current-price:only-child {
        font-size: 1.8rem;
    }

    .my-product-detail-original-price .strikethrough {
        font-size: 1.3rem;
    }

    .my-short-description {
        font-size: 0.95rem;
    }

    .my-product-detail-button {
        width: 100%;
        padding: 14px 20px;
        justify-content: center;
    }

    .my-product-detail-stars {
        font-size: 1.3rem;
    }

    .my-product-detail-review-count {
        font-size: 1.8rem;
    }

    .my-tab-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .my-tab-panel {
        padding: 15px;
    }

    .my-also-bought-title {
        font-size: 1.3rem;
    }

    .my-also-bought-image-container {
        height: 130px;
    }

    .my-also-bought-name {
        font-size: 0.95rem;
        min-height: 40px;
    }

    .my-product-detail-reviews-title {
        font-size: 1.4rem;
    }

    .my-product-detail-review-form {
        padding: 15px;
    }

    .my-review-item {
        padding: 15px;
    }

    .my-form-control {
        font-size: 0.95rem;
    }

    /* Store */
    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-info a {
        font-size: 1.3rem;
    }

    .store-title {
        font-size: 1.8rem;
    }

    /* Cart */
    .product-name {
        font-size: 1.2rem;
    }

    .total-price {
        font-size: 1.6rem;
    }

    .summary-card h2 {
        font-size: 1.8rem;
    }

    .summary-row {
        font-size: 2rem;
    }

    .total-amount {
        font-size: 2rem;
    }

    .shipping-info {
        font-size: 1.4rem;
    }

    /* Footer */
    .byou-footer {
        padding: 30px 0 20px;
    }

    .byou-footer-about h3 {
        font-size: 1.8rem;
    }

    .byou-footer-about p {
        font-size: 1rem;
    }

    .byou-footer-links a {
        font-size: 1.2rem;
    }

    .byou-footer-social {
        gap: 20px;
    }

    .byou-footer-social a {
        font-size: 1.5rem;
    }

    .byou-scroll-top {
        bottom: 70px;
        right: 15px;
    }

    .byou-scroll-top button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Très petits écrans (max-width: 360px) */
@media (max-width: 360px) {
    .byou-container {
        padding: 0 10px;
    }

    /* Slider - Très petits écrans */
    .byou-slider {
        aspect-ratio: 50 / 20;
    }

    .slide-image {
        object-position: center top;
    }

    .slider-arrow {
        width: 30px;
        height: 30px;
        display: none;
    }

    .slide-title {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }

    .slide-subtitle {
        font-size: 0.7rem;
        margin-bottom: 12px;
    }

    .slide-cta {
        padding: 6px 20px;
        font-size: 8px;
    }

    .slider-indicators {
        bottom: 8px;
    }

    .indicator {
        width: 5px;
        height: 5px;
    }

    .byou-hero-static {
        height: auto;
        aspect-ratio: 50 / 20;
        min-height: unset;
        max-height: unset;
    }

    .hero-image-wrapper {
        position: absolute;
        width: 100%;
        height: 100%;
    }

    .hero-image {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        min-height: 100%;
    }

    .hero-content {
        padding: 0 20px;
        z-index: 3;
    }

    .hero-title {
        font-size: clamp(1.6rem, 5.5vw, 2.2rem);
        letter-spacing: 2px;
        text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
    }

    .hero-subtitle {
        font-size: clamp(0.75rem, 1.8vw, 0.95rem);
        letter-spacing: 1px;
        margin-bottom: 18px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    .hero-cta {
        padding: 10px 28px;
        font-size: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .byou-logo img {
        height: 65px;
        max-width: 120px;
    }

    .byou-product-card-title {
        font-size: 1.1rem;
    }

    .my-product-detail-title {
        font-size: 1.4rem;
    }
}
