/* ============================================
   POKEASY FIXES - Corrections diverses
   ============================================ */

/* ----- ORANGE ACCENTS ----- */
:root {
    --pk-orange: #FF6B00;
    --pk-orange-light: #FF8C33;
    --pk-yellow-gradient: linear-gradient(135deg, #FFD814 0%, #FF9500 100%);
}

/* ----- NAV HOVER FIX - Plus de padding vertical ----- */
.pk-nav__container {
    height: 56px !important;
}

.pk-nav__link {
    padding: 10px 18px !important;
    margin: 4px 2px !important;
    border-radius: 8px !important;
}

.pk-nav__menu {
    gap: 2px !important;
}

/* ----- AIDE BUTTON FIX ----- */
.pk-nav__help {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 16px !important;
    border-radius: 8px !important;
    color: var(--pk-gray-300) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
}

.pk-nav__help:hover {
    background: var(--pk-gray-800) !important;
    color: var(--pk-white) !important;
}

.pk-nav__help svg {
    width: 18px !important;
    height: 18px !important;
}

/* ----- ORANGE TOUCHES ----- */
.mega-banner__btn:hover,
.pk-footer__newsletter-btn:hover {
    background: linear-gradient(135deg, #1A1A1A 0%, #333 100%) !important;
}

.pk-nav__badge--sale {
    background: var(--pk-orange) !important;
}

.pk-section__title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--pk-yellow) 0%, var(--pk-orange) 100%);
    margin-top: 12px;
    border-radius: 2px;
}

.pk-footer__social-link:hover {
    background: linear-gradient(135deg, var(--pk-yellow) 0%, var(--pk-orange) 100%) !important;
}

/* ----- PAYMENT ICONS FIX ----- */
.pk-footer__bottom-payments {
    gap: 8px !important;
}

.pk-footer__payment-icon {
    width: 56px !important;
    height: 36px !important;
    padding: 4px 6px !important;
    background: transparent !important;
    border-radius: 6px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.pk-footer__payment-icon svg {
    width: 100% !important;
    height: 100% !important;
    max-width: 44px !important;
    max-height: 28px !important;
}

/* ----- NEWSLETTER SPACING ----- */
.pk-footer__newsletter {
    margin-top: 0 !important;
    border-top: none !important;
}

.pk-reassurance {
    margin-bottom: 0 !important;
    padding-bottom: 48px !important;
}

/* ----- HERO SPACING PC ----- */
@media (min-width: 1024px) {
    .pokeasy-hero-blazing {
        padding-top: 80px !important;
    }
}

/* DROPDOWN FIX */
.pk-nav__dropdown {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    background: #ffffff !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15) !important;
    padding: 8px 0 !important;
    min-width: 200px !important;
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    z-index: 1000 !important;
}

.pk-nav__item--has-dropdown:hover .pk-nav__dropdown {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.pk-nav__dropdown-link {
    display: block !important;
    padding: 10px 20px !important;
    color: #333333 !important;
    text-decoration: none !important;
    font-size: 14px !important;
}

.pk-nav__dropdown-link:hover {
    background: #f5f5f5 !important;
}

/* WHATNOT LOGO FIX */
.pk-nav__whatnot-logo {
    display: inline-block !important;
    vertical-align: middle !important;
    margin-right: 6px !important;
    transform: translateY(-1px) !important;
}

/* MOBILE NAV FIX */
@media (max-width: 768px) {
    .pk-header__search {
        display: none !important;
    }
    
    .pk-header__logo {
        width: auto !important;
    }
    
    .pk-header__actions {
        width: auto !important;
    }
    
    .pk-nav {
        display: none !important;
    }
    
    .pk-header__mobile-toggle {
        display: flex !important;
    }
}

/* PRODUCT IMAGE FIX - Images fill containers */
.product-card__image {
    display: block !important;
    padding: 0 !important;
}

.product-card__image img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    padding: 0 !important;
    object-fit: cover !important;
    border-radius: 16px 16px 0 0 !important;
}

/* SHOP PAGE - Product Cards like Homepage */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px -10px rgba(0,0,0,0.1);
    border-color: #FFD814;
}

.product-card__image {
    position: relative;
    aspect-ratio: 1;
    background: #f8f8f8;
    overflow: hidden;
}

.product-card__image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 16px 16px 0 0 !important;
}

.product-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #FFD814;
    color: #000;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.product-card__badge--sale {
    background: #EF4444;
    color: #fff;
}

.product-card__badge--out-of-stock {
    background: #1A1A1A;
    color: #FFFFFF;
}

.product-card__info {
    padding: 1rem 1.25rem 1.25rem;
}

.product-card__name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card__price {
    font-size: 16px;
    font-weight: 700;
    color: #111;
}

.product-card__price del {
    color: #999;
    font-weight: 400;
    margin-right: 8px;
}

.product-card__price ins {
    text-decoration: none;
    color: #EF4444;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .product-card__info {
        padding: 0.75rem;
    }
    .product-card__name {
        font-size: 12px;
    }
    .product-card__price {
        font-size: 14px;
    }
}

/* PAGINATION FIX */
.woocommerce-pagination {
    margin-top: 2rem;
    text-align: center;
}
.woocommerce-pagination ul {
    display: inline-flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.woocommerce-pagination ul li {
    display: inline-block;
}
.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}
.woocommerce-pagination ul li a:hover {
    border-color: #FFD814;
    background: #FFD814;
    color: #000;
}
.woocommerce-pagination ul li span.current {
    background: #FFD814;
    border-color: #FFD814;
    color: #000;
}
