/* ===== BLANC CASSÉ THEME - COMPLETE PRODUCT PAGE ===== */
:root {
    --blanc-casse: #F8F9FA;
    --blanc-casse-fonce: #E9ECEF;
    --blanc-casse-plus-fonce: #DEE2E6;
    --text-fonce: #2C3E50;
    --text-muted: #7F8C8D;
    --accent-blue: #3498DB;
    --accent-blue-fonce: #2980B9;
    --accent-vert: #2ECC71;
    --accent-rouge: #E74C3C;
    --accent-orange: #F39C12;
    --border-light: rgba(44, 62, 80, 0.1);
    --border-medium: rgba(44, 62, 80, 0.15);
    --shadow-light: 0 8px 24px rgba(44, 62, 80, 0.05);  /* 10px*0.8, 30px*0.8 */
    --shadow-medium: 0 12px 32px rgba(44, 62, 80, 0.1);  /* 15px*0.8, 40px*0.8 */
    --shadow-hover: 0 16px 40px rgba(52, 152, 219, 0.15);  /* 20px*0.8, 50px*0.8 */
    --radius-card: 25.6px;  /* 32px * 0.8 */
    --radius-element: 16px;  /* 20px * 0.8 */
    --radius-small: 11.2px;  /* 14px * 0.8 */
    --radius-button: 40px;  /* 50px * 0.8 */
    overflow-x: hidden;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--blanc-casse);
    color: var(--text-fonce);
    line-height: 1.5;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1120px;  /* 1400px * 0.8 */
    margin: 0 auto;
    padding: 0 24px;  /* 30px * 0.8 */
}

/* ===== SEARCH INPUT WITH LOUPE ===== */
.search-container-premium {
    position: relative;
    width: 100%;
    max-width: 320px;  /* 400px * 0.8 */
    margin: 16px auto;  /* 20px * 0.8 */
    animation: fadeInUp 0.5s ease-out;
}

.search-container-premium input[type="text"] {
    width: 100%;
    padding: 12.8px 40px 12.8px 16px !important;  /* 16px*0.8, 50px*0.8, 20px*0.8 */
    border: 2px solid var(--border-medium) !important;
    border-radius: var(--radius-button) !important;
    background: white !important;
    color: var(--text-fonce) !important;
    font-size: 12px;  /* 15px * 0.8 */
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light) !important;
    letter-spacing: 0.24px;  /* 0.3px * 0.8 */
}

.search-container-premium input[type="text"]:focus {
    outline: none !important;
    border-color: var(--accent-blue) !important;
    box-shadow: 0 0 0 3.2px rgba(52, 152, 219, 0.1) !important;  /* 4px*0.8 */
    background: white !important;
}

.search-container-premium input[type="text"]::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
    font-weight: 400;
}

.search-container-premium .loupe-icon {
    position: absolute;
    right: 16px;  /* 20px * 0.8 */
    top: 50%;
    transform: translateY(-50%);
    width: 16px;  /* 20px * 0.8 */
    height: 16px;  /* 20px * 0.8 */
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.3s ease;
}

.search-container-premium:focus-within .loupe-icon {
    color: var(--accent-blue);
}

.search-container-premium input[type="hidden"] {
    display: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(8px);  /* 10px * 0.8 */
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-container-premium:hover input[type="text"] {
    border-color: var(--accent-blue) !important;
    box-shadow: var(--shadow-medium) !important;
}

.search-container-premium:hover .loupe-icon {
    color: var(--accent-blue);
}

/* ===== BREADCRUMB ===== */
.breadcrumb-nav {
    padding: 20px 0 12px;  /* 25px*0.8, 15px*0.8 */
    background: var(--blanc-casse);
}

.breadcrumb-nav .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6.4px;  /* 8px * 0.8 */
}

