:root {
    --color-gold: #D4AF37;
    --color-gold-light: #F4D06F;
    --color-black: #0a0a0a;
    --color-dark: #121212;
    --color-white: #ffffff;
    --color-gray: #888888;
    --color-gray-light: #f5f5f5;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    --container-width: 1400px;
    --transition: all 0.4s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-black);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: 0.05em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-black);
}

.btn-primary:hover {
    background: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-white);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: red;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.text-gold {
    color: var(--color-gold);
}

.text-center {
    text-align: center;
}

.section-padding {
    padding: var(--spacing-xl) 0;
}

/* Header */
.top-bar {
    background-color: #2b4c9f;
    /* Image match roughly */
    color: #ffffff;
    text-align: center;
    padding: 0.8rem 0;
    font-size: 0.85rem;
    font-family: var(--font-body);
    position: relative;
    z-index: 1001;
}

.top-bar a {
    color: #fff;
    font-weight: 600;
}

.top-bar-promo {
    margin-left: 1rem;
    font-weight: 600;
}

.site-header {
    position: absolute;
    /* Overlay on hero */
    top: 0px;
    /* Let it flow after top-bar if top-bar is static? No, usually heavy absolute positioning */
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    /* Transparent as per image */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    padding: 0 1rem;
}

/* If top bar is separate, we might need to adjust header top */
/* Assuming top bar is static block, header is absolute below it? */
/* Actually, let's make header relative to the page flow for the hero? */
/* Existing hero has background image. To overlay header on it, header must be absolute */
/* So top bar static, header absolute? */
/* If top bar is 40px, header top should be 0? No, header starts after top bar visually */
/* But if header overlays hero, and hero starts at top of page... */
/* Usually: Hero starts at top: 0. Header is absolute top: 40px? */
/* Or Hero starts after top bar? */
/* Let's assume Hero is top-level background. Top bar pushes it down? */
/* I'll make top-bar relative. Hero starts after. Header is absolute top: 0 of HERO? */
/* Actually, simpler: */
/* .top-bar { position: relative; z-index: 1002; } */
/* .site-header { position: absolute; top: 0; width: 100%; z-index: 1000; mt: 0; } */
/* Wait, if top-bar pushes hero down, header (absolute) will be at top of hero. Correct. */


.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.2rem 0;
    /* Replaces height 90px with padding */
    position: static;
    /* Ensure static for mega menu width */
}

.logo {
    position: absolute;
    left: 53%;
    top: 50%;
    /* Vertical center */
    transform: translate(-50%, -50%);
    /* Center both axes */
    text-align: center;
}

.header-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.region-selector a {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
}


.logo a {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 15px;
}

.main-navigation ul {
    display: flex;
    gap: 1.5rem;
}

.main-navigation a {
    font-size: 0.9rem;
    text-transform: capitalize;
    /* Image shows Title Case? "About Us", "Contact" */
    /* Wait, image showed "Home Shop About Us News Contact Loved by creators" */
    /* Looks like sentence or title case. Existing was uppercase. */
    /* I'll use None or specific capitalization */
    font-weight: 500;
    letter-spacing: 0.02em;
    position: relative;
    opacity: 0.9;
    color: #fff;
}

.main-navigation a:hover {
    color: var(--color-gold);
    opacity: 1;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: var(--transition);
}

.main-navigation a:hover::after {
    width: 100%;
}



/* Mega Menu */
.main-navigation .mega-menu-item {
    position: static !important;
}

/* Ensure intermediate containers don't trap the absolute positioning */
.main-navigation,
.header-container,
.site-header .container {
    position: static !important;
}

/* Style the WordPress sub-menu as a mega menu */
/* Style the WordPress sub-menu as a mega menu */
.main-navigation .mega-menu-item>.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    margin-left: calc(-1 * (100vw - 100%) / 2);
    /* Full width across the screen */
    background: #111111;
    /* Solid dark background as requested */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 9999;
    padding: 4rem 15% 5rem;
    /* Adjusted padding for centering */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid var(--color-gold);
    display: flex !important;
    justify-content: flex-start;
    /* Left align to separate columns */
    gap: 15rem;
    /* Large gap between the two major columns */

    /* State */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    text-align: left;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Remove Hover Trigger (Prevent default theme hover) */
.main-navigation .mega-menu-item:hover>.sub-menu {
    opacity: 0;
    visibility: hidden;
}

/* Show when Active (Click based) - Must come AFTER hover to override it */
.main-navigation .mega-menu-item.is-active>.sub-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto;
}

/* Add a chevron to items with children */
.main-navigation .menu-item-has-children>a,
.main-navigation .mega-menu-item>a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.main-navigation .menu-item-has-children>a::after,
.main-navigation .mega-menu-item>a::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7em;
    display: inline-block;
    transition: transform 0.3s ease;
    opacity: 0.7;
    margin: 0;
    /* handled by gap */
}

.main-navigation .mega-menu-item.is-active>a::after {
    transform: rotate(180deg);
    color: var(--color-gold);
}

/* =========================================
   Custom Mega Menu Layout (Reference Image Match)
   ========================================= */

/* Headers (Collections, Perfumes) */
.mega-hdr {
    display: block;
    font-size: 2.2rem;
    /* Large as per image */
    color: #fff;
    margin-bottom: 1rem;
    font-family: var(--font-body);
    /* Looks like sans serif in image */
    font-weight: 400;
}

/* View all links */
.mega-view-all {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
    display: block;
    text-decoration: underline;
    opacity: 0.8;
}

/* Column 1: Collections (Large) */
.mega-col-large {
    min-width: 300px;
}

.mega-col-large .sub-menu-items {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.mega-col-large .sub-menu-items li a {
    font-size: 2rem !important;
    /* Huge font for collections */
    color: #fff !important;
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 400;
    opacity: 0.9;
    text-transform: none;
    text-decoration: none;
}

.mega-col-large .sub-menu-items li a:hover {
    color: var(--color-gold) !important;
    opacity: 1;
}

/* Column 2: Perfumes (List with Border) */
.mega-col-list {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    padding-left: 3rem;
    min-width: 300px;
}

.mega-col-list .mega-hdr {
    font-size: 1.2rem;
    /* Smaller header for right col */
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.mega-col-list .mega-view-all {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-decoration: none;
}

.mega-col-list .sub-menu-items {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.mega-col-list .sub-menu-items li a {
    font-size: 1rem !important;
    color: #ccc !important;
    /* Slightly grayer */
    font-weight: 400;
    text-transform: none;
}

.mega-col-list .sub-menu-items li a:hover {
    color: #fff !important;
}

/* Reset standard WordPress sub-menu styling we don't need */
.main-navigation .mega-menu-item>.sub-menu>li {
    opacity: 1;
    transform: none;
    transition: none;
    border: none;
    padding: 0;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}


.header-search-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(-10px);
}

.header-search-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-search-overlay .container {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 600px;
    padding: 0;
    /* Override container padding if any */
}

.header-search-overlay .search-form {
    width: 100%;
    display: flex;
    align-items: center;
}

.header-search-overlay .search-field {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #121212;
    font-size: 1.2rem;
    padding: 0.5rem 0;
    color: #121212;
    outline: none;
    font-family: var(--font-body);
}

.header-search-overlay .search-field::placeholder {
    color: #888;
    font-weight: 300;
}

.search-close {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: #121212;
    margin-left: 1rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s;
}

.search-close:hover {
    color: var(--color-gold);
}


/* Hero Section */
/* Hero Section */
.hero-section {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(10, 10, 10, 1) 0%, rgba(10, 10, 10, 0.3) 50%, rgba(10, 10, 10, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--spacing-sm);
    display: block;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
}

/* Collections Grid */
.collections-section {
    background-color: var(--color-black);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-white);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.collection-card {
    position: relative;
    height: 600px;
    overflow: hidden;
    overflow: hidden;
    cursor: pointer;
}

.collection-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.collection-card:hover .collection-img {
    transform: scale(1.05);
}

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--spacing-md);
    transition: background 0.4s ease;
}

.collection-card:hover .collection-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.collection-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.collection-link {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.collection-card:hover .collection-link {
    opacity: 1;
    transform: translateY(0);
}

/* About Section */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-text {
    padding-right: var(--spacing-lg);
}

.about-text p {
    color: var(--color-gray);
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-gold);
    z-index: 0;
}

.about-image img {
    position: relative;
    z-index: 1;
    filter: brightness(0.9);
}

