/*
Theme Name: Arbitrage Ecommerce Store
Author: AK
Description: Custom high-performance WooCommerce theme reproducing the exact design, typography, card layout, sticky header, mobile drawer, and ecommerce UX of Jobstola / Ethnic World.
Version: 1.0.11
License: GNU General Public License v2 or later
Text Domain: jobstola-ethnic-world
Tags: e-commerce, woocommerce, custom-theme, responsive-layout, fashion, grid-layout
*/

/* -------------------------------------------------------------------------- */
/* 1. CORE DESIGN TOKENS & DEFAULT COLOR PALETTE
/* -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,400&display=swap');

:root {
    --brand-ink: #0F172A;
    --brand-midnight: #7a6682;
    --brand-champagne: #02507c;
    --brand-sand: #aebab6;
    --brand-rose: #02507c;
    --brand-mist: #d8d1cb;
    --brand-line: #aebab6;
    --brand-dark-blue: #02507c;
    --brand-bg-overlay: rgba(15, 23, 42, 0.4);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--brand-ink);
    background-color: #e5e5e5;
    overflow-x: hidden;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Background Subtle Grid Pattern matching reference */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(122,102,130,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(122,102,130,0.03) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at center, black 35%, transparent 100%);
    opacity: 0.24;
    z-index: -1;
}

h1, h2, h3, h4, h5, h6, .font-display {
    font-family: 'Lato', sans-serif;
    letter-spacing: -0.01em;
    color: var(--brand-ink);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Custom Logo Display with Strict Size Cap */
.custom-logo-link img,
.site-logo-img,
.site-brand img,
.custom-logo {
    max-height: 50px !important;
    height: 50px !important;
    width: auto !important;
    max-width: 240px !important;
    object-fit: contain !important;
    display: block !important;
}

/* -------------------------------------------------------------------------- */
/* 2. FULL WIDTH CONTAINER (DESKTOP EDGE-TO-EDGE)
/* -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: 100%; /* Full Width Layout */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding-left: 3.5rem;
        padding-right: 3.5rem;
    }
}

/* Kicker Badge */
.kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    border: 1px solid var(--brand-line);
    background: #ffffff;
    color: var(--brand-midnight);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* Section Titles */
.section-title {
    font-size: clamp(2rem, 5vw, 4.25rem);
    line-height: 1.08;
    color: var(--brand-ink);
    font-weight: 800;
}

.section-copy {
    color: #475569;
    line-height: 1.8;
}

/* -------------------------------------------------------------------------- */
/* 3. BUTTONS & INTERACTIVE ELEMENTS
/* -------------------------------------------------------------------------- */
.lux-button-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.95rem 1.75rem;
    border-radius: 999px;
    border: 1px solid var(--brand-midnight);
    background: var(--brand-midnight);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 8px 24px rgba(122,102,130,0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.lux-button-primary:hover {
    background: var(--brand-dark-blue);
    border-color: var(--brand-dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(2,80,124,0.3);
    color: #ffffff;
}

.lux-button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.9rem 1.65rem;
    border-radius: 999px;
    border: 1px solid var(--brand-line);
    background: #ffffff;
    color: var(--brand-midnight);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.lux-button-secondary:hover {
    background: var(--brand-midnight);
    border-color: var(--brand-midnight);
    color: #ffffff;
}

.lux-icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 999px;
    border: 1px solid var(--brand-line);
    background: #ffffff;
    color: var(--brand-midnight);
    box-shadow: 0 4px 14px rgba(122,102,130,0.06);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.lux-icon-button:hover {
    background: var(--brand-midnight);
    color: #ffffff;
    border-color: var(--brand-midnight);
    transform: translateY(-1px);
}

.lux-icon-button:hover svg {
    stroke: #ffffff;
}

.lux-input {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    border: 1px solid var(--brand-line);
    background: #ffffff;
    color: var(--brand-ink);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.lux-input:focus {
    outline: none;
    border-color: var(--brand-midnight);
    box-shadow: 0 0 0 4px rgba(122,102,130,0.15);
}

/* -------------------------------------------------------------------------- */
/* 4. ANNOUNCEMENT BAR & HEADER
/* -------------------------------------------------------------------------- */
.top-announcement-bar {
    background-color: #001b68;
    color: #ffffff;
}

.top-announcement-bar .inner-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--brand-line);
    background-color: transparent;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--brand-line);
    background-color: #d8d1cb;
    padding: 0.75rem 1.25rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    max-height: 50px;
    overflow: hidden;
}