.breadcrumb-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 11.2px;  /* 14px * 0.8 */
    font-weight: 500;
    transition: color 0.2s;
    padding: 4px 8px;  /* 5px*0.8, 10px*0.8 */
    border-radius: 24px;  /* 30px * 0.8 */
    background: white;
    border: 1px solid var(--border-light);
}

.breadcrumb-nav a:hover {
    color: var(--accent-blue);
    border-color: var(--accent-blue);
    transform: translateY(-0.8px);  /* -1px * 0.8 */
    box-shadow: var(--shadow-light);
}

.breadcrumb-nav .separator {
    color: var(--text-muted);
    font-size: 9.6px;  /* 12px * 0.8 */
}

.breadcrumb-nav .current {
    color: var(--text-fonce);
    font-size: 11.2px;  /* 14px * 0.8 */
    font-weight: 600;
    background: var(--blanc-casse-fonce);
    padding: 4px 12px;  /* 5px*0.8, 15px*0.8 */
    border-radius: 24px;  /* 30px * 0.8 */
    border: 1px solid var(--border-light);
}

/* ===== PRODUCT MAIN SECTION ===== */
.product-main {
    padding: 24px 0 48px;  /* 30px*0.8, 60px*0.8 */
    background: var(--blanc-casse);
    position: relative;
}