/* Footer */
.site-footer {
    background-color: #1c1c1c;
    /* Slightly lighter than pure black, or #1a1a1a */
    /* Looking at image, it's very dark gray or black. */
    background-color: #121212;
    padding: 4rem 0 2rem;
    color: #fff;
    border-top: none;
    position: relative;
}

.footer-top-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.footer-col {
    flex: 1;
    min-width: 160px;
    margin-bottom: 2rem;
}

/* Adjust column widths specifically if needed */
.footer-col:nth-child(4) {
    flex: 2;
    /* Email col is wider */
}

.footer-heading {
    font-size: 0.8rem;
    color: #888;
    /* Gray headers */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-email-link {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 3rem;
    display: inline-block;
}

.newsletter-section {
    margin-top: 3rem;
    max-width: 300px;
}

.newsletter-label {
    display: block;
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.newsletter-form-simple {
    border-bottom: 1px solid #444;
    margin-bottom: 0.5rem;
}

.newsletter-form-simple input {
    background: transparent;
    border: none;
    width: 100%;
    color: #fff;
    padding: 0.5rem 0;
    font-size: 1rem;
    outline: none;
}

.newsletter-text {
    color: #fff;
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.footer-address {
    font-size: 0.95rem;
    color: #fff;
    text-transform: uppercase;
}

/* Footer Bottom */
.footer-middle {
    margin-bottom: 3rem;
}

.footer-region span {
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: none;
    padding-top: 0;
    font-size: 0.7rem;
    color: #666;
    text-transform: uppercase;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom-center {
    display: flex;
    gap: 2rem;
}

.footer-bottom-center a {
    color: #666;
    transition: color 0.3s;
}

.footer-bottom-center a:hover {
    color: #fff;
}

/* Accessibility Widget */
.accessibility-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #4a6bff;
    /* Blue */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
}

@media (max-width: 768px) {
    .footer-top-grid {
        flex-direction: column;
    }

    .footer-col {
        margin-bottom: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-bottom-center {
        margin: 1rem 0;
        flex-direction: column;
        gap: 0.5rem;
    }
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* New Collections Section */
.new-collections-section {
    background-color: #fff;
    padding-bottom: 2rem;
}

.collections-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid transparent;
}

.collections-header h2 {
    font-size: 2rem;
    color: #121212;
    font-weight: 400;
    margin: 0;
    text-transform: uppercase;
}

.view-all-link {
    font-size: 0.9rem;
    color: #555;
    text-transform: capitalize;
    font-weight: 500;
}

.collections-dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.collection-dual-card {
    background-color: #f5f5f5;
    /* Light gray card background */
    display: flex;
    flex-direction: column;
    height: 600px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.collection-dual-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.card-image-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-color: #f2f2f2;
    overflow: hidden;
}

.card-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.collection-dual-card:hover .card-image-wrapper img {
    transform: scale(1.05);
}

.card-content-area {
    padding: 1.5rem 2rem;
    background-color: #f5f5f5;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.card-text-group h3 {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.card-text-group p {
    font-size: 0.8rem;
    color: #6c85c3;
    margin: 0;
    line-height: 1.4;
    max-width: 350px;
}

.card-arrow-icon {
    font-size: 1.2rem;
    color: #333;
    transition: transform 0.3s ease;
}

.collection-dual-card:hover .card-arrow-icon {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .collections-dual-grid {
        grid-template-columns: 1fr;
    }

    .collection-dual-card {
        height: 500px;
    }
}

/* Top Seller Section */

/* Top Seller Section */
.top-seller-section {
    background-color: #fcfcfc;
    padding-bottom: 4rem;
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-title-simple {
    font-size: 2rem;
    font-weight: 400;
    color: #121212;
    text-transform: uppercase;
    margin: 0;
}

.slider-controls {
    display: flex;
    gap: 1rem;
}

.slider-arrow {
    background: transparent;
    border: none;
    color: #888;
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.3s;
}

.slider-arrow:hover {
    color: #121212;
}

.product-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
    /* Hide scrollbar */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE */
}

.product-slider::-webkit-scrollbar {
    display: none;
}

.product-card {
    flex: 0 0 calc(20% - 1.2rem);
    /* 5 items row approx */
    min-width: 220px;
    background: #fff;
    padding: 1rem;
    position: relative;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
}

.free-shipping-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 0.6rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.product-img-wrapper {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    overflow: hidden;
}

.product-img-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.08);
}

.product-info {
    margin-top: auto;
}

.add-to-cart-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #ccc;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.add-to-cart-text {
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    margin-left: 0;
    transition: all 0.4s ease;
    text-decoration: underline;
    color: #121212;
    font-weight: 600;
    display: inline-block;
    vertical-align: middle;
}

.product-card:hover .add-to-cart-text {
    opacity: 1;
    max-width: 100px;
    margin-left: 5px;
}

.product-card:hover .add-to-cart-link {
    color: #121212;
}

.product-title-row {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 0.85rem;
    color: #333;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

.product-price {
    display: block;
    font-size: 0.85rem;
    color: #333;
    font-weight: 600;
    margin-left: 1.3rem;
    /* Align with text start */
}

@media (max-width: 1200px) {
    .product-card {
        flex: 0 0 calc(25% - 1.2rem);
    }
}

@media (max-width: 1024px) {
    .product-card {
        flex: 0 0 calc(33.33% - 1rem);
    }
}

@media (max-width: 768px) {
    .product-card {
        flex: 0 0 calc(50% - 0.75rem);
        min-width: 200px;
    }

    .section-title-simple {
        font-size: 1.5rem;
    }
}

/* FAQ Section */
.faq-section {
    background-color: #f9f9f9;
    /* Light background */
    color: var(--color-black);
    padding: var(--spacing-xxl) 0;
    /* More padding */
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-xl);
}

.faq-label h2 {
    font-size: 2.5rem;
    color: var(--color-black);
    font-weight: 400;
    margin: 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-toggle {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-black);
    cursor: pointer;
    text-align: left;
    transition: color 0.3s;
}

.faq-toggle:hover {
    color: var(--color-gold);
}

.faq-toggle .icon {
    font-size: 1.5rem;
    font-weight: 300;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-content p {
    padding-bottom: 1.5rem;
    color: #555;
    line-height: 1.6;
}

.faq-item.active .faq-content {
    max-height: 200px;
    /* Arbitrary height for expansion */
}

.faq-item.active .faq-toggle .icon {
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .faq-label h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
}


/* Mobile Responsive */
@media (max-width: 1024px) {
    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

/* Mobile Menu Toggle - Base Style */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2000;
    padding: 0.5rem;
}

/* Tablet & Mobile Header (Up to 1024px) */
@media (max-width: 1024px) {
    .menu-toggle {
        display: block;
    }

    .site-header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: auto;
        padding: 1rem;
        position: relative;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: #121212;
        z-index: 1999;
        padding: 6rem 2rem 2rem;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 5px 0 25px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
    }

    .main-navigation.toggled {
        left: 0;
    }

    .main-navigation ul {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0;
        margin-top: 0;
    }

    .main-navigation ul li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .main-navigation a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        width: 100%;
    }

    .logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: auto;
        z-index: 1001;
    }

    .logo img {
        height: 40px;
        width: auto;
    }

    /* Mega Menu on Mobile */
    .main-navigation .mega-menu-item>.sub-menu {
        position: static;
        width: 100%;
        margin-left: 0;
        padding: 0 0 1rem 1rem;
        background: transparent;
        border: none;
        box-shadow: none;
        display: none !important;
        opacity: 1;
        visibility: visible;
        transform: none;
        flex-direction: column;
        gap: 1.5rem;
    }

    .main-navigation .mega-menu-item.is-active>.sub-menu {
        display: flex !important;
    }

    /* Adjust Mega Menu Columns for Mobile */
    .mega-col-large,
    .mega-col-list {
        min-width: 0;
        border: none;
        padding: 0;
    }

    .mega-hdr {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        color: var(--color-gold);
        margin-top: 1rem;
    }

    .mega-col-large .sub-menu-items li a {
        font-size: 1.1rem !important;
        margin-bottom: 0.5rem;
    }

    .header-right {
        gap: 0.8rem;
    }
}