.brand-icon {
    display: flex;
    height: 2.5rem;
    width: 2.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border: 1px solid var(--brand-line);
    background-color: #ffffff;
    color: var(--brand-midnight);
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.brand-title {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    color: #0F172A;
}

@media (min-width: 768px) {
    .brand-title {
        font-size: 1.875rem;
    }
}

.brand-subtitle {
    display: none;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--brand-midnight);
    margin-top: 0.25rem;
}

@media (min-width: 640px) {
    .brand-subtitle {
        display: block;
    }
}

/* Desktop Navigation */
.desktop-nav {
    display: none;
    align-items: center;
    gap: 1.75rem;
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
    }
}

.desktop-nav ul {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    list-style: none;
}

.desktop-nav a {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0F172A;
    transition: color 0.2s ease;
}

.desktop-nav a:hover {
    color: var(--brand-midnight);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: #0F172A;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-dropdown-btn:hover {
    color: var(--brand-midnight);
}

.nav-dropdown-panel {
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: 0.75rem;
    width: 15rem;
    border-radius: 1rem;
    border: 1px solid var(--brand-line);
    background-color: #ffffff;
    padding: 0.75rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: all 0.2s ease;
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.nav-dropdown-panel ul {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    list-style: none;
    padding: 0;
}

.nav-dropdown-panel li a,
.nav-dropdown-panel a {
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #334155;
    display: block;
    transition: all 0.2s;
}

.nav-dropdown-panel li a:hover,
.nav-dropdown-panel a:hover {
    background: #EFF6FF;
    color: var(--brand-midnight);
}

/* -------------------------------------------------------------------------- */
/* 5. MOBILE DRAWER SIDEBAR
/* -------------------------------------------------------------------------- */
.sidebar-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: min(88vw, 360px);
    background: #ffffff;
    border-left: 1px solid var(--brand-line);
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: -20px 0 50px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.sidebar-drawer.open {
    transform: translateX(0);
}

.overlay-backdrop {
    position: fixed;
    inset: 0;
    background: var(--brand-bg-overlay);
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    backdrop-filter: blur(4px);
}

.overlay-backdrop.open {
    opacity: 1;
    visibility: visible;
}

/* Custom Scrollbar for Drawer & Menus */
.custom-scroll::-webkit-scrollbar {
    width: 6px;
}
.custom-scroll::-webkit-scrollbar-track {
    background: #F1F5F9;
    border-radius: 999px;
}
.custom-scroll::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 999px;
}

/* -------------------------------------------------------------------------- */
/* 6. HOMEPAGE HERO & LUX PANELS
/* -------------------------------------------------------------------------- */
.hero-container {
    position: relative;
    overflow: hidden;
    border-radius: 36px;
    border: 1px solid var(--brand-line);
    background: #e5e5e5;
    padding: 2.5rem 1.5rem;
    box-shadow: 0 24px 60px rgba(0,0,0,0.06);
}

@media (min-width: 1024px) {
    .hero-container {
        padding: 3.5rem 3rem;
    }
}

.hero-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(4px);
    pointer-events: none;
    width: 16rem;
    height: 16rem;
    background: radial-gradient(circle at 30% 30%, rgba(122,102,130,0.2), rgba(229,229,229,0.1) 66%, transparent 72%);
}

.hero-grid {
    display: grid;
    align-items: center;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1.05fr 0.95fr;
    }
}

.hero-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    border: 1px solid var(--brand-line);
    background: var(--brand-sand);
    padding: 0.75rem;
    box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}

.hero-image-wrapper img {
    height: 420px;
    width: 100%;
    border-radius: 26px;
    object-fit: cover;
}

@media (min-width: 640px) {
    .hero-image-wrapper img {
        height: 500px;
    }
}

.hero-floating-card {
    position: absolute;
    bottom: 1.75rem;
    left: 1.75rem;
    right: 1.75rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(15, 23, 42, 0.78);
    padding: 1.25rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #ffffff;
}

/* Lux Panels 3-column Grid */
.lux-panel {
    background: #ffffff;
    border: 1px solid var(--brand-line);
    border-radius: 24px;
    padding: 1.75rem;
    box-shadow: 0 12px 32px rgba(0,0,0,0.04);
}