.product-main::before {
    content: '';
    position: absolute;
    top: -80px;  /* -100px * 0.8 */
    right: -80px;  /* -100px * 0.8 */
    width: 320px;  /* 400px * 0.8 */
    height: 320px;  /* 400px * 0.8 */
    background: radial-gradient(circle, rgba(52,152,219,0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.product-main::after {
    content: '';
    position: absolute;
    bottom: -80px;  /* -100px * 0.8 */
    left: -80px;  /* -100px * 0.8 */
    width: 320px;  /* 400px * 0.8 */
    height: 320px;  /* 400px * 0.8 */
    background: radial-gradient(circle, rgba(46,204,113,0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;  /* 60px * 0.8 */
    margin-bottom: 48px;  /* 60px * 0.8 */
    position: relative;
    z-index: 10;
}

/* Gallery Column */
.gallery-column {
    position: sticky;
    top: 25.6px;  /* 32px * 0.8 */
    animation: fadeInLeft 0.6s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-16px);  /* -20px * 0.8 */
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.main-image-container {
    position: relative;
    background: white;
    border-radius: var(--radius-card);
    overflow: hidden;
    margin-bottom: 16px;  /* 20px * 0.8 */
    aspect-ratio: 1;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-medium);
    transition: all 0.3s;
}

.main-image-container:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);  /* -5px * 0.8 */
}

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

.main-image-container:hover .main-image {
    transform: scale(1.05);
}

/* Zoom Button */
.zoom-button {
    position: absolute;
    bottom: 16px;  /* 20px * 0.8 */
    right: 16px;  /* 20px * 0.8 */
    width: 38.4px;  /* 48px * 0.8 */
    height: 38.4px;  /* 48px * 0.8 */
    border-radius: 50%;
    background: white;
    border: 1px solid var(--border-light);
    color: var(--text-fonce);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: var(--shadow-medium);
    z-index: 20;
}

.zoom-button:hover {
    background: var(--accent-blue);
    color: white;
    border-color: var(--accent-blue);
    transform: scale(1.1) rotate(90deg);
    box-shadow: var(--shadow-hover);
}

.zoom-button svg {
    width: 17.6px;  /* 22px * 0.8 */
    height: 17.6px;  /* 22px * 0.8 */
}

/* Thumbnail Grid */
.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 9.6px;  /* 12px * 0.8 */
}

.thumbnail-item {
    aspect-ratio: 1;
    border-radius: var(--radius-small);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
    background: white;
    box-shadow: var(--shadow-light);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.thumbnail-item:hover {
    border-color: var(--accent-blue);
    transform: translateY(-2.4px);  /* -3px * 0.8 */
    box-shadow: var(--shadow-medium);
}

.thumbnail-item:hover img {
    transform: scale(1.1);
}

.thumbnail-item.active {
    border-color: var(--accent-blue);
    border-width: 2px;
    box-shadow: 0 0 0 3.2px rgba(52, 152, 219, 0.1);  /* 4px*0.8 */
}

/* Info Column */
.info-column {
    padding: 0;
    animation: fadeInRight 0.6s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(16px);  /* 20px * 0.8 */
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Product Info Panel */
.info-panel {
    background: white;
    border-radius: var(--radius-card);
    padding: 32px;  /* 40px * 0.8 */
    border: 1px solid var(--border-light);
    transition: all 0.3s;
    box-shadow: var(--shadow-medium);
}

.info-panel:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--border-medium);
}

/* Brand Badge */
.brand-badge {
    display: inline-block;
    background: var(--blanc-casse-fonce);
    color: var(--text-muted);
    font-size: 10.4px;  /* 13px * 0.8 */
    font-weight: 600;
    padding: 4.8px 12.8px;  /* 6px*0.8, 16px*0.8 */
    border-radius: 24px;  /* 30px * 0.8 */
    margin-bottom: 16px;  /* 20px * 0.8 */
    border: 1px solid var(--border-light);
    text-transform: uppercase;
    letter-spacing: 0.4px;  /* 0.5px * 0.8 */
}

/* Product Title */
.product-title {
    font-size: 33.6px;  /* 42px * 0.8 */
    font-weight: 800;
    color: var(--text-fonce);
    margin-bottom: 16px;  /* 20px * 0.8 */
    line-height: 1.2;
    letter-spacing: -0.016em;  /* -0.02em * 0.8? keep as em, but it's relative, so leave */
}

/* Price Block */
.price-block {
    display: flex;
    align-items: center;
    gap: 16px;  /* 20px * 0.8 */
    margin-bottom: 24px;  /* 30px * 0.8 */
    padding-bottom: 24px;  /* 30px * 0.8 */
    border-bottom: 2px dashed var(--border-medium);
}

.current-price {
    font-size: 33.6px;  /* 42px * 0.8 */
    font-weight: 800;
    color: var(--accent-blue);
}

.original-price {
    font-size: 19.2px;  /* 24px * 0.8 */
    color: var(--text-muted);
    text-decoration: line-through;
}

.discount-tag {
    background: var(--accent-vert);
    color: white;
    font-size: 12.8px;  /* 16px * 0.8 */
    font-weight: 700;
    padding: 4.8px 12.8px;  /* 6px*0.8, 16px*0.8 */
    border-radius: 24px;  /* 30px * 0.8 */
    border: none;
    box-shadow: var(--shadow-light);
}

/* Payment Info */
.payment-info {
    background: var(--blanc-casse);
    padding: 20px;  /* 25px * 0.8 */
    border-radius: var(--radius-element);
    margin-bottom: 24px;  /* 30px * 0.8 */
    border: 1px solid var(--border-light);
    transition: all 0.3s;
}

.payment-info:hover {
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-light);
}

.payment-badge {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;  /* 10px * 0.8 */
    background: white;
    padding: 8px 16px;  /* 10px*0.8, 20px*0.8 */
    border-radius: 24px;  /* 30px * 0.8 */
    font-size: 11.2px;  /* 14px * 0.8 */
    font-weight: 600;
    margin-bottom: 12px;  /* 15px * 0.8 */
    border: 1px solid var(--border-light);
}

.payment-badge svg {
    fill: var(--accent-vert);
    width: 12.8px;  /* 16px * 0.8 */
    height: 12.8px;  /* 16px * 0.8 */
}

.discount-code {
    display: block;
    font-size: 11.2px;  /* 14px * 0.8 */
    color: var(--text-muted);
}