/* Mobile Specific Styles (Up to 768px) */
@media (max-width: 768px) {
    .collection-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-split {
        grid-template-columns: 1fr;
    }

    .about-text {
        padding-right: 0;
        order: 2;
    }

    .about-image {
        order: 1;
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

/* Reels Section */
/* Reels Section */
/* Reels Section */
.reels-container {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md) 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    /* Momentum scrolling on iOS */
    padding-bottom: 2rem;
    /* Space for scrollbar */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.reels-container::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.reels-container {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

@media (max-width: 1024px) {
    /* No special grid changes needed for flex, just maybe gap adjustment if needed */
}

@media (max-width: 600px) {
    /* No special grid changes needed for flex */
}


.reel-card {
    flex: 0 0 260px;
    height: 480px;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    scroll-snap-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    /* Subtle Gold Border */
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

/* Hover Effect: Scale Up */
.reel-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--color-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
    /* Gold Glow */
    z-index: 10;
}

.reel-video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    transition: filter 0.3s ease;
}

.reel-card:hover .reel-video-placeholder {
    filter: brightness(1.1);
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.5rem;
    transition: all 0.4s ease;
    opacity: 0.8;
}

.reel-card:hover .play-button {
    background: var(--color-gold);
    color: var(--color-black);
    transform: scale(1.2);
    opacity: 1;
    border-color: var(--color-gold);
}

.reel-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.reel-card:hover .reel-info {
    transform: translateY(0);
}

.user-avatar {
    font-size: 1.8rem;
    color: var(--color-gold);
    background: rgba(255, 255, 255, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-gold);
}

.user-text {
    display: flex;
    flex-direction: column;
}

.user-text strong {
    font-size: 0.95rem;
    color: var(--color-white);
    letter-spacing: 0.05em;
}

.user-text span {
    font-size: 0.8rem;
    color: #ccc;
    margin-top: 2px;
}

/* Page Contact Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

.contact-info-item {
    margin-bottom: 2rem;
}

.contact-info-item h3 {
    color: var(--color-gold);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    background: var(--color-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    margin-bottom: 1rem;
    font-family: var(--font-body);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--color-gold);
    outline: none;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Marquee */
.marquee-wrapper {
    background: var(--color-gold);
    color: var(--color-black);
    padding: 0.8rem 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.marquee-content span {
    margin: 0 2rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Spotlight Section */
.spotlight-section {
    padding: 0;
}

.spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}

.spotlight-image {
    background-size: cover;
    background-position: center;
}

.spotlight-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-xl);
}

@media (max-width: 1024px) {
    .spotlight-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .spotlight-image {
        min-height: 400px;
    }

    .spotlight-content {
        padding: var(--spacing-lg);
        align-items: center;
        text-align: center;
    }

    .spotlight-content {
        padding: var(--spacing-lg);
        align-items: center;
        text-align: center;
    }
}

/* Footer Big Logo */
.footer-big-logo {
    font-size: 10vw;
    /* Responsive huge size */
    font-family: var(--font-heading);
    /* Or a specific font if needed */
    color: #fff;
    text-align: center;
    width: 100%;
    line-height: 1;
    margin-bottom: 4rem;
    font-weight: 400;
    /* Adjust based on font weight availability */
    letter-spacing: -0.02em;
}

/* Reviews Section */
.reviews-section {
    background-color: #fff;
    padding-bottom: 4rem;
    padding-top: 1rem;
}

.reviews-heading {
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #121212;
    font-weight: 400;
    text-transform: uppercase;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
}

.reviews-slider-container {
    position: relative;
    width: 100%;
    margin-top: 2rem;
}

.reviews-slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
}

.reviews-slider::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 calc(20% - 12px);
    background: #000;
    aspect-ratio: 9/16;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    scroll-snap-align: start;
}

.review-video-thumbnail {
    width: 100%;
    height: 100%;
    position: relative;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.review-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.review-card:hover .review-video {
    transform: scale(1.05);
}

.review-video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    opacity: 0.95;
}

