/*
Theme Name: Jass Luxe
Theme URI: https://jassluxe.com
Author: Jass Luxe Studio
Author URI: https://jassluxe.com
Description: Premium, minimal luxury streetwear and apparel theme custom-built for WooCommerce. Features oversized aesthetic layouts, custom shop components, and full cart/checkout templates.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jassluxe
Tags: e-commerce, two-columns, custom-menu, featured-images, flexible-header, full-site-editing, translation-ready, luxury, streetwear, dark-theme

--------------------------------------------------------------
TABLE OF CONTENTS
--------------------------------------------------------------
1. Font Imports & CSS Variables
2. CSS Reset & Global Styling
3. WordPress Alignment & Accessibility
4. Header & Global Components
5. Home Page Sections
6. Shop Page & Product Grid
7. WooCommerce Checkout & Order Confirmation
--------------------------------------------------------------
*/

/* ==========================================================================
   1. Font Imports & CSS Variables
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --black: #0B0B0B;
    --gold: #C8A96A;
    --gold-hover: #D5B370;
    --white: #FFFFFF;
    --gray: #F5F5F5;
    --text: #6B6B6B;
    --container: 1280px;

    /* Theme-Wide Luxury Palette */
    --jl-bg-dark: #080808;
    --jl-card-dark: #0F0F0F;
    --jl-border-dark: #1F1F1F;
    --jl-gold-accent: #C8A96A;
    --jl-text-light: #FFFFFF;
    --jl-text-muted: #8E8E8E;
    
    /* Font Families */
    --jl-font-heading: 'Cinzel', serif;
    --jl-font-luxury: 'Cormorant Garamond', serif;
    --jl-font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ==========================================================================
   2. CSS Reset & Global Styling
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    background-color: var(--jl-bg-dark) !important;
    -webkit-text-size-adjust: 100%;
}

body, 
.home-page {
    background-color: var(--jl-bg-dark) !important;
    color: var(--jl-text-light) !important;
    font-family: var(--jl-font-luxury);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, 
picture, 
video, 
canvas, 
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
}

button, 
input, 
select, 
textarea {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

ul, ol {
    list-style: none;
}

/* ==========================================================================
   3. WordPress Alignment & Accessibility
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--jl-font-heading);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.2;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
}

.alignleft {
    float: left;
    margin-right: 1.5rem;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

/* ==========================================================================
   4. Global Layout Components
   ========================================================================== */
.container, 
.jl-container {
    width: min(90%, var(--container));
    margin: 0 auto;
}

.jl-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 70px;
}

.jl-heading h2 {
    font-family: var(--jl-font-luxury);
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 300;
    color: var(--gold) !important;
    letter-spacing: 3px;
    line-height: 1.1;
    margin-bottom: 18px;
}

.jl-heading p {
    color: #D9D1C2 !important;
    font-family: var(--jl-font-body);
    font-size: 16px;
    line-height: 1.8;
    max-width: 650px;
    margin: auto;
}

/* ==========================================================================
   5. Home Page Sections
   ========================================================================== */
.hero {
    background: var(--jl-bg-dark) !important;
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.hero-content {
    width: 100%;
    max-width: 1100px;
}

.hero-logo {
    font-family: var(--jl-font-luxury);
    font-size: clamp(95px, 10vw, 165px);
    font-weight: 200;
    color: var(--gold) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: .9;
    margin-bottom: 24px;
}

.hero-title {
    color: var(--white) !important;
    font-family: var(--jl-font-heading);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.hero-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 190px;
    height: 42px;
    background: var(--gold);
    color: #111 !important;
    text-decoration: none;
    border-radius: 999px;
    text-transform: uppercase;
    font-family: var(--jl-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: .35s ease;
}

.hero-btn:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
}

.hero-text {
    margin-top: 45px;
    color: #D9D1C2 !important;
    font-family: var(--jl-font-luxury);
    font-style: italic;
    font-size: 28px;
    line-height: 1.5;
}

/* FEATURED PRODUCTS */
.jl-featured {
    background: var(--jl-card-dark) !important;
    padding: 120px 0;
}

.jl-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 35px !important;
}

.jl-card {
    background: #161616 !important;
    border: 1px solid rgba(200, 169, 106, .15) !important;
    border-radius: 20px;
    overflow: hidden;
    transition: .35s ease;
}

.jl-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold) !important;
    box-shadow: 0 20px 40px rgba(200, 169, 106, .15);
}

.jl-image {
    display: block;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: #111;
}

.jl-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .45s ease;
}

.jl-content {
    padding: 28px;
    text-align: center;
}

.jl-content h3 {
    font-family: var(--jl-font-luxury);
    font-size: 26px;
    color: var(--gold) !important;
    margin-bottom: 12px;
}

.jl-price {
    display: block;
    color: #D9D1C2 !important;
    font-family: var(--jl-font-body);
    font-size: 18px;
    margin-bottom: 22px;
}

.jl-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 999px;
    background: var(--gold);
    color: #111 !important;
    text-transform: uppercase;
    font-family: var(--jl-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
}

/* WHY JASS LUXE SECTION */
.jl-why {
    background: var(--jl-card-dark) !important;
    padding: 120px 0;
}

.jl-why-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 35px !important;
}

.jl-why-card {
    background: #161616 !important;
    border: 1px solid rgba(200, 169, 106, .15) !important;
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    transition: all .35s ease;
}

.jl-why-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold) !important;
    box-shadow: 0 20px 40px rgba(200, 169, 106, .15);
}

.jl-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(200, 169, 106, .35);
    border-radius: 50%;
    color: var(--gold) !important;
    font-size: 26px;
}

.jl-why-card h3 {
    font-family: var(--jl-font-luxury);
    font-size: 30px;
    font-weight: 500;
    color: var(--gold) !important;
    margin-bottom: 18px;
}

.jl-why-card p {
    color: #D9D1C2 !important;
    font-family: var(--jl-font-body);
    line-height: 1.8;
    font-size: 15px;
}

/* PROMISE SECTION */
.jl-promise {
    background: var(--jl-card-dark) !important;
    padding: 120px 0;
}

.jl-promise-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 35px !important;
}

.jl-promise-card {
    background: #161616 !important;
    border: 1px solid rgba(200, 169, 106, .15) !important;
    border-radius: 20px;
    padding: 50px 35px;
    text-align: center;
    transition: all .35s ease;
}

.jl-promise-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold) !important;
    box-shadow: 0 20px 40px rgba(200, 169, 106, .15);
}

.jl-promise-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(200, 169, 106, .35);
    border-radius: 50%;
    color: var(--gold) !important;
    font-size: 26px;
}

.jl-promise-card h3 {
    font-family: var(--jl-font-luxury);
    font-size: 28px;
    color: var(--gold) !important;
    margin-bottom: 18px;
}

.jl-promise-card p {
    color: #D9D1C2 !important;
    font-family: var(--jl-font-body);
    line-height: 1.8;
    font-size: 15px;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 992px) {
    .jl-grid, .jl-why-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .jl-promise-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .jl-grid, .jl-why-grid, .jl-promise-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ==========================================================================
   6. Shop Page & Product Grid
   ========================================================================== */
.jl-shop-page {
    background-color: var(--jl-card-dark) !important;
    min-height: 80vh;
    padding: 60px 0 100px;
    color: var(--white) !important;
}

.jl-shop-header {
    text-align: center;
    margin-bottom: 50px;
}

.jl-shop-title {
    font-family: var(--jl-font-luxury);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 300;
    color: var(--gold) !important;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.jl-shop-subtitle {
    color: #D9D1C2 !important;
    font-family: var(--jl-font-body);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.jl-products-grid, 
ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.jl-product-card,
ul.products li.product {
    background: #161616 !important;
    border: 1px solid rgba(200, 169, 106, 0.2) !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    float: none !important;
    display: flex !important;
    flex-direction: column !important;
    transition: all 0.35s ease !important;
}

.jl-product-card:hover,
ul.products li.product:hover {
    transform: translateY(-8px) !important;
    border-color: var(--gold) !important;
    box-shadow: 0 15px 35px rgba(200, 169, 106, 0.15) !important;
}

.jl-product-image {
    position: relative;
    display: block !important;
    width: 100% !important;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: #111;
}

.jl-product-image img,
ul.products li.product img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    margin: 0 !important;
    display: block !important;
    transition: transform 0.45s ease !important;
}

.jl-product-card:hover .jl-product-image img {
    transform: scale(1.05);
}

.jl-product-details {
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
}

.jl-product-title {
    font-family: var(--jl-font-luxury);
    font-size: 24px !important;
    margin: 10px 0 !important;
    line-height: 1.3 !important;
}

.jl-product-title a {
    color: var(--gold) !important;
    text-decoration: none !important;
}

.jl-product-price {
    color: #D9D1C2 !important;
    font-family: var(--jl-font-body);
    font-size: 16px !important;
    font-weight: 500 !important;
    margin-bottom: 18px !important;
}

.jl-product-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 10px 22px !important;
    border-radius: 999px !important;
    background: var(--gold) !important;
    color: #111 !important;
    text-transform: uppercase;
    font-family: var(--jl-font-body);
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 1.5px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.jl-product-btn:hover {
    background: var(--gold-hover) !important;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .jl-products-grid, ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 576px) {
    .jl-products-grid, ul.products {
        grid-template-columns: 1fr !important;
    }
}

/* ==========================================================================
   7. WooCommerce Checkout & Order Confirmation
   ========================================================================== */
body.woocommerce-checkout,
body.woocommerce-order-received {
    background-color: var(--jl-bg-dark) !important;
    color: var(--jl-text-light) !important;
    font-family: var(--jl-font-body) !important;
}

.jl-checkout-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 20px;
    font-family: var(--jl-font-body);
}

.jl-step-block img.icon,
.jl-step-block .icon-wrapper,
.jl-checkout-sidebar .icon-wrapper {
    display: none !important;
}

.jl-checkout-navigation {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--jl-text-muted);
    margin-bottom: 25px;
    border-bottom: 1px solid var(--jl-border-dark);
    padding-bottom: 12px;
}

.jl-nav-item.active,
.jl-secure-badge {
    color: var(--jl-gold-accent) !important;
}

.jl-secure-badge {
    margin-left: auto;
    font-weight: 600;
}

.jl-checkout-container,
.woocommerce-checkout .jl-checkout-container {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 30px !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
}

.jl-checkout-main,
.woocommerce-checkout .jl-checkout-main {
    flex: 1 1 calc(100% - 470px) !important;
    max-width: calc(100% - 470px) !important;
    min-width: 0 !important;
    float: none !important;
    clear: none !important;
    box-sizing: border-box !important;
}