.discount-code strong {
    color: var(--accent-blue);
    font-weight: 700;
    background: white;
    padding: 3.2px 8px;  /* 4px*0.8, 10px*0.8 */
    border-radius: 16px;  /* 20px * 0.8 */
    margin-left: 8px;  /* 10px * 0.8 */
    border: 1px solid var(--border-light);
}

/* Variant Sections */
.variant-section {
    margin-bottom: 24px;  /* 30px * 0.8 */
}

.variant-label {
    font-size: 11.2px;  /* 14px * 0.8 */
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.4px;  /* 0.5px * 0.8 */
    margin-bottom: 12px;  /* 15px * 0.8 */
    display: block;
}

#selectedColorName {
    color: var(--accent-blue);
    font-weight: 600;
    margin-left: 6.4px;  /* 8px * 0.8 */
    text-transform: capitalize;
}

/* Color Options */
.color-options {
    display: flex;
    gap: 12px;  /* 15px * 0.8 */
    flex-wrap: wrap;
}

.color-dot {
    width: 38.4px;  /* 48px * 0.8 */
    height: 38.4px;  /* 48px * 0.8 */
    border-radius: 50%;
    border: 2px solid var(--border-light);
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
    box-shadow: var(--shadow-light);
}

.color-dot:hover {
    transform: scale(1.15);
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-hover);
}

.color-dot.selected {
    border-color: var(--accent-blue);
    border-width: 3px;
    box-shadow: 0 0 0 3.2px rgba(52, 152, 219, 0.1);  /* 4px*0.8 */
}

/* Size Options */
.size-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;  /* 15px * 0.8 */
}

.size-guide-btn {
    display: inline-flex;
    align-items: center;
    gap: 6.4px;  /* 8px * 0.8 */
    background: white;
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 10.4px;  /* 13px * 0.8 */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    padding: 6.4px 16px;  /* 8px*0.8, 20px*0.8 */
    border-radius: 24px;  /* 30px * 0.8 */
}

.size-guide-btn:hover {
    color: var(--accent-blue);
    border-color: var(--accent-blue);
    transform: translateY(-1.6px);  /* -2px * 0.8 */
    box-shadow: var(--shadow-light);
}

.size-guide-btn svg {
    width: 12.8px;  /* 16px * 0.8 */
    height: 12.8px;  /* 16px * 0.8 */
}

.size-options {
    display: flex;
    gap: 9.6px;  /* 12px * 0.8 */
    flex-wrap: wrap;
}

.size-btn {
    min-width: 56px;  /* 70px * 0.8 */
    height: 43.2px;  /* 54px * 0.8 */
    border: 2px solid var(--border-light);
    background: white;
    border-radius: var(--radius-button);
    font-size: 12.8px;  /* 16px * 0.8 */
    font-weight: 600;
    color: var(--text-fonce);
    cursor: pointer;
    transition: all 0.3s;
    padding: 0 12px;  /* 15px * 0.8 */
    box-shadow: var(--shadow-light);
}

.size-btn.disabled {
text-decoration: line-through 2px;
    color: #635b5b;
}

.size-btn.disabled:hover {
    border-color: #ff9797 !important;
    transform: translateY(-2.4px);  /* -3px * 0.8 */
    box-shadow: var(--shadow-hover);
}

.size-btn:hover {
    border-color: var(--accent-blue);
    transform: translateY(-2.4px);  /* -3px * 0.8 */
    box-shadow: var(--shadow-hover);
}

.size-btn.selected {
    border-color: var(--accent-blue);
    background: var(--accent-blue);
    color: white;
    box-shadow: var(--shadow-medium);
}

/* Delivery Info */
.delivery-info {
    background: var(--blanc-casse);
    border-radius: var(--radius-element);
    padding: 20px;  /* 25px * 0.8 */
    margin-bottom: 24px;  /* 30px * 0.8 */
    border: 1px solid var(--border-light);
    transition: all 0.3s;
}

.delivery-info:hover {
    border-color: var(--accent-vert);
    box-shadow: var(--shadow-light);
}

