/* ==========================================
   JASS LUXE SHOP PAGE
========================================== */
.jl-shop-page {
    background-color: #0F0F0F !important;
    min-height: 80vh;
    padding: 60px 0 100px;
    color: #FFFFFF;
}
.jl-shop-header {
    text-align: center;
    margin-bottom: 60px;
}
.jl-shop-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 300;
    color: #C8A96A !important;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.jl-shop-subtitle {
    color: #D9D1C2 !important;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}
/* PRODUCT GRID */
.jl-products-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 35px !important;
}
.jl-product-card {
    background: #161616 !important;
    border: 1px solid rgba(200, 169, 106, 0.15) !important;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}
.jl-product-card:hover {
    transform: translateY(-8px);
    border-color: #C8A96A !important;
    box-shadow: 0 15px 35px rgba(200, 169, 106, 0.12);
}
.jl-product-image {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: #111;
}
.jl-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}
.jl-product-card:hover .jl-product-image img {
    transform: scale(1.05);
}
.jl-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #C8A96A;
    color: #111;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
}
/* DETAILS */
.jl-product-details {
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    justify-content: space-between;
}
.jl-product-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    margin-bottom: 10px;
    line-height: 1.3;
}
.jl-product-title a {
    color: #C8A96A !important;
    text-decoration: none;
    transition: color 0.3s ease;
}
.jl-product-title a:hover {
    color: #C8A96A !important;
}
.jl-product-price {
    color: #D9D1C2 !important;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}
.jl-product-price del {
    color: #777 !important;
    margin-right: 8px;
}
.jl-product-price ins {
    text-decoration: none;
    color: #C8A96A !important;
}
.jl-product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 999px;
    background: #C8A96A;
    color: #111 !important;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}
.jl-product-btn:hover {
    background: #D5B370;
    transform: translateY(-2px);
}
/* PAGINATION */
.jl-pagination {
    margin-top: 60px;
    text-align: center;
}
.jl-pagination .page-numbers {
    display: inline-flex;
    gap: 10px;
    list-style: none;
    padding: 0;
}
.jl-pagination a, .jl-pagination span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(200, 169, 106, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #C8A96A;
    text-decoration: none;
    transition: all 0.3s ease;
}
.jl-pagination .current, .jl-pagination a:hover {
    background: #C8A96A;
    color: #111;
}
/* RESPONSIVE */
@media (max-width: 992px) {
    .jl-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 768px) {
    .jl-shop-page {
        padding: 40px 15px 60px;
    }
    .jl-shop-header {
        margin-bottom: 30px;
    }
    .jl-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
}
@media (max-width: 576px) {
    .jl-products-grid {
        grid-template-columns: 1fr !important;
    }
}
@media (max-width: 480px) {
    .jl-products-grid {
        grid-template-columns: 1fr !important;
    }
    .jl-product-details {
        padding: 16px;
    }
}

/* PREMIUM WOOCOMMERCE NOTIFICATION TOAST */
.woocommerce-message,  
.woocommerce-info,  
.woocommerce-error {
    background: #111111 !important;
    border: 1px solid #c5a059 !important;
    border-left: 4px solid #c5a059 !important;
    color: #f4f4f4 !important;
    border-radius: 8px !important;
    padding: 16px 24px !important;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.5) !important;
    font-size: 0.95rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    transition: opacity 0.5s ease, transform 0.5s ease !important;
    margin-bottom: 25px !important;
}
.woocommerce-message .button,  
.woocommerce-info .button {
    background: #c5a059 !important;
    color: #000000 !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    padding: 8px 18px !important;
    border-radius: 4px !important;
    border: none !important;
    transition: background 0.3s ease !important;
    float: none !important;
}
.woocommerce-message .button:hover,  
.woocommerce-info .button:hover {
    background: #e0b86c !important;
    color: #000000 !important;
}
.toast-fade-out {
    opacity: 0 !important;
    transform: translateY(-10px) !important;
}

/* MOBILE RESPONSIVE FIX */
@media (max-width: 768px) {
    .shop-header,
    .jl-shop-header,
    .woocommerce-products-header {
        padding: 30px 16px 20px !important;
        margin-bottom: 25px !important;
        text-align: center !important;
    }
    .shop-header h1,
    .jl-shop-title,
    .woocommerce-products-header__title.page-title {
        font-family: 'Cinzel', serif !important;
        font-size: clamp(1.5rem, 6.8vw, 2.2rem) !important;
        letter-spacing: 2px !important;
        white-space: nowrap !important;
        line-height: 1.1 !important;
        margin: 0 0 10px 0 !important;
        color: #c5a059 !important;
    }
    .shop-header p,
    .jl-shop-subtitle,
    .woocommerce-products-header .page-description {
        font-size: 0.8rem !important;
        color: #a1a1aa !important;
        line-height: 1.4 !important;
        max-width: 320px !important;
        margin: 0 auto 15px !important;
    }
    ul.products,
    ul.products[class*="columns-"],
    .jl-products-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
        padding: 0 16px !important;
        margin: 0 0 40px 0 !important;
    }
    ul.products li.product,
    .jl-product-card {
        width: 100% !important;
        margin: 0 !important;
        float: none !important;
        background: #0d0d0f !important;
        border: 1px solid rgba(197, 160, 89, 0.25) !important;
        border-radius: 12px !important;
        overflow: hidden !important;
    }
    ul.products li.product img,
    .jl-product-card img,
    .woocommerce-placeholder {
        border-top-left-radius: 11px !important;
        border-top-right-radius: 11px !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    ul.products li.product .button,
    .jl-product-card .jl-view-btn {
        margin-top: 10px !important;
        padding: 10px 22px !important;
        font-size: 0.72rem !important;
        letter-spacing: 1.5px !important;
    }
}