.jl-checkout-sidebar,
.woocommerce-checkout .jl-checkout-sidebar {
    flex: 0 0 440px !important;
    width: 440px !important;
    min-width: 440px !important;
    max-width: 440px !important;
    float: none !important;
    clear: none !important;
    position: sticky !important;
    top: 30px !important;
    box-sizing: border-box !important;
}

.jl-step-block,
.jl-order-summary-box {
    background: var(--jl-card-dark) !important;
    border: 1px solid var(--jl-border-dark) !important;
    border-radius: 6px !important;
    padding: 28px !important;
    margin-bottom: 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.jl-step-title,
.jl-summary-title {
    font-family: var(--jl-font-heading) !important;
    color: var(--jl-gold-accent) !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.jl-checkout-wrapper input[type="text"],
.jl-checkout-wrapper input[type="email"],
.jl-checkout-wrapper input[type="tel"],
.jl-checkout-wrapper select,
.jl-checkout-wrapper textarea {
    background-color: #030303 !important;
    border: 1px solid var(--jl-border-dark) !important;
    color: #FFFFFF !important;
    padding: 12px 14px;
    border-radius: 4px;
    width: 100%;
    font-size: 13px;
    font-family: var(--jl-font-body);
}

.jl-checkout-wrapper input:focus,
.jl-checkout-wrapper textarea:focus {
    border-color: var(--jl-gold-accent) !important;
    outline: none;
}

/* ORDER RECEIVED / THANK YOU PAGE STYLING */
.woocommerce-order-received .woocommerce-order {
    max-width: 800px;
    margin: 60px auto;
    background: var(--jl-card-dark) !important;
    border: 1px solid var(--jl-border-dark) !important;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.woocommerce-order-received .woocommerce-notice--success {
    font-family: var(--jl-font-luxury) !important;
    font-size: 32px !important;
    color: var(--jl-gold-accent) !important;
    margin-bottom: 30px !important;
    font-weight: 400;
}

.woocommerce-order-received ul.order_details {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    background: #030303 !important;
    border: 1px solid var(--jl-border-dark) !important;
    border-radius: 8px;
    padding: 20px !important;
    margin: 30px 0 !important;
    list-style: none !important;
}

.woocommerce-order-received ul.order_details li {
    font-family: var(--jl-font-body) !important;
    font-size: 12px !important;
    color: var(--jl-text-muted) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-right: 1px solid var(--jl-border-dark);
    padding-right: 15px;
}

.woocommerce-order-received ul.order_details li:last-child {
    border-right: none;
}

.woocommerce-order-received ul.order_details li strong {
    display: block;
    font-size: 16px !important;
    color: var(--white) !important;
    margin-top: 6px;
    text-transform: none;
}

.woocommerce-order-received h2,
.woocommerce-order-received h3 {
    font-family: var(--jl-font-heading) !important;
    color: var(--jl-gold-accent) !important;
    font-size: 20px !important;
    margin: 40px 0 20px !important;
    text-align: left;
}

.woocommerce-order-received table.shop_table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    text-align: left;
}

.woocommerce-order-received table.shop_table th {
    font-family: var(--jl-font-heading);
    color: var(--jl-gold-accent);
    border-bottom: 1px solid var(--jl-border-dark);
    padding: 12px 0;
    font-size: 13px;
}

.woocommerce-order-received table.shop_table td {
    font-family: var(--jl-font-body);
    color: var(--white) !important;
    border-bottom: 1px solid var(--jl-border-dark);
    padding: 16px 0;
    font-size: 14px;
}

.woocommerce-order-received table.shop_table td a {
    color: var(--white) !important;
}

.woocommerce-order-received address {
    font-family: var(--jl-font-body);
    color: var(--jl-text-muted) !important;
    font-style: normal;
    text-align: left;
    line-height: 1.8;
}

/* SUMMARY DETAILS */
.jl-summary-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--jl-border-dark);
}

.jl-item-thumb {
    width: 80px !important;
    min-width: 80px !important;
    height: 80px !important;
    overflow: hidden;
    border-radius: 4px;
    background: #000000;
}

.jl-item-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.jl-summary-item h4 {
    color: var(--white);
    font-size: 14px !important;
    margin: 0 0 4px 0;
    font-family: var(--jl-font-body);
}

.jl-item-meta {
    font-size: 11px;
    color: var(--jl-text-muted);
}

.jl-item-price {
    margin-left: auto;
    font-weight: 600;
    color: var(--white);
    font-size: 13px;
}

.jl-summary-totals {
    border-top: 1px solid var(--jl-border-dark);
    padding-top: 12px;
}

.jl-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px !important;
    margin-bottom: 10px !important;
    color: var(--jl-text-muted);
}

.jl-grand-total {
    font-size: 18px !important;
    font-weight: bold;
    color: var(--white);
    border-top: 1px solid var(--jl-border-dark);
    padding-top: 12px;
    margin-top: 12px;
}

.jl-accent-text,
.jl-free-text {
    color: var(--jl-gold-accent) !important;
}

.jl-checkout-actions {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-top: 20px !important;
    gap: 15px !important;
}

.jl-checkout-wrapper #place_order.jl-place-order-btn,
.woocommerce-checkout #place_order {
    background-color: var(--jl-gold-accent) !important;
    color: #000000 !important;
    font-family: var(--jl-font-body) !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    padding: 10px 22px !important;
    height: auto !important;
    line-height: normal !important;
    border: none !important;
    border-radius: 4px !important;
    letter-spacing: 1px !important;
    cursor: pointer !important;
    width: auto !important;
    min-width: 140px !important;
    max-width: 200px !important;
    box-shadow: none !important;
    text-transform: uppercase !important;
    transition: opacity 0.2s ease, background-color 0.2s ease;
}

.jl-checkout-wrapper #place_order.jl-place-order-btn:hover,
.woocommerce-checkout #place_order:hover {
    background-color: #D8B97A !important;
    opacity: 0.95;
}

@media (max-width: 991px) {
    .jl-checkout-container,
    .woocommerce-checkout .jl-checkout-container {
        flex-direction: column !important;
    }

    .jl-checkout-main,
    .woocommerce-checkout .jl-checkout-main,
    .jl-checkout-sidebar,
    .woocommerce-checkout .jl-checkout-sidebar {
        flex: 1 1 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
    }
}
/* ==========================================================================
   Single Product Customizations
   ========================================================================== */

/* 1. Hide Category Meta (UNCATEGORIZED) above product title */
.single-product .posted_in,
.single-product .product_meta .posted_in {
    display: none !important;
}

/* 2. Style Size Swatches / Pill Buttons (Replacing Choose an option) */
.single-product table.variations {
    width: 100%;
    margin-bottom: 20px;
}