.delivery-badge {
    display: flex;
    align-items: center;
    gap: 9.6px;  /* 12px * 0.8 */
    color: var(--accent-vert);
    font-weight: 600;
    margin-bottom: 16px;  /* 20px * 0.8 */
    padding-bottom: 16px;  /* 20px * 0.8 */
    border-bottom: 1px dashed var(--border-medium);
    font-size: 12.8px;  /* 16px * 0.8 */
}

.delivery-badge svg {
    stroke: var(--accent-vert);
    width: 17.6px;  /* 22px * 0.8 */
    height: 17.6px;  /* 22px * 0.8 */
}

.delivery-details {
    display: flex;
    flex-direction: column;
    gap: 12.8px;  /* 16px * 0.8 */
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 9.6px;  /* 12px * 0.8 */
    color: var(--text-muted);
    font-size: 11.2px;  /* 14px * 0.8 */
    font-weight: 500;
}

.detail-item svg {
    stroke: var(--text-muted);
    width: 14.4px;  /* 18px * 0.8 */
    height: 14.4px;  /* 18px * 0.8 */
}

.detail-item strong {
    color: var(--text-fonce);
    font-weight: 700;
    margin-left: 4px;  /* 5px * 0.8 */
}

/* Action Buttons */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;  /* 15px * 0.8 */
    margin-bottom: 20px;  /* 25px * 0.8 */
}

.add-to-cart-btn {
    width: 100%;
    height: 51.2px;  /* 64px * 0.8 */
    background: var(--accent-blue);
    color: white;
    border: none;
    border-radius: var(--radius-button);
    font-size: 14.4px;  /* 18px * 0.8 */
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9.6px;  /* 12px * 0.8 */
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow-medium);
}

.add-to-cart-btn:hover {
    background: var(--accent-blue-fonce);
    transform: translateY(-2.4px);  /* -3px * 0.8 */
    box-shadow: var(--shadow-hover);
}

.add-to-cart-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.add-to-cart-btn svg {
    width: 16px;  /* 20px * 0.8 */
    height: 16px;  /* 20px * 0.8 */
    transition: transform 0.3s;
}

.add-to-cart-btn:hover svg {
    transform: translateX(4px);  /* 5px * 0.8 */
}

.wishlist-btn {
    width: 100%;
    height: 44.8px;  /* 56px * 0.8 */
    border: 2px solid var(--border-light);
    background: white;
    border-radius: var(--radius-button);
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9.6px;  /* 12px * 0.8 */
    font-size: 12.8px;  /* 16px * 0.8 */
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: var(--shadow-light);
}

.wishlist-btn:hover {
    border-color: var(--accent-rouge);
    color: var(--accent-rouge);
    transform: translateY(-2.4px);  /* -3px * 0.8 */
    box-shadow: var(--shadow-hover);
    background: #FEF2F2;
}

.wishlist-btn.active {
    border-color: var(--accent-rouge);
    color: var(--accent-rouge);
    background: #FEF2F2;
    border-width: 2px;
}

.wishlist-btn svg {
    width: 16px;  /* 20px * 0.8 */
    height: 16px;  /* 20px * 0.8 */
    transition: all 0.3s;
}

.wishlist-btn:hover svg {
    transform: scale(1.2);
}

/* Stock Status */
.stock-status {
    display: flex;
    align-items: center;
    gap: 9.6px;  /* 12px * 0.8 */
    font-size: 14.2px;  /* 14px * 0.8 */
    font-weight: 600;
    color: var(--text-muted);
        margin-bottom: 10px;
}

.stock-indicator {
    width: 8px;  /* 10px * 0.8 */
    height: 8px;  /* 10px * 0.8 */
    border-radius: 50%;
    position: relative;
}

.stock-indicator.in-stock {
    background: var(--accent-vert);
    box-shadow: 0 0 0 2.4px rgba(46, 204, 113, 0.2);  /* 3px*0.8 */
}

