/* =============================================
   PMD VIP SHOES - Couleurs pour la page catalogue
   Noir (#000000), Or (#D4AF37), Blanc (#FFFFFF)
   ============================================= */

/* Hero Section Ultra Moderne */
.catalogue-hero {
    position: relative;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><circle cx="50" cy="50" r="2" fill="%23D4AF37" opacity="0.3"/><circle cx="150" cy="150" r="1" fill="%23D4AF37" opacity="0.2"/><circle cx="100" cy="100" r="1.5" fill="%23D4AF37" opacity="0.4"/></svg>') repeat;
    animation: float 20s infinite linear;
}

.hero-gradient-overlay {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212,175,55,0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s infinite ease-in-out;
}

.hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23000000"/><path d="M0 0L100 100M100 0L0 100" stroke="%23D4AF37" stroke-width="0.5" opacity="0.1"/></svg>') repeat;
    opacity: 0.3;
}

.hero-title {
    animation: slideInRight 1s ease-out;
}

.title-underline {
    animation: expandWidth 1s ease-out 0.5s both;
}

.stat-card {
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    animation: bounceIn 1s ease-out;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
    100% { transform: scale(1); opacity: 0.3; }
}

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

@keyframes expandWidth {
    from { width: 0; }
    to { width: 100px; }
}

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

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

/* Cards */
.card {
    border: 1px solid rgba(212,175,55,0.2) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

.card:hover {
    box-shadow: 0 5px 20px rgba(212,175,55,0.3) !important;
    border-color: #D4AF37 !important;
}

/* Card Titles */
.card-title {
    color: #000000 !important;
    font-family: 'Playfair Display', serif !important;
    font-weight: 700 !important;
}

/* List Group */
.list-group-item {
    border-color: rgba(212,175,55,0.1) !important;
    color: #000000 !important;
}

.list-group-item:hover {
    background-color: rgba(212,175,55,0.1) !important;
    color: #000000 !important;
}

.list-group-item.active {
    background-color: #D4AF37 !important;
    color: #000000 !important;
    border-color: #D4AF37 !important;
}

/* Badges - Changement de bleu à or */
.badge {
    font-weight: 500 !important;
}

.badge.bg-primary {
    background-color: #D4AF37 !important;
    color: #000000 !important;
}

.badge.bg-secondary {
    background-color: #000000 !important;
    color: #FFFFFF !important;
}

.badge.bg-danger {
    background-color: #dc3545 !important;
    color: #FFFFFF !important;
}

.badge.bg-info {
    background-color: #D4AF37 !important;
    color: #000000 !important;
}

.badge.bg-success {
    background-color: #28a745 !important;
    color: #FFFFFF !important;
}

.badge.bg-warning {
    background-color: #D4AF37 !important;
    color: #000000 !important;
}

/* Buttons */
.btn-primary {
    background-color: #000000 !important;
    border-color: #000000 !important;
    color: #FFFFFF !important;
}

.btn-primary:hover {
    background-color: #D4AF37 !important;
    border-color: #D4AF37 !important;
    color: #000000 !important;
}

.btn-outline-primary {
    border-color: #000000 !important;
    color: #000000 !important;
}

.btn-outline-primary:hover {
    background-color: #000000 !important;
    color: #FFFFFF !important;
}

.btn-vip {
    background-color: #000000 !important;
    border-color: #000000 !important;
    color: #FFFFFF !important;
}

.btn-vip:hover {
    background-color: #D4AF37 !important;
    border-color: #D4AF37 !important;
    color: #000000 !important;
}

.btn-outline-vip {
    border-color: #D4AF37 !important;
    color: #D4AF37 !important;
}

.btn-outline-vip:hover {
    background-color: #D4AF37 !important;
    color: #000000 !important;
}

/* Form Controls */
.form-control {
    border-color: rgba(212,175,55,0.3) !important;
}

.form-control:focus {
    border-color: #D4AF37 !important;
    box-shadow: 0 0 0 0.2rem rgba(212,175,55,0.25) !important;
}

/* Product Cards */
.product-card {
    border: 1px solid rgba(212,175,55,0.2) !important;
    transition: all 0.3s ease !important;
}

.product-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(212,175,55,0.3) !important;
    border-color: #D4AF37 !important;
}

.product-image-container {
    position: relative;
    overflow: hidden;
}

.product-image {
    transition: transform 0.3s ease !important;
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease !important;
}

