/* ========================================
   LEEVONS CATALOG - MINIMAL WHITE GRID
   ======================================== */

/* ========================================
   MENU
   ======================================== */
.leevons-catalog-menu {
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 1000;
}

.leevons-catalog-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.leevons-catalog-menu li {
    margin: 0;
    padding: 0;
}

.leevons-catalog-menu a {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #000;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
    opacity: 0.35;
    transition: opacity 0.3s ease;
}

.leevons-catalog-menu a:hover {
    opacity: 1;
}

.leevons-catalog-menu a.active {
    opacity: 1;
    font-weight: 500;
}

/* ========================================
   CATALOGUE - GRILLE BLANCHE
   ======================================== */
.leevons-catalog {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px 20px 20px;
    box-sizing: border-box;
}

/* ========================================
   GRILLE 5 COLONNES
   ======================================== */
.leevons-products-grid {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 3px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.leevons-products-grid::before,
.leevons-products-grid::after {
    display: none !important;
    content: none !important;
}

/* Override WooCommerce */
ul.products,
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 3px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

ul.products li.product {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ========================================
   PRODUCT CARD - IMAGE UNIQUEMENT
   ======================================== */
.leevons-product-card-link {
    text-decoration: none;
    display: block;
}

.leevons-product-card {
    position: relative;
    overflow: hidden;
}

.leevons-card-image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #fafafa;
    transition: background 0.4s ease;
}

.leevons-product-card:hover .leevons-card-image {
    background: #f0f0f0;
}

.leevons-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.leevons-card-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f5f5f5;
}

/* ========================================
   NO PRODUCTS
   ======================================== */
.leevons-no-products {
    text-align: center;
    padding: 100px 20px;
    opacity: 0.25;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #666;
}

/* ========================================
   KILL WOOCOMMERCE DEFAULTS
   ======================================== */
.woocommerce-result-count,
.woocommerce-ordering,
.woocommerce-breadcrumb,
.woocommerce-pagination,
.woocommerce-notices-wrapper:empty,
nav.woocommerce-breadcrumb,
.wc-block-grid__product-rating,
.wc-block-grid__product-title,
.wc-block-grid__product-price,
.wc-block-grid__product-add-to-cart,
.price,
.star-rating,
.button.add_to_cart_button,
.added_to_cart,
.attachment-woocommerce_thumbnail,
.onsale,
.page-title,
.woocommerce-products-header,
.wp-block-heading,
.storefront-product-section,
.leevons-catalog-header {
    display: none !important;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1200px) {
    .leevons-products-grid,
    ul.products,
    .woocommerce ul.products {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

@media (max-width: 900px) {
    .leevons-products-grid,
    ul.products,
    .woocommerce ul.products {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    .leevons-catalog {
        padding: 70px 10px 10px 10px;
    }
}

@media (max-width: 600px) {
    .leevons-products-grid,
    ul.products,
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2px !important;
    }
    
    .leevons-catalog {
        padding: 65px 5px 5px 5px;
    }
    
    .leevons-catalog-menu {
        top: 20px;
        left: 20px;
    }
    
    .leevons-catalog-menu ul {
        gap: 20px;
    }
    
    .leevons-catalog-menu a {
        font-size: 10px;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .leevons-catalog-menu {
        top: 15px;
        left: 15px;
    }
    
    .leevons-catalog-menu ul {
        gap: 15px;
    }
    
    .leevons-catalog-menu a {
        font-size: 9px;
    }
}

/* ========================================
   PREVIEW BANNER
   ======================================== */
.leevons-preview-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #ff6b00, #ff9500);
    color: white;
    text-align: center;
    padding: 10px 20px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.leevons-preview-banner .dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}