.stock-indicator.out-of-stock {
    background: var(--accent-rouge);
    box-shadow: 0 0 0 2.4px rgba(231, 76, 60, 0.2);  /* 3px*0.8 */
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: white;
    border-radius: var(--radius-card);
    width: 90%;
    max-width: 560px;  /* 700px * 0.8 */
    max-height: 80vh;
    overflow-y: auto;
    transform: translateY(24px);  /* 30px * 0.8 */
    transition: all 0.4s;
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--border-light);
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-header {
    padding: 20px 24px;  /* 25px*0.8, 30px*0.8 */
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--blanc-casse);
}

.modal-title {
    font-size: 17.6px;  /* 22px * 0.8 */
    font-weight: 700;
    color: var(--text-fonce);
}

.modal-close {
    background: none;
    border: none;
    font-size: 25.6px;  /* 32px * 0.8 */
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s;
    width: 35.2px;  /* 44px * 0.8 */
    height: 35.2px;  /* 44px * 0.8 */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--accent-rouge);
    background: #FEF2F2;
    transform: rotate(90deg);
}

.modal-body {
    padding: 24px;  /* 30px * 0.8 */
}

/* Size Table */
.size-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius-element);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.size-table th {
    text-align: left;
    padding: 12.8px;  /* 16px * 0.8 */
    background: var(--blanc-casse);
    color: var(--text-fonce);
    font-weight: 700;
    font-size: 11.2px;  /* 14px * 0.8 */
    text-transform: uppercase;
    letter-spacing: 0.4px;  /* 0.5px * 0.8 */
    border-bottom: 1px solid var(--border-medium);
}

.size-table td {
    padding: 11.2px 12.8px;  /* 14px*0.8, 16px*0.8 */
    border-bottom: 1px solid var(--border-light);
    color: var(--text-muted);
    font-weight: 500;
}

.size-table tr:last-child td {
    border-bottom: none;
}

.size-table tr:hover td {
    background: var(--blanc-casse);
    color: var(--accent-blue);
}

/* Zoom Modal */
.zoom-container {
    position: relative;
    width: 90vw;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zoom-close {
    position: absolute;
    top: 16px;  /* 20px * 0.8 */
    right: 16px;  /* 20px * 0.8 */
    width: 40px;  /* 50px * 0.8 */
    height: 40px;  /* 50px * 0.8 */
    border-radius: 50%;
    background: white;
    border: 1px solid var(--border-light);
    font-size: 24px;  /* 30px * 0.8 */
    color: var(--text-fonce);
    cursor: pointer;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: var(--shadow-medium);
}

.zoom-close:hover {
    background: var(--accent-rouge);
    color: white;
    border-color: var(--accent-rouge);
    transform: rotate(90deg);
}

.zoomed-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-hover);
    background: white;
}