.panels-grid {
    display: grid;
    gap: 1.25rem;
}

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

/* -------------------------------------------------------------------------- */
/* 7. PRODUCT GRID & ROUNDED 28PX PRODUCT CARDS (UNCHANGED v1.0.6 STRUCTURE)
/* -------------------------------------------------------------------------- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1280px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1600px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px !important;
    border: 1px solid var(--brand-line) !important;
    background-color: #ffffff !important;
    box-shadow: 0 16px 40px rgba(0,0,0,0.06) !important;
    backdrop-filter: blur(8px);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.1) !important;
    border-color: var(--brand-midnight) !important;
}

.product-card-img-wrap {
    position: relative;
    overflow: hidden;
    background-color: var(--brand-sand);
    border-radius: 28px 28px 0 0 !important;
}

.product-card-img-wrap img {
    height: 20rem; /* 320px */
    width: 100%;
    object-fit: cover;
    border-radius: 28px 28px 0 0 !important;
    transition: transform 0.7s ease;
}

.product-card:hover .product-card-img-wrap img {
    transform: scale(1.05);
}

.product-card-badge {
    position: absolute;
    left: 1rem;
    top: 1rem;
    z-index: 10;
    border-radius: 9999px;
    border: 1px solid var(--brand-line);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 0.25rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--brand-midnight);
}

.product-card-body {
    padding: 1.5rem;
}

@media (min-width: 640px) {
    .product-card-body {
        padding: 1.75rem;
    }
}

.product-card-category {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: #64748B;
}

.product-card-title {
    margin-top: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--brand-ink);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-footer {
    margin-top: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.product-card-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-midnight);
}

.product-card-price del {
    font-size: 1rem;
    color: #94A3B8;
    margin-right: 0.35rem;
    font-weight: 500;
}

.product-card-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
}

/* -------------------------------------------------------------------------- */
/* 8. WOOCOMMERCE DEFAULT LOOP OVERRIDES (FORCING ROUNDED 28px LUXURY CARDS)
/* -------------------------------------------------------------------------- */
.woocommerce ul.products,
.woocommerce-page ul.products,
.woocommerce .related ul.products,
.woocommerce-page .related ul.products {
    display: grid !important;
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 1.5rem !important;
    padding: 0 !important;
    margin-top: 1.5rem !important;
    margin-bottom: 2rem !important;
}