.single-product table.variations td.label {
    display: block;
    color: var(--jl-gold-accent) !important;
    font-family: var(--jl-font-body) !important;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Custom Size Pill Container */
.jl-size-swatches {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.jl-size-pill {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--jl-border-dark);
    background: #030303;
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.jl-size-pill:hover,
.jl-size-pill.selected {
    border-color: var(--jl-gold-accent) !important;
    color: var(--jl-gold-accent) !important;
    box-shadow: 0 0 10px rgba(200, 169, 106, 0.3);
}

/* Hide default WooCommerce Select Dropdown when replaced */
.single-product select#pa_size,
.single-product select[name^="attribute_"] {
    display: none !important;
}


/* 3. Custom Quantity Plus (+) and Minus (-) Stepper */
.single-product .quantity {
    display: inline-flex !important;
    align-items: center;
    background: #030303;
    border: 1px solid var(--jl-border-dark);
    border-radius: 50px;
    padding: 4px 12px;
    gap: 10px;
}

.single-product .quantity input.qty {
    width: 35px !important;
    text-align: center;
    background: transparent !important;
    border: none !important;
    color: #FFFFFF !important;
    font-weight: 600;
    font-size: 14px;
    -moz-appearance: textfield;
}

.single-product .quantity input.qty::-webkit-outer-spin-button,
.single-product .quantity input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.jl-qty-btn {
    background: none;
    border: none;
    color: var(--jl-gold-accent);
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    padding: 0 6px;
    transition: transform 0.2s ease;
}

.jl-qty-btn:hover {
    transform: scale(1.2);
}


/* 4. Add To Cart & Buy Now Button Styling + Lift Hover Animation */
.single-product .cart {
    display: flex !important;
    gap: 15px;
    align-items: center;
    margin-top: 25px;
}

.single-product .single_add_to_cart_button,
.single-product .jl-buy-now-btn {
    background-color: var(--jl-gold-accent) !important;
    color: #000000 !important;
    font-family: var(--jl-font-body) !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase;
    padding: 14px 28px !important;
    border-radius: 50px !important;
    border: none !important;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    
    /* Smooth lift-up animation setup */
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease !important;
}

/* Prevent white hover text & color change, add coming-up lift effect */
.single-product .single_add_to_cart_button:hover,
.single-product .jl-buy-now-btn:hover {
    background-color: var(--jl-gold-accent) !important;
    color: #000000 !important;
    transform: translateY(-5px) !important; /* "Coming Up" lift animation */
    box-shadow: 0 8px 20px rgba(200, 169, 106, 0.3) !important;
}
/* !important Forcefully hide WooCommerce product category metadata / Uncategorized */
.single-product .posted_in,
.single-product .product_meta .posted_in,
.single-product .product_meta,
.single-product .entry-summary .posted_in,
.single-product span.posted_in {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}
/* Hide any text element immediately preceding the product title */
.single-product .summary > *:first-child:not(h1):not(.product_title),
.single-product .product-info > *:first-child:not(h1):not(.product_title),
.single-product .entry-summary > uppercase,
.single-product .posted_in,
.single-product [class*="category"],
.single-product [class*="cat"] {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}
/* ==========================================================================
   Footer Styling
   ========================================================================== */
.jl-footer {
    background-color: var(--jl-bg-dark) !important;
    border-top: 1px solid var(--jl-border-dark);
    padding: 80px 0 30px;
    margin-top: auto;
    font-family: var(--jl-font-body);
}

.jl-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.jl-footer-logo {
    font-family: var(--jl-font-luxury);
    font-size: 28px;
    letter-spacing: 2px;
    color: var(--jl-gold-accent) !important;
    margin-bottom: 16px;
}

.jl-footer-desc {
    color: var(--jl-text-muted);
    font-size: 14px;
    line-height: 1.7;
    max-width: 320px;
}

.jl-footer-title {
    font-family: var(--jl-font-heading);
    color: var(--jl-gold-accent);
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.jl-footer-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.jl-footer-links li {
    margin-bottom: 12px;
}

.jl-footer-links a {
    color: var(--jl-text-muted);
    font-size: 13px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.jl-footer-links a:hover {
    color: var(--jl-gold-accent) !important;
}

.jl-footer-bottom {
    border-top: 1px solid var(--jl-border-dark);
    padding-top: 25px;
    text-align: center;
    color: var(--jl-text-muted);
    font-size: 12px;
    letter-spacing: 1px;
}

@media (max-width: 991px) {
    .jl-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .jl-footer-grid {
        grid-template-columns: 1fr;
    }
}
/* ==========================================================================
   Exact Match Custom Luxury Footer Styling
   ========================================================================== */
.jl-footer {
    background-color: #030303 !important;
    padding: 90px 0 40px !important;
    font-family: var(--jl-font-luxury), 'Cormorant Garamond', serif !important;
    color: #D9D1C2 !important;
}

.jl-footer-row {
    display: grid !important;
    grid-template-columns: 1.5fr 1fr !important;
    gap: 60px !important;
    margin-bottom: 60px !important;
}

.jl-footer-brand-title {
    font-family: var(--jl-font-luxury), 'Cormorant Garamond', serif !important;
    font-size: 38px !important;
    font-weight: 300 !important;
    color: var(--jl-gold-accent) !important;
    letter-spacing: 4px !important;
    margin-bottom: 24px !important;
    text-transform: uppercase !important;
}

.jl-footer-tagline {
    font-family: var(--jl-font-luxury), 'Cormorant Garamond', serif !important;
    font-size: 18px !important;
    line-height: 1.6 !important;
    color: #A3A3A3 !important;
    margin: 0 0 4px 0 !important;
    font-style: normal !important;
}

.jl-footer-heading {
    font-family: var(--jl-font-heading), 'Cinzel', serif !important;
    color: var(--jl-gold-accent) !important;
    font-size: 18px !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    margin-bottom: 25px !important;
    font-weight: 400 !important;
}

.jl-footer-menu {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.jl-footer-menu li {
    margin-bottom: 16px !important;
}

.jl-footer-menu a {
    font-family: var(--jl-font-luxury), 'Cormorant Garamond', serif !important;
    color: #D9D1C2 !important;
    font-size: 17px !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
    display: inline-block;
}

.jl-footer-menu a:hover {
    color: var(--jl-gold-accent) !important;
}

/* Circular Social Icons Matching Image */
.jl-social-icons {
    display: flex !important;
    gap: 16px !important;
    align-items: center !important;
}

.jl-social-circle {
    width: 46px !important;
    height: 46px !important;
    border-radius: 50% !important;
    border: 1px solid rgba(200, 169, 106, 0.3) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--jl-gold-accent) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    background: transparent !important;
}

.jl-social-circle:hover {
    border-color: var(--jl-gold-accent) !important;
    box-shadow: 0 0 12px rgba(200, 169, 106, 0.3) !important;
    transform: translateY(-3px) !important;
}

.jl-footer-bottom {
    border-top: 1px solid var(--jl-border-dark) !important;
    padding-top: 30px !important;
    text-align: center !important;
    font-size: 13px !important;
    letter-spacing: 1.5px !important;
    color: #8E8E8E !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .jl-footer-row {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        margin-bottom: 40px !important;
    }
}
/* ==========================================================================
   Side-by-Side 5-Column Compact Footer Styling
   ========================================================================== */
.jl-footer {
    background-color: #030303 !important;
    padding: 50px 0 25px !important;
    font-family: var(--jl-font-luxury), 'Cormorant Garamond', serif !important;
    color: #D9D1C2 !important;
    border-top: 1px solid var(--jl-border-dark);
}

.jl-footer-grid {
    display: grid !important;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr !important;
    gap: 25px !important;
    margin-bottom: 40px !important;
    align-items: start !important;
}

/* Brand Column Styling */
.jl-footer-brand-title {
    font-family: var(--jl-font-luxury), 'Cormorant Garamond', serif !important;
    font-size: 28px !important;
    font-weight: 300 !important;
    color: var(--jl-gold-accent) !important;
    letter-spacing: 3px !important;
    margin-bottom: 12px !important;
    text-transform: uppercase !important;
}

.jl-footer-tagline {
    font-family: var(--jl-font-luxury), 'Cormorant Garamond', serif !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
    color: #A3A3A3 !important;
    margin: 0 0 4px 0 !important;
}

/* Headings */
.jl-footer-heading {
    font-family: var(--jl-font-heading), 'Cinzel', serif !important;
    color: var(--jl-gold-accent) !important;
    font-size: 14px !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    margin-bottom: 16px !important;
    font-weight: 600 !important;
}

.jl-footer-menu {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.jl-footer-menu li {
    margin-bottom: 8px !important;
}

.jl-footer-menu a {
    font-family: var(--jl-font-luxury), 'Cormorant Garamond', serif !important;
    color: #D9D1C2 !important;
    font-size: 15px !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
    display: inline-block;
}

.jl-footer-menu a:hover {
    color: var(--jl-gold-accent) !important;
}

/* Circular Social Icons */
.jl-social-icons {
    display: flex !important;
    gap: 10px !important;
    align-items: center !important;
}

.jl-social-circle {
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    border: 1px solid rgba(200, 169, 106, 0.3) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--jl-gold-accent) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    background: transparent !important;
}

.jl-social-circle:hover {
    border-color: var(--jl-gold-accent) !important;
    box-shadow: 0 0 10px rgba(200, 169, 106, 0.3) !important;
    transform: translateY(-3px) !important;
}

.jl-footer-bottom {
    border-top: 1px solid var(--jl-border-dark) !important;
    padding-top: 20px !important;
    text-align: center !important;
    font-size: 12px !important;
    letter-spacing: 1.5px !important;
    color: #8E8E8E !important;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .jl-footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 30px !important;
    }
}

@media (max-width: 576px) {
    .jl-footer-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}
<?php
/**
 * Template Part: Brand Story Section
 * 
 * Displays the core philosophy and highlight feature cards for Jass Luxe.
 *
 * @package JassLuxe
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly
}
?>

<section class="jl-brand-story-section">
    <div class="jl-container">
        
        <!-- Section Header -->
        <div class="jl-brand-story-header">
            <span class="jl-sub-title">THE PHILOSOPHY</span>
            <h2 class="jl-main-title">Crafted Without Compromise</h2>
            <div class="jl-gold-divider"></div>
            <p class="jl-brand-lead">
                At Jass Luxe, we reject fast fashion in pursuit of timeless mastery. Every garment is engineered from heavyweight textiles, designed with strict minimalist geometry, and built to stand as a quiet statement of refinement.
            </p>
        </div>

        <!-- Feature Cards Grid -->
        <div class="jl-story-cards-grid">
            
            <!-- Card 1 -->
            <div class="jl-story-card">
                <div class="jl-card-icon">
                    <svg width="32" height="32" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"></path></svg>
                </div>
                <h3 class="jl-card-title">Heavyweight Cotton</h3>
                <p class="jl-card-text">
                    Engineered using premium high-GSM fabrics that deliver substantial structure, an architectural drop, and enduring durability season after season.
                </p>
            </div>

            <!-- Card 2 -->
            <div class="jl-story-card">
                <div class="jl-card-icon">
                    <svg width="32" height="32" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M8 12h8"></path><path d="M12 8v8"></path></svg>
                </div>
                <h3 class="jl-card-title">Minimalist Aesthetics</h3>
                <p class="jl-card-text">
                    Stripped of noisy graphics and superficial clutter. We let silhouette, precision tailoring, and texture speak for themselves.
                </p>
            </div>

            <!-- Card 3 -->
            <div class="jl-story-card">
                <div class="jl-card-icon">
                    <svg width="32" height="32" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"></polygon></svg>
                </div>
                <h3 class="jl-card-title">Tailored Fits</h3>
                <p class="jl-card-text">
                    Custom oversized proportions meticulously refined down to the millimeter to ensure balanced shoulder drape and an effortless luxury profile.
                </p>
            </div>

        </div>

    </div>
</section>
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

/* ==========================================================================
   Complete "About Us" Page CSS - Matching Exact Visual Design
   ========================================================================== */

.jl-about-page {
    background-color: #030303;
    color: #FFFFFF;
    font-family: var(--jl-font-luxury), 'Cormorant Garamond', serif;
}

.jl-section-tag {
    font-family: var(--jl-font-heading), 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 3px;
    color: #8E8E8E;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    margin-bottom: 15px;
}

.jl-section-tag::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background: #8E8E8E;
    margin-left: 10px;
    vertical-align: middle;
}

.jl-center-tag {
    display: block;
    text-align: center;
}
.jl-center-tag::after { display: none; }

.jl-gold-text {
    color: var(--jl-gold-accent, #C8A96A);
}

/* 1. HERO SECTION */
.jl-about-hero {
    position: relative;
    padding: 120px 20px 100px;
    background: radial-gradient(circle at 80% 50%, #151515 0%, #030303 70%);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.jl-about-hero-content {
    max-width: 1100px;
    margin: 0 auto;
}

.jl-hero-title {
    font-family: var(--jl-font-luxury), 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.jl-hero-desc {
    font-size: 18px;
    line-height: 1.7;
    color: #A3A3A3;
}

/* 2. BRAND STORY SECTION */
.jl-about-story-section {
    padding: 100px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.jl-story-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.jl-story-image-box {
    background: #0B0B0B;
    border: 1px solid rgba(200, 169, 106, 0.2);
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.8);
}

.jl-mockup-card {
    text-align: center;
}

.jl-brand-name-gold {
    font-family: var(--jl-font-heading), 'Cinzel', serif;
    font-size: 26px;
    letter-spacing: 5px;
    color: var(--jl-gold-accent, #C8A96A);
    display: block;
    margin-bottom: 10px;
}

.jl-story-title {
    font-size: 34px;
    font-weight: 300;
    line-height: 1.25;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.jl-story-p {
    font-size: 16px;
    line-height: 1.7;
    color: #B0B0B0;
    margin-bottom: 20px;
}

.jl-btn-outline {
    display: inline-block;
    padding: 14px 28px;
    border: 1px solid var(--jl-gold-accent, #C8A96A);
    color: var(--jl-gold-accent, #C8A96A);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.jl-btn-outline:hover {
    background: var(--jl-gold-accent, #C8A96A);
    color: #000000;
}

/* 3. VISION SECTION */
.jl-about-vision-section {
    padding: 90px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.jl-vision-main-title {
    text-align: center;
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 60px;
}

.jl-vision-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.jl-vision-card {
    text-align: center;
    padding: 0 15px;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.jl-vision-card:last-child {
    border-right: none;
}

.jl-vision-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(200, 169, 106, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.jl-vision-card h3 {
    font-family: var(--jl-font-heading), 'Cinzel', serif;
    font-size: 13px;
    letter-spacing: 1.5px;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.jl-vision-card p {
    font-size: 14px;
    color: #8E8E8E;
    line-height: 1.5;
}

/* 4. FOUNDER SECTION */
.jl-founder-section {
    padding: 100px 20px;
}

.jl-founder-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.jl-founder-title {
    font-size: 34px;
    font-weight: 300;
    line-height: 1.25;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.jl-founder-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #B0B0B0;
    margin-bottom: 18px;
}

.jl-signature-wrapper {
    margin-top: 35px;
}

/* Continuous cursive script with no space for AnirudhBhargav */
.jl-script-signature {
    font-family: 'Great Vibes', cursive;
    font-size: 42px;
    color: var(--jl-gold-accent, #C8A96A);
    line-height: 1;
    margin-bottom: 8px;
}

.jl-founder-role {
    font-family: var(--jl-font-heading), 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 2px;
    color: #8E8E8E;
    display: block;
}

/* Founder Right Image Box (Brand Name ONLY, No "Premium Clothing") */
.jl-founder-image-box {
    background: linear-gradient(135deg, #181818 0%, #080808 100%);
    height: 480px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
}

.jl-hoodie-preview {
    text-align: center;
}

.jl-hoodie-brand {
    font-family: var(--jl-font-heading), 'Cinzel', serif;
    font-size: 32px;
    letter-spacing: 6px;
    color: var(--jl-gold-accent, #C8A96A);
    font-weight: 400;
}

/* 5. BOTTOM SLOGAN BAR */
.jl-bottom-slogan {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 40px 20px;
    text-align: center;
}

.jl-bottom-slogan h3 {
    font-family: var(--jl-font-heading), 'Cinzel', serif;
    font-size: 15px;
    letter-spacing: 4px;
    color: var(--jl-gold-accent, #C8A96A);
    margin: 0;
}

/* Responsive Fallbacks */
@media (max-width: 991px) {
    .jl-story-grid,
    .jl-founder-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .jl-vision-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .jl-vision-card {
        border-right: none;
    }
}

@media (max-width: 576px) {
    .jl-hero-title { font-size: 32px; }
    .jl-vision-grid { grid-template-columns: 1fr; }
}
/* Prevent horizontal overflow on mobile screens */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* Ensure images and media scale down gracefully */
img, svg, video {
    max-width: 100%;
    height: auto;
}

/* Improve mobile tap target sizes */
button, 
.btn, 
a.button, 
input[type="submit"],
.single_add_to_cart_button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
}@media (max-width: 768px) {
    /* Sticky minimal top bar */
    .site-header {
        position: sticky;
        top: 0;
        z-index: 999;
        background: #111111;
        padding: 12px 16px;
    }

    /* Stack logo and navigation icons cleanly */
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Keep logo sharp and centered on mobile */
    .site-logo img {
        max-height: 35px;
        width: auto;
    }
}@media (max-width: 576px) {
    /* Force 2-column layout for shop & category archives */
    ul.products {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 0 10px !important;
        margin: 0 !important;
    }

    ul.products li.product {
        width: 100% !important;
        margin: 0 !important;
        float: none !important;
    }

    /* Adjust product titles & prices for smaller cards */
    ul.products li.product .woocommerce-loop-product__title {
        font-size: 13px !important;
        letter-spacing: 0.5px;
        margin: 8px 0 4px !important;
    }

    ul.products li.product .price {
        font-size: 12px !important;
    }
}@media (max-width: 768px) {
    /* Stack gallery image and product info */
    .single-product div.product {
        display: flex;
        flex-direction: column;
    }

    .single-product div.product .woocommerce-product-gallery {
        width: 100% !important;
        margin-bottom: 20px;
    }

    .single-product div.product .entry-summary {
        width: 100% !important;
        padding: 0 15px;
    }

    /* Oversized typography scaling down for mobile headers */
    .product_title {
        font-size: 24px !important;
        line-height: 1.2;
    }
}@media (max-width: 576px) {
    .single-product .single_add_to_cart_button {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100% !important;
        border-radius: 0 !important;
        z-index: 9999;
        margin: 0 !important;
        box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.4);
    }
}
/* ==========================================
   1. MOBILE HEADER & NAVIGATION RECOVERY
   ========================================== */
@media (max-width: 768px) {
    /* Ensure the main header container remains visible */
    header, 
    .site-header, 
    #masthead, 
    .header-main {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: sticky;
        top: 0;
        z-index: 9999;
        background-color: #111111; /* Luxury dark backdrop */
        padding: 10px 15px;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid rgba(200, 169, 106, 0.2); /* Gold subtle divider */
    }

    /* Force the mobile logo to stay visible and cleanly sized */
    .site-logo, 
    .custom-logo-link, 
    .site-branding {
        display: block !important;
        max-width: 140px;
    }

    .site-logo img, 
    .custom-logo {
        max-height: 35px !important;
        width: auto !important;
    }

    /* Force mobile menu button/toggle to show if hidden */
    .menu-toggle, 
    .mobile-menu-toggle, 
    button.menu-toggle, 
    .hamburger-icon {
        display: flex !important;
        align-items: center;
        justify-content: center;
        color: #C8A96A !important; /* Gold header icon */
        background: transparent !important;
        border: none !important;
        font-size: 22px;
        cursor: pointer;
    }
}

/* ==========================================
   2. SINGLE PRODUCT PAGE MOBILE CLEANUP
   ========================================== */
@media (max-width: 768px) {
    /* Stack Product Gallery and Summary Cleanly */
    .single-product div.product {
        display: flex !important;
        flex-direction: column !important;
        padding: 0 15px !important;
    }

    /* Product Image Gallery Adjustments */
    .single-product div.product .woocommerce-product-gallery {
        width: 100% !important;
        float: none !important;
        margin-bottom: 20px !important;
    }

    .single-product div.product .woocommerce-product-gallery img {
        border-radius: 8px;
        width: 100% !important;
        object-fit: cover;
    }

    /* Product Details & Typography */
    .single-product div.product .entry-summary {
        width: 100% !important;
        float: none !important;
        padding: 0 !important;
        text-align: left;
    }

    .single-product .product_title {
        font-size: 22px !important;
        line-height: 1.3 !important;
        color: #FFFFFF !important;
        margin-bottom: 10px !important;
        letter-spacing: 0.5px;
    }

    .single-product .price {
        font-size: 20px !important;
        color: #C8A96A !important; /* Gold price accent */
        margin-bottom: 15px !important;
    }

    .single-product .woocommerce-product-details__short-description {
        font-size: 14px !important;
        line-height: 1.6 !important;
        color: #CCCCCC !important;
        margin-bottom: 20px !important;
    }

    /* Variations (Size/Color Pickers) */
    .single-product table.variations {
        width: 100% !important;
        margin-bottom: 15px !important;
    }

    .single-product table.variations td {
        display: block !important;
        padding: 5px 0 !important;
    }

    .single-product table.variations select {
        width: 100% !important;
        height: 44px !important;
        background: #181818 !important;
        color: #FFF !important;
        border: 1px solid rgba(200, 169, 106, 0.4) !important;
        border-radius: 6px !important;
        padding: 0 10px !important;
    }

    /* Add to Cart Quantity & Button Container */
    .single-product form.cart {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        margin-top: 15px !important;
    }

    .single-product form.cart .quantity {
        margin: 0 !important;
    }

    .single-product form.cart .quantity input.qty {
        width: 100% !important;
        height: 45px !important;
        background: #181818 !important;
        border: 1px solid rgba(200, 169, 106, 0.3) !important;
        color: #FFFFFF !important;
        border-radius: 6px !important;
        text-align: center;
    }

    .single-product .single_add_to_cart_button {
        width: 100% !important;
        height: 50px !important;
        background: #C8A96A !important;
        color: #111111 !important;
        font-weight: 700 !important;
        letter-spacing: 1.5px !important;
        text-transform: uppercase !important;
        border-radius: 30px !important;
        border: none !important;
    }
}/* ==========================================
   FORCE ALL HEADER ELEMENTS ON MOBILE
   ========================================== */
@media (max-width: 768px) {
    header, 
    #masthead, 
    .site-header, 
    .main-header-bar,
    .elementor-location-header,
    .ast-mobile-header-wrap,
    .site-header-primary-section-left,
    .site-header-primary-section-right,
    .site-header-primary-section-center {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        min-height: 50px !important;
        position: relative !important;
        z-index: 99999 !important;
    }

    /* Force header images / logo container visible */
    header img, 
    .site-header img, 
    .custom-logo {
        display: block !important;
        visibility: visible !important;
        max-height: 40px !important;
        width: auto !important;
    }
}
/* GLOBAL RESPONSIVE SAFETY RULES */
img, video, canvas, svg {
    max-width: 100%;
    height: auto;
}

iframe {
    max-width: 100%;
}

* {
    box-sizing: border-box;
}
/* FORCE MOBILE HEADER VISIBILITY */
@media (max-width: 768px) {
    header, 
    .site-header, 
    #masthead, 
    .jl-header {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative;
        z-index: 9999;
    }
}
/* Core dark theme styles */
body {
    background-color: #030303 !important;
    color: #FFFFFF !important;
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    margin: 0;
    padding: 0;
}

#primary, #main, .site-content {
    background-color: #030303 !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.jl-account-wrapper {
    background-color: #030303;
    color: #FFFFFF;
    width: 100%;
    min-height: 60vh;
    padding: 60px 5% 100px;
    box-sizing: border-box;
}

.jl-account-header {
    max-width: 1200px;
    margin: 0 auto 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 25px;
}

.jl-account-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 0 0 8px 0;
    color: #FFFFFF;
}

.jl-account-subtitle {
    font-size: 16px;
    color: #A3A3A3;
    margin: 0;
}

.jl-account-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* WooCommerce Navigation & Content Overrides */
.woocommerce-MyAccount-navigation ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 30px 0 !important;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 15px !important;
}

.woocommerce-MyAccount-navigation li a {
    color: #A3A3A3 !important;
    text-decoration: none !important;
    font-family: 'Cinzel', serif;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: inline-block;
}

.woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-MyAccount-navigation li a:hover {
    color: #C8A96A !important;
    border-color: #C8A96A !important;
    background-color: rgba(200, 169, 106, 0.05);
}

.woocommerce-MyAccount-content {
    color: #E0E0E0;
    line-height: 1.7;
}

.woocommerce-MyAccount-content a {
    color: #C8A96A;
    text-decoration: none;
}

/* Form Styles */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    background-color: #0A0A0A !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #FFFFFF !important;
    padding: 12px 15px !important;
}

.woocommerce button.button,
.woocommerce input.button {
    background-color: transparent !important;
    color: #C8A96A !important;
    border: 1px solid #C8A96A !important;
    padding: 12px 30px !important;
    font-family: 'Cinzel', serif !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background-color: #C8A96A !important;
    color: #030303 !important;
}
/* Custom Dark My Account Layout */
.jl-acc-wrapper {
    background-color: #030303;
    color: #FFFFFF;
    padding: 40px 4%;
    min-height: 80vh;
}

.jl-acc-container {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 30px;
    max-width: 1350px;
    margin: 0 auto;
}

/* Sidebar */
.jl-acc-sidebar {
    background: #080808;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 25px 20px;
}

.jl-sidebar-heading {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    letter-spacing: 2px;
    color: #C8A96A;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 10px;
}

.jl-acc-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.jl-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #A3A3A3;
    text-decoration: none;
    font-size: 14px;
    padding: 10px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.jl-nav-item:hover, .jl-nav-item.active {
    background: rgba(200, 169, 106, 0.1);
    color: #C8A96A;
}

.jl-acc-help {
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
}

.jl-acc-help h4 {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 1.5px;
    color: #8E8E8E;
    margin-bottom: 12px;
}

.jl-acc-help p a {
    color: #A3A3A3;
    text-decoration: none;
    font-size: 12px;
}

/* Main Dashboard Banner */
.jl-acc-banner {
    background: #080808;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
}

.jl-avatar-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 1px solid #C8A96A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-family: 'Cinzel', serif;
    color: #C8A96A;
}

.jl-welcome-sub {
    font-size: 11px;
    letter-spacing: 2px;
    color: #8E8E8E;
}

.jl-welcome-name {
    font-size: 26px;
    font-weight: 400;
    margin: 4px 0;
    color: #FFF;
}

.jl-member-since {
    font-size: 12px;
    color: #666;
}

.jl-quote-box {
    margin-left: auto;
    font-style: italic;
    color: #8E8E8E;
    max-width: 250px;
    font-size: 13px;
    text-align: right;
}

/* Stats Cards */
.jl-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.jl-stat-card {
    background: #080808;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
}

.jl-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(200, 169, 106, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C8A96A;
}

.jl-stat-title {
    font-size: 11px;
    letter-spacing: 1.5px;
    color: #8E8E8E;
    display: block;
}

.jl-stat-val {
    font-size: 22px;
    color: #FFF;
    font-weight: 500;
}

.jl-stat-sub {
    font-size: 12px;
    color: #666;
    display: block;
}

.jl-stat-link {
    position: absolute;
    right: 20px;
    bottom: 20px;
    color: #C8A96A;
    text-decoration: none;
    font-size: 12px;
}

/* Bottom Grid Layout */
.jl-dashboard-content-grid {
    display: grid;
    grid-template-columns: 1.8fr 1.2fr;
    gap: 20px;
}

.jl-card-block {
    background: #080808;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 25px;
}

.jl-block-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 12px;
}

.jl-block-header h3 {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    letter-spacing: 1.5px;
    margin: 0;
    color: #FFF;
}

.jl-link-gold {
    color: #C8A96A;
    text-decoration: none;
    font-size: 12px;
}

/* Order Table */
.jl-orders-table {
    width: 100%;
    border-collapse: collapse;
}

.jl-orders-table th {
    font-size: 11px;
    color: #8E8E8E;
    text-align: left;
    padding-bottom: 12px;
}

.jl-orders-table td {
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,0.04);
    font-size: 13px;
    color: #D4D4D4;
}

.jl-status-badge {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
}

.status-completed, .status-delivered { background: rgba(46, 125, 50, 0.2); color: #81c784; }
.status-processing { background: rgba(245, 124, 0, 0.2); color: #ffb74d; }
.status-cancelled { background: rgba(198, 40, 40, 0.2); color: #e57373; }

.jl-view-btn {
    color: #C8A96A;
    text-decoration: none;
    font-size: 12px;
}

/* Details Box */
.jl-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 13px;
}

.jl-detail-label { color: #8E8E8E; }
.jl-detail-value { color: #FFF; }

/* Auth Forms */
.jl-acc-auth-wrapper {
    background: #030303;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.jl-acc-auth-box {
    background: #080808;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 40px;
    width: 100%;
    max-width: 450px;
    border-radius: 8px;
}

.jl-auth-title {
    font-family: 'Cinzel', serif;
    text-align: center;
    color: #C8A96A;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.jl-auth-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.jl-tab-btn {
    background: none;
    border: none;
    color: #8E8E8E;
    padding: 10px;
    cursor: pointer;
    font-family: 'Cinzel', serif;
    font-size: 12px;
    flex: 1;
}

.jl-tab-btn.active {
    color: #C8A96A;
    border-bottom: 2px solid #C8A96A;
}

/* Responsive */
@media (max-width: 900px) {
    .jl-acc-container { grid-template-columns: 1fr; }
    .jl-dashboard-content-grid { grid-template-columns: 1fr; }
}
/* Auth Box Layout & Inputs */
.jl-acc-auth-wrapper {
    background-color: #030303;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
}

.jl-acc-auth-box {
    background: #080808;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 40px;
    width: 100%;
    max-width: 480px;
    box-sizing: border-box;
}

.jl-auth-title {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    letter-spacing: 3px;
    color: #C8A96A;
    text-align: center;
    margin: 0 0 25px 0;
}

.jl-auth-tabs {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.jl-tab-btn {
    flex: 1;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: #8E8E8E;
    font-family: 'Cinzel', serif;
    font-size: 13px;
    letter-spacing: 1.5px;
    padding: 12px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.jl-tab-btn.active {
    color: #C8A96A;
    border-bottom-color: #C8A96A;
}

/* Force Form Controls Visible & Styled */
.jl-acc-auth-box .form-row {
    margin-bottom: 20px !important;
    display: block !important;
    width: 100% !important;
    float: none !important;
}

.jl-acc-auth-box label {
    display: block !important;
    color: #CCCCCC !important;
    font-size: 13px !important;
    margin-bottom: 8px !important;
    font-family: 'Cormorant Garamond', serif !important;
}

.jl-acc-auth-box input[type="text"],
.jl-acc-auth-box input[type="email"],
.jl-acc-auth-box input[type="password"] {
    width: 100% !important;
    height: 46px !important;
    background-color: #030303 !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 4px !important;
    color: #FFFFFF !important;
    padding: 0 15px !important;
    font-size: 14px !important;
    box-sizing: border-box !important;
    outline: none !important;
}

.jl-acc-auth-box input[type="text"]:focus,
.jl-acc-auth-box input[type="email"]:focus,
.jl-acc-auth-box input[type="password"]:focus {
    border-color: #C8A96A !important;
}

.jl-form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 13px;
}

.jl-form-actions a {
    color: #C8A96A;
    text-decoration: none;
}

.jl-notice-text {
    font-size: 12px;
    color: #8E8E8E;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Submit Buttons */
.jl-acc-auth-box button[type="submit"] {
    width: 100% !important;
    height: 48px !important;
    background-color: transparent !important;
    color: #C8A96A !important;
    border: 1px solid #C8A96A !important;
    border-radius: 4px !important;
    font-family: 'Cinzel', serif !important;
    font-size: 13px !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.jl-acc-auth-box button[type="submit"]:hover {
    background-color: #C8A96A !important;
    color: #030303 !important;
}
/* Container & Dual Auth Wrapper */
.jl-dual-auth-wrapper {
    max-width: 1200px;
    margin: 40px auto 80px;
    padding: 0 20px;
    color: #e2e8f0;
}

.jl-main-heading {
    text-align: center;
    font-size: 28px;
    letter-spacing: 4px;
    color: #d4af37;
    margin-bottom: 5px;
    font-weight: 400;
}

.jl-heading-divider {
    text-align: center;
    color: #d4af37;
    font-size: 10px;
    margin-bottom: 40px;
}

/* Split Columns */
.jl-auth-split-container {
    display: flex;
    position: relative;
    gap: 40px;
    align-items: stretch;
}

.jl-auth-column {
    flex: 1;
    background: #0f1115;
    border: 1px solid #1e232d;
    border-radius: 12px;
    padding: 40px;
}

.jl-col-header {
    text-align: center;
    margin-bottom: 30px;
}

.jl-col-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #d4af37;
}

.jl-col-header h2 {
    font-size: 20px;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 5px;
}

.jl-col-header p {
    font-size: 13px;
    color: #8a94a6;
    margin: 0;
}

/* Forms & Inputs */
.jl-field-row {
    display: flex;
    gap: 15px;
}

.jl-field-group {
    margin-bottom: 20px;
    flex: 1;
}

.jl-field-group label {
    display: block;
    font-size: 11px;
    letter-spacing: 1px;
    color: #d4af37;
    margin-bottom: 8px;
    font-weight: 600;
}

.jl-field-group label span {
    color: #e53e3e;
}

.jl-input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.jl-input-with-icon .field-icon {
    position: absolute;
    left: 14px;
    color: #d4af37;
    pointer-events: none;
}

.jl-input-with-icon input.input-text {
    width: 100%;
    background: #090a0c !important;
    border: 1px solid #232834 !important;
    border-radius: 6px !important;
    padding: 12px 14px 12px 42px !important;
    color: #ffffff !important;
    font-size: 14px !important;
    outline: none;
    transition: border-color 0.3s ease;
}

.jl-input-with-icon input.input-text:focus {
    border-color: #d4af37 !important;
}

/* Meta Options */
.jl-form-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 13px;
    color: #8a94a6;
}

.jl-checkbox-label input {
    accent-color: #d4af37;
    margin-right: 6px;
}

.jl-forgot-link, .jl-checkbox-label a {
    color: #d4af37;
    text-decoration: none;
}

.jl-forgot-link:hover, .jl-checkbox-label a:hover {
    text-decoration: underline;
}

/* Gold Button */
.jl-btn-gold {
    width: 100%;
    background: linear-gradient(135deg, #c59b27 0%, #e5c158 50%, #b88e1e 100%);
    border: none;
    padding: 14px;
    border-radius: 6px;
    color: #000000;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity 0.3s ease;
}

.jl-btn-gold:hover {
    opacity: 0.9;
}

/* Center Divider with Logo */
.jl-auth-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.jl-auth-divider::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: #1e232d;
    z-index: 1;
}

.jl-badge-logo {
    position: relative;
    z-index: 2;
    width: 44px;
    height: 44px;
    background: #090a0c;
    border: 1px solid #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-family: serif;
    font-weight: bold;
    font-size: 20px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .jl-auth-split-container {
        flex-direction: column;
    }
    .jl-auth-divider::before {
        display: none;
    }
    .jl-badge-logo {
        margin: -20px auto;
    }
}
/* Centered Single Container */
.jl-single-auth-wrapper {
    max-width: 520px;
    margin: 40px auto 80px;
    padding: 0 20px;
    color: #e2e8f0;
}

.jl-auth-card {
    background: #0f1115;
    border: 1px solid #1e232d;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Eye Password Toggle Button */
.jl-eye-toggle {
    position: absolute;
    right: 12px;
    background: transparent;
    border: none;
    color: #8a94a6;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.jl-eye-toggle:hover,
.jl-eye-toggle.visible {
    color: #d4af37;
}

/* Prompt Links at Bottom */
.jl-auth-switch-prompt {
    text-align: center;
    margin-top: 25px;
    font-size: 13px;
    color: #8a94a6;
}

.jl-auth-switch-prompt a {
    color: #d4af37;
    font-weight: 600;
    text-decoration: none;
}

.jl-auth-switch-prompt a:hover {
    text-decoration: underline;
}

/* Hide WooCommerce Privacy Text Completely */
.woocommerce-privacy-policy-text {
    display: none !important;
}
/* Container for WooCommerce Dynamic Endpoints */
.jl-endpoint-card {
    padding: 30px;
    background: #0f1115;
    border: 1px solid #1e232d;
    border-radius: 12px;
    color: #e2e8f0;
}

.jl-endpoint-card h3, 
.jl-endpoint-card legend {
    color: #d4af37;
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.jl-endpoint-card label {
    color: #d4af37;
    font-size: 12px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 6px;
}

.jl-endpoint-card input.input-text, 
.jl-endpoint-card select, 
.jl-endpoint-card textarea {
    background: #090a0c !important;
    border: 1px solid #232834 !important;
    color: #ffffff !important;
    padding: 10px 14px !important;
    border-radius: 6px !important;
    width: 100%;
}

.jl-endpoint-card button.button,
.jl-endpoint-card input[type="submit"] {
    background: linear-gradient(135deg, #c59b27 0%, #e5c158 50%, #b88e1e 100%) !important;
    color: #000000 !important;
    font-weight: bold !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    margin-top: 15px;
}
/* Page Layout Setup */
.jl-acc-wrapper {
    background-color: #070708;
    color: #e5e5e5;
    padding: 40px 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.jl-acc-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

/* Sidebar User Header */
.jl-sidebar-user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #1a1a1e;
}

.jl-avatar-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #d4af37;
    color: #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
}

.jl-user-name {
    font-size: 15px;
    color: #ffffff;
    margin: 0;
}

.jl-member-since {
    font-size: 11px;
    color: #71717a;
}

/* Page Titles */
.jl-page-title {
    font-size: 24px;
    color: #d4af37;
    letter-spacing: 1.5px;
    margin: 0 0 4px 0;
    font-weight: 500;
}

.jl-page-subtitle {
    font-size: 13px;
    color: #a1a1aa;
    margin-bottom: 25px;
}

/* 1. Orders Page Layout */
.jl-order-card {
    background: #0d0e12;
    border: 1px solid #1c1d24;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
}

.jl-order-header-row {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1fr 1fr auto;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #181920;
    font-size: 14px;
}

.jl-order-id {
    color: #d4af37;
    font-weight: 600;
}

.jl-status-badge {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    text-align: center;
    width: fit-content;
}

.jl-status-badge.status-delivered, .jl-status-badge.status-completed {
    background: rgba(34, 197, 94, 0.1);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.jl-status-badge.status-processing {
    background: rgba(234, 179, 8, 0.1);
    color: #facc15;
    border: 1px solid rgba(234, 179, 8, 0.2);
}

.jl-status-badge.status-cancelled {
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.jl-btn-outline-gold {
    border: 1px solid #d4af37;
    color: #d4af37;
    padding: 6px 14px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.2s ease;
}

.jl-btn-outline-gold:hover {
    background: #d4af37;
    color: #000000;
}

.jl-order-item-preview {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.jl-item-thumb img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #27272a;
}

.jl-item-name {
    font-size: 13px;
    color: #e4e4e7;
    margin: 0 0 4px 0;
}

.jl-item-meta {
    font-size: 12px;
    color: #71717a;
    margin: 0;
}

.jl-item-price {
    margin-left: auto;
    color: #e4e4e7;
    font-size: 14px;
}

.jl-orders-footer {
    text-align: center;
    color: #71717a;
    font-size: 12px;
    margin-top: 20px;
}

/* 2. Addresses Page Layout */
.jl-addresses-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.jl-addresses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.jl-address-card {
    background: #0d0e12;
    border: 1px solid #1c1d24;
    border-radius: 8px;
    padding: 24px;
}

.jl-address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.jl-address-header h3 {
    font-size: 14px;
    color: #d4af37;
    letter-spacing: 1px;
    margin: 0;
}

.jl-default-badge {
    background: rgba(212, 175, 55, 0.15);
    color: #d4af37;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.jl-address-body p {
    font-size: 13px;
    color: #a1a1aa;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.jl-address-actions {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #181920;
}

.jl-action-link {
    color: #d4af37;
    text-decoration: none;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.jl-action-link.jl-delete {
    color: #71717a;
}

/* 3. Account Details Page Layout */
.jl-account-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.jl-form-block {
    background: #0d0e12;
    border: 1px solid #1c1d24;
    border-radius: 8px;
    padding: 24px;
}

.jl-block-title {
    font-size: 14px;
    color: #d4af37;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.jl-field-group {
    margin-bottom: 18px;
}

.jl-field-group label {
    display: block;
    font-size: 12px;
    color: #a1a1aa;
    margin-bottom: 6px;
}

.jl-field-group input.input-text {
    width: 100%;
    background: #050506;
    border: 1px solid #27272a;
    color: #ffffff;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 13px;
    outline: none;
}

.jl-field-group input.input-text:focus {
    border-color: #d4af37;
}

.jl-field-hint {
    font-size: 11px;
    color: #52525b;
    margin-top: 4px;
    display: block;
}

.jl-input-pass-wrap {
    position: relative;
}

.jl-eye-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 12px;
    color: #71717a;
}

.jl-btn-gold-solid {
    background: linear-gradient(135deg, #c59b27 0%, #e5c158 50%, #b88e1e 100%);
    color: #000000;
    border: none;
    font-weight: 600;
    font-size: 12px;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

/* 4. Footer Brand Banner */
.jl-brand-footer-banner {
    text-align: center;
    padding: 60px 20px 20px 20px;
    margin-top: 40px;
    border-top: 1px solid #121318;
}

.jl-brand-logo-mark {
    font-family: serif;
    font-size: 28px;
    color: #d4af37;
    margin-bottom: 10px;
}

.jl-brand-tagline {
    font-size: 11px;
    letter-spacing: 2.5px;
    color: #71717a;
    text-transform: uppercase;
}
/* GLOBAL TOAST POPUP NOTIFICATIONS (DESIGN 3) */
.jass-toast-container {
    position: fixed !important;
    top: 25px !important;
    right: 25px !important;
    z-index: 9999999 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    max-width: 380px !important;
    width: calc(100% - 40px) !important;
    pointer-events: none !important;
}

.jass-luxury-toast {
    pointer-events: auto !important;
    background: #0d0d0f !important;
    border: 1px solid rgba(197, 160, 89, 0.3) !important;
    border-left: 4px solid #c5a059 !important;
    border-radius: 8px !important;
    padding: 14px 18px !important;
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.85), 0 0 15px rgba(197, 160, 89, 0.15) !important;
    transform: translateX(120%) !important;
    opacity: 0 !important;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.jass-luxury-toast.show {
    transform: translateX(0) !important;
    opacity: 1 !important;
}

.jass-luxury-toast.toast-error {
    border-left-color: #e53e3e !important;
}

.jass-toast-icon {
    font-size: 1.3rem !important;
    color: #c5a059 !important;
}

.jass-luxury-toast.toast-error .jass-toast-icon {
    color: #e53e3e !important;
}

.jass-toast-body { flex: 1 !important; }

.jass-toast-title {
    font-family: 'Cinzel', serif !important;
    font-size: 0.88rem !important;
    color: #ffffff !important;
    margin: 0 0 2px 0 !important;
}

.jass-toast-msg {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.8rem !important;
    color: #a1a1aa !important;
    margin: 0 !important;
}

.jass-toast-close {
    background: transparent !important;
    border: none !important;
    color: #71717a !important;
    font-size: 1.2rem !important;
    cursor: pointer !important;
}
/* ==========================================================================
   GLOBAL 3D LUXURY EFFECTS, SHIMMER & DESIGN 3 TOAST NOTIFICATIONS
   ========================================================================== */

/* 1. Global Toast Popup (Design 3) */
.jass-toast-container {
    position: fixed !important;
    top: 25px !important;
    right: 25px !important;
    z-index: 9999999 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    max-width: 380px !important;
    width: calc(100% - 40px) !important;
    pointer-events: none !important;
}

.jass-luxury-toast {
    pointer-events: auto !important;
    background: #0d0d0f !important;
    border: 1px solid rgba(197, 160, 89, 0.35) !important;
    border-left: 4px solid #c5a059 !important;
    border-radius: 8px !important;
    padding: 14px 18px !important;
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85), 0 0 20px rgba(197, 160, 89, 0.2) !important;
    transform: translateX(120%) !important;
    opacity: 0 !important;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1) !important;
    backdrop-filter: blur(10px) !important;
}

.jass-luxury-toast.show {
    transform: translateX(0) !important;
    opacity: 1 !important;
}

.jass-luxury-toast.toast-error {
    border-left-color: #e53e3e !important;
}

.jass-toast-icon {
    font-size: 1.35rem !important;
    color: #c5a059 !important;
    display: flex !important;
    align-items: center !important;
}

.jass-luxury-toast.toast-error .jass-toast-icon {
    color: #e53e3e !important;
}

.jass-toast-body { flex: 1 !important; }

.jass-toast-title {
    font-family: 'Cinzel', serif !important;
    font-size: 0.88rem !important;
    letter-spacing: 1px !important;
    color: #ffffff !important;
    margin: 0 0 2px 0 !important;
}

.jass-toast-msg {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.8rem !important;
    color: #a1a1aa !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}

.jass-toast-close {
    background: transparent !important;
    border: none !important;
    color: #71717a !important;
    font-size: 1.2rem !important;
    cursor: pointer !important;
    padding: 0 4px !important;
    transition: color 0.2s ease !important;
}

.jass-toast-close:hover {
    color: #ffffff !important;
}

/* 2. 3D Card Depth & Perspective */
.jl-card,
.jl-product-card,
ul.products li.product {
    transform-style: preserve-3d !important;
    perspective: 1000px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

/* 3D Gold Accent Hover Glow */
.jl-card:hover,
.jl-product-card:hover,
ul.products li.product:hover {
    border-color: #c5a059 !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.9), 0 0 25px rgba(197, 160, 89, 0.25) !important;
}

/* 3. Luxury 3D Light Sheen Animation */
.jl-card::before,
.jl-product-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 60% !important;
    height: 100% !important;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(197, 160, 89, 0.08),
        transparent
    ) !important;
    transform: skewX(-25deg) !important;
    transition: left 0.75s ease !important;
    pointer-events: none !important;
    z-index: 5 !important;
}

.jl-card:hover::before,
.jl-product-card:hover::before {
    left: 140% !important;
}

/* 4. Smooth 3D Button Press Effect */
.jl-buy-now-btn,
.single_add_to_cart_button,
#place_order {
    transform: translateZ(0) !important;
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.2s ease, background-color 0.2s ease !important;
}

.jl-buy-now-btn:active,
.single_add_to_cart_button:active,
#place_order:active {
    transform: scale(0.97) translateY(2px) !important;
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.2) !important;
}
/* ==========================================================================
   JASS LUXE 3D HERO BACKGROUND SYSTEM (5 MODULAR DESIGNS)
   ========================================================================== */

.jl-hero-3d-container {
    position: relative !important;
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    background-color: #050505 !important;
    overflow: hidden !important;
    perspective: 1200px !important;
}

/* 3D Canvas Background Layer */
.jl-3d-background-wrapper {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
    pointer-events: none !important;
    overflow: hidden !important;
    transform-style: preserve-3d !important;
}

/* Ambient Radial Gold Backlight */
.jl-3d-ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.18) 0%, rgba(5, 5, 5, 0) 70%);
    filter: blur(50px);
    z-index: 1;
}

/* Base 3D Element Stage */
.jl-3d-mesh-element {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(0);
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 2;
    will-change: transform;
    transition: transform 0.15s ease-out;
}

/* Dark Vignette to protect text readability */
.jl-3d-vignette-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(5,5,5,0.2) 0%, rgba(5,5,5,0.7) 80%, #050505 100%);
    z-index: 3;
}

/* Foreground Content */
.jl-hero-foreground {
    position: relative !important;
    z-index: 10 !important;
    pointer-events: auto !important;
}

.jl-3d-title {
    text-shadow: 0 15px 30px rgba(0, 0, 0, 0.9), 0 0 20px rgba(197, 160, 89, 0.25) !important;
}

/* --------------------------------------------------------------------------
   INDIVIDUAL 3D DESIGN PRESETS
   -------------------------------------------------------------------------- */

/* DESIGN 1: 3D GOLD LIQUID SILK / FABRIC (BEST OPTION) */
[data-design="design-1"] .jl-3d-mesh-element {
    background-image: url('assets/images/hero-3d-fabric.png');
    background-size: cover;
    opacity: 0.85;
    animation: jlFloatFabric 12s ease-in-out infinite alternate;
}

/* DESIGN 2: 3D GOLD PEACOCK FEATHER */
[data-design="design-2"] .jl-3d-mesh-element {
    background-image: url('assets/images/hero-3d-feather.png');
    background-size: contain;
    background-position: right center;
    opacity: 0.9;
    animation: jlFloatSubtle 8s ease-in-out infinite alternate;
}

/* DESIGN 3: 3D GOLD RING / TORUS SCULPTURE */
[data-design="design-3"] .jl-3d-mesh-element {
    background-image: url('assets/images/hero-3d-ring.png');
    background-size: min(85vw, 650px);
    opacity: 0.95;
    animation: jlSpinSlow 24s linear infinite;
}

/* DESIGN 4: 3D BLACK MARBLE & GOLD VEIN SCULPTURE */
[data-design="design-4"] .jl-3d-mesh-element {
    background-image: url('assets/images/hero-3d-marble.png');
    background-size: min(90vw, 750px);
    opacity: 0.95;
    animation: jlFloatSubtle 9s ease-in-out infinite alternate;
}

/* DESIGN 5: 3D FLOATING MONOGRAM LETTERS (J + L) */
[data-design="design-5"] .jl-3d-mesh-element {
    background-image: url('assets/images/hero-3d-letters.png');
    background-size: min(90vw, 700px);
    opacity: 0.92;
    animation: jlFloatSubtle 10s ease-in-out infinite alternate;
}

/* Smooth Floating Keyframes */
@keyframes jlFloatFabric {
    0% { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
    50% { transform: translate(-50%, -52%) scale(1.03) rotate(0.5deg); }
    100% { transform: translate(-50%, -49%) scale(1) rotate(-0.5deg); }
}

@keyframes jlFloatSubtle {
    0% { transform: translate(-50%, -50%) translateY(0px); }
    100% { transform: translate(-50%, -50%) translateY(-14px); }
}

@keyframes jlSpinSlow {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Mobile Fallback */
@media (max-width: 768px) {
    .jl-3d-mesh-element {
        background-size: cover !important;
        opacity: 0.65 !important;
    }
}
/* PURE 3D WEBGL HERO LAYER */
.jl-webgl-wrapper {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
    pointer-events: none !important;
    overflow: hidden;
}

.jl-webgl-wrapper canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

.jl-hero-radial-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(5, 5, 5, 0.1) 0%, rgba(5, 5, 5, 0.7) 75%, #050505 100%);
    z-index: 2;
    pointer-events: none;
}

.jl-hero-foreground {
    position: relative !important;
    z-index: 10 !important;
}
.jl-hero-3d-container {
    position: relative !important;
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    background-color: #050505 !important;
    overflow: hidden !important;
}

.jl-webgl-wrapper {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

.jl-webgl-wrapper canvas {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
}

.jl-hero-foreground {
    position: relative !important;
    z-index: 10 !important;
    pointer-events: auto !important;
}
/* ==========================================================================
   HERO TYPOGRAPHY & BUTTON MOTION SYSTEM
   ========================================================================== */

/* 1. Staggered Entrance Animations on Page Load */
.jl-anim-fade-up {
    opacity: 0;
    transform: translateY(28px);
    animation: jlFadeUp 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.jl-delay-1 { animation-delay: 0.15s; }
.jl-delay-2 { animation-delay: 0.35s; }
.jl-delay-3 { animation-delay: 0.55s; }
.jl-delay-4 { animation-delay: 0.75s; }

@keyframes jlFadeUp {
    0% {
        opacity: 0;
        transform: translateY(28px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 2. Hero Title Atmospheric Gold Glow */
.hero-logo {
    letter-spacing: 4px !important;
    text-shadow: 0 10px 25px rgba(0, 0, 0, 0.9), 0 0 35px rgba(197, 160, 89, 0.3) !important;
    transition: letter-spacing 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.hero-logo:hover {
    letter-spacing: 6px !important;
}

/* 3. Luxury Interactive "EXPLORE COLLECTION" Button */
.jl-luxury-btn {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    background: #c5a059 !important;
    color: #050505 !important;
    padding: 16px 38px !important;
    border-radius: 40px !important;
    font-weight: 700 !important;
    font-size: 0.88rem !important;
    letter-spacing: 2px !important;
    text-decoration: none !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6), 0 0 20px rgba(197, 160, 89, 0.3) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Shimmer Sheen Sweep Effect */
.jl-luxury-btn::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -120% !important;
    width: 80% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent) !important;
    transform: skewX(-25deg) !important;
    transition: left 0.75s ease !important;
}

.jl-luxury-btn:hover {
    transform: translateY(-3px) scale(1.03) !important;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.8), 0 0 30px rgba(197, 160, 89, 0.6) !important;
    background: #dfb96c !important;
    color: #000000 !important;
}

.jl-luxury-btn:hover::after {
    left: 140% !important;
}

.jl-luxury-btn i {
    transition: transform 0.35s ease !important;
}

.jl-luxury-btn:hover i {
    transform: translateX(5px) !important;
}
/* FIXED EXPLORE COLLECTION BUTTON */
.jl-luxury-btn {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    background: #c5a059 !important;
    color: #050505 !important;
    padding: 16px 44px !important; /* Extra horizontal padding so curves never clip text */
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 0.88rem !important;
    letter-spacing: 2px !important;
    text-decoration: none !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7), 0 0 20px rgba(197, 160, 89, 0.3) !important;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.jl-luxury-btn span {
    display: inline-block !important;
    vertical-align: middle !important;
}

/* Arrow initially hidden and zero-width */
.jl-luxury-btn i {
    opacity: 0 !important;
    width: 0 !important;
    max-width: 0 !important;
    margin-left: 0 !important;
    overflow: hidden !important;
    transform: translateX(-8px) !important;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

/* Hover State */
.jl-luxury-btn:hover {
    transform: translateY(-3px) scale(1.02) !important;
    background: #dfb96c !important;
    color: #000000 !important;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.85), 0 0 30px rgba(197, 160, 89, 0.6) !important;
    padding-left: 38px !important;
    padding-right: 38px !important;
}

.jl-luxury-btn:hover i {
    opacity: 1 !important;
    width: auto !important;
    max-width: 25px !important;
    margin-left: 10px !important;
    transform: translateX(0) !important;
}
/* EXPLORE COLLECTION BUTTON FIX */
.jl-luxury-btn {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    background: #c5a059 !important;
    color: #050505 !important;
    padding: 16px 42px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    letter-spacing: 2px !important;
    text-decoration: none !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7), 0 0 20px rgba(197, 160, 89, 0.25) !important;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.jl-luxury-btn .jl-btn-text {
    display: inline-block !important;
    color: #050505 !important;
}

.jl-luxury-btn i {
    opacity: 0 !important;
    max-width: 0 !important;
    margin-left: 0 !important;
    transform: translateX(-6px) !important;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

.jl-luxury-btn:hover {
    transform: translateY(-2px) scale(1.02) !important;
    background: #dfb96c !important;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.85), 0 0 25px rgba(197, 160, 89, 0.5) !important;
    padding-right: 48px !important;
}

.jl-luxury-btn:hover i {
    opacity: 1 !important;
    max-width: 25px !important;
    margin-left: 10px !important;
    transform: translateX(0) !important;
}
/* REFINED SLEEK "EXPLORE COLLECTION" BUTTON */
.jl-luxury-btn {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    background: #c5a059 !important;
    color: #050505 !important;
    padding: 12px 30px !important; /* Reduced vertical & horizontal padding */
    border-radius: 40px !important;
    font-weight: 600 !important;
    font-size: 0.76rem !important; /* Reduced from 0.9rem to 0.76rem */
    letter-spacing: 1.8px !important; /* Elegant editorial tracking */
    text-decoration: none !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6), 0 0 15px rgba(197, 160, 89, 0.2) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.jl-luxury-btn .jl-btn-text {
    display: inline-block !important;
    color: #050505 !important;
    font-size: 0.76rem !important;
    line-height: 1 !important;
}

.jl-luxury-btn i {
    font-size: 0.78rem !important;
    opacity: 0 !important;
    max-width: 0 !important;
    margin-left: 0 !important;
    transform: translateX(-6px) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

/* Hover State */
.jl-luxury-btn:hover {
    transform: translateY(-2px) scale(1.02) !important;
    background: #dfb96c !important;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.8), 0 0 20px rgba(197, 160, 89, 0.45) !important;
    padding-right: 36px !important;
}

.jl-luxury-btn:hover i {
    opacity: 1 !important;
    max-width: 20px !important;
    margin-left: 8px !important;
    transform: translateX(0) !important;
}/* FIX 3D CANVAS OVERLAY BLOCKING CLICKS */
.jl-webgl-wrapper,
#jl-webgl-canvas-wrapper,
.jl-hero-radial-vignette {
    pointer-events: none !important;
    z-index: 1 !important;
}

.jl-webgl-wrapper canvas {
    pointer-events: none !important;
}

.jl-hero-foreground,
.hero-content,
.jl-hero-btn-wrap,
.jl-luxury-btn {
    position: relative !important;
    z-index: 99 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
}
/* ==========================================================================
   ISOLATED CLICKABLE HERO BUTTON
   ========================================================================== */

/* 1. Ensure Background Canvas Never Captures Mouse Clicks */
.jl-webgl-wrapper,
#jl-webgl-canvas-wrapper,
.jl-webgl-wrapper canvas,
.jl-hero-radial-vignette {
    pointer-events: none !important;
    user-select: none !important;
    z-index: 1 !important;
}

/* 2. Elevate Foreground & Button Container */
.jl-hero-foreground {
    position: relative !important;
    z-index: 50 !important;
    pointer-events: auto !important;
}

.jl-hero-btn-container {
    position: relative !important;
    z-index: 99999 !important;
    display: inline-block !important;
    margin: 22px 0 26px !important;
    transform: none !important; /* Disables 3D tilt on button wrapper */
}

/* 3. Sleek, Centered Clickable Button */
.jl-solid-shop-btn {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    background-color: #c5a059 !important;
    color: #050505 !important;
    padding: 12px 30px !important;
    border-radius: 40px !important;
    font-family: 'Inter', system-ui, sans-serif !important;
    font-weight: 600 !important;
    font-size: 0.76rem !important;
    letter-spacing: 1.8px !important;
    text-decoration: none !important;
    cursor: pointer !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6), 0 0 15px rgba(197, 160, 89, 0.2) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.jl-solid-shop-btn .jl-btn-label {
    display: inline-block !important;
    color: #050505 !important;
    line-height: 1 !important;
    pointer-events: none !important;
}

/* 4. Arrow Slide-In Animation on Hover */
.jl-solid-shop-btn .jl-btn-icon {
    font-size: 0.78rem !important;
    opacity: 0 !important;
    max-width: 0 !important;
    margin-left: 0 !important;
    transform: translateX(-8px) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: inline-block !important;
    vertical-align: middle !important;
    pointer-events: none !important;
}

.jl-solid-shop-btn:hover {
    transform: translateY(-2px) !important;
    background-color: #dfb96c !important;
    color: #000000 !important;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.8), 0 0 20px rgba(197, 160, 89, 0.45) !important;
    padding-right: 38px !important;
}

.jl-solid-shop-btn:hover .jl-btn-icon {
    opacity: 1 !important;
    max-width: 20px !important;
    margin-left: 8px !important;
    transform: translateX(0) !important;
}
/* ==========================================================================
   MOBILE RESPONSIVE HERO (LARGER LOGO, BIGGER TAGLINE & ADDED SPACING)
   ========================================================================== */
@media (max-width: 768px) {

    .jl-hero-foreground,
    .hero-content {
        padding: 0 10px !important;
        width: 100% !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
    }

    /* 1. Large Bold JASS LUXE on One Single Line */
    .hero-logo,
    .jl-3d-title {
        font-size: clamp(4.2rem, 11vw, 3.8rem) !important; /* Increased font size */
        white-space: nowrap !important;
        letter-spacing: 1.5px !important;
        line-height: 1 !important;
        margin: 0 0 12px 0 !important;
        display: block !important;
    }

    /* 2. Sub-Headline Tagline */
    .hero-title {
        font-size: clamp(0.72rem, 3.2vw, 0.95rem) !important;
        letter-spacing: 2px !important;
        white-space: nowrap !important;
        margin: 0 0 24px 0 !important;
    }

    /* 3. Button Spacing */
    .jl-hero-btn-container {
        margin: 18px 0 28px !important;
    }

    .jl-solid-shop-btn {
        padding: 12px 28px !important;
        font-size: 0.76rem !important;
        letter-spacing: 1.8px !important;
    }

    /* 4. Enlarged Bottom Tagline Pushed Down */
    .hero-text {
        font-size: clamp(0.85rem, 3.6vw, 1.1rem) !important; /* Larger readable size */
        white-space: nowrap !important;
        line-height: 1.3 !important;
        margin: 25px auto 0 !important; /* Moved down with 25px top margin */
        display: block !important;
        text-align: center !important;
    }
}

/* Fallback for narrower screens */
@media (max-width: 380px) {
    .hero-logo,
    .jl-3d-title {
        font-size: 10.2vw !important;
        letter-spacing: 1px !important;
    }

    .hero-text {
        font-size: 3.4vw !important;
        margin-top: 20px !important;
    }
}
/* ==========================================================================
   MOBILE RESPONSIVE FIX: ABOUT US PAGE
   ========================================================================== */
@media (max-width: 768px) {

    /* --- 1. HERO SECTION & 2-LINE HEADLINE --- */
    .about-hero,
    .jl-about-hero {
        padding: 40px 16px 25px !important; /* Reduced vertical space */
        min-height: auto !important;
        text-align: center !important;
    }

    .jl-about-sub {
        font-size: 0.72rem !important;
        letter-spacing: 2px !important;
        margin-bottom: 12px !important;
        display: block !important;
    }

    .jl-about-main-title {
        font-family: 'Cinzel', serif !important;
        font-size: clamp(1.6rem, 7.5vw, 2.2rem) !important; /* Reduced scale */
        line-height: 1.25 !important;
        margin: 0 0 16px 0 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 4px !important;
    }

    .jl-about-main-title span {
        display: block !important;
        white-space: nowrap !important; /* Locks into 2 lines */
    }

    .jl-about-lead {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        color: #a1a1aa !important;
        max-width: 320px !important;
        margin: 0 auto !important;
    }

    /* --- 2. BRAND STORY & FOUNDER'S IMAGE SCALING --- */
    .about-story,
    .jl-about-story {
        padding: 30px 16px !important; /* Tightened section spacing */
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .jl-story-image-wrap {
        width: 100% !important;
        max-width: 280px !important; /* Reduced image container size */
        margin: 0 auto 24px !important;
    }

    .jl-story-img,
    .about-story img {
        width: 100% !important;
        height: auto !important;
        max-height: 280px !important;
        object-fit: cover !important;
        border-radius: 12px !important;
        border: 1px solid rgba(197, 160, 89, 0.3) !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7) !important;
    }

    .jl-story-title {
        font-size: clamp(1.35rem, 6.2vw, 1.8rem) !important;
        line-height: 1.2 !important;
        margin-bottom: 14px !important;
    }

    .jl-story-content p {
        font-size: 0.82rem !important;
        line-height: 1.5 !important;
        color: #a1a1aa !important;
        margin-bottom: 12px !important;
    }

    /* --- 3. OUR VISION SECTION (THE VISION OF / JASS LUXE) --- */
    .about-vision,
    .jl-about-vision {
        padding: 35px 16px 50px !important;
        text-align: center !important;
    }

    .jl-vision-sub {
        font-size: 0.72rem !important;
        letter-spacing: 2px !important;
        margin-bottom: 10px !important;
        display: block !important;
    }

    .jl-vision-title {
        font-family: 'Cinzel', serif !important;
        font-size: clamp(1.4rem, 6.5vw, 2rem) !important;
        line-height: 1.2 !important;
        margin: 0 0 35px 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .jl-vision-title .white-line {
        color: #ffffff !important;
        display: block !important;
        white-space: nowrap !important;
    }

    .jl-vision-title .gold-line {
        color: #c5a059 !important;
        display: block !important;
        white-space: nowrap !important;
        margin-top: 4px !important;
    }

    /* 4-Item 2x2 Grid for Vision Cards */
    .jl-vision-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 24px 14px !important;
    }

    .jl-vision-card {
        padding: 10px 6px !important;
    }

    .jl-vision-icon {
        width: 44px !important;
        height: 44px !important;
        border: 1px solid rgba(197, 160, 89, 0.4) !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 auto 10px !important;
        color: #c5a059 !important;
        font-size: 0.95rem !important;
    }

    .jl-vision-card h3 {
        font-family: 'Cinzel', serif !important;
        font-size: 0.72rem !important;
        letter-spacing: 1px !important;
        margin-bottom: 6px !important;
        color: #ffffff !important;
    }

    .jl-vision-card p {
        font-size: 0.68rem !important;
        line-height: 1.35 !important;
        color: #888888 !important;
        margin: 0 !important;
    }
}