.product-card:hover .product-overlay {
    opacity: 1 !important;
}

.product-actions .btn {
    background-color: #D4AF37 !important;
    color: #000000 !important;
    border: none !important;
    margin: 0 5px !important;
}

.product-actions .btn:hover {
    background-color: #000000 !important;
    color: #FFFFFF !important;
}

/* Product Details */
.product-name {
    color: #000000 !important;
    font-family: 'Playfair Display', serif !important;
    font-weight: 700 !important;
}

.product-name:hover {
    color: #D4AF37 !important;
}

.product-brand {
    color: #D4AF37 !important;
    font-weight: 500 !important;
}

.product-description {
    color: #666666 !important;
}

.product-rating .fa-star {
    color: #D4AF37 !important;
}

.product-price .price-current {
    color: #000000 !important;
    font-weight: 700 !important;
}

.product-price .price-original {
    color: #999999 !important;
    text-decoration: line-through !important;
}

.product-price .text-danger {
    color: #D4AF37 !important;
    font-weight: 700 !important;
}

/* Stock Badges */
.stock-badge.bg-success {
    background-color: #28a745 !important;
    color: #FFFFFF !important;
}

.stock-badge.bg-danger {
    background-color: #dc3545 !important;
    color: #FFFFFF !important;
}

/* Section Headers */
.section-title {
    color: #000000 !important;
    font-family: 'Playfair Display', serif !important;
    font-weight: 700 !important;
}

.section-subtitle {
    color: #666666 !important;
}

/* Pagination */
.pagination .page-link {
    border-color: rgba(212,175,55,0.3) !important;
    color: #000000 !important;
}

.pagination .page-link:hover {
    background-color: #D4AF37 !important;
    border-color: #D4AF37 !important;
    color: #000000 !important;
}

.pagination .page-item.active .page-link {
    background-color: #000000 !important;
    border-color: #000000 !important;
    color: #FFFFFF !important;
}

/* KPI Cards - Couleurs or/noir */
.text-primary {
    color: #D4AF37 !important;
}

/* Header résultats */
.col-lg-9 .h4 {
    color: #000000 !important;
    font-family: 'Playfair Display', serif !important;
    font-weight: 700 !important;
}

/* Icônes dans les headers */
.col-lg-9 .fas {
    color: #D4AF37 !important;
}

/* Boutons de tri */
.btn-outline-secondary {
    border-color: #000000 !important;
    color: #000000 !important;
}

.btn-outline-secondary:hover {
    background-color: #000000 !important;
    color: #FFFFFF !important;
}

.btn-outline-secondary.active {
    background-color: #D4AF37 !important;
    color: #000000 !important;
    border-color: #D4AF37 !important;
}

/* Form select */
.form-select {
    border-color: rgba(212,175,55,0.3) !important;
    color: #000000 !important;
}

.form-select:focus {
    border-color: #D4AF37 !important;
    box-shadow: 0 0 0 0.2rem rgba(212,175,55,0.25) !important;
}

/* Boutons Ajouter au Panier en or */
.add-to-cart-gold {
    background-color: #D4AF37 !important;
    border-color: #D4AF37 !important;
    color: #000000 !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 50px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(212,175,55,0.3) !important;
}

.add-to-cart-gold:hover:not(:disabled) {
    background-color: #000000 !important;
    border-color: #000000 !important;
    color: #FFFFFF !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3) !important;
}

.add-to-cart-gold:active:not(:disabled) {
    transform: translateY(0) !important;
    box-shadow: 0 2px 10px rgba(212,175,55,0.3) !important;
}

.add-to-cart-gold:disabled {
    background-color: #cccccc !important;
    border-color: #cccccc !important;
    color: #666666 !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
}

.add-to-cart-gold i {
    font-size: 1.1rem !important;
}

/* Boutons WhatsApp également stylisés */
.whatsapp-order {
    border-color: #25d366 !important;
    color: #25d366 !important;
    background-color: transparent !important;
    border-radius: 50px !important;
    padding: 0.75rem 1.5rem !important;
    transition: all 0.3s ease !important;
}

.whatsapp-order:hover {
    background-color: #25d366 !important;
    color: #FFFFFF !important;
    transform: translateY(-2px) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-header .display-4 {
        font-size: 2rem !important;
    }
    
    .product-card {
        margin-bottom: 1rem !important;
    }
    
    .add-to-cart-gold {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.9rem !important;
    }
}
