/* Container & Layout */
.jass-single-product-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 24px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #e8e0d5;
}
.jass-product-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 70px;
    align-items: start;
}
/* 1. Category Subheading */
.jass-product-category,  
.jass-product-category a {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: #e8e0d5 !important;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
    text-decoration: none;
}
/* 2. Main Title (Gold) */
.jass-product-title {
    font-family: 'Cinzel', 'Playfair Display', Didot, serif;
    font-size: 2.6rem;
    font-weight: 600;
    color: #c5a059 !important;
    line-height: 1.2;
    margin: 0 0 16px 0;
    text-transform: capitalize;
}
/* 3. Price (Beige) */
.jass-product-price, 
.jass-product-price span {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #e8e0d5 !important;
    margin-bottom: 24px;
}
/* 4. Variation Form & Pill Style Options */
.jass-add-to-cart-wrapper table.variations {
    width: 100%;
    border: none;
    margin-bottom: 20px;
}
.jass-add-to-cart-wrapper table.variations td.label {
    display: block;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    color: #c5a059;
    padding-bottom: 8px;
}
.jass-add-to-cart-wrapper select {
    background-color: transparent;
    color: #e8e0d5;
    border: 1px solid rgba(232, 224, 213, 0.3);
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    outline: none;
    cursor: pointer;
    min-width: 180px;
    appearance: none;
    -webkit-appearance: none;
}
.jass-add-to-cart-wrapper select option {
    background-color: #111;
    color: #e8e0d5;
}
/* Quantity + Buttons Layout Container */
.jass-add-to-cart-wrapper .woocommerce-variation-add-to-cart, 
.jass-add-to-cart-wrapper form.cart {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}
/* Quantity Selector (Pill Style) */
.jass-add-to-cart-wrapper .quantity input.qty {
    width: 80px;
    height: 48px;
    border-radius: 30px;
    border: 1px solid rgba(232, 224, 213, 0.3);
    background: transparent;
    color: #e8e0d5;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    outline: none;
}
/* Add to Cart Button (Pill Style) */
.jass-add-to-cart-wrapper .single_add_to_cart_button {
    background-color: #c5a059 !important;
    color: #000000 !important;
    height: 48px;
    padding: 0 32px;
    border: none !important;
    border-radius: 30px !important;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}
.jass-add-to-cart-wrapper .single_add_to_cart_button:hover {
    background-color: #e8e0d5 !important;
    color: #000000 !important;
}
/* Buy Now Button (Pill Style Outlined) */
.jass-add-to-cart-wrapper .single_buy_now_button {
    background-color: transparent !important;
    color: #e8e0d5 !important;
    border: 1px solid #e8e0d5 !important;
    height: 48px;
    padding: 0 32px;
    border-radius: 30px !important;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}
.jass-add-to-cart-wrapper .single_buy_now_button:hover {
    background-color: #e8e0d5 !important;
    color: #000000 !important;
}
/* 5. Luxury Description Card */
.jass-product-description {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid #c5a059;
    padding: 20px 24px;
    margin-bottom: 32px;
    border-radius: 0 8px 8px 0;
}
.jass-product-description p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.8;
    color: #e8e0d5 !important;
}
/* 6. Meta Details */
.jass-product-meta {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    color: #e8e0d5;
}
.jass-product-meta strong {
    color: #c5a059;
}
/* Gallery Container Setup */
.jass-product-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}
/* Main Display Image Frame */
.jass-main-image-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #0d0d0d;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}
.jass-main-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out;
}
/* Horizontal Thumbnails Bar */
.jass-gallery-thumbnails-horizontal {
    display: flex;
    flex-direction: row;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: #c5a059 transparent;
}
.jass-gallery-thumbnails-horizontal::-webkit-scrollbar {
    height: 4px;
}
.jass-gallery-thumbnails-horizontal::-webkit-scrollbar-thumb {
    background: #c5a059;
    border-radius: 4px;
}
/* Thumbnail Tiles */
.jass-thumb {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: all 0.3s ease;
    background: #111;
}
.jass-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.jass-thumb:hover, .jass-thumb.active {
    opacity: 1;
    border-color: #c5a059;
    transform: translateY(-2px);
}
/* Horizontal WooCommerce Tabs Fix */
.jass-product-tabs {
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    clear: both;
}
.woocommerce-tabs ul.tabs {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 30px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 30px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: transparent !important;
}
.woocommerce-tabs ul.tabs li {
    background: transparent !important;
    border: none !important;
    padding: 0 0 12px 0 !important;
    margin: 0 !important;
    display: inline-block !important;
    box-shadow: none !important;
}
.woocommerce-tabs ul.tabs li::before, .woocommerce-tabs ul.tabs li::after {
    display: none !important;
}
.woocommerce-tabs ul.tabs li a {
    font-family: 'Cinzel', serif !important;
    font-size: 0.95rem !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    color: #e8e0d5 !important;
    text-decoration: none !important;
    opacity: 0.6;
    transition: all 0.3s ease !important;
    padding: 0 !important;
    display: inline-block !important;
}
.woocommerce-tabs ul.tabs li.active a, .woocommerce-tabs ul.tabs li a:hover {
    color: #c5a059 !important;
    opacity: 1 !important;
}
.woocommerce-tabs ul.tabs li.active {
    border-bottom: 2px solid #c5a059 !important;
}
.woocommerce-Tabs-panel {
    color: #e8e0d5 !important;
    line-height: 1.8;
    font-size: 0.95rem;
    max-width: 900px;
}
.woocommerce-Tabs-panel h2 {
    font-family: 'Cinzel', serif !important;
    font-size: 1.5rem !important;
    color: #c5a059 !important;
    margin-bottom: 20px !important;
    letter-spacing: 1px;
}
/* PRODUCT PAGE RESPONSIVE FIXES */
@media (max-width: 868px) {
    .jass-product-wrapper {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    .jass-product-title {
        font-size: 2rem !important;
    }
    .jass-add-to-cart-wrapper .woocommerce-variation-add-to-cart, 
    .jass-add-to-cart-wrapper form.cart {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    .jass-add-to-cart-wrapper .quantity input.qty,
    .jass-add-to-cart-wrapper .single_add_to_cart_button,
    .jass-add-to-cart-wrapper .single_buy_now_button {
        width: 100% !important;
    }
    .woocommerce-tabs ul.tabs {
        flex-direction: column !important;
        gap: 10px !important;
    }
}