@media (min-width: 640px) {
    .woocommerce ul.products,
    .woocommerce-page ul.products,
    .woocommerce .related ul.products,
    .woocommerce-page .related ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (min-width: 1280px) {
    .woocommerce ul.products,
    .woocommerce-page ul.products,
    .woocommerce .related ul.products,
    .woocommerce-page .related ul.products {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

@media (min-width: 1600px) {
    .woocommerce ul.products,
    .woocommerce-page ul.products,
    .woocommerce .related ul.products,
    .woocommerce-page .related ul.products {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.woocommerce .related ul.products li.product {
    position: relative !important;
    overflow: hidden !important;
    border-radius: 28px !important;
    border: 1px solid var(--brand-line) !important;
    background-color: #ffffff !important;
    box-shadow: 0 16px 40px rgba(0,0,0,0.06) !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    float: none !important;
    text-align: left !important;
    transition: transform 0.35s ease, box-shadow 0.35s ease !important;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 20px 48px rgba(0,0,0,0.1) !important;
    border-color: var(--brand-midnight) !important;
}

.woocommerce ul.products li.product img,
.woocommerce-page ul.products li.product img {
    border-radius: 28px 28px 0 0 !important;
    height: 20rem !important;
    width: 100% !important;
    object-fit: cover !important;
    margin: 0 !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product h3 {
    padding: 1rem 1.5rem 0.25rem 1.5rem !important;
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    color: #0F172A !important;
    line-height: 1.35 !important;
}

.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product span.price {
    padding: 0.5rem 1.5rem !important;
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    color: var(--brand-midnight) !important;
    margin: 0 !important;
}

.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.button {
    margin: 0.75rem 1.5rem 1.5rem 1.5rem !important;
    border-radius: 999px !important;
    background-color: var(--brand-midnight) !important;
    border: 1px solid var(--brand-midnight) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 0.875rem !important;
    padding: 0.75rem 1.25rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
}

.woocommerce ul.products li.product .button:hover {
    background-color: var(--brand-dark-blue) !important;
    border-color: var(--brand-dark-blue) !important;
    transform: translateY(-2px) !important;
}

/* -------------------------------------------------------------------------- */
/* 9. PAGINATION STYLING (v1.0.6 CLEAN ROUNDED PILLS)
/* -------------------------------------------------------------------------- */
.pagination-container,
.woocommerce-pagination {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.75rem !important;
    margin-top: 2.5rem !important;
    width: 100% !important;
}

.pagination-container ul.page-numbers,
.woocommerce-pagination ul.page-numbers {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.pagination-container a,
.pagination-container span,
.pagination-container .page-numbers a,
.pagination-container .page-numbers span,
.woocommerce-pagination .page-numbers a,
.woocommerce-pagination .page-numbers span {
    border-radius: 9999px !important;
    border: 1px solid var(--brand-line) !important;
    background-color: #ffffff !important;
    padding: 0.75rem 1.25rem !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    color: #334155 !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.pagination-container a:hover,
.pagination-container .page-numbers a:hover,
.woocommerce-pagination .page-numbers a:hover {
    border-color: var(--brand-dark-blue) !important;
    color: #ffffff !important;
    background-color: var(--brand-dark-blue) !important;
}

.pagination-container .current,
.pagination-container .page-numbers .current,
.woocommerce-pagination .page-numbers .current {
    border-color: var(--brand-midnight) !important;
    background-color: var(--brand-midnight) !important;
    color: #ffffff !important;
}

/* -------------------------------------------------------------------------- */
/* 10. WOOCOMMERCE PRODUCT SINGLE & GALLERY
/* -------------------------------------------------------------------------- */
.product-single-grid {
    display: grid;
    gap: 2.5rem;
    margin-top: 2rem;
}

@media (min-width: 1024px) {
    .product-single-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.product-gallery-main {
    border-radius: 28px;
    border: 1px solid var(--brand-line);
    overflow: hidden;
    background: #ffffff;
}

.product-gallery-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.product-gallery-thumbs {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    overflow-x: auto;
}

.product-gallery-thumbs img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 14px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.product-gallery-thumbs img.active,
.product-gallery-thumbs img:hover {
    border-color: var(--brand-midnight);
}

/* Product Info Box */
.product-info-box {
    background: #ffffff;
    border: 1px solid var(--brand-line);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 12px 36px rgba(0,0,0,0.05);
}

.product-title-single {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.15;
    margin-top: 0.5rem;
}

.product-sku-single {
    font-size: 0.85rem;
    font-weight: 700;
    color: #64748B;
    margin-top: 0.5rem;
}

.product-price-single {
    font-size: 2rem;
    font-weight: 900;
    color: var(--brand-midnight);
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.discount-badge {
    font-size: 0.8rem;
    background: #DC2626;
    color: #ffffff;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    font-weight: 700;
}

/* PLAIN TEXT SHORT DESCRIPTION (ABSOLUTELY NO CONTAINER BOX) */
.product-short-description-plain {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin-top: 1.25rem !important;
    margin-bottom: 1.5rem !important;
    color: #334155 !important;
    font-size: 0.95rem !important;
    line-height: 1.8 !important;
}

.product-short-description-plain p {
    margin-bottom: 1rem !important;
}

.product-short-description-plain ul,
.product-short-description-plain ol {
    margin-bottom: 1rem !important;
    padding-left: 1.25rem !important;
}

.product-short-description-plain li {
    margin-bottom: 0.4rem !important;
}

/* -------------------------------------------------------------------------- */
/* 11. FOOTER STYLING (WITH DEFAULT #d8d1cb BOXES)
/* -------------------------------------------------------------------------- */
.site-footer {
    border-top: 1px solid var(--brand-line);
    background-color: transparent;
    padding-top: 4rem;
    padding-bottom: 3rem;
}

.footer-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.35fr 0.95fr 1fr;
    }
}

.footer-panel {
    border-radius: 1rem;
    border: 1px solid var(--brand-line);
    background-color: #d8d1cb;
    padding: 1.75rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

.footer-links {
    list-style: none;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-links a {
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--brand-midnight);
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 2.5rem;
    border-top: 1px solid var(--brand-line);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748B;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

/* -------------------------------------------------------------------------- */
/* 12. ADVERTISEMENT PLACEHOLDER CONTAINER
/* -------------------------------------------------------------------------- */
.ad-slot-container {
    margin-top: 1rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 90px;
    background: transparent;
}