/* Notification */
.notification {
    position: fixed;
    top: 24px;  /* 30px * 0.8 */
    right: 24px;  /* 30px * 0.8 */
    background: var(--text-fonce);
    color: white;
    padding: 12.8px 24px;  /* 16px*0.8, 30px*0.8 */
    border-radius: var(--radius-button);
    z-index: 2000;
    animation: slideInRight 0.3s ease;
    box-shadow: var(--shadow-hover);
    font-weight: 600;
    font-size: 11.2px;  /* 14px * 0.8 */
    display: flex;
    align-items: center;
    gap: 9.6px;  /* 12px * 0.8 */
    border: 1px solid rgba(255,255,255,0.1);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification.success {
    background: var(--accent-vert);
    color: white;
}

.notification.error {
    background: var(--accent-rouge);
    color: white;
}

.notification.fade-out {
    animation: slideOutRight 0.3s ease forwards;
}

@keyframes slideOutRight {
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 16px;  /* 20px * 0.8 */
    height: 16px;  /* 20px * 0.8 */
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .product-grid {
        gap: 32px;  /* 40px * 0.8 */
    }
    
    .product-title {
        font-size: 28.8px;  /* 36px * 0.8 */
    }
    
    .current-price {
        font-size: 28.8px;  /* 36px * 0.8 */
    }
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 32px;  /* 40px * 0.8 */
    }
    
    .gallery-column {
        position: static;
    }
    
    .info-panel {
        padding: 24px;  /* 30px * 0.8 */
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;  /* 20px * 0.8 */
    }
    
    .product-title {
        font-size: 25.6px;  /* 32px * 0.8 */
    }
    
    .current-price {
        font-size: 25.6px;  /* 32px * 0.8 */
    }
    
    .original-price {
        font-size: 16px;  /* 20px * 0.8 */
    }
    
    .thumbnail-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .info-panel {
        padding: 20px;  /* 25px * 0.8 */
    }
    
    .size-btn {
        min-width: 48px;  /* 60px * 0.8 */
        height: 38.4px;  /* 48px * 0.8 */
        font-size: 12px;  /* 15px * 0.8 */
    }
    
    .search-container-premium {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 12px;  /* 15px * 0.8 */
    }
    
    .product-title {
        font-size: 22.4px;  /* 28px * 0.8 */
    }
    
    .current-price {
        font-size: 22.4px;  /* 28px * 0.8 */
    }
    
    .original-price {
        font-size: 14.4px;  /* 18px * 0.8 */
    }
    
    .thumbnail-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .color-dot {
        width: 33.6px;  /* 42px * 0.8 */
        height: 33.6px;  /* 42px * 0.8 */
    }
    
    .size-btn {
        min-width: 44px;  /* 55px * 0.8 */
        height: 35.2px;  /* 44px * 0.8 */
        font-size: 11.2px;  /* 14px * 0.8 */
    }
    
    .zoom-button {
        width: 33.6px;  /* 42px * 0.8 */
        height: 33.6px;  /* 42px * 0.8 */
        bottom: 12px;  /* 15px * 0.8 */
        right: 12px;  /* 15px * 0.8 */
    }
    
    .zoom-button svg {
        width: 14.4px;  /* 18px * 0.8 */
        height: 14.4px;  /* 18px * 0.8 */
    }
    
    .info-panel {
        padding: 16px;  /* 20px * 0.8 */
    }
    
    .search-container-premium input[type="text"] {
        padding: 11.2px 36px 11.2px 12.8px !important;  /* 14px*0.8, 45px*0.8, 16px*0.8 */
        font-size: 11.2px;  /* 14px * 0.8 */
    }
    
    .search-container-premium .loupe-icon {
        width: 14.4px;  /* 18px * 0.8 */
        height: 14.4px;  /* 18px * 0.8 */
        right: 12.8px;  /* 16px * 0.8 */
    }
}

@media (max-width: 480px) {
    .price-block {
        flex-wrap: wrap;
        gap: 9.6px;  /* 12px * 0.8 */
    }
    
    .discount-tag {
        font-size: 11.2px;  /* 14px * 0.8 */
    }
    
    .payment-info {
        padding: 16px;  /* 20px * 0.8 */
    }
    
    .size-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 9.6px;  /* 12px * 0.8 */
    }
    
    .size-guide-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Touch Optimizations */
@media (hover: none) and (pointer: coarse) {
    .size-btn,
    .color-dot,
    .add-to-cart-btn,
    .wishlist-btn,
    .zoom-button {
        min-height: 40px;  /* 50px * 0.8 */
    }
    
    .search-container-premium input[type="text"] {
        font-size: 12.8px;  /* 16px * 0.8 */
    }
}

/* Print Styles */
@media print {
    .search-container-premium,
    .action-buttons,
    .zoom-button,
    .wishlist-btn,
    .modal-overlay {
        display: none !important;
    }
    
    .product-main {
        background: white;
    }
    
    .info-panel {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

/* Additional Animations */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