.review-card:hover .review-video-thumbnail img {
    transform: scale(1.05);
    opacity: 1;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.play-button-overlay i {
    color: #fff;
    font-size: 1.2rem;
    margin-left: 3px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.review-card:hover .play-button-overlay {
    background: rgba(255, 255, 255, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.review-card:hover .play-button-overlay i {
    color: #000;
    filter: none;
}

.reviews-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
    align-items: center;
}

.reviews-pagination .dot {
    width: 8px;
    height: 8px;
    background-color: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.reviews-pagination .dot.active {
    background-color: #121212;
    transform: scale(1.2);
}

@media (max-width: 1024px) {
    .review-card {
        flex: 0 0 calc(33.333% - 10px);
    }
}

@media (max-width: 600px) {
    .review-card {
        flex: 0 0 calc(50% - 10px);
    }
}

/* =========================================
   About Page Styles
   ========================================= */

/* Hero Section (Text Only) */
.about-hero-section {
    padding: 10rem 0 6rem;
    background-color: #f8f8f8;
    /* Light gray/white bg */
    border-bottom: 1px solid #eee;
}

.breadcrumb {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 3rem;
    text-transform: capitalize;
    display: block;
}

.breadcrumb a {
    color: #333;
    text-decoration: none;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.about-hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    text-transform: uppercase;
    color: #111;
    font-weight: 400;
    font-family: var(--font-heading, "Playfair Display", serif);
    /* Use heading font */
    margin: 0;
}

.about-hero-desc {
    padding-top: 1rem;
}

.about-hero-desc p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 1.5rem;
}

.about-hero-desc p strong {
    font-weight: 600;
    color: #000;
}

/* Wide Banner Image */
.about-wide-banner {
    width: 100%;
    height: 80vh;
    /* Large height */
    overflow: hidden;
    position: relative;
    background-color: #000;
}

.about-wide-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Mission Section (Text Centered/Split) */
.about-mission-section {
    padding: 8rem 0;
    background-color: #f8f8f8;
}

.about-mission-container {
    max-width: 900px;
    /* Constrained width */
    margin: 0 auto;
    text-align: left;
    /* Image shows likely left aligned title, or centered? Let's assume left based on grid */
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.about-mission-title {
    font-size: 3rem;
    font-weight: 400;
    color: #111;
    line-height: 1.2;
    font-family: var(--font-heading);
}

.about-mission-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Story Section (Image Left, Text Right) */
.about-story-section {
    padding: 0;
    background-color: #f8f8f8;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.about-story-image {
    height: 100vh;
    /* Full viewport height for impact */
    overflow: hidden;
}

.about-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-story-content {
    padding: 6rem;
    background-color: #f8f8f8;
}

.about-story-content h2 {
    font-size: 3rem;
    color: #111;
    margin-bottom: 2rem;
    font-weight: 400;
    font-family: var(--font-heading);
    text-transform: none;
    /* Image "At Jo Milano Paris..." is sentence case/standard */
}

.about-story-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-story-content-alt {
    padding: 6rem;
    background-color: #f8f8f8;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-story-content-alt h2 {
    font-size: 3rem;
    color: #111;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-story-content-alt p {
    font-size: 1rem;
    color: #555;
    max-width: 400px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {

    .about-hero-grid,
    .about-story-grid {
        grid-template-columns: 1fr;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-story-content {
        padding: 4rem 2rem;
    }

    .about-story-content-alt {
        padding: 4rem 2rem;
    }

    .about-story-image {
        height: 60vh;
    }

    .about-wide-banner {
        height: 50vh;
    }


    /* About Page Specific Header Adjustments */
    body.page-template-page-about .site-header .main-navigation ul li a,
    body.page-template-page-about .site-header .logo a,
    body.page-template-page-about .site-header .header-right a,
    body.page-template-page-about .site-header .header-right i,
    body.page-template-page-about-php .site-header .main-navigation ul li a,
    body.page-template-page-about-php .site-header .logo a,
    body.page-template-page-about-php .site-header .header-right a,
    body.page-template-page-about-php .site-header .header-right i,
    body.page-template-about-page .site-header .main-navigation ul li a,
    body.page-template-about-page .site-header .logo a,
    body.page-template-about-page .site-header .header-right a,
    body.page-template-about-page .site-header .header-right i {
        color: #111111 !important;
    }

    body.page-template-page-about .site-header,
    body.page-template-page-about-php .site-header,
    body.page-template-about-page .site-header {
        background-color: transparent;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        /* Subtle dark border */
    }

    /* Also ensure hover state is visible/distinct */
    body.page-template-page-about .site-header .main-navigation a:hover,
    body.page-template-page-about-php .site-header .main-navigation a:hover,
    body.page-template-about-page .site-header .main-navigation a:hover {
        color: var(--color-gold) !important;
    }

}

/* =========================================
   News / Blog Page Styles
   ========================================= */

/* Ensure Header is Black on News Page */
body.blog .site-header .main-navigation ul li a,
body.blog .site-header .logo a,
body.blog .site-header .header-right a,
body.blog .site-header .header-right i {
    color: #111111 !important;
}

body.blog .site-header {
    background-color: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body.blog .site-header .main-navigation a:hover {
    color: var(--color-gold) !important;
}

/* Page Layout */
.news-page-container {
    padding-top: 15rem;
    /* Space for fixed header + breathing room */
    padding-bottom: 5rem;
    max-width: 1400px;
    /* Wide container */
    margin: 0 auto;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

.news-breadcrumb {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.news-breadcrumb a {
    color: #333;
    text-decoration: none;
}

.news-page-title {
    font-size: 4rem;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 3rem;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
    color: #111;
}

/* Filters */
.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.filter-pill {
    display: inline-block;
    padding: 0.5rem 2rem;
    border: 1px solid #111;
    border-radius: 50px;
    /* Pill shape */
    color: #111;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: capitalize;
    transition: all 0.3s ease;
    background: transparent;
}

.filter-pill:hover,
.filter-pill.active {
    background-color: #f0f0f0;
    /* Design shows simple outline, maybe active fills? Let's keep simple clean look */
}

/* Post Row Layout */
.blog-post-row {
    display: grid;
    grid-template-columns: 350px 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: flex-start;
    padding-bottom: 4rem;
    border-bottom: 1px solid #eee;
}

.blog-post-row:last-child {
    border-bottom: none;
}

.post-col-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.blog-placeholder-img {
    width: 100%;
    height: 220px;
    background-color: #f0f0f0;
    border-radius: 4px;
}

/* Middle Col */
.post-col-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.5rem;
}

.post-date {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 0.05em;
}

.post-title {
    font-size: 2rem;
    line-height: 1.2;
    font-family: var(--font-heading);
    margin: 0.5rem 0 1rem;
    font-weight: 400;
}

.post-title a {
    color: #111;
    text-decoration: none;
    transition: color 0.3s;
}

.post-title a:hover {
    color: #555;
}

.post-cats {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 0.1em;
    margin-top: auto;
    /* Push to bottom if needed, or just flow */
}

/* Right Col */
.post-col-excerpt {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

/* Pagination */
.news-pagination-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 2rem;
    margin-top: -1px;
    /* Overlap border */
}

.btn-load-more {
    padding: 0.8rem 2.5rem;
    border: 1px solid #111;
    background: transparent;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #111;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-load-more:hover {
    background: #111;
    color: #fff;
}

.pagination-right .pagination {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.pagination-right .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    color: #111;
    font-size: 1rem;
    transition: all 0.3s;
}

.pagination-right .page-numbers.current {
    background-color: #111;
    color: #fff;
}

.pagination-right .page-numbers:hover:not(.current) {
    background-color: #f0f0f0;
}

/* Responsive */
@media (max-width: 1024px) {
    .blog-post-row {
        grid-template-columns: 1fr;
        /* Stack vertically */
        gap: 1.5rem;
    }

    .post-col-image img,
    .blog-placeholder-img {
        height: auto;
        aspect-ratio: 16/9;
    }

    .news-page-title {
        font-size: 3rem;
    }

    .news-pagination-row {
        flex-direction: column;
        /* Stack buttons */
        gap: 2rem;
    }

}

/* =========================================
   Contact Page Styles
   ========================================= */

body.page-template-page-contact,
body.page-template-contact-page {
    background-color: #ffffff !important;
}

/* Ensure Header is Black on Contact Page */
body.page-template-page-contact .site-header .main-navigation ul li a,
body.page-template-page-contact .site-header .logo a,
body.page-template-page-contact .site-header .header-right a,
body.page-template-page-contact .site-header .header-right i,
body.page-template-contact-page .site-header .main-navigation ul li a,
body.page-template-contact-page .site-header .logo a,
body.page-template-contact-page .site-header .header-right a,
body.page-template-contact-page .site-header .header-right i {
    color: #111111 !important;
}

body.page-template-page-contact .site-header,
body.page-template-contact-page .site-header {
    background-color: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body.page-template-page-contact .site-header .main-navigation a:hover,
body.page-template-contact-page .site-header .main-navigation a:hover {
    color: var(--color-gold) !important;
}

/* Fix for Dark Text on White Page */
body.page-template-page-contact,
body.page-template-contact-page {
    color: #111 !important;
}

body.page-template-page-contact h1,
body.page-template-page-contact h2,
body.page-template-page-contact h3,
body.page-template-page-contact h4,
body.page-template-contact-page h1,
body.page-template-contact-page h2,
body.page-template-contact-page h3,
body.page-template-contact-page h4 {
    color: #111 !important;
}

/* Page Layout */
.contact-page-container {
    padding-top: 15rem;
    /* Header space */
    padding-bottom: 5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

.contact-breadcrumb {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.contact-breadcrumb a {
    color: #333;
    text-decoration: none;
}

.contact-page-title {
    font-size: 4rem;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 4rem;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
    color: #111;
}

/* Page Contact Styles Refined */
.contact-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    /* Reduced gap to bring columns closer like reference */
}

/* Gray Content Blocks */
.contact-gray-block {
    background-color: #f5f5f5;
    padding: 3.5rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-form-block {
    background-color: #f5f5f5;
    padding: 3.5rem;
    height: 100%;
    /* Fill the column */
}

/* Contact Details Typography */
.contact-details-row {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.contact-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-label {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
}

.detail-value {
    font-size: 1rem;
    color: #333;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-block-footer {
    font-size: 0.95rem;
    color: #666;
    margin-top: auto;
    padding-top: 2rem;
}

.contact-form-heading {
    font-size: 1rem;
    color: #444;
    font-weight: 400;
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

/* Base Form Styling for Theme & Elementor */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="url"],
textarea,
select {
    width: 100%;
    padding: 1.2rem;
    background: #f5f5f5;
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: #121212;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-radius: 0;
}

input:focus,
textarea:focus {
    border-color: var(--color-gold);
    background: #fff;
    outline: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

/* Button Refinement */
.btn-contact-submit,
.elementor-button {
    width: 100%;
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid #111;
    border-radius: 50px !important;
    font-size: 0.9rem;
    color: #111;
    cursor: pointer;
    text-transform: capitalize;
    /* "Send" is Capitalize in image */
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    margin-top: 1rem;
    display: inline-block;
    text-align: center;
}

.btn-contact-submit:hover,
.elementor-button:hover {
    background: #111;
    color: #fff !important;
}

/* Elementor Specific Fixes */
.elementor-field-group {
    margin-bottom: 2rem !important;
}

.elementor-field-label {
    font-size: 0.75rem !important;
    color: #999 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    margin-bottom: 0.8rem !important;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-layout-grid {
        grid-template-columns: 1fr;
    }

    .contact-page-title {
        font-size: 3rem;
    }
}

/* =========================================
   Loved By Creators Page Styles
   ========================================= */

/* Ensure Header is Black */
body.page-template-page-loved-by-creators,
body.page-template-loved-by-creators {
    background-color: #ffffff !important;
}

body.page-template-page-loved-by-creators .site-header .main-navigation ul li a,
body.page-template-page-loved-by-creators .site-header .logo a,
body.page-template-page-loved-by-creators .site-header .header-right a,
body.page-template-page-loved-by-creators .site-header .header-right i {
    color: #111111 !important;
}

body.page-template-page-loved-by-creators .site-header {
    background-color: transparent;
    border-bottom: none;
    /* Looks clean in image */
}

body.page-template-page-loved-by-creators .site-header .main-navigation a:hover {
    color: var(--color-gold) !important;
}

/* Page Container */
.creators-page-container {
    padding-top: 15rem;
    padding-bottom: 5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

.creators-breadcrumb {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 4rem;
    /* Spacing before massive title */
    text-transform: capitalize;
}

.creators-breadcrumb a {
    color: #333;
    text-decoration: none;
}

/* Hero Title Section */
.creators-hero-title-section {
    margin-bottom: 4rem;
}

.creators-hero-title {
    font-family: var(--font-heading);
    /* Or a thinner font if available */
    font-weight: 100;
    /* Thin */
    line-height: 1;
    text-transform: uppercase;
    color: #111;
    display: flex;
    flex-direction: column;
    font-size: 10vw;
    /* Responsive scaling */
}

.creators-hero-title span {
    display: block;
}

.creators-hero-title .line-1 {
    text-align: left;
}

.creators-hero-title .line-center {
    text-align: center;
}

.creators-hero-title .line-right {
    text-align: right;
}

/* The ampersand needs to be positioned specifically if following the image strictly */
.creators-hero-title .line-right-amp {
    text-align: right;
    font-size: 8vw;
    margin-right: 5vw;
    line-height: 0.5;
}


/* Intro Section */
.creators-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 8rem;
}

.creators-intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

.creators-intro-text p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #333;
    max-width: 500px;
}

/* Creator Sections */
.creator-section {
    margin-bottom: 8rem;
}

.creator-name {
    font-size: 2.5rem;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 3rem;
    color: #111;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
}

/* Media Grids */
.creator-media-grid {
    display: grid;
    gap: 1.5rem;
}

.creator-media-grid.portrait-grid {
    grid-template-columns: repeat(4, 1fr);
}

.creator-media-grid.landscape-2-col {
    grid-template-columns: repeat(2, 1fr);
}

.video-card {
    position: relative;
    background-color: #000;
    overflow: hidden;
    cursor: pointer;
}

.portrait-grid .video-card {
    aspect-ratio: 9/16;
}

.landscape-2-col .video-card {
    aspect-ratio: 16/9;
}

.media-placeholder {
    width: 100%;
    height: 100%;
    background-color: #333;
    background-image: linear-gradient(45deg, #222 25%, #333 25%, #333 50%, #222 50%, #222 75%, #333 75%, #333 100%);
    background-size: 20px 20px;
    opacity: 0.8;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    backdrop-filter: blur(2px);
    font-size: 0.8rem;
}

/* Captions / Tags inside video */
.video-caption {
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 100%;
    text-align: center;
    color: #0f0;
    /* Green usually for subtitles shown in example */
    text-shadow: 0 1px 2px #000;
    font-weight: bold;
    font-size: 1.2rem;
    text-transform: uppercase;
    padding: 0 1rem;
}

.media-tag {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    color: #000;
    padding: 0.5rem 1rem;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    max-width: 80%;
    z-index: 2;
    /* Above play icon? */
    /* Wait, play icon might be behind or part of this. In image, text block is overlay. */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Pagination / Actions */
.creator-pagination {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.page-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: transparent;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
}

.page-dot.active {
    background-color: #111;
    color: #fff;
}

.creator-action-row {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.btn-buy-bonus {
    padding: 1rem 3rem;
    border: 1px solid #111;
    border-radius: 50px;
    text-decoration: none;
    color: #111;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-buy-bonus:hover {
    background-color: #111;
    color: #fff;
}


/* Responsive */
@media (max-width: 1024px) {
    .creators-intro-grid {
        grid-template-columns: 1fr;
    }

    .creators-intro-text {
        order: -1;
        /* Text first? or image? Let's check image. Usually stacking. */
    }

    .creator-media-grid.portrait-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .creator-media-grid.landscape-2-col {
        grid-template-columns: 1fr;
    }


}

/* =========================================
   Single Product Page Styles
   ========================================= */

/* Force White Background */
.single-post body {
    background-color: #fff !important;
    color: #121212 !important;
}

.product-details-container {
    background-color: #fff;
    color: #121212;
    padding: 2rem 0 6rem;
    /* Reduced top padding, header is handled below */
    position: relative;
    z-index: 10;
    margin-top: 100px;
    /* Space for static header */
}

/* Header Text Color Correction for Single Page */
.single-post .site-header {
    background-color: #fff;
    position: absolute;
    /* Keep absolute but ensure contrast */
    top: 40px;
    /* Below top bar */
    border-bottom: 1px solid #eee;
}

.single-post .site-header .main-navigation a,
.single-post .site-header .logo a,
.single-post .site-header .header-right a {
    color: #121212 !important;
}

/* Page Layout */
.product-details-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    /* Image slightly wider */
    gap: 4rem;
    align-items: start;
}

/* Breadcrumbs */
.product-breadcrumbs {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 0.5rem;
    font-weight: 400;
    font-family: var(--font-body);
}

.product-breadcrumbs a {
    color: #888;
    text-decoration: none;
}

.product-breadcrumbs span {
    margin: 0 4px;
    color: #aaa;
}

/* Left: Gallery */
.product-gallery {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.product-gallery img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Right: Info */
.product-info-col {
    padding-top: 0;
}

/* Title & Price */
.single-product-title {
    font-family: var(--font-body);
    /* Looks sans-serif in image */
    font-size: 2.2rem;
    font-weight: 300;
    /* Light weight */
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    color: #121212;
    letter-spacing: 0.5px;
}

.single-product-price {
    font-family: var(--font-body);
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    display: block;
    color: #121212;
}

.product-sku {
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 2rem;
    display: block;
    font-weight: 400;
}

/* Description */
.product-short-desc {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 400;
}

.product-upc {
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 2.5rem;
    display: block;
}

/* Size Selector */
.product-options {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    /* Label inline if needed, but image shows stacked? */
    /* Image shows "Size" label left aligned with boxes? No, "Size" label is likely separate */
    display: grid;
    grid-template-columns: 50px 1fr;
    /* Label fixed width, options rest */
    gap: 1rem;
    align-items: start;
}

.option-label {
    font-size: 0.9rem;
    font-weight: 400;
    color: #333;
    padding-top: 0.5rem;
}

.size-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.size-btn {
    border: 1px solid #e0e0e0;
    background: #f9f9f9;
    width: 75px;
    height: 75px;
    /* Square-ish */
    font-size: 0.75rem;
    color: #aaa;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
    transition: all 0.2s;
    text-align: center;
}

.size-btn.active {
    background-color: #ddd;
    /* Darker grey for active */
    border-color: #ccc;
    color: #121212;
    font-weight: 600;
}

.size-btn.disabled {
    text-decoration: line-through;
    opacity: 0.6;
    cursor: not-allowed;
}

/* Actions Row: Quantity + Add to Cart */
.cart-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    height: 50px;
}

/* Quantity Box Styled like Image */
.qty-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f2f2f2;
    /* Light grey bg */
    border: 1px solid #e0e0e0;
    padding: 0 15px;
    width: 160px;
    height: 100%;
    font-size: 0.9rem;
    color: #333;
}

.qty-label {
    margin-right: auto;
    color: #333;
    font-weight: 500;
}

.qty-btn {
    background: none;
    border: none;
    font-size: 1.1rem;
    color: #555;
    cursor: pointer;
    padding: 0 8px;
    font-weight: 300;
}

.qty-val {
    font-weight: 400;
    min-width: 20px;
    text-align: center;
}

/* Add to Cart Button */
.btn-add-cart-large {
    background-color: #121212;
    color: #fff;
    border: none;
    padding: 0 2rem;
    height: 100%;
    text-transform: capitalize;
    /* Image says "Add to Cart" capitalized? yes "Add to Cart" */
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    min-width: 180px;
}

.btn-add-cart-large:hover {
    background-color: #000;
    opacity: 0.9;
}

/* Accordions */
.details-accordion {
    border-top: 1px solid #eee;
}

.accordion-row {
    border-bottom: 1px solid #eee;
}

.accordion-header {
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: #333;
    font-weight: 400;
    background: none;
    /* remove default button styles if any */
    border: none;
    width: 100%;
    text-align: left;
}

.accordion-icon {
    font-size: 1.2rem;
    color: #333;
    font-weight: 300;
}

.accordion-body {
    display: none;
    padding-bottom: 1rem;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .product-details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cart-actions {
        flex-direction: column;
        height: auto;
    }

    .qty-wrapper,
    .btn-add-cart-large {
        width: 100%;
        height: 50px;
    }
}

/* =========================================
   My Account Page (Luxury/Dark)
   ========================================= */

/* Overall Page Layout */
.woocommerce-account {
    background-color: #000 !important;
    /* Force dark background */
    color: #fff !important;
}

.woocommerce-account .site-content {
    padding: 100px 0;
}

/* Container limits */
.woocommerce-account .woocommerce {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hide standard title if possible, branding via CSS header */
.woocommerce-account h1.page-title,
.woocommerce-account .entry-title {
    text-align: center;
    color: var(--color-gold) !important;
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 300;
    margin-bottom: 3rem;
    font-family: var(--font-heading);
    position: relative;
    display: inline-block;
    width: 100%;
}

.woocommerce-account h1.page-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--color-gold);
    margin: 20px auto 0;
}

/* ============================
   Login / Register Forms
   ============================ */

/* The two columns (if both present) */
.u-columns.col2-set {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 4rem;
    justify-content: center;
}

.u-column1,
.u-column2 {
    flex: 1;
    min-width: 320px;
    background: rgba(255, 255, 255, 0.03);
    /* Slight glass effect */
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 4px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.u-column1:hover,
.u-column2:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Headings inside forms */
.woocommerce-account h2 {
    color: #fff !important;
    font-size: 1.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    text-align: center;
    font-family: var(--font-body);
}

/* Form Styling */
.woocommerce-form-login,
.woocommerce-form-register {
    border: none;
    padding: 0;
    margin: 0;
}

/* Labels */
.woocommerce-form-row label {
    display: block;
    color: #aaa;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

/* Inputs */
.woocommerce-Input {
    width: 100%;
    background-color: #111 !important;
    border: 1px solid #333 !important;
    color: #fff !important;
    padding: 1rem !important;
    border-radius: 50px !important;
    /* Pill shape */
    outline: none;
    transition: border-color 0.3s;
}

.woocommerce-Input:focus {
    border-color: var(--color-gold) !important;
}

/* Button */
.woocommerce-Button {
    width: 100%;
    background-color: transparent !important;
    color: #fff !important;
    border: 1px solid #fff !important;
    padding: 1rem 2rem !important;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.2em;
    border-radius: 50px !important;
    margin-top: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    display: block;
}

.woocommerce-Button:hover {
    background-color: #fff !important;
    color: #000 !important;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* Remember Me & Lost Password */
.woocommerce-form-login__rememberme {
    margin-top: 1rem;
    color: #aaa;
    font-size: 0.9rem;
}

.woocommerce-LostPassword {
    margin-top: 1rem;
    text-align: center;
}

.woocommerce-LostPassword a {
    color: var(--color-gold);
    font-size: 0.85rem;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.woocommerce-LostPassword a:hover {
    border-bottom-color: var(--color-gold);
}

/* ============================
   Logged In Dashboard
   ============================ */
.woocommerce-MyAccount-navigation {
    width: 25%;
    float: left;
    margin-right: 5%;
    background: #111;
    padding: 2rem;
    border-radius: 4px;
    border: 1px solid #222;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-MyAccount-navigation ul li {
    margin-bottom: 0.5rem;
}

.woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 1rem;
    color: #888;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    transition: all 0.3s;
    border-left: 2px solid transparent;
}

.woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-MyAccount-navigation ul li.is-active a {
    color: #fff;
    background: #1a1a1a;
    border-left-color: var(--color-gold);
    padding-left: 1.5rem;
}

.woocommerce-MyAccount-content {
    width: 70%;
    float: right;
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.woocommerce-MyAccount-content p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
}

.woocommerce-MyAccount-content a {
    color: var(--color-gold);
}

/* Responsive */
@media (max-width: 768px) {

    .woocommerce-MyAccount-navigation,
    .woocommerce-MyAccount-content {
        width: 100%;
        float: none;
        margin: 0 0 2rem 0;
    }
}

/* ============================
   Custom Login Page Design
   ============================ */
/* Ensure the page background is light gray */
#customer_login {
    background-color: #f7f7f7;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.custom-login-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 480px;
    text-align: center;
}

.brand-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #000;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem !important;
    text-align: left;
    color: #000;
}

.form-subtitle {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem !important;
    text-align: left;
}

.btn-continue-shop {
    width: 100%;
    background-color: #5a31f4;
    color: #fff;
    border: none;
    padding: 0.8rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 1.5rem;
    transition: background-color 0.2s;
}

.btn-continue-shop:hover {
    background-color: #4820e0;
}

.login-separator {
    display: flex;
    align-items: center;
    text-align: center;
    color: #888;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.login-separator::before,
.login-separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ddd;
}

.login-separator span {
    padding: 0 10px;
}

/* Form Styles */
.woocommerce-form-login {
    text-align: left;
}

.woocommerce-form-login p.form-row {
    margin-bottom: 1rem;
}

.woocommerce-Input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    /* Image has rounded inputs */
    font-size: 1rem;
    color: #333;
}

.woocommerce-Input::placeholder {
    color: #888;
}

.btn-continue-login {
    width: 100% !important;
    background-color: #0056b3 !important;
    /* Blue from image */
    color: #fff !important;
    border: none !important;
    padding: 0.8rem !important;
    border-radius: 4px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: background-color 0.2s;
    float: none !important;
}

.btn-continue-login:hover {
    background-color: #004494 !important;
}

.lost_password {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.85rem;
}

.login-footer-links {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.login-footer-links a {
    color: #0056b3;
    font-size: 0.85rem;
    text-decoration: none;
}

.login-footer-links a:hover {
    text-decoration: underline;
}

/* Hide standard H2 from woo page if outside form-login template? 
   Usually my-account title is handled by page.php. 
   We might need to hide .entry-header on my-account page via CSS 
   or the user accepts it. */
.page-id-8 .entry-header,
/* Standard ID? */
.woocommerce-account .entry-header {
    display: none;
}

/* Hide breadcrumbs on login page for clean look */
.woocommerce-account .woocommerce-breadcrumb {
    display: none;
}


/* ============================
   Single Product Page Redesign
   ============================ */

.single-product-page {
    background-color: #fff !important;
    color: #121212 !important;
}

.product-details-container {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.product-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 900px) {
    .product-details-grid {
        grid-template-columns: 1fr;
    }
}

/* Gallery */
.product-gallery .product-main-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background: #f9f9f9;
    /* Fallback/Placeholder bg */
}

/* Product Info Column */
.product-info-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Breadcrumbs */
.product-breadcrumbs {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    font-family: var(--font-body);
    margin-bottom: 0.5rem;
}

.product-breadcrumbs a {
    color: #888;
    text-decoration: none;
}

.woocommerce-breadcrumb {
    margin: 0;
    padding: 0;
    font-size: inherit;
}

/* Title */
.single-product-title {
    font-family: var(--font-body);
    font-size: 2.5rem;
    font-weight: 400;
    text-transform: uppercase;
    color: #121212;
    margin: 0;
    line-height: 1.25;
}

/* Price */
.single-product-price,
.single-product-price .amount {
    font-family: var(--font-body);
    font-size: 2rem;
    color: #121212;
    font-weight: 400;
}

/* Price row & SKU */
.price-sku-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    width: 100%;
}

.product-sku,
.upc-text {
    font-size: 0.85rem;
    color: #888;
    font-family: var(--font-body);
    margin-top: 0.2rem;
}

/* Description */
.product-short-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin-top: 1.5rem;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 2rem;
}

.product-short-desc p {
    margin-bottom: 1rem;
}

/* Add to Cart Actions */
.cart-actions-wrapper {
    margin-top: 1rem;
}

.simple-cart-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
}

.qty-btn-group {
    display: flex;
    align-items: stretch;
    gap: 1.5rem;
    width: 100%;
    max-width: 500px;
    /* Constraint */
}

/* Styled Qty Wrapper similar to [ Quantity - 1 + ] */
.qty-wrapper-styled {
    display: flex;
    align-items: center;
    border: 1px solid #e5e5e5;
    padding: 0 1rem;
    gap: 0.5rem;
    min-width: 180px;
    height: 55px;
    /* Fixed height */
    background: #fff;
}

.qty-label-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #666;
    margin-right: auto;
    font-weight: 500;
}

.qty-control {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #333;
    padding: 0 0.5rem;
    line-height: 1;
    transition: color 0.3s;
}

.qty-control:hover {
    color: #000;
}

.qty-wrapper-styled .qty {
    width: 40px;
    border: none;
    text-align: center;
    font-size: 1rem;
    padding: 0;
    background: transparent;
    color: #121212;
    font-weight: 500;
}

/* Add to Cart Button */
.btn-add-cart-black {
    background-color: #000;
    color: #fff;
    border: none;
    height: 55px;
    padding: 0 2rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-family: var(--font-body);
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    flex: 1;
    /* Take remaining space */
}

.btn-add-cart-black:hover {
    background-color: #333;
    transform: translateY(-1px);
}

/* Accordions */
.details-accordion {
    margin-top: 3rem;
    border-top: 1px solid #e5e5e5;
    width: 100%;
}

.accordion-row {
    border-bottom: 1px solid #e5e5e5;
}

.accordion-header {
    padding: 1.2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    color: #333;
    transition: color 0.3s;
}

.accordion-header:hover {
    color: #000;
}

.accordion-header span:first-child {
    text-transform: capitalize;
}

.accordion-icon {
    font-size: 1.2rem;
    font-weight: 300;
    color: #666;
}

.accordion-body {
    display: none;
    padding-bottom: 1.5rem;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Related Products */
.related-products-wrapper {
    margin-top: 5rem;
    position: relative;
    border-top: 1px solid #eee;
    padding-top: 3rem;
}

.related-heading {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1.8rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: #121212;
    border-left: 3px solid transparent;
    /* Align visually */
}

/* Arrows - visual only for now unless we add slider JS */
.related-arrows {
    position: absolute;
    top: 3.5rem;
    right: 0;
    display: flex;
    gap: 1rem;
    color: #888;
}

.related-arrows span {
    cursor: pointer;
}

.related-products .products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.related-products .product {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.related-products .product img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: contain;
    margin-bottom: 1rem;
    background: #fff;
    transition: transform 0.3s;
}

.related-products .product:hover img {
    transform: scale(1.05);
}

.related-products .woocommerce-loop-product__title {
    font-size: 1rem;
    color: #121212;
    font-family: var(--font-body);
    font-weight: 600;
    margin: 0.5rem 0;
    text-transform: uppercase;
}

.related-products .price {
    color: #121212;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.related-products .price del {
    color: #999;
    margin-right: 0.5rem;
}

.related-products .price ins {
    text-decoration: none;
}

/* Override standard woo button in related if present */
.related-products .add_to_cart_button {
    display: none;
    /* Hide add to cart in grid if user wants clean look like image */
}

/* Image shows "FROM $150". If they are variable, it says From. */

/* Responsive Related */
@media (max-width: 1024px) {
    .related-products .products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .related-products .products {
        grid-template-columns: 1fr;
    }

    .qty-btn-group {
        flex-direction: column;
    }

    .qty-wrapper-styled {
        width: 100%;
    }
}

/* ============================
   Custom Cart Page Design (Enhanced)
   ============================ */

.custom-cart-wrapper {
    background-color: #000;
    color: #fff;
    padding-top: 6rem;
    padding-bottom: 6rem;
    min-height: 90vh;
    font-family: 'Futura', 'Century Gothic', sans-serif;
    /* Fallback to theme font */
}

/* Luxurious Title */
.cart-page-title {
    font-size: 4rem;
    color: transparent;
    -webkit-text-stroke: 1px var(--color-gold);
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 4rem;
    letter-spacing: 0.2em;
    text-align: center;
    position: relative;
}

.cart-page-title::after {
    content: 'ALZAIN IMPORTS';
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.5em;
    color: #fff;
    margin-top: 1rem;
    opacity: 0.6;
    font-weight: 500;
    -webkit-text-stroke: 0px;
}

.cart-grid-layout {
    display: flex;
    gap: 6rem;
    align-items: flex-start;
}

/* Left: Items List */
.cart-items-section {
    flex: 2;
}

.cart-items-header {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    /* Match item row */
    gap: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.75rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* Individual Item Row */
.cart-item-row {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    /* Subtle glass effect */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    transition: all 0.4s ease;
}

.cart-item-row:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.3);
    /* Gold tint on hover */
    transform: translateY(-2px);
}

/* Thumbnail */
.product-thumbnail img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Details */
.product-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
}

.product-name a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.product-name a:hover {
    color: var(--color-gold);
}

.product-price {
    font-size: 0.95rem;
    color: #aaa;
    font-family: inherit;
}

.product-desc-excerpt {
    color: #777;
    font-size: 0.85rem;
    line-height: 1.4;
    max-width: 90%;
    margin-top: 0.3rem;
}

/* Quantity Control - Premium Pill Shape */
.quantity.qty-with-buttons {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.2rem 0.5rem;
    margin-top: 1rem;
}

.quantity.qty-with-buttons button {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1rem;
    padding: 0.2rem 0.8rem;
    cursor: pointer;
    transition: color 0.2s;
}

.quantity.qty-with-buttons button:hover {
    color: var(--color-gold);
}

.quantity.qty-with-buttons .qty {
    background: transparent;
    border: none;
    color: #fff;
    text-align: center;
    width: 30px;
    font-size: 0.9rem;
    -moz-appearance: textfield;
}

/* Remove Link */
.remove-link {
    color: #555;
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
    transition: color 0.3s;
    border-bottom: 1px solid transparent;
}

.remove-link:hover {
    color: #ff4d4d;
    border-bottom-color: #ff4d4d;
}

/* Subtotal Column */
.product-subtotal {
    font-size: 1.2rem;
    color: var(--color-gold);
    font-weight: 500;
    text-align: right;
    letter-spacing: 0.05em;
}

/* Update Button */
.update-cart-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 1rem 3rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all 0.3s;
    float: right;
    margin-top: 2rem;
}

.update-cart-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* Right: Cart Totals (Glass Box) */
.cart-collaterals-column {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    /* Lighter background */
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 2rem;
}

.cart_totals h2 {
    font-size: 1rem;
    color: #fff;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    letter-spacing: 0.2em;
    text-align: center;
}

.cart_totals th {
    text-align: left;
    padding: 1rem 0;
    font-weight: 400;
    color: #aaa;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cart_totals td {
    text-align: right;
    padding: 1rem 0;
    color: #fff;
}

/* Highlighting the Total */
.cart_totals .order-total th {
    color: #fff;
    font-size: 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
}

.cart_totals .order-total td {
    font-size: 2rem;
    color: var(--color-gold);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
}

/* Checkout Button - Gradient Gold */
.wc-proceed-to-checkout {
    margin-top: 3rem;
    text-align: center;
}

.wc-proceed-to-checkout .checkout-button {
    background: linear-gradient(45deg, #d4af37, #f2d06b);
    color: #000;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    padding: 1.2rem 0;
    width: 100%;
    display: block;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.wc-proceed-to-checkout .checkout-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 900px) {
    .cart-grid-layout {
        flex-direction: column;
        gap: 4rem;
    }

    .cart-items-header {
        display: none;
    }

    .cart-item-row {
        grid-template-columns: 100px 1fr;
        padding: 1rem;
        gap: 1rem;
    }

    .product-subtotal {
        grid-column: 2;
        text-align: left;
        margin-top: 0.5rem;
        font-size: 1.1rem;
    }

    .cart-page-title {
        font-size: 2.5rem;
    }

    .cart-collaterals-column {
        position: static;
        padding: 2rem;
    }
}

/* ============================
   Side Cart Drawer
   ============================ */

.side-cart-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    /* Hidden by default */
    width: 450px;
    height: 100vh;
    background: #f7f7f7;
    /* Light gray from image */
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    flex-direction: column;
    padding: 2rem;
    overflow-y: auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.side-cart-drawer.active {
    right: 0;
}

.side-cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.side-cart-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Header */
.side-cart-header {
    margin-bottom: 2rem;
}

.side-cart-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    color: #444;
    text-transform: lowercase;
    padding: 0;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.side-cart-header h2 {
    font-size: 2rem;
    font-weight: 400;
    color: #111;
    margin: 0;
}

/* Progress Bar */
.shipping-progress-container {
    background: #fff;
    padding: 1rem;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.progress-message {
    font-size: 0.8rem;
    color: #333;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.check-icon {
    color: #25d366;
    /* Green check */
    margin-right: 0.3rem;
}

.progress-bar-wrapper {
    position: relative;
    height: 10px;
    margin-top: 1rem;
}

.progress-bar-bg {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 5px;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    background: #d4d4d4;
    /* Base fill color */
    border-radius: 5px;
}

.progress-icon-box,
.progress-icon-gift {
    position: absolute;
    top: -12px;
    background: #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    border: 1px solid #ccc;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Items List */
.side-cart-items-list {
    flex: 1;
    overflow-y: auto;
}

.side-cart-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
}

.side-cart-thumb {
    width: 80px;
    flex-shrink: 0;
}

.side-cart-thumb img {
    width: 100%;
    height: auto;
    border: 1px solid #efefef;
}

.side-cart-details {
    flex: 1;
}

.side-cart-meta {
    font-size: 0.75rem;
    color: #777;
    margin-bottom: 0.2rem;
}

.side-cart-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.2rem 0;
    text-transform: uppercase;
    line-height: 1.3;
}

.side-cart-title a {
    color: #111;
    text-decoration: none;
}

.side-cart-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 0.5rem;
}

/* Quantity Circle Controls */
.side-qty-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #444;
}

.qty-circle-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.circle-btn {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    /* Circle */
    border: 1px solid #444;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    line-height: 0;
    padding: 0;
    color: #111;
}

.qty-val {
    font-weight: 500;
    min-width: 15px;
    text-align: center;
}

.side-cart-remove {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #444;
    font-size: 0.75rem;
    text-decoration: none;
    margin-top: 0.8rem;
}

.side-cart-remove:hover {
    text-decoration: underline;
}

/* Footer Section */
.side-cart-footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e1e1e1;
}

.side-promo-section,
.side-phone-section {
    margin-bottom: 1rem;
}

.side-cart-footer label {
    display: block;
    font-size: 0.7rem;
    color: #777;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.promo-input-group,
.phone-input-group {
    display: flex;
    border: 1px solid #ccc;
    /* Updated per request */
    border-radius: 4px;
    /* Rounded corners */
    overflow: hidden;
    background: #fff;
}

.promo-input-group input,
.phone-input-group input {
    border: none;
    padding: 0.6rem;
    flex: 1;
    font-size: 0.9rem;
    outline: none;
}

.btn-apply {
    background: #111;
    /* Dark button */
    color: #fff;
    border: none;
    padding: 0 1rem;
    font-size: 0.8rem;
    cursor: pointer;
    font-weight: 600;
}

.phone-input-group {
    align-items: center;
    padding-left: 0.5rem;
}

.flag-icon {
    font-size: 1.2rem;
    margin-right: 0.5rem;
    color: #333;
}

.side-subtotal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #eee;
    padding: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #111;
    font-size: 1rem;
    border-radius: 4px;
}

.amount {
    font-size: 1.1rem;
}

.btn-side-checkout {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    border: 1px solid #111;
    background: #fff;
    color: #111;
    padding: 1rem;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-side-checkout:hover {
    background: #111;
    color: #fff;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .side-cart-drawer {
        width: 100%;
        right: -100%;
    }
}

/* ============================
   Custom Checkout Page
   ============================ */

/* Reset/Hide Standard Theme Header/Footer if possible, or override */
/* (Ideally we'd use a page template without header/footer, but CSS works for now) */


/* Custom Minimal Header */
.checkout-minimal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e1e1e1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.checkout-logo {
    font-size: 1.5rem;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    letter-spacing: -0.02em;
}

.checkout-back-link {
    font-size: 1.2rem;
    text-decoration: none;
}

/* Layout */
.checkout-page-wrapper {
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.checkout-main-col {
    width: 60%;
    padding: 3rem 4rem;
    border-right: 1px solid #e1e1e1;
    background: #fff;
    color: #333;
}

.checkout-sidebar-col {
    width: 40%;
    background: #fafafa;
    padding: 3rem 3rem;
    color: #555;
    border-left: 1px solid #e1e1e1;
    /* If main border-right fails visually */
    margin-left: -1px;
}

/* Headings */
.checkout-section h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #333;
}

.sub-text {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 1rem;
}

/* Express Checkout */
.express-checkout-section {
    text-align: center;
    margin-bottom: 2rem;
}

.express-text {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 0.5rem;
}

.express-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.btn-express-paypal {
    background: #ffc439;
    color: #000;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    flex: 1;
    cursor: pointer;
}

.btn-express-gpay {
    background: #000;
    color: #fff;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    flex: 1;
    cursor: pointer;
}

.btn-express-apple {
    background: #000;
    color: #fff;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    flex: 1;
    cursor: pointer;
}

.divider-or {
    margin: 1.5rem 0;
    position: relative;
    text-align: center;
}

.divider-or::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #e1e1e1;
    z-index: 1;
}

.divider-or span {
    background: #fff;
    padding: 0 1rem;
    color: #777;
    font-size: 0.8rem;
    position: relative;
    z-index: 2;
}

/* Forms */
.form-row {
    margin-bottom: 1rem;
    width: 100%;
}

.form-two-col,
.form-three-col {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-two-col .form-row,
.form-three-col .form-row {
    margin-bottom: 0;
    flex: 1;
}

/* Inputs */
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d9d9d9;
    border-radius: 5px;
    font-size: 0.9rem;
    color: #333;
    transition: all 0.2s;
    background: #fff;
}

input:focus,
select:focus {
    border-color: #333;
    outline: none;
    box-shadow: 0 0 0 1px #333;
}

/* Checkbox Row */
.checkbox-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #555;
}

.input-checkbox {
    width: auto !important;
    margin-right: 0.5rem;
}

/* Section Header (Contact) */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.login-link {
    font-size: 0.85rem;
    color: #0056b3;
    text-decoration: underline;
}

/* Sections */
.checkout-section {
    margin-bottom: 2.5rem;
}

/* Shipping Placeholder */
.shipping-placeholder-box {
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 5px;
    color: #666;
    font-size: 0.9rem;
    text-align: center;
}

/* Payment Box */
.payment-box-wrapper {
    border: 1px solid #d9d9d9;
    border-radius: 5px;
    overflow: hidden;
}

.wc_payment_methods {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wc_payment_method {
    padding: 1rem;
    border-bottom: 1px solid #d9d9d9;
}

.wc_payment_method:last-child {
    border-bottom: none;
}

.wc_payment_method label {
    font-weight: 500;
    margin-left: 0.5rem;
    color: #333;
}

.payment_box {
    background: #fafafa;
    padding: 1rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #555;
    display: none;
    /* JS toggles usually */
}

/* If active */
.wc_payment_method.payment_method_stripe .payment_box {
    display: block;
}

/* Pay Button */
#place_order {
    background: #0056b3;
    /* Default blue or match brand */
    color: #fff;
    width: 100%;
    padding: 1.2rem;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    margin-top: 1rem;
    transition: background 0.3s;
}

#place_order:hover {
    background: #004494;
}

/* Sidebar (Right Col) */
.checkout-sidebar-col {
    padding-top: 3rem;
}

.sidebar-content {
    max-width: 400px;
    margin: 0 auto 0 0;
    /* Align left within right col */
}

/* Product Row */
.checkout-product-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.curr-prod-img {
    position: relative;
    width: 64px;
    height: 64px;
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.curr-prod-img img {
    max-width: 100%;
    max-height: 100%;
    padding: 2px;
    border-radius: 8px;
}

.prod-qty-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #777;
    color: #fff;
    font-size: 0.75rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.curr-prod-info {
    flex: 1;
}

.prod-name {
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0 0 0.2rem 0;
    color: #333;
}

.prod-meta {
    font-size: 0.8rem;
    color: #777;
}

.curr-prod-price {
    font-weight: 500;
    color: #333;
}

/* Coupon */
.checkout-coupon-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e1e1e1;
}

.checkout_coupon {
    display: flex;
    gap: 0.8rem;
}

.checkout_coupon .input-text {
    flex: 1;
}

.checkout_coupon .button {
    background: #e1e1e1;
    color: #555;
    border: none;
    padding: 0 1.2rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
}

/* Totals Table */
.totals-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: #555;
}

.total-final-row {
    margin-top: 1.5rem;
    border-top: 1px solid #e1e1e1;
    padding-top: 1.5rem;
    align-items: center;
}

.total-label {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
}

.total-amount {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.total-currency {
    font-size: 0.8rem;
    color: #999;
    margin-left: auto;
    margin-right: 0.5rem;
}

/* Footer Links */
.checkout-footer-links {
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid #e1e1e1;
    display: flex;
    gap: 1.5rem;
}

.checkout-footer-links a {
    font-size: 0.8rem;
    color: #0056b3;
    text-decoration: none;
}

.checkout-footer-links a:hover {
    text-decoration: underline;
}

/* Responsive */
@media(max-width: 900px) {
    .checkout-page-wrapper {
        flex-direction: column-reverse;
        /* Sidebar on top? Or bottom. Standard is header > order summary toggle > main. */
    }

    .checkout-main-col {
        width: 100%;
        border-right: none;
        padding: 2rem 1rem;
    }

    .checkout-sidebar-col {
        width: 100%;
        border-left: none;
        border-bottom: 1px solid #e1e1e1;
        padding: 2rem 1rem;
        background: #fafafa;
    }

    .checkout-minimal-header {
        justify-content: center;
    }

    .checkout-back-link {
        position: absolute;
        right: 1rem;
    }
}