/*
Theme Name: StileLuxe
Theme URI: https://eticaretwp.com
Author: Antigravity
Author URI: https://eticaretwp.com
Description: Giyim, takı ve hediyelik eşya mağazaları için zarif, minimalist ve WooCommerce uyumlu Türkçe e-ticaret teması.
 Version: 5.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: stileluxe
Tags: e-commerce, custom-menu, featured-images, translation-ready, grid-layout, responsive
*/

/* ==========================================================================
   1. RESET & BASE VARIABLES
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
    --sl-primary: #0f0f0f;
    --sl-accent: #b8956c;
    --sl-accent-dark: #96784f;
    --sl-bg: #faf9f7;
    --sl-bg-alt: #f3f1ed;
    --sl-surface: #ffffff;
    --sl-border: #eceae6;
    --sl-border-dark: #d8d4cc;
    --sl-text: #2a2a2a;
    --sl-text-muted: #6b6b6b;
    --sl-container-width: 1200px;
    --sl-header-height: 64px;

    --sl-text-light: #ffffff;
    --sl-success: #2e7d32;
    --sl-error: #c62828;
    --sl-warning: #ef6c00;

    --sl-font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --sl-font-heading: 'Playfair Display', Georgia, serif;

    --sl-transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --sl-transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --sl-radius: 2px;
    --sl-radius-lg: 4px;
    --sl-shadow: 0 4px 20px rgba(15, 15, 15, 0.04);
    --sl-shadow-hover: 0 8px 30px rgba(15, 15, 15, 0.08);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: clip;
    max-width: 100%;
}

body {
    font-family: var(--sl-font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--sl-text);
    background-color: var(--sl-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
    max-width: 100%;
}

img,
video,
iframe,
embed,
object,
svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Prevent ANY element from causing horizontal scroll */
.container,
.row,
[class*="col-"] {
    max-width: 100%;
}

.row > * {
    min-width: 0;
}

img {
    vertical-align: middle;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--sl-transition-fast);
}

a:hover {
    color: var(--sl-accent);
}

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--sl-font-heading);
    font-weight: 400;
    line-height: 1.25;
    color: var(--sl-primary);
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal;
}

.screen-reader-text:focus {
    background-color: var(--sl-surface);
    border-radius: var(--sl-radius);
    box-shadow: 0 0 2px 2px rgba(15, 15, 15, 0.6);
    clip: auto;
    clip-path: none;
    color: var(--sl-primary);
    display: block;
    font-size: 14px;
    font-weight: 600;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 12px 16px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* ==========================================================================
   2. UTILITIES & LAYOUT
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--sl-container-width);
    margin: 0 auto;
    padding: 0 20px;
    min-width: 0;
}

/* Prevent grid/flex children from forcing horizontal overflow */
.grid > *,
.container > * {
    min-width: 0;
}

.site-main,
.sl-content-wrap,
.sl-product-wrap,
.sl-shop-wrap,
.sl-wc-page-wrap,
.sl-single-product {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: clip;
}

/* Contained media inside aspect-ratio boxes */
.sl-media-contain {
    overflow: hidden;
}

.sl-media-contain img,
.sl-media-contain video {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
}

.grid {
    display: grid;
    gap: 20px;
}

.section-padding {
    padding: 56px 0;
}

.text-center {
    text-align: center;
}

.section-title {
    margin-bottom: 32px;
}

.section-title h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
    letter-spacing: 0.02em;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background-color: var(--sl-accent);
}

.section-title p {
    font-size: 0.9rem;
    color: var(--sl-text-muted);
    font-style: italic;
    margin-top: 12px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.sl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: var(--sl-primary);
    color: var(--sl-text-light);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid var(--sl-primary);
    cursor: pointer;
    transition: all var(--sl-transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.sl-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--sl-accent);
    transition: left var(--sl-transition);
    z-index: -1;
}

.sl-btn:hover {
    color: var(--sl-primary);
    border-color: var(--sl-accent);
}

.sl-btn:hover::before {
    left: 0;
}

.sl-btn-primary {
    background-color: var(--sl-primary);
    color: var(--sl-text-light);
    border-color: var(--sl-primary);
}

.sl-btn-outline {
    background-color: transparent;
    color: var(--sl-primary);
    border-color: var(--sl-primary);
}

.sl-btn-outline:hover {
    color: var(--sl-primary);
    border-color: var(--sl-accent);
}

.sl-btn-light {
    background-color: transparent;
    color: var(--sl-text-light);
    border-color: rgba(255, 255, 255, 0.6);
}

.sl-btn-light::before {
    background-color: rgba(255, 255, 255, 0.15);
}

.sl-btn-light:hover {
    color: var(--sl-text-light);
    border-color: var(--sl-text-light);
}

.sl-btn-accent {
    background-color: var(--sl-accent);
    color: var(--sl-primary);
    border-color: var(--sl-accent);
}

.sl-btn-accent::before {
    background-color: var(--sl-primary);
}

.sl-btn-accent:hover {
    color: var(--sl-text-light);
    border-color: var(--sl-primary);
}

/* ==========================================================================
   3. PAGE HERO
   ========================================================================== */
.sl-page-hero {
    background-color: var(--sl-bg-alt);
    border-bottom: 1px solid var(--sl-border);
    padding: 36px 0 40px;
}

.sl-page-hero-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sl-breadcrumbs {
    margin-bottom: 4px;
}

.sl-breadcrumbs-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 0;
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--sl-text-muted);
}

.sl-breadcrumbs-item {
    display: inline-flex;
    align-items: center;
}

.sl-breadcrumbs-item:not(:last-child)::after {
    content: '/';
    margin: 0 10px;
    color: var(--sl-border-dark);
    font-weight: 300;
}

.sl-breadcrumbs-item a {
    color: var(--sl-text-muted);
    transition: color var(--sl-transition-fast);
}

.sl-breadcrumbs-item a:hover {
    color: var(--sl-accent);
}

.sl-breadcrumbs-item span[aria-current="page"] {
    color: var(--sl-primary);
    font-weight: 500;
}

.sl-page-hero-title {
    font-family: var(--sl-font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    color: var(--sl-primary);
    letter-spacing: 0.01em;
    line-height: 1.15;
}

.sl-page-hero-subtitle {
    font-size: 0.95rem;
    color: var(--sl-text-muted);
    max-width: 560px;
    line-height: 1.65;
}

/* ==========================================================================
   4. CONTENT AREAS
   ========================================================================== */
.sl-content-wrap {
    padding: 48px 0 64px;
}

.sl-wc-page-wrap,
.sl-product-wrap,
.sl-shop-wrap {
    padding: 40px 0 64px;
}

.sl-prose {
    color: var(--sl-text);
    font-size: 15px;
    line-height: 1.75;
}

.sl-prose h2 {
    font-size: 1.65rem;
    margin: 2em 0 0.75em;
    color: var(--sl-primary);
}

.sl-prose h3 {
    font-size: 1.35rem;
    margin: 1.75em 0 0.6em;
    color: var(--sl-primary);
}

.sl-prose h4 {
    font-size: 1.1rem;
    font-family: var(--sl-font-body);
    font-weight: 600;
    margin: 1.5em 0 0.5em;
    color: var(--sl-primary);
    letter-spacing: 0.02em;
}

.sl-prose p {
    margin-bottom: 1.25em;
    color: var(--sl-text);
}

.sl-prose ul,
.sl-prose ol {
    margin: 0 0 1.25em 1.25em;
    padding-left: 0.5em;
}

.sl-prose ul {
    list-style: disc;
}

.sl-prose ol {
    list-style: decimal;
}

.sl-prose li {
    margin-bottom: 0.4em;
    color: var(--sl-text);
}

.sl-prose blockquote {
    margin: 1.75em 0;
    padding: 20px 24px;
    border-left: 3px solid var(--sl-accent);
    background-color: var(--sl-bg-alt);
    font-family: var(--sl-font-heading);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--sl-primary);
}

.sl-prose img {
    margin: 1.75em auto;
    border: 1px solid var(--sl-border);
    max-width: 100%;
    width: auto;
    height: auto;
}

.entry-content img,
.product-description-content img,
.woocommerce-Tabs-panel img,
.wp-block-image img,
figure img,
.single-post-featured img {
    max-width: 100%;
    width: auto;
    height: auto;
}

.sl-prose a {
    color: var(--sl-accent-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.sl-prose a:hover {
    color: var(--sl-primary);
}

.sl-prose .page-links {
    margin-top: 2em;
    padding-top: 1.5em;
    border-top: 1px solid var(--sl-border);
    font-size: 13px;
}

.sl-empty-state {
    text-align: center;
    padding: 64px 24px;
    background-color: var(--sl-surface);
    border: 1px dashed var(--sl-border-dark);
}

.sl-empty-state p {
    font-size: 15px;
    color: var(--sl-text-muted);
}

.page-article {
    max-width: 780px;
    margin: 0 auto;
}

/* ==========================================================================
   5. HEADER & NAVIGATION
   ========================================================================== */
.announcement-bar {
    background-color: var(--sl-primary);
    color: var(--sl-text-light);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 0;
    text-align: center;
    font-weight: 500;
}

.main-header {
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--sl-border);
    position: sticky;
    top: 0;
    z-index: 999;
    height: var(--sl-header-height);
    transition: box-shadow var(--sl-transition), border-color var(--sl-transition);
}

.main-header.is-scrolled {
    box-shadow: var(--sl-shadow);
    border-bottom-color: transparent;
}

.main-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--sl-header-height);
    gap: 24px;
}

.logo-link {
    font-family: var(--sl-font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--sl-primary);
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.logo-accent {
    color: var(--sl-accent);
}

.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-item {
    list-style: none;
}

.nav-link {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--sl-primary);
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--sl-accent);
    transition: width var(--sl-transition);
}

.nav-link:hover::after,
.current-menu-item .nav-link::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.header-action-btn {
    font-size: 15px;
    color: var(--sl-primary);
    cursor: pointer;
    position: relative;
    padding: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color var(--sl-transition-fast);
}

.header-action-btn:hover {
    color: var(--sl-accent);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background-color: var(--sl-accent);
    color: var(--sl-primary);
    font-size: 9px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.mobile-menu-toggle {
    display: none;
    font-size: 20px;
    cursor: pointer;
}

/* --- Dropdown Sub-Menu --- */
.nav-list .menu-item-has-children {
    position: relative;
}
.nav-list .menu-item-has-children > .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid var(--sl-border, #E8E8E8);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 100;
    list-style: none;
    margin: 0;
}
.nav-list .menu-item-has-children:hover > .sub-menu,
.nav-list .menu-item-has-children.open > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-list .sub-menu .menu-item {
    margin: 0;
}
.nav-list .sub-menu .menu-item a {
    display: block;
    padding: 9px 20px;
    font-size: 13px;
    color: var(--sl-text, #333);
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}
.nav-list .sub-menu .menu-item a:hover {
    background: var(--sl-bg, #FAF9F7);
    color: var(--sl-accent, #c9a96e);
}
/* Nested sub-menu (depth 3) */
.nav-list .sub-menu .menu-item-has-children > .sub-menu {
    top: 0;
    left: 100%;
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(250, 249, 247, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    visibility: hidden;
}

.search-overlay.active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.search-close {
    position: absolute;
    top: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    color: var(--sl-primary);
    background: transparent;
    border: 1px solid var(--sl-border);
    border-radius: 50%;
    transition: all 0.2s ease;
}

.search-close:hover {
    color: var(--sl-text-light);
    background: var(--sl-primary);
    border-color: var(--sl-primary);
}

.search-form-wrapper {
    width: 100%;
    max-width: 600px;
    padding: 24px 32px;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.35s ease;
}

.search-overlay.active .search-form-wrapper {
    transform: translateY(0);
}

.search-form-wrapper::before {
    content: 'Ne aramıştınız?';
    display: block;
    font-family: var(--sl-font-heading);
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 400;
    color: var(--sl-primary);
    margin-bottom: 28px;
    letter-spacing: 0.01em;
}

.search-field {
    width: 100%;
    border: none;
    border-bottom: 2px solid var(--sl-primary);
    padding: 16px 0;
    font-size: clamp(18px, 3vw, 26px);
    font-family: var(--sl-font-heading);
    color: var(--sl-primary);
    background: transparent;
    outline: none;
    text-align: center;
    letter-spacing: 0.01em;
    transition: border-color 0.2s ease;
}

.search-field:focus {
    border-bottom-color: var(--sl-accent);
}

.search-field::placeholder {
    color: var(--sl-text-muted);
    opacity: 0.5;
}

/* ==========================================================================
   6. FOOTER
   ========================================================================== */
.main-footer {
    background-color: var(--sl-primary);
    color: rgba(255, 255, 255, 0.55);
    padding: 56px 0 28px;
    font-size: 13px;
    border-top: 2px solid var(--sl-accent);
}

.footer-logo-link {
    color: var(--sl-text-light);
}

.footer-logo-accent {
    color: var(--sl-accent);
}

.footer-logo-img {
    max-height: 48px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}
.footer-logo-img:hover {
    opacity: 0.8;
}

.footer-about-text {
    margin: 16px 0;
    line-height: 1.65;
    max-width: 320px;
}

.footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    margin-bottom: 40px;
    gap: 32px;
}

.footer-title {
    color: var(--sl-text-light);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    font-family: var(--sl-font-body);
    font-weight: 600;
}

.footer-social-icons {
    display: flex;
    gap: 10px;
}

.footer-social-link {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--sl-text-light);
    font-size: 13px;
    transition: all var(--sl-transition-fast);
}

.footer-social-link:hover {
    background-color: var(--sl-accent);
    color: var(--sl-primary);
    border-color: var(--sl-accent);
}

.footer-menu-item {
    margin-bottom: 10px;
}

.footer-menu-link {
    transition: color var(--sl-transition-fast), padding-left var(--sl-transition-fast);
}

.footer-menu-link:hover {
    color: var(--sl-accent);
    padding-left: 4px;
}

.footer-newsletter-text {
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer-newsletter-form {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-newsletter-input {
    flex: 1;
    padding: 10px 0;
    color: var(--sl-text-light);
    font-size: 13px;
}

.footer-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter-btn {
    padding: 10px;
    color: var(--sl-accent);
    cursor: pointer;
    transition: color var(--sl-transition-fast);
}

.footer-newsletter-btn:hover {
    color: var(--sl-text-light);
}
.footer-newsletter-msg {
    margin-top: 10px;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.4;
}
.footer-newsletter-msg--success {
    background: rgba(46, 125, 50, 0.15);
    color: #81c784;
}
.footer-newsletter-msg--error {
    background: rgba(198, 40, 40, 0.15);
    color: #ef9a9a;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
}

.payment-badges {
    display: flex;
    gap: 8px;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.25);
}

/* ==========================================================================
   7. HOME PAGE
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 560px;
    background-color: var(--sl-bg-alt);
    overflow: hidden;
}

.hero-banner {
    min-height: 560px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 480px;
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--sl-border);
    padding: 48px;
    margin-left: 0;
    box-shadow: var(--sl-shadow-hover);
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--sl-accent-dark);
    font-weight: 700;
    margin-bottom: 16px;
    display: block;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 400;
    font-family: var(--sl-font-heading);
    color: var(--sl-primary);
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-desc {
    font-size: 0.95rem;
    margin-bottom: 28px;
    color: var(--sl-text-muted);
    line-height: 1.7;
}

.hero-actions-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-btn {
    padding: 12px 28px;
}

.usp-section {
    background-color: var(--sl-surface);
    border-top: 1px solid var(--sl-border);
    border-bottom: 1px solid var(--sl-border);
    padding: 32px 0;
}

.usp-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.usp-box {
    text-align: center;
    padding: 8px;
}

.usp-icon {
    font-size: 22px;
    color: var(--sl-accent);
    margin-bottom: 12px;
}

.usp-title {
    font-size: 11px;
    font-family: var(--sl-font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
    color: var(--sl-primary);
}

.usp-desc {
    font-size: 12px;
    color: var(--sl-text-muted);
    line-height: 1.5;
}

.category-showcase-section--light {
    background-color: var(--sl-bg);
}

.category-showcase-section--alt {
    background-color: var(--sl-bg-alt);
}

.category-showcase-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    gap: 32px;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
}

.category-showcase-split--reverse {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
}

.category-showcase-split > *,
.category-products-grid > *,
.category-products-grid-full > * {
    min-width: 0;
    max-width: 100%;
}

.category-products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-content: center;
    width: 100%;
}

.category-products-grid-full {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
}

.category-showcase-cta {
    margin-top: 32px;
}

.category-editorial-card {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 48px 36px;
    display: flex;
    align-items: flex-end;
    min-height: 440px;
    border: 1px solid var(--sl-border);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.category-editorial-content {
    position: relative;
    z-index: 2;
    color: var(--sl-text-light);
    width: 100%;
}

.category-num {
    font-family: var(--sl-font-heading);
    font-size: 2.5rem;
    color: var(--sl-accent);
    display: block;
    margin-bottom: 12px;
    line-height: 1;
}

.editorial-title {
    color: var(--sl-text-light);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 14px;
    font-weight: 400;
}

.editorial-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.65;
    margin-bottom: 24px;
    max-width: 280px;
}

.overlapping-lookbook-section {
    position: relative;
    min-height: 420px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    margin: 56px 0;
}

.overlapping-lookbook-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 15, 15, 0.3);
}

.lookbook-container {
    position: relative;
    z-index: 2;
}

.lookbook-floating-card {
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
    border: 1px solid var(--sl-accent);
    padding: 36px;
    max-width: 400px;
    box-shadow: var(--sl-shadow-hover);
}

.lookbook-subtitle {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--sl-accent-dark);
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.lookbook-title {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    margin-bottom: 12px;
    font-weight: 400;
    color: var(--sl-primary);
}

.lookbook-desc {
    font-size: 13px;
    margin-bottom: 24px;
    color: var(--sl-text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   8. BLOG
   ========================================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-bottom: 40px;
    width: 100%;
    max-width: 100%;
}

.blog-card {
    background-color: var(--sl-surface);
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    border: 1px solid var(--sl-border);
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--sl-transition), border-color var(--sl-transition);
}

.blog-card:hover {
    border-color: var(--sl-border-dark);
    box-shadow: var(--sl-shadow);
}

.blog-card-media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: var(--sl-bg-alt);
    max-width: 100%;
}

.blog-card-media--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--sl-transition);
}

.blog-card:hover .blog-card-img {
    transform: scale(1.03);
}

.blog-card-placeholder-icon {
    font-size: 28px;
    color: var(--sl-border-dark);
}

.blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--sl-text-muted);
    margin-bottom: 12px;
}

.blog-card-dot {
    margin: 0 6px;
    opacity: 0.5;
}

.blog-card-cat {
    color: var(--sl-accent-dark);
}

.blog-card-title {
    font-family: var(--sl-font-heading);
    font-size: 1.25rem;
    line-height: 1.3;
    margin-bottom: 10px;
}

.blog-card-title a {
    color: var(--sl-primary);
    transition: color var(--sl-transition-fast);
}

.blog-card-title a:hover {
    color: var(--sl-accent-dark);
}

.blog-card-excerpt {
    font-size: 13px;
    color: var(--sl-text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
    flex: 1;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--sl-primary);
    transition: color var(--sl-transition-fast), gap var(--sl-transition-fast);
}

.blog-card-link:hover {
    color: var(--sl-accent);
    gap: 12px;
}

.single-post-article {
    max-width: 780px;
    margin: 0 auto;
}

.single-post-header {
    margin-bottom: 24px;
}

.single-post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--sl-text-muted);
}

.single-post-featured {
    margin-bottom: 32px;
    border: 1px solid var(--sl-border);
    overflow: hidden;
}

.single-post-featured img {
    width: 100%;
    height: auto;
}

.single-post-footer {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--sl-border);
    font-size: 13px;
    color: var(--sl-text-muted);
}

.single-post-footer .tags-title {
    font-weight: 600;
    color: var(--sl-primary);
    margin-right: 8px;
}

.single-post-footer a {
    color: var(--sl-accent-dark);
    margin-right: 6px;
}

.sl-comments-wrap {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--sl-border);
}

/* ==========================================================================
   9. PRODUCT CARDS & LOOP GRIDS
   ========================================================================== */
ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 24px !important;
    padding: 0 !important;
    margin: 28px 0 !important;
    list-style: none !important;
    width: 100% !important;
    max-width: 100% !important;
}

ul.products::before,
ul.products::after {
    display: none !important;
}

li.sc-card-li {
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
    list-style: none !important;
    min-width: 0;
    max-width: 100%;
}

/* ==========================================================================
   9. PRODUCT CARD — sc-card
   ========================================================================== */
.sc-card {
    background: #fff;
    border: 1px solid #F0F0F0;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.sc-card:hover {
    border-color: #D8D8D8;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* Badge */
.sc-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 4px;
}

.sc-card__badge--sale {
    background: #212121;
    color: #fff;
}

.sc-card__badge--new {
    background: #F5A623;
    color: #fff;
}

/* Media wrapper */
.sc-card__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #f8f8f8;
    border-radius: 12px 12px 0 0;
    flex-shrink: 0;
}

.sc-card__media-link {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.sc-card__img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.sc-card__img-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sc-card:hover .sc-card__img {
    opacity: 0;
}

.sc-card:hover .sc-card__img-hover {
    opacity: 1;
}

/* Action overlay */
.sc-card__actions {
    position: absolute;
    bottom: -44px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: linear-gradient(to top, rgba(255,255,255,0.96), transparent);
    transition: bottom 0.25s ease;
    z-index: 4;
}

.sc-card:hover .sc-card__actions {
    bottom: 0;
}

.sc-card__action {
    width: 38px;
    height: 38px;
    background: #fff;
    color: #212121;
    border: 1.5px solid #E0E0E0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.sc-card__action:hover {
    background: #212121;
    color: #fff;
    border-color: #212121;
}

/* Body */
.sc-card__body {
    padding: 12px 14px 18px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sc-card__cat {
    font-size: 10px;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
    display: block;
}

.sc-card__title {
    font-family: var(--sl-font-body);
    font-size: 13px;
    font-weight: 600;
    color: #212121;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.sc-card__title-link:hover .sc-card__title {
    color: #555;
}

.sc-card__price {
    margin-top: auto;
    font-weight: 700;
    font-size: 14px;
    color: #212121;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.sc-card__price .price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.sc-card__price del {
    color: #bbb;
    font-size: 12px;
    font-weight: 400;
}

.sc-card__price ins {
    text-decoration: none;
    color: #212121;
    font-weight: 700;
}

/* ==========================================================================
   10. SINGLE PRODUCT — sc-pdp
   ========================================================================== */

/* ── Grid layout ── */
.sc-pdp__grid {
    display: grid;
    grid-template-columns: minmax(0, 420px) minmax(0, 520px);
    gap: 40px;
    align-items: start;
    max-width: 980px;
    margin: 0 auto;
    overflow-x: clip;
}

.sc-pdp__gallery,
.sc-pdp__info {
    min-width: 0;
    max-width: 100%;
}

.sc-pdp__gallery {
    position: relative;
    overflow: clip;
}

/* ── Gallery inner: vertical thumbs + main ── */
.sc-pdp__gallery-inner {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

/* ── Vertical thumbnails ── */
.sc-pdp__thumbs {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 0 0 64px;
    width: 64px;
    max-height: 440px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #ddd transparent;
}

.sc-pdp__thumbs::-webkit-scrollbar { width: 3px; }
.sc-pdp__thumbs::-webkit-scrollbar-thumb { background: #ccc; border-radius: 2px; }

.sc-pdp__thumb {
    flex: 0 0 auto;
    width: 64px;
    height: 80px;
    border: 1.5px solid #EBEBEB;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    background: #fafafa;
    transition: border-color 0.2s ease, opacity 0.2s ease;
    opacity: 0.7;
}

.sc-pdp__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sc-pdp__thumb:hover,
.sc-pdp__thumb.is-active {
    opacity: 1;
    border-color: #212121;
}

/* ── Main image ── */
.sc-pdp__main-img {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #f8f8f8;
    border-radius: 10px;
    border: 1px solid #F0F0F0;
    flex: 1 1 auto;
    min-width: 0;
    cursor: pointer;
}

.sc-pdp__main-img--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    cursor: default;
}

.sc-pdp__main-link {
    display: block;
    width: 100%;
    height: 100%;
}

.sc-pdp__main-photo,
#product-main-image {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    box-sizing: border-box;
    display: block;
    padding: 4px;
}

.sc-pdp__zoom {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: #fff;
    border: 1px solid #E0E0E0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #212121;
    cursor: pointer;
    z-index: 5;
    transition: background 0.2s ease, color 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.sc-pdp__zoom:hover {
    background: #212121;
    color: #fff;
    border-color: #212121;
}

/* ── Info column ── */
.sc-pdp__info {
    position: sticky;
    top: calc(var(--sl-header-height, 70px) + 20px);
    align-self: start;
    padding-top: 4px;
}

.sc-pdp__info-inner {
    display: flex;
    flex-direction: column;
    background: #fff;
}

/* Category */
.sc-pdp__cat {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #999;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

/* Title */
.sc-pdp__title {
    font-family: var(--sl-font-heading, 'Playfair Display', serif);
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
    color: #212121;
    letter-spacing: 0;
}

/* Rating */
.sc-pdp__rating {
    display: flex;
    align-items: center;
    gap: 3px;
    color: #F5A623;
    font-size: 13px;
    margin-bottom: 14px;
}

.sc-pdp__rating span {
    color: #999;
    font-size: 12px;
    margin-left: 4px;
}

/* Price */
.sc-pdp__price {
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #F0F0F0;
}

.sc-pdp__price .price {
    font-size: 1.65rem;
    font-weight: 800;
    color: #212121;
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.sc-pdp__price del {
    font-size: 1rem;
    color: #bbb;
    text-decoration: line-through;
    font-weight: 400;
}

.sc-pdp__price ins {
    text-decoration: none;
    color: #212121;
    font-weight: 800;
    background: none;
}

/* Short desc */
.sc-pdp__desc {
    color: #666;
    font-size: 13px;
    margin-bottom: 18px;
    line-height: 1.7;
}

/* ── Cart form ── */
.sc-pdp__cart-form {
    margin-bottom: 18px;
}

.sc-pdp__cart-form form.cart {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sc-pdp__cart-form form.cart .variations,
.sc-pdp__cart-form form.cart .single_variation_wrap {
    width: 100%;
}

.sc-pdp__cart-form form.cart .single_variation_wrap .woocommerce-variation-add-to-cart {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.sc-pdp__cart-form form.cart .quantity {
    display: inline-block;
    margin: 0;
}

.sc-pdp__cart-form .qty-input-wrapper {
    display: inline-flex;
    align-items: center;
    border: 2px solid #212121;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.sc-pdp__cart-form .qty-minus,
.sc-pdp__cart-form .qty-plus {
    width: 44px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #212121;
    font-size: 16px;
    background: transparent;
    border: none;
    transition: background 0.15s ease;
}

.sc-pdp__cart-form .qty-minus:hover,
.sc-pdp__cart-form .qty-plus:hover {
    background: #F5F5F5;
}

.sc-pdp__cart-form form.cart .quantity .qty {
    width: 52px;
    height: 48px;
    border: none;
    border-left: 1px solid #E0E0E0;
    border-right: 1px solid #E0E0E0;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: #212121;
    background: #fff;
    border-radius: 0;
    -moz-appearance: textfield;
    appearance: textfield;
}

.sc-pdp__cart-form form.cart .quantity .qty::-webkit-outer-spin-button,
.sc-pdp__cart-form form.cart .quantity .qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* CTA button */
.sc-pdp__cart-form form.cart .single_add_to_cart_button {
    width: 100%;
    height: 52px;
    background: #212121 !important;
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0 24px;
    border: 2px solid #212121 !important;
    border-radius: 8px !important;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sc-pdp__cart-form form.cart .single_add_to_cart_button:hover {
    background: #fff !important;
    color: #212121 !important;
}

/* Variations */
.sc-pdp__cart-form form.cart .variations {
    border: none;
    border-collapse: collapse;
    margin-bottom: 8px;
}

.sc-pdp__cart-form form.cart .variations td {
    padding: 6px 0;
    border: none;
    background: none;
    vertical-align: middle;
}

.sc-pdp__cart-form form.cart .variations td.label {
    width: 90px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #212121;
}

.sc-pdp__cart-form form.cart .variations td.value select {
    width: 100%;
    height: 44px;
    border: 2px solid #212121;
    border-radius: 8px;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 600;
    color: #212121;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.sc-pdp__cart-form form.cart .variations td.value select:focus {
    outline: none;
    border-color: #555;
}

.sc-pdp__cart-form form.cart .reset_variations {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #999;
    margin-left: 8px;
    text-decoration: underline;
}

/* ── Service rows ── */
.sc-pdp__services {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 22px;
    padding: 14px 0;
    border-top: 1px solid #F0F0F0;
    border-bottom: 1px solid #F0F0F0;
}

.sc-pdp__svc {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #555;
    line-height: 1.4;
}

.sc-pdp__svc i {
    font-size: 15px;
    color: #212121;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}

.sc-pdp__svc strong {
    color: #212121;
    font-weight: 700;
}

/* ── Accordion ── */
.sc-pdp__accordion {
    border-top: 1px solid #EBEBEB;
}

.sc-pdp__acc-item {
    border-bottom: 1px solid #EBEBEB;
    overflow: hidden;
}

.sc-pdp__acc-head {
    width: 100%;
    padding: 14px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    background: none;
    border: none;
    font-family: var(--sl-font-body, 'Inter', sans-serif);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #212121;
    transition: color 0.15s ease;
}

.sc-pdp__acc-head:hover {
    color: #666;
}

.sc-pdp__acc-icon {
    font-size: 10px;
    color: #999;
    transition: transform 0.2s ease;
}

.sc-pdp__acc-item.is-open .sc-pdp__acc-icon {
    transform: rotate(45deg);
}

.sc-pdp__acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.sc-pdp__acc-item.is-open .sc-pdp__acc-body {
    max-height: 2000px;
    padding-bottom: 14px;
}

.sc-pdp__acc-body p,
.sc-pdp__acc-prose {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
}

/* ── Meta ── */
.sc-pdp__meta {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px dashed #E0E0E0;
    font-size: 12px;
    color: #999;
    line-height: 2;
}

.sc-pdp__meta li {
    margin-bottom: 3px;
}

.sc-pdp__meta strong {
    color: #212121;
    font-weight: 700;
}

.sc-pdp__meta a {
    color: #555;
}

/* ── Related ── */
.sc-pdp__related {
    margin-top: 56px;
    border-top: 1px solid #F0F0F0;
    padding-top: 44px;
}

.sc-pdp__related > h2,
.sc-pdp__related .related.products > h2 {
    font-family: var(--sl-font-heading, 'Playfair Display', serif);
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 28px;
    color: #212121;
}



.product-card {
    background-color: var(--sl-surface);
    border: 1px solid var(--sl-border);
    position: relative;
    transition: box-shadow var(--sl-transition), border-color var(--sl-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

.product-card:hover {
    border-color: var(--sl-border-dark);
    box-shadow: var(--sl-shadow);
}

.product-badge-wrapper {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 3;
}

.product-badge {
    padding: 3px 8px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.product-badge.sale {
    background-color: var(--sl-accent);
    color: var(--sl-primary);
}

.product-badge.new {
    background-color: var(--sl-primary);
    color: var(--sl-text-light);
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background-color: var(--sl-bg-alt);
    max-width: 100%;
    flex-shrink: 0;
}

.product-img-wrapper > a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity var(--sl-transition), transform var(--sl-transition);
}

.product-img-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity var(--sl-transition);
}

.product-card:hover .product-img-wrapper img:first-of-type {
    opacity: 0;
}

.product-card:hover .product-img-hover {
    opacity: 1;
}

.product-actions-hover {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.95), transparent);
    transition: bottom var(--sl-transition);
    z-index: 4;
}

.product-card:hover .product-actions-hover {
    bottom: 0;
}

.product-action-icon {
    width: 36px;
    height: 36px;
    background-color: var(--sl-surface);
    color: var(--sl-primary);
    border: 1px solid var(--sl-border);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    font-size: 12px;
    transition: all var(--sl-transition-fast);
}

.product-action-icon:hover {
    background-color: var(--sl-primary);
    color: var(--sl-text-light);
    border-color: var(--sl-primary);
}

.product-info {
    padding: 14px 12px 16px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--sl-text-muted);
    margin-bottom: 6px;
    letter-spacing: 0.08em;
}

.product-title {
    font-family: var(--sl-font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--sl-primary);
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-title-link:hover .product-title {
    color: var(--sl-accent-dark);
}

.product-price-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    margin-top: auto;
}

.product-price-wrapper .price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.product-price-wrapper del {
    color: var(--sl-text-muted);
    font-size: 12px;
    font-weight: 400;
}

.product-price-wrapper ins {
    text-decoration: none;
    color: var(--sl-accent-dark);
}

/* ==========================================================================
   10. SINGLE PRODUCT — SoChic Style
   ========================================================================== */

/* ── Layout grid ── */
.single-product-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 440px);
    gap: 40px;
    align-items: start;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

.product-gallery-column,
.product-info-column {
    min-width: 0;
    max-width: 100%;
}

.product-gallery-column {
    position: relative;
    overflow: clip;
    min-width: 0;
    max-width: 100%;
}

/* ── Gallery inner: vertical thumbs left + main image right ── */
.product-gallery-inner {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

/* ── Vertical thumbnails ── */
.product-gallery-thumbs--vertical {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 0 0 80px;
    width: 80px;
    max-height: 600px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #ddd transparent;
}

.product-gallery-thumbs--vertical::-webkit-scrollbar {
    width: 3px;
}

.product-gallery-thumbs--vertical::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 2px;
}

.product-gallery-thumbs--vertical .product-gallery-thumb {
    flex: 0 0 80px;
    width: 80px;
    height: 100px;
    border: 1.5px solid #F0F0F0;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    background: #fafafa;
    transition: border-color 0.2s ease;
    opacity: 0.75;
}

.product-gallery-thumbs--vertical .product-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-gallery-thumbs--vertical .product-gallery-thumb:hover,
.product-gallery-thumbs--vertical .product-gallery-thumb.is-active {
    opacity: 1;
    border-color: #212121;
}

/* ── Horizontal thumbs (fallback / legacy) ── */
.product-gallery-thumbs:not(.product-gallery-thumbs--vertical) {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
}

/* ── Main gallery image ── */
.product-gallery-main {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background-color: #f8f8f8;
    border-radius: 12px;
    border: 1px solid #F0F0F0;
    flex: 1 1 auto;
    min-width: 0;
}

.product-gallery-main--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
}

.product-gallery-main-link {
    display: block;
    width: 100%;
    height: 100%;
}

.product-gallery-main img,
#product-main-image {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    box-sizing: border-box;
    display: block;
    padding: 8px;
}

.product-gallery-zoom {
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    background-color: #fff;
    border: 1px solid #E0E0E0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #212121;
    cursor: pointer;
    z-index: 5;
    transition: background-color 0.2s ease, color 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.product-gallery-zoom:hover {
    background-color: #212121;
    color: #fff;
    border-color: #212121;
}

/* ── Info column ── */
.product-info-column {
    position: sticky;
    top: calc(var(--sl-header-height) + 20px);
    align-self: start;
}

.product-info-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #fff;
}

/* ── Category breadcrumb ── */
.single-product-category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #888;
    font-weight: 600;
    margin-bottom: 8px;
}

.single-product-category a {
    color: inherit;
}

.single-product-category a:hover {
    color: #212121;
}

/* ── Title ── */
.single-product-title {
    font-family: var(--sl-font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0;
    line-height: 1.2;
    color: #212121;
}

/* ── Rating ── */
.single-product-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    color: #F5A623;
    font-size: 13px;
    margin-bottom: 16px;
}

.single-product-rating span {
    color: #888;
    font-size: 12px;
    margin-left: 4px;
}

/* ── Price ── */
.single-product-price-box {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #F0F0F0;
}

.single-product-price-box .price {
    font-size: 1.75rem;
    font-weight: 800;
    color: #212121;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px;
    font-family: var(--sl-font-body);
}

.single-product-price-box del {
    font-size: 1.1rem;
    color: #bbb;
    text-decoration: line-through;
    font-weight: 400;
}

.single-product-price-box ins {
    text-decoration: none;
    color: #212121;
    font-weight: 800;
    background: none;
}

/* ── Short description ── */
.single-product-desc {
    color: #555;
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* ── Add to cart form ── */
.single-product-cart-form {
    margin-bottom: 20px;
}

.single-product-cart-form form.cart {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.single-product-cart-form form.cart .variations,
.single-product-cart-form form.cart .single_variation_wrap {
    width: 100%;
    flex: 1 1 100%;
}

.single-product-cart-form form.cart .single_variation_wrap .woocommerce-variation-add-to-cart {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.single-product-cart-form form.cart .quantity {
    display: inline-block;
    margin: 0;
}

.qty-input-wrapper {
    display: inline-flex;
    align-items: center;
    border: 2px solid #212121;
    border-radius: 8px;
    background-color: #fff;
    overflow: hidden;
}

.qty-minus,
.qty-plus {
    width: 44px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #212121;
    font-size: 16px;
    transition: background-color 0.15s ease;
    background: transparent;
    border: none;
}

.qty-minus:hover,
.qty-plus:hover {
    background-color: #F5F5F5;
}

.single-product-cart-form form.cart .quantity .qty {
    width: 52px;
    height: 48px;
    border: none;
    border-left: 1px solid #E0E0E0;
    border-right: 1px solid #E0E0E0;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: #212121;
    background-color: #fff;
    border-radius: 0;
    -moz-appearance: textfield;
    appearance: textfield;
}

.single-product-cart-form form.cart .quantity .qty::-webkit-outer-spin-button,
.single-product-cart-form form.cart .quantity .qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Full-width black CTA button — SoChic style */
.single-product-cart-form form.cart .single_add_to_cart_button {
    width: 100%;
    height: 52px;
    background-color: #212121;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0 24px;
    border: 2px solid #212121;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.single-product-cart-form form.cart .single_add_to_cart_button:hover {
    background-color: #fff;
    color: #212121;
}

.single-product-cart-form form.cart .variations {
    width: 100%;
    border: none;
    border-collapse: collapse;
    margin-bottom: 8px;
}

.single-product-cart-form form.cart .variations td {
    padding: 6px 0;
    border: none;
    background: none;
    vertical-align: middle;
}

.single-product-cart-form form.cart .variations td.label {
    width: 90px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #212121;
}

.single-product-cart-form form.cart .variations td.value select {
    width: 100%;
    max-width: 100%;
    height: 44px;
    border: 2px solid #212121;
    border-radius: 8px;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 600;
    color: #212121;
    background-color: #fff;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.single-product-cart-form form.cart .variations td.value select:focus {
    outline: none;
    border-color: #555;
}

.single-product-cart-form form.cart .reset_variations {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #888;
    margin-left: 8px;
    text-decoration: underline;
}

/* ── Service rows (SoChic icon + text style) ── */
.sl-service-rows {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    padding: 16px 0;
    border-top: 1px solid #F0F0F0;
    border-bottom: 1px solid #F0F0F0;
}

.sl-service-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #444;
    line-height: 1.4;
}

.sl-service-row i {
    font-size: 15px;
    color: #212121;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}

.sl-service-row strong {
    color: #212121;
    font-weight: 700;
}

/* Keep old trust-badge classes for compatibility */
.sl-trust-badges {
    display: none;
}

/* ── Accordion ── */
.accordion-wrapper {
    border-top: 1px solid #E8E8E8;
    margin-top: 0;
}

.accordion-item {
    border-bottom: 1px solid #E8E8E8;
    overflow: hidden;
}

button.accordion-title {
    width: 100%;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.15s ease;
    text-align: left;
    background: none;
    border: none;
}

button.accordion-title:hover .accordion-label {
    color: #555;
}

.accordion-label {
    font-family: var(--sl-font-body);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #212121;
}

.accordion-icon {
    font-size: 10px;
    color: #888;
    transition: transform 0.2s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 2000px;
    padding-bottom: 16px;
}

.accordion-text {
    color: #666;
    font-size: 13px;
    line-height: 1.7;
}

.product-description-content {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
}

/* ── Meta list ── */
.product-meta-list {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px dashed #E0E0E0;
    font-size: 12px;
    color: #888;
    line-height: 2;
}

.product-meta-list li {
    margin-bottom: 4px;
}

.product-meta-list li strong {
    color: #212121;
    font-weight: 700;
}

/* ── Related products ── */
.related-products-section {
    margin-top: 64px;
    border-top: 1px solid #F0F0F0;
    padding-top: 48px;
}

.related-products-section > h2,
.related.products > h2 {
    font-family: var(--sl-font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    color: #212121;
    letter-spacing: 0;
}


/* ==========================================================================
   11. SHOP ARCHIVE
   ========================================================================== */
.shop-archive-container {
    display: grid;
    grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
    width: 100%;
    max-width: 100%;
}

.shop-main,
.shop-sidebar {
    min-width: 0;
    max-width: 100%;
}

.shop-sidebar {
    background-color: var(--sl-surface);
    padding: 24px;
    border: 1px solid var(--sl-border);
    position: sticky;
    top: calc(var(--sl-header-height) + 24px);
}

.sidebar-widget {
    margin-bottom: 28px;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--sl-primary);
    color: var(--sl-primary);
}

.sidebar-cat-list li {
    margin-bottom: 4px;
}

.sidebar-cat-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 13px;
    color: var(--sl-text-muted);
    border-bottom: 1px solid var(--sl-border);
    transition: color var(--sl-transition-fast), padding-left var(--sl-transition-fast);
}

.sidebar-cat-list a:hover,
.sidebar-cat-list a.is-active {
    color: var(--sl-primary);
    padding-left: 4px;
}

.sidebar-cat-list a.is-active {
    font-weight: 600;
    color: var(--sl-accent-dark);
}

.sidebar-cat-count {
    font-size: 11px;
    color: var(--sl-text-muted);
    opacity: 0.7;
}

.sidebar-info-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--sl-text-muted);
    margin-bottom: 12px;
}

.sidebar-info-list li i {
    color: var(--sl-accent);
    font-size: 14px;
    width: 18px;
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-bottom: 16px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--sl-border);
}

.woocommerce-ordering,
.woocommerce-result-count {
    float: none;
    margin: 0;
}

.woocommerce-ordering select {
    padding: 8px 14px;
    border: 1px solid var(--sl-border-dark);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background-color: var(--sl-surface);
    cursor: pointer;
    border-radius: 0;
    color: var(--sl-primary);
}

.woocommerce-result-count {
    font-size: 13px;
    color: var(--sl-text-muted);
}

/* ==========================================================================
   12. CART & CHECKOUT
   ========================================================================== */
@media (min-width: 992px) {
    .woocommerce-cart .woocommerce {
        display: flex;
        gap: 48px;
        align-items: start;
    }
}

.woocommerce-cart-form {
    flex: 1;
    min-width: 0;
}

.shop_table.cart {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    margin-bottom: 32px;
    table-layout: fixed;
}

.woocommerce-cart-form,
.woocommerce-checkout,
.woocommerce-account {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.shop_table.cart th {
    text-align: left;
    padding: 14px 12px;
    border-bottom: 2px solid var(--sl-primary);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--sl-primary);
}

.shop_table.cart td {
    padding: 22px 12px;
    border-bottom: 1px solid var(--sl-border);
    vertical-align: middle;
}

.shop_table.cart .product-thumbnail img {
    width: 72px;
    height: 90px;
    object-fit: cover;
    border: 1px solid var(--sl-border);
}

.shop_table.cart .product-name a {
    font-weight: 500;
    color: var(--sl-primary);
    font-size: 14px;
}

.shop_table.cart .product-price,
.shop_table.cart .product-subtotal {
    font-weight: 600;
    color: var(--sl-primary);
}

.shop_table.cart .product-remove a {
    color: var(--sl-text-muted);
    font-size: 18px;
    transition: color var(--sl-transition-fast);
}

.shop_table.cart .product-remove a:hover {
    color: var(--sl-error);
}

.shop_table.cart td.actions {
    padding: 20px 0;
    border-bottom: none;
}

.coupon {
    display: inline-flex;
    gap: 10px;
    flex-wrap: wrap;
}

.coupon input[type="text"] {
    border: 1px solid var(--sl-border-dark);
    padding: 10px 14px;
    font-size: 13px;
    min-width: 180px;
    border-radius: 0;
    background-color: var(--sl-surface);
}

.cart-collaterals {
    width: 380px;
    background-color: var(--sl-bg-alt);
    border: 1px solid var(--sl-border);
    padding: 32px;
    align-self: start;
}

.cart_totals h2 {
    font-family: var(--sl-font-heading);
    font-size: 1.5rem;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--sl-primary);
}

.shop_table.shop_table_totals {
    width: 100%;
    margin-bottom: 24px;
}

.shop_table.shop_table_totals tr td,
.shop_table.shop_table_totals tr th {
    padding: 12px 0;
    border-bottom: 1px solid var(--sl-border-dark);
    font-size: 13px;
}

.shop_table.shop_table_totals tr.order-total th,
.shop_table.shop_table_totals tr.order-total td {
    border-bottom: none;
    font-weight: 700;
    font-size: 16px;
    color: var(--sl-primary);
    padding-top: 16px;
}

.wc-proceed-to-checkout .checkout-button {
    display: block;
    width: 100%;
    text-align: center;
    background-color: var(--sl-primary);
    color: var(--sl-text-light);
    padding: 14px;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid var(--sl-primary);
    transition: all var(--sl-transition);
}

.wc-proceed-to-checkout .checkout-button:hover {
    background-color: transparent;
    color: var(--sl-primary);
    border-color: var(--sl-accent);
}

@media (min-width: 992px) {
    .woocommerce-checkout form.checkout.woocommerce-checkout {
        display: grid;
        grid-template-columns: 1.15fr 0.85fr;
        gap: 48px;
        align-items: start;
    }

    #order_review,
    #order_review_heading {
        grid-column: 2;
    }

    #customer_details {
        grid-column: 1;
        grid-row: 1 / span 2;
    }
}

.woocommerce-checkout .form-row {
    margin-bottom: 16px;
}

.woocommerce-checkout .form-row label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
    color: var(--sl-primary);
}

.woocommerce-checkout .form-row input[type="text"],
.woocommerce-checkout .form-row input[type="tel"],
.woocommerce-checkout .form-row input[type="email"],
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
    width: 100%;
    border: 1px solid var(--sl-border-dark);
    padding: 10px 14px;
    font-size: 13px;
    background-color: var(--sl-surface);
    border-radius: 0;
    transition: border-color var(--sl-transition-fast);
}

.woocommerce-checkout .form-row input:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus {
    border-color: var(--sl-accent);
}

#order_review_heading {
    font-family: var(--sl-font-heading);
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--sl-primary);
}

#order_review {
    background-color: var(--sl-bg-alt);
    border: 1px solid var(--sl-border);
    padding: 32px;
}

.shop_table.woocommerce-checkout-review-order-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}

.shop_table.woocommerce-checkout-review-order-table th,
.shop_table.woocommerce-checkout-review-order-table td {
    padding: 12px 0;
    border-bottom: 1px solid var(--sl-border-dark);
    font-size: 13px;
    text-align: left;
}

.shop_table.woocommerce-checkout-review-order-table tr.order-total th,
.shop_table.woocommerce-checkout-review-order-table tr.order-total td {
    border-bottom: none;
    font-weight: 700;
    font-size: 16px;
    color: var(--sl-primary);
    padding-top: 16px;
}

#payment {
    background: none;
    padding: 0;
}

#payment ul.payment_methods {
    padding: 0;
    border-bottom: 1px solid var(--sl-border-dark);
    margin-bottom: 24px;
}

#payment ul.payment_methods li {
    padding: 14px 0;
    list-style: none;
    font-size: 13px;
}

#payment ul.payment_methods li label {
    font-weight: 600;
    color: var(--sl-primary);
    margin-left: 8px;
    cursor: pointer;
}

#payment div.payment_box {
    background-color: var(--sl-surface);
    border: 1px solid var(--sl-border);
    padding: 16px;
    margin: 12px 0 0;
    font-size: 12px;
    color: var(--sl-text-muted);
    line-height: 1.6;
}

#payment div.payment_box::before {
    display: none;
}

#place_order {
    display: block;
    width: 100%;
    background-color: var(--sl-primary);
    color: var(--sl-text-light);
    padding: 14px;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid var(--sl-primary);
    cursor: pointer;
    transition: all var(--sl-transition);
}

#place_order:hover {
    background-color: transparent;
    color: var(--sl-primary);
    border-color: var(--sl-accent);
}

.select2-container--default .select2-selection--single {
    border: 1px solid var(--sl-border-dark);
    border-radius: 0;
    height: 42px;
    padding: 6px 10px;
}

/* ==========================================================================
   13. WOOCOMMERCE GLOBAL
   ========================================================================== */
.woocommerce-notices-wrapper {
    margin-bottom: 24px;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    padding: 14px 18px;
    margin-bottom: 16px;
    font-size: 13px;
    border-left: 3px solid;
    background-color: var(--sl-surface);
}

.woocommerce-message {
    border-left-color: var(--sl-success);
    color: var(--sl-success);
}

.woocommerce-info {
    border-left-color: var(--sl-accent);
    color: var(--sl-text);
}

.woocommerce-error {
    border-left-color: var(--sl-error);
    color: var(--sl-error);
}

.woocommerce-message a,
.woocommerce-info a {
    color: var(--sl-accent-dark);
    font-weight: 600;
    text-decoration: underline;
}

.woocommerce-MyAccount-navigation {
    background-color: var(--sl-surface);
    border: 1px solid var(--sl-border);
    margin-bottom: 32px;
}

.woocommerce-MyAccount-navigation ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.woocommerce-MyAccount-navigation li {
    flex: 1 1 auto;
    border-right: 1px solid var(--sl-border);
    border-bottom: 1px solid var(--sl-border);
}

.woocommerce-MyAccount-navigation li a {
    display: block;
    padding: 14px 18px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--sl-text-muted);
    transition: all var(--sl-transition-fast);
}

.woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-MyAccount-navigation li a:hover {
    color: var(--sl-primary);
    background-color: var(--sl-bg-alt);
}

.woocommerce-MyAccount-content {
    font-size: 14px;
    line-height: 1.7;
}

.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 {
    font-family: var(--sl-font-heading);
    margin-bottom: 16px;
}

.woocommerce-MyAccount-content .woocommerce-Button,
.woocommerce-MyAccount-content button[type="submit"] {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background-color: var(--sl-primary);
    color: var(--sl-text-light);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid var(--sl-primary);
    cursor: pointer;
    transition: all var(--sl-transition);
}

.woocommerce-MyAccount-content .woocommerce-Button:hover,
.woocommerce-MyAccount-content button[type="submit"]:hover {
    background-color: transparent;
    color: var(--sl-primary);
    border-color: var(--sl-accent);
}

.woocommerce-orders-table,
.woocommerce-table--order-details {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
}

.woocommerce-orders-table th,
.woocommerce-orders-table td,
.woocommerce-table--order-details th,
.woocommerce-table--order-details td {
    padding: 12px;
    border-bottom: 1px solid var(--sl-border);
    font-size: 13px;
    text-align: left;
}

.woocommerce-orders-table th,
.woocommerce-table--order-details th {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--sl-primary);
    border-bottom: 2px solid var(--sl-primary);
}

.la-pagination,
.woocommerce-pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 40px;
}

.la-pagination a,
.la-pagination span,
.woocommerce-pagination ul.page-numbers li a,
.woocommerce-pagination ul.page-numbers li span {
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    border: 1px solid var(--sl-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--sl-primary);
    transition: all var(--sl-transition-fast);
}

.la-pagination a:hover,
.woocommerce-pagination ul.page-numbers li a:hover {
    border-color: var(--sl-accent);
    color: var(--sl-accent);
}

.la-pagination .current,
.woocommerce-pagination ul.page-numbers li span.current {
    background-color: var(--sl-primary);
    color: var(--sl-text-light);
    border-color: var(--sl-primary);
}

.woocommerce-pagination ul.page-numbers {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-pagination ul.page-numbers li {
    list-style: none;
    margin: 0;
}

/* ==========================================================================
   14. RESPONSIVE
   ========================================================================== */
@media (max-width: 991px) {
    .hero-section,
    .hero-banner {
        min-height: auto;
    }

    .hero-banner {
        padding: 64px 0;
    }

    .hero-content {
        max-width: 100%;
        padding: 36px 28px;
    }

    ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .usp-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .category-showcase-split,
    .category-showcase-split--reverse {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .category-products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .single-product-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .product-info-column {
        position: static;
    }

    .shop-archive-container {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .main-navigation {
        position: fixed;
        top: var(--sl-header-height);
        left: -100%;
        width: 280px;
        height: calc(100vh - var(--sl-header-height));
        background-color: var(--sl-surface);
        box-shadow: 4px 0 20px rgba(15, 15, 15, 0.06);
        z-index: 998;
        padding: 28px;
        transition: left var(--sl-transition);
        border-right: 1px solid var(--sl-border);
        justify-content: flex-start;
    }

    .main-navigation.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 12px 0;
        width: 100%;
    }

    .woocommerce-cart .woocommerce {
        flex-direction: column;
    }

    .cart-collaterals {
        width: 100%;
        margin-top: 32px;
    }

    .sl-trust-badges {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .sl-trust-badge {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .section-padding {
        padding: 40px 0;
    }

    ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .category-products-grid,
    .category-products-grid-full {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .category-editorial-card {
        min-height: 300px;
        padding: 32px 24px;
    }

    .usp-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 1.85rem;
    }

    .section-title h2 {
        font-size: 1.4rem;
    }

    .overlapping-lookbook-section {
        min-height: auto;
        padding: 48px 0;
        background-attachment: scroll;
    }

    .lookbook-floating-card {
        max-width: 100%;
        padding: 28px;
    }

    .single-product-title {
        font-size: 1.65rem;
    }

    .sl-page-hero {
        padding: 28px 0 32px;
    }

    .shop-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .woocommerce-MyAccount-navigation ul {
        flex-direction: column;
    }

    .woocommerce-MyAccount-navigation li {
        border-right: none;
        width: 100%;
    }
}

@media (max-width: 480px) {
    ul.products {
        grid-template-columns: 1fr !important;
    }

    .category-products-grid,
    .category-products-grid-full {
        grid-template-columns: 1fr;
    }

    .usp-grid {
        grid-template-columns: 1fr;
    }

    .header-actions {
        gap: 10px;
    }

    .logo-link {
        font-size: 16px;
    }

    .hero-content {
        padding: 28px 20px;
    }

    .hero-actions-row {
        flex-direction: column;
    }

    .hero-actions-row .sl-btn {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .single-product-cart-form form.cart {
        flex-direction: column;
        align-items: stretch;
    }

    .single-product-cart-form form.cart .single_add_to_cart_button {
        width: 100%;
    }

    .product-gallery-thumb {
        flex: 0 0 60px;
        width: 60px;
        height: 75px;
    }
}

/* ==========================================================================
   14b. OVERFLOW & MEDIA GUARDS
   ========================================================================== */
.site,
.site-main,
.site-content,
.woocommerce,
.woocommerce-page,
.woocommerce div.product,
.woocommerce-page div.product,
.main-header,
.main-footer,
.main-header-inner,
.main-footer .container,
.hero-container,
.hero-content,
.sl-page-hero-inner,
.sl-page-content,
.sl-prose,
.blog-grid,
.blog-card,
.category-showcase-split,
.category-showcase-split--reverse,
.category-products-grid,
.category-products-grid-full,
.product-card,
.product-img-wrapper,
.single-product-layout,
.product-gallery-column,
.product-info-column,
.shop-archive-container,
.shop-main,
.shop-sidebar,
.woocommerce-cart .woocommerce,
.woocommerce-checkout form.checkout,
.category-editorial-card,
.lookbook-container {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.wp-caption,
figure,
.wp-block-image,
.wp-block-gallery,
.gallery,
.entry-content,
.product-description-content,
.woocommerce-Tabs-panel {
    max-width: 100%;
    min-width: 0;
}

.wp-caption img,
figure img,
.wp-block-image img,
.gallery img,
.entry-content img,
.product-description-content img,
.woocommerce-Tabs-panel img {
    max-width: 100%;
    height: auto;
}

.sl-prose table,
.entry-content table,
.product-description-content table,
.woocommerce-Tabs-panel table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.main-navigation {
    max-width: calc(100vw - 32px);
}

.product-img-wrapper,
.blog-card-media,
.category-editorial-card,
.single-post-featured,
.product-gallery-main {
    contain: layout paint;
}

.product-img-wrapper img,
.blog-card-img,
.single-post-featured img {
    min-width: 100%;
}

.product-actions-hover {
    max-width: 100%;
}

.product-title,
.single-product-title,
.accordion-label,
.product-meta-list,
.shop-toolbar,
.woocommerce-result-count,
.woocommerce-ordering {
    overflow-wrap: anywhere;
}

.product-price-wrapper,
.single-product-price-box .price,
.single-product-cart-form form.cart,
.single-product-cart-form form.cart .variations,
.single-product-cart-form form.cart .single_variation_wrap,
.coupon,
.woocommerce-checkout .form-row,
#payment ul.payment_methods li {
    max-width: 100%;
    min-width: 0;
}

.woocommerce-ordering select,
.single-product-cart-form form.cart .variations td.value select,
.woocommerce-checkout .form-row input[type="text"],
.woocommerce-checkout .form-row input[type="tel"],
.woocommerce-checkout .form-row input[type="email"],
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea,
.coupon input[type="text"] {
    max-width: 100%;
}

.cart-collaterals,
#order_review {
    max-width: 100%;
}

.product-gallery-thumb img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.woocommerce-product-gallery,
.woocommerce-product-gallery__wrapper,
.woocommerce-product-gallery__image,
.flex-viewport {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
}

.woocommerce-product-gallery__image img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
}

.woocommerce table {
    max-width: 100%;
}

.woocommerce table img {
    max-width: 72px;
    height: auto;
}

@supports not (overflow: clip) {
    html,
    body {
        overflow-x: hidden;
    }
}

@media (max-width: 991px) {
    .main-navigation {
        width: min(280px, calc(100vw - 32px));
    }

    .product-gallery-main {
        max-height: 78vh;
    }

    .cart-collaterals,
    #order_review {
        width: 100%;
        padding: 24px;
    }
}

@media (max-width: 600px) {
    .product-img-wrapper {
        aspect-ratio: 4 / 5;
    }

    .product-actions-hover {
        position: static;
        padding: 10px;
        background: var(--sl-surface);
        border-top: 1px solid var(--sl-border);
    }

    .product-card:hover .product-img-wrapper img:first-of-type {
        opacity: 1;
    }

    .product-card:hover .product-img-hover {
        opacity: 0;
    }

    .single-product-cart-form form.cart .variations,
    .single-product-cart-form form.cart .variations tbody,
    .single-product-cart-form form.cart .variations tr,
    .single-product-cart-form form.cart .variations td {
        display: block;
        width: 100%;
    }

    .single-product-cart-form form.cart .variations td.label {
        width: 100%;
        padding-bottom: 6px;
    }

    .single-product-cart-form form.cart .reset_variations {
        display: inline-block;
        margin: 8px 0 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .product-info {
        padding: 12px 10px 14px;
    }

    .product-title {
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        min-height: 2.7em;
    }

    .product-price-wrapper .price {
        gap: 5px;
    }

    .product-gallery-main {
        aspect-ratio: 1 / 1.18;
    }

    .product-gallery-thumbs {
        gap: 8px;
        max-width: 100%;
    }

    .coupon,
    .coupon input[type="text"],
    .coupon .button {
        width: 100%;
    }

    .cart-collaterals,
    #order_review {
        padding: 20px;
    }

    .woocommerce table img {
        max-width: 56px;
    }
}

/* ==========================================================================
   15. ANIMATIONS
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   16. EDITORIAL ATELIER REFRESH v2.1.0
   Same palette, new calmer magazine-style structure.
   ========================================================================== */
:root {
    --sl-bg: #faf9f7;
    --sl-bg-alt: #f3f1ed;
    --sl-surface: #fffdf9;
    --sl-border: #e6e0d8;
    --sl-border-dark: #cfc5b8;
    --sl-shadow: 0 18px 60px rgba(15, 15, 15, 0.055);
    --sl-shadow-hover: 0 24px 80px rgba(15, 15, 15, 0.095);
    --sl-radius: 0;
    --sl-radius-lg: 0;
}

body {
    background:
        linear-gradient(90deg, rgba(15, 15, 15, 0.025) 1px, transparent 1px) 0 0 / 80px 80px,
        linear-gradient(180deg, rgba(184, 149, 108, 0.08), transparent 320px),
        var(--sl-bg);
}

.logo-link,
.nav-link,
.sl-btn,
.sl-breadcrumbs,
.hero-subtitle,
.lookbook-subtitle,
.single-product-category,
.product-category,
.product-badge,
.footer-title,
.usp-title,
.accordion-label,
.woocommerce-ordering select,
.woocommerce-checkout .form-row label,
.sidebar-widget-title,
.shop_table.cart th,
.woocommerce-orders-table th,
.woocommerce-table--order-details th,
.wc-proceed-to-checkout .checkout-button,
#place_order,
.single-product-cart-form form.cart .single_add_to_cart_button {
    letter-spacing: 0;
}

.container {
    padding-left: clamp(16px, 3vw, 34px);
    padding-right: clamp(16px, 3vw, 34px);
}

.section-padding {
    padding: clamp(48px, 7vw, 92px) 0;
}

.section-title {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 24px;
    margin-bottom: clamp(28px, 5vw, 56px);
    border-bottom: 1px solid var(--sl-border-dark);
    padding-bottom: 18px;
}

.section-title h2,
.sl-page-hero-title,
.hero-title,
.single-product-title,
.blog-card-title,
.cart_totals h2,
#order_review_heading {
    letter-spacing: 0;
}

.section-title h2::after {
    display: none;
}

.section-title p {
    max-width: 360px;
    margin: 0;
    text-align: right;
}

.sl-btn,
.woocommerce-MyAccount-content .woocommerce-Button,
.woocommerce-MyAccount-content button[type="submit"],
.single-product-cart-form form.cart .single_add_to_cart_button,
.wc-proceed-to-checkout .checkout-button,
#place_order {
    border-radius: 999px;
    box-shadow: none;
    letter-spacing: 0;
    position: relative;
    overflow: hidden;
}

.sl-btn::before,
.woocommerce-MyAccount-content .woocommerce-Button::before,
.woocommerce-MyAccount-content button[type="submit"]::before,
.single-product-cart-form form.cart .single_add_to_cart_button::before,
.wc-proceed-to-checkout .checkout-button::before,
#place_order::before {
    content: '';
    position: absolute;
    inset: 0;
    transform: translateX(-105%);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transition: transform var(--sl-transition);
}

.sl-btn:hover::before,
.woocommerce-MyAccount-content .woocommerce-Button:hover::before,
.woocommerce-MyAccount-content button[type="submit"]:hover::before,
.single-product-cart-form form.cart .single_add_to_cart_button:hover::before,
.wc-proceed-to-checkout .checkout-button:hover::before,
#place_order:hover::before {
    transform: translateX(105%);
}

.announcement-bar {
    background: var(--sl-bg-alt);
    color: var(--sl-primary);
    border-bottom: 1px solid var(--sl-border);
}

.main-header {
    background: rgba(250, 249, 247, 0.9);
    border-bottom: 1px solid rgba(207, 197, 184, 0.78);
}

.main-header.is-scrolled {
    box-shadow: 0 12px 40px rgba(15, 15, 15, 0.045);
    background: rgba(255, 253, 249, 0.94);
}

.logo-link {
    font-size: 20px;
    letter-spacing: 0.02em;
}

.nav-list {
    gap: clamp(16px, 2.5vw, 34px);
}

.nav-link {
    font-size: 10px;
    letter-spacing: 0;
}

.nav-link::after {
    bottom: -9px;
    height: 2px;
}

.header-action-btn {
    width: 34px;
    height: 34px;
    border: 1px solid transparent;
    border-radius: 50%;
}

.header-action-btn:hover {
    border-color: var(--sl-border-dark);
    background: var(--sl-surface);
}

.cart-count {
    background: var(--sl-primary);
    color: var(--sl-text-light);
    box-shadow: 0 0 0 2px var(--sl-surface);
}

/* search-overlay v2 override removed — base rule is sufficient */

.hero-section,
.hero-banner {
    min-height: min(680px, calc(100vh - var(--sl-header-height)));
}

.hero-banner {
    align-items: stretch;
    background-position: center;
}

.hero-container {
    display: flex;
    align-items: flex-end;
    padding-top: clamp(80px, 12vw, 140px);
    padding-bottom: clamp(28px, 5vw, 64px);
}

.hero-content {
    max-width: 620px;
    margin-left: auto;
    padding: clamp(28px, 5vw, 58px);
    background: rgba(250, 249, 247, 0.86);
    border: 1px solid rgba(207, 197, 184, 0.85);
    box-shadow: 22px 22px 0 rgba(184, 149, 108, 0.18);
}

.hero-subtitle,
.lookbook-subtitle,
.single-product-category,
.product-category,
.blog-card-cat,
.sl-breadcrumbs {
    letter-spacing: 0;
}

.hero-title {
    max-width: 10ch;
    font-size: 4.7rem;
    line-height: 0.96;
}

.hero-desc {
    max-width: 46ch;
}

.usp-section {
    background: transparent;
    border-top: 0;
    border-bottom: 1px solid var(--sl-border);
}

.usp-grid {
    gap: 0;
    border: 1px solid var(--sl-border);
    background: var(--sl-surface);
}

.usp-box {
    padding: 24px 18px;
    border-right: 1px solid var(--sl-border);
}

.usp-box:last-child {
    border-right: 0;
}

.category-showcase-split,
.category-showcase-split--reverse {
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(18px, 4vw, 52px);
}

.category-showcase-split--reverse {
    grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.72fr);
}

.category-editorial-card {
    min-height: 520px;
    padding: clamp(28px, 5vw, 56px);
    border: 0;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32);
}

.category-editorial-card::after {
    content: '';
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    pointer-events: none;
}

.category-products-grid,
.category-products-grid-full,
ul.products,
.blog-grid {
    gap: clamp(14px, 2.6vw, 32px) !important;
}

.overlapping-lookbook-section {
    min-height: 520px;
    margin: clamp(48px, 8vw, 92px) 0;
    background-attachment: scroll;
}

.lookbook-floating-card {
    max-width: 520px;
    padding: clamp(28px, 5vw, 54px);
    border: 1px solid var(--sl-border-dark);
    box-shadow: -18px 18px 0 rgba(15, 15, 15, 0.08);
}

.sl-page-hero {
    background:
        linear-gradient(90deg, rgba(15, 15, 15, 0.03) 1px, transparent 1px) 0 0 / 72px 72px,
        var(--sl-bg-alt);
    border-bottom: 1px solid var(--sl-border-dark);
    padding: clamp(36px, 7vw, 82px) 0;
}

.sl-page-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(240px, 0.3fr);
    gap: 28px;
    align-items: end;
}

.sl-page-hero-title {
    font-size: 3.8rem;
    line-height: 0.98;
}

.sl-page-hero-subtitle {
    margin-left: auto;
    text-align: right;
}

.sl-content-wrap,
.sl-wc-page-wrap,
.sl-product-wrap,
.sl-shop-wrap {
    padding-top: clamp(42px, 7vw, 82px);
    padding-bottom: clamp(52px, 8vw, 96px);
}

.page-article,
.single-post-article {
    max-width: 900px;
    background: var(--sl-surface);
    border: 1px solid var(--sl-border);
    padding: clamp(24px, 5vw, 58px);
}

.sl-prose blockquote {
    border-left: 0;
    border-top: 1px solid var(--sl-border-dark);
    border-bottom: 1px solid var(--sl-border-dark);
    padding: 24px 0;
    font-size: 1.2rem;
    background: transparent;
}

.blog-card,
.product-card {
    background: transparent;
    border: 0;
    overflow: visible;
    box-shadow: none;
}

.blog-card:hover,
.product-card:hover {
    box-shadow: none;
}

.blog-card-media,
.product-img-wrapper {
    background: var(--sl-bg-alt);
    border: 1px solid var(--sl-border);
    box-shadow: 0 0 0 0 rgba(15, 15, 15, 0);
    transition: transform var(--sl-transition), box-shadow var(--sl-transition), border-color var(--sl-transition);
}

.blog-card:hover .blog-card-media,
.product-card:hover .product-img-wrapper {
    border-color: var(--sl-border-dark);
    box-shadow: 12px 12px 0 rgba(184, 149, 108, 0.16);
    transform: translate(-4px, -4px);
}

.product-img-wrapper {
    aspect-ratio: 4 / 5.35;
}

.product-info,
.blog-card-body {
    padding: 16px 2px 0;
    text-align: left;
}

.product-category,
.product-price-wrapper,
.product-price-wrapper .price {
    justify-content: flex-start;
    text-align: left;
}

.product-title {
    font-size: 14px;
    white-space: normal;
    overflow: visible;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 2.9em;
}

.product-actions-hover {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    justify-content: flex-end;
    background: transparent;
    padding: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity var(--sl-transition), transform var(--sl-transition);
}

.product-card:hover .product-actions-hover {
    bottom: 12px;
    opacity: 1;
    transform: translateY(0);
}

.product-action-icon {
    width: 40px;
    height: 40px;
    border-color: rgba(207, 197, 184, 0.8);
    box-shadow: 0 8px 24px rgba(15, 15, 15, 0.12);
}

.product-badge {
    border-radius: 999px;
}

.single-product-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.58fr);
    gap: clamp(28px, 6vw, 72px);
}

.product-gallery-main {
    border: 0;
    background: var(--sl-bg-alt);
    box-shadow: 18px 18px 0 rgba(184, 149, 108, 0.16);
}

.product-gallery-thumbs {
    margin-top: 22px;
    gap: 12px;
}

.product-gallery-thumb {
    flex-basis: 78px;
    width: 78px;
    height: 98px;
    border-color: transparent;
    opacity: 0.58;
}

.product-gallery-thumb:hover,
.product-gallery-thumb.is-active {
    border-color: var(--sl-primary);
    box-shadow: none;
}

.product-info-column {
    top: calc(var(--sl-header-height) + 34px);
}

.product-info-inner {
    border-top: 2px solid var(--sl-primary);
    padding-top: 22px;
}

.single-product-title {
    font-size: 3.1rem;
}

.single-product-price-box {
    border-top: 1px solid var(--sl-border);
    border-bottom: 1px solid var(--sl-border);
    padding: 18px 0;
}

.sl-trust-badges {
    background: transparent;
    border: 1px solid var(--sl-border-dark);
    padding: 0;
    gap: 0;
}

.sl-trust-badge {
    padding: 16px 10px;
    border-right: 1px solid var(--sl-border);
}

.sl-trust-badge:last-child {
    border-right: 0;
}

.qty-input-wrapper,
.single-product-cart-form form.cart .variations td.value select,
.woocommerce-ordering select,
.woocommerce-checkout .form-row input[type="text"],
.woocommerce-checkout .form-row input[type="tel"],
.woocommerce-checkout .form-row input[type="email"],
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea,
.coupon input[type="text"],
.select2-container--default .select2-selection--single {
    border-radius: 999px;
    background: var(--sl-surface);
}

.accordion-wrapper {
    border-top: 2px solid var(--sl-primary);
}

.accordion-item {
    border-bottom-color: var(--sl-border-dark);
}

.product-meta-list {
    border-top-style: solid;
}

.related-products-section {
    border-top: 0;
    padding-top: 0;
}

.related-products-section > h2,
.related.products > h2 {
    text-align: left;
    border-bottom: 1px solid var(--sl-border-dark);
    padding-bottom: 16px;
}

.shop-archive-container {
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
    gap: clamp(24px, 4vw, 54px);
}

.shop-sidebar {
    background: transparent;
    border: 0;
    border-right: 1px solid var(--sl-border-dark);
    padding: 0 24px 0 0;
}

.sidebar-widget {
    border-bottom-color: var(--sl-border-dark);
}

.sidebar-cat-list a {
    border-radius: 999px;
    padding: 8px 12px;
}

.shop-toolbar {
    border-bottom-color: var(--sl-border-dark);
    padding-bottom: 20px;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    border-left: 0;
    border-top: 2px solid;
    background: var(--sl-surface);
    box-shadow: var(--sl-shadow);
}

.cart-collaterals,
#order_review,
.woocommerce-MyAccount-navigation,
.woocommerce-MyAccount-content {
    background: var(--sl-surface);
    border-color: var(--sl-border-dark);
    box-shadow: var(--sl-shadow);
}

.shop_table.cart,
.woocommerce-orders-table,
.woocommerce-table--order-details,
.shop_table.woocommerce-checkout-review-order-table {
    background: var(--sl-surface);
}

.shop_table.cart th,
.woocommerce-orders-table th,
.woocommerce-table--order-details th {
    border-bottom: 1px solid var(--sl-primary);
}

.la-pagination a,
.la-pagination span,
.woocommerce-pagination ul.page-numbers li a,
.woocommerce-pagination ul.page-numbers li span {
    border-radius: 50%;
}

.main-footer {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 76px 76px,
        var(--sl-primary);
    border-top: 0;
}

.footer-grid {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 40px;
}

.footer-newsletter-form {
    border-bottom-color: rgba(184, 149, 108, 0.65);
}

@media (max-width: 991px) {
    .section-title,
    .sl-page-hero-inner {
        grid-template-columns: 1fr;
    }

    .section-title p,
    .sl-page-hero-subtitle {
        margin-left: 0;
        text-align: left;
    }

    .hero-content {
        margin-left: 0;
        box-shadow: 14px 14px 0 rgba(184, 149, 108, 0.18);
    }

    .category-showcase-split,
    .category-showcase-split--reverse,
    .single-product-layout,
    .shop-archive-container {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        border-right: 0;
        padding-right: 0;
    }

    .usp-box:nth-child(2) {
        border-right: 0;
    }
}

@media (max-width: 768px) {
    .main-header {
        height: var(--sl-header-height);
    }

    .main-navigation {
        border-right: 1px solid var(--sl-border-dark);
        box-shadow: 16px 0 50px rgba(15, 15, 15, 0.1);
    }

    .hero-section,
    .hero-banner {
        min-height: auto;
    }

    .hero-container {
        align-items: flex-end;
        padding-top: 96px;
    }

    .category-editorial-card {
        min-height: 360px;
    }

    .usp-grid {
        grid-template-columns: 1fr;
    }

    .usp-box {
        border-right: 0;
        border-bottom: 1px solid var(--sl-border);
    }

    .usp-box:last-child {
        border-bottom: 0;
    }

    .product-gallery-main,
    .blog-card:hover .blog-card-media,
    .product-card:hover .product-img-wrapper,
    .lookbook-floating-card {
        box-shadow: none;
        transform: none;
    }

    .hero-title,
    .sl-page-hero-title {
        font-size: 2.55rem;
    }

    .single-product-title {
        font-size: 2.15rem;
    }

    .sl-trust-badge {
        border-right: 0;
        border-bottom: 1px solid var(--sl-border);
    }

    .sl-trust-badge:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 480px) {
    body {
        background-size: 56px 56px, auto, auto;
    }

    .hero-content,
    .page-article,
    .single-post-article,
    .cart-collaterals,
    #order_review {
        padding: 22px;
    }

    .hero-title,
    .sl-page-hero-title {
        max-width: 100%;
        font-size: 2.1rem;
        line-height: 1.02;
    }

    .single-product-title {
        font-size: 1.85rem;
    }

    .product-actions-hover {
        opacity: 1;
        transform: none;
    }

    .product-action-icon {
        width: 36px;
        height: 36px;
    }
}

/* ==========================================================================
   17. INTERNAL PAGE REPAIR v2.1.1
   Keep homepage atmosphere; make commerce and content pages stable.
   ========================================================================== */
body.sl-inner-page,
.sl-inner-page {
    background:
        linear-gradient(180deg, rgba(184, 149, 108, 0.06), transparent 260px),
        var(--sl-bg);
}

.sl-inner-page .sl-page-hero {
    background: var(--sl-bg-alt);
    border-bottom: 1px solid var(--sl-border);
    padding: 34px 0 38px;
}

.sl-inner-page .sl-page-hero-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.sl-inner-page .sl-page-hero-title {
    max-width: 920px;
    font-size: 2.35rem;
    line-height: 1.08;
}

.sl-inner-page .sl-page-hero-subtitle {
    max-width: 680px;
    margin-left: 0;
    text-align: left;
}

.sl-inner-page .sl-content-wrap,
.sl-inner-page .sl-wc-page-wrap,
.sl-inner-page .sl-product-wrap,
.sl-inner-page .sl-shop-wrap {
    padding-top: 42px;
    padding-bottom: 72px;
}

.sl-inner-page .page-article,
.sl-inner-page .single-post-article {
    max-width: 860px;
    padding: 40px;
    background: var(--sl-surface);
    border: 1px solid var(--sl-border);
    box-shadow: none;
}

.sl-inner-page .blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px !important;
}

.sl-inner-page .blog-card,
.sl-inner-page .product-card {
    overflow: hidden;
    background: var(--sl-surface);
    border: 1px solid var(--sl-border);
    box-shadow: none;
}

.sl-inner-page .blog-card-media,
.sl-inner-page .product-img-wrapper {
    border: 0;
    box-shadow: none;
    transform: none;
}

.sl-inner-page .blog-card:hover .blog-card-media,
.sl-inner-page .product-card:hover .product-img-wrapper {
    border-color: transparent;
    box-shadow: none;
    transform: none;
}

.sl-inner-page .blog-card-body,
.sl-inner-page .product-info {
    padding: 18px;
}

.sl-inner-page .product-category,
.sl-inner-page .product-price-wrapper,
.sl-inner-page .product-price-wrapper .price {
    justify-content: center;
    text-align: center;
}

.sl-inner-page .product-title {
    text-align: center;
}

.sl-inner-page .product-actions-hover {
    left: 0;
    right: 0;
    bottom: -44px;
    width: 100%;
    justify-content: center;
    padding: 12px;
    background: linear-gradient(to top, rgba(255, 253, 249, 0.96), transparent);
    opacity: 1;
    transform: none;
}

.sl-inner-page .product-card:hover .product-actions-hover {
    bottom: 0;
}

.sl-search-page {
    max-width: var(--sl-container-width);
}

.sl-search-results-panel {
    width: 100%;
    background: var(--sl-surface);
    border: 1px solid var(--sl-border);
    padding: 28px;
}

.sl-search-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--sl-border);
}

.sl-search-label {
    color: var(--sl-text-muted);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.sl-search-summary strong {
    color: var(--sl-primary);
    font-size: 1.35rem;
    line-height: 1;
}

.sl-search-page .shop-toolbar {
    margin-bottom: 24px;
}

.sl-search-page ul.products {
    margin: 0 !important;
}

.sl-search-page .la-pagination {
    margin-top: 32px;
}

.sl-product-page .sl-product-wrap {
    padding-top: 36px;
}

.sl-product-page .sl-page-hero {
    padding: 14px 0;
    background: var(--sl-bg);
}

.sl-product-page .sl-page-hero-title,
.sl-product-page .sl-page-hero-subtitle {
    display: none;
}

.sl-product-page .sl-breadcrumbs {
    margin-bottom: 0;
}

/* sl-product-page overrides — SoChic style */
.sl-product-page .single-product-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 440px);
    gap: 40px;
    align-items: start;
    overflow-x: clip;
}

.sl-product-page .product-gallery-column {
    overflow: clip;
}

.sl-product-page .product-info-inner {
    background: #fff;
    padding: 0;
}

.sl-product-page .product-info-column {
    position: sticky;
    top: calc(var(--sl-header-height) + 20px);
}

.sl-product-page .related-products-section {
    margin-top: 56px;
    padding-top: 36px;
    border-top: 1px solid #F0F0F0;
}

.sl-product-page .related-products-section > h2,
.sl-product-page .related.products > h2 {
    text-align: center;
    border-bottom: 0;
}

.sl-inner-page .shop-archive-container {
    grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
    gap: 30px;
}

.sl-inner-page .shop-sidebar {
    background: var(--sl-surface);
    border: 1px solid var(--sl-border);
    padding: 22px;
}

.sl-inner-page .sidebar-cat-list a {
    border-radius: 0;
    padding: 9px 0;
}

.sl-inner-page .shop-toolbar {
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--sl-border);
}

@media (max-width: 991px) {
    .sl-product-page .single-product-layout,
    .sl-inner-page .shop-archive-container {
        grid-template-columns: 1fr;
    }

    .sl-product-page .product-info-column,
    .sl-inner-page .shop-sidebar {
        position: static;
    }

    /* Vertical thumbs → horizontal on tablet/mobile */
    .product-gallery-thumbs--vertical {
        flex-direction: row;
        flex-wrap: nowrap;
        width: 100%;
        max-height: none;
        overflow-x: auto;
        overflow-y: visible;
        margin-top: 12px;
        flex: none;
    }

    .product-gallery-inner {
        flex-direction: column;
        gap: 0;
    }

    .product-gallery-thumbs--vertical .product-gallery-thumb {
        flex: 0 0 70px;
        width: 70px;
        height: 86px;
    }

    .sl-inner-page .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .sl-inner-page .sl-page-hero {
        padding: 28px 0 30px;
    }

    .sl-inner-page .sl-page-hero-title {
        font-size: 1.9rem;
    }

    .sl-inner-page .page-article,
    .sl-inner-page .single-post-article,
    .sl-search-results-panel {
        padding: 22px;
    }

    .sl-inner-page .blog-grid {
        grid-template-columns: 1fr;
    }

    .single-product-title {
        font-size: 1.65rem;
    }
}

@media (max-width: 480px) {
    .sl-search-results-panel,
    .sl-inner-page .page-article,
    .sl-inner-page .single-post-article {
        padding: 18px;
    }

    .sl-search-summary {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-gallery-main {
        aspect-ratio: 1 / 1.15;
        max-height: 72vh;
    }

    .product-gallery-thumbs--vertical .product-gallery-thumb {
        flex: 0 0 60px;
        width: 60px;
        height: 74px;
    }
}

/* ==========================================================================
   18. sc-card / sc-pdp RESPONSIVE
   ========================================================================== */

/* — Product page hero overrides — */
.sl-product-page .sl-product-wrap {
    padding-top: 36px;
}

.sl-product-page .sl-page-hero {
    padding: 14px 0;
    background: var(--sl-bg);
}

.sl-product-page .sl-page-hero-title,
.sl-product-page .sl-page-hero-subtitle {
    display: none;
}

.sl-product-page .sl-breadcrumbs {
    margin-bottom: 0;
}

/* — Inner-page card overrides for sc-card — */
.sl-inner-page .sc-card {
    overflow: hidden;
    background: var(--sl-surface);
    border: 1px solid var(--sl-border);
    box-shadow: none;
    border-radius: 0;
}

.sl-inner-page .sc-card:hover {
    border-color: var(--sl-border-dark);
    box-shadow: none;
}

.sl-inner-page .sc-card__media {
    border-radius: 0;
    border: 0;
}

.sl-inner-page .sc-card__body {
    padding: 18px;
}

.sl-inner-page .sc-card__cat,
.sl-inner-page .sc-card__price,
.sl-inner-page .sc-card__price .price {
    justify-content: center;
    text-align: center;
}

.sl-inner-page .sc-card__title {
    text-align: center;
}

.sl-inner-page .sc-card__actions {
    left: 0;
    right: 0;
    bottom: -44px;
    width: 100%;
    justify-content: center;
    padding: 12px;
    background: linear-gradient(to top, rgba(255, 253, 249, 0.96), transparent);
    opacity: 1;
    transform: none;
}

.sl-inner-page .sc-card:hover .sc-card__actions {
    bottom: 0;
}

/* — Tablet (≤991px) — */
@media (max-width: 991px) {
    .sc-pdp__grid {
        grid-template-columns: 1fr;
    }

    .sc-pdp__info {
        position: static;
    }

    /* Vertical thumbs → horizontal */
    .sc-pdp__thumbs {
        flex-direction: row;
        flex-wrap: nowrap;
        width: 100%;
        max-height: none;
        overflow-x: auto;
        overflow-y: visible;
        margin-top: 12px;
        flex: none;
    }

    .sc-pdp__gallery-inner {
        flex-direction: column;
        gap: 0;
    }

    .sc-pdp__thumb {
        flex: 0 0 60px;
        width: 60px;
        height: 74px;
    }
}

/* — Mobile (≤768px) — */
@media (max-width: 768px) {
    .sc-pdp__title {
        font-size: 1.55rem;
    }
}

/* — Small mobile (≤480px) — */
@media (max-width: 480px) {
    .sc-pdp__main-img {
        aspect-ratio: 1 / 1.15;
        max-height: 72vh;
    }

    .sc-pdp__thumb {
        flex: 0 0 60px;
        width: 60px;
        height: 74px;
    }

    ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }

    .sc-card__actions {
        opacity: 1;
        transform: none;
    }

    .sc-card__action {
        width: 34px;
        height: 34px;
    }

    .sc-card__body {
        padding: 10px 10px 14px;
    }
}

/* ==========================================================================
   NEW UNIFIED STILELUXE WOOCOMMERCE CSS (Bootstrap 5 Compatible)
   ========================================================================== */

/* ── 1. SHOP SIDEBAR ── */
.sl-shop-sidebar {
    background: var(--sl-surface, #fff);
    border: 1px solid var(--sl-border, #EBEBEB);
    padding: 24px;
    position: sticky;
    top: 90px;
    border-radius: 8px;
}

/* ── Mobile card tweaks ── */
@media (max-width: 767.98px) {
    .sl-card__info { padding: 10px; }
    .sl-card__title { font-size: 0.9rem; margin-bottom: 6px; }
    .sl-card__price { font-size: 13px; }
    .sl-card__actions { opacity: 1; transform: none; }
    .sl-card__action-btn { width: 30px; height: 30px; font-size: 12px; }
}


/* ── LEGACY PRODUCT CARD (used by front-page.php) ── */
.product-card {
    background: #fff;
    border: 1px solid #F0F0F0;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover {
    border-color: #D8D8D8;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.product-img-wrapper {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #f8f8f8;
}
.product-img-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.product-img-hover {
    opacity: 0;
}
.product-card:hover .product-img-hover {
    opacity: 1;
    transform: scale(1.05);
}
.product-card:hover img:not(.product-img-hover) {
    opacity: 0;
}
.product-badge-wrapper {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
}
.product-badge {
    display: inline-block;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    background: #E53935;
    color: #fff;
}
.product-actions-hover {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 4;
}
.product-card:hover .product-actions-hover {
    opacity: 1;
    transform: translateY(0);
}
.product-action-icon {
    width: 36px;
    height: 36px;
    background: #fff;
    border: 1px solid #EBEBEB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #212121;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.2s ease;
}
.product-action-icon:hover {
    background: #212121;
    color: #fff;
    border-color: #212121;
}
.product-info {
    padding: 16px;
}
.product-category {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999;
    margin-bottom: 6px;
    font-weight: 600;
}
.product-title {
    font-family: var(--sl-font-heading, 'Playfair Display', serif);
    font-size: 1rem;
    font-weight: 700;
    color: #212121;
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-title-link {
    text-decoration: none;
}
.product-price-wrapper {
    font-size: 14px;
    font-weight: 700;
    color: #212121;
}
.product-price-wrapper del { color: #bbb; font-size: 12px; font-weight: 400; }
.product-price-wrapper ins { text-decoration: none; color: #212121; }

/* Front-page grids */
.category-showcase-split {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 24px;
    align-items: stretch;
}
.category-showcase-split--reverse {
    grid-template-columns: 2fr 1fr;
}
.category-editorial-card {
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    min-height: 400px;
}
.category-editorial-content { color: #fff; }
.category-num { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.7; display: block; margin-bottom: 8px; }
.editorial-title { font-family: var(--sl-font-heading); font-size: 2rem; font-weight: 700; margin-bottom: 12px; }
.editorial-desc { font-size: 14px; max-width: 320px; line-height: 1.6; opacity: 0.85; margin-bottom: 20px; }
.category-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.category-products-grid-full {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
@media (max-width: 991.98px) {
    .category-showcase-split,
    .category-showcase-split--reverse {
        grid-template-columns: 1fr;
    }
    .category-products-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575.98px) {
    .category-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .category-products-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }
    .category-editorial-card {
        min-height: 280px;
        padding: 24px;
    }
}

/* USP grid */
.usp-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.usp-section { padding: 32px 0; background: #fff; border-bottom: 1px solid #F0F0F0; }
.usp-icon { font-size: 24px; color: var(--sl-accent, #b8956c); margin-bottom: 12px; }
.usp-title { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.usp-desc { font-size: 12px; color: #999; }
@media (max-width: 767.98px) {
    .usp-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* Hero banner */
.hero-banner {
    background-size: cover;
    background-position: center;
    min-height: 520px;
    display: flex;
    align-items: center;
}
.hero-content { max-width: 560px; }
.hero-subtitle { font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--sl-accent, #b8956c); display: block; margin-bottom: 12px; font-weight: 600; }
.hero-title { font-family: var(--sl-font-heading); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 400; color: #fff; line-height: 1.1; margin-bottom: 16px; }
.hero-desc { font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 28px; max-width: 440px; }
.hero-actions-row { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 767.98px) {
    .hero-banner { min-height: 400px; }
    .hero-content { max-width: 100%; }
}

/* Lookbook */
.overlapping-lookbook-section {
    background-size: cover;
    background-position: center;
    padding: 100px 0;
}
.lookbook-floating-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    padding: 48px;
    max-width: 480px;
    border-radius: 10px;
}
.lookbook-subtitle { font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--sl-accent); display: block; margin-bottom: 8px; font-weight: 600; }
.lookbook-title { font-family: var(--sl-font-heading); font-size: 2rem; font-weight: 700; margin-bottom: 12px; }
.lookbook-desc { font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 24px; }

/* Section common */
.section-padding { padding: 64px 0; }
.section-title { margin-bottom: 40px; }
.section-title h2 { font-family: var(--sl-font-heading); font-size: 2rem; font-weight: 700; margin-bottom: 8px; }
.section-title p { font-size: 14px; color: #999; }
.category-showcase-cta { margin-top: 32px; }

/* ==========================================================================
   SHOP FILTERS & SIDEBAR
   ========================================================================== */

/* ── Scroll target: prevent page jump on pagination ── */
#sl-shop-top {
    scroll-margin-top: 80px;
}

/* ── Desktop sidebar ── */
.sl-shop-sidebar {
    position: sticky;
    top: 100px;
}

/* ── Filter groups (shared by sidebar + offcanvas) ── */
.sl-filter-group {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid #F0F0F0;
}
.sl-filter-group:last-child {
    border-bottom: none;
}
.sl-filter-group__title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #212121;
    margin-bottom: 14px;
}
.sl-filter-group__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sl-filter-group__list li {
    margin-bottom: 2px;
}
.sl-filter-group__list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    color: #555;
    text-decoration: none;
    transition: all 0.2s ease;
}
.sl-filter-group__list a:hover {
    background: #f5f5f5;
    color: #212121;
}
.sl-filter-group__list a.is-active {
    background: #212121;
    color: #fff;
    font-weight: 600;
}
.sl-filter-group__list a.is-active .sl-filter-count {
    background: rgba(255,255,255,0.2);
    color: #fff;
}
.sl-filter-count {
    font-size: 11px;
    font-weight: 600;
    background: #f0f0f0;
    color: #999;
    padding: 2px 8px;
    border-radius: 10px;
    min-width: 24px;
    text-align: center;
}

/* ── Price filter ── */
.sl-price-filter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sl-price-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
}
.sl-price-field {
    display: flex;
    align-items: center;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    padding: 0 10px;
    background: #fff;
    flex: 1;
}
.sl-price-field span {
    font-size: 13px;
    color: #999;
    margin-right: 4px;
}
.sl-price-field input {
    border: none;
    outline: none;
    width: 100%;
    padding: 8px 0;
    font-size: 13px;
    background: transparent;
    color: #212121;
}
.sl-price-field input::placeholder {
    color: #bbb;
}
.sl-price-sep {
    color: #ccc;
    font-size: 12px;
    flex-shrink: 0;
}
.sl-price-filter-btn {
    width: 100%;
    padding: 9px 16px;
    background: #212121;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: background 0.2s ease;
}
.sl-price-filter-btn:hover {
    background: #000;
}

/* ── Quick price tags ── */
.sl-quick-prices {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.sl-quick-price {
    padding: 5px 12px;
    border: 1px solid #E8E8E8;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: #666;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.sl-quick-price:hover {
    border-color: #212121;
    color: #212121;
}
.sl-quick-price.is-active {
    background: #212121;
    border-color: #212121;
    color: #fff;
}

/* ── Clear filters ── */
.sl-clear-filters {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 600;
    color: #E53935;
    text-decoration: none;
    border: 1px solid #E53935;
    border-radius: 6px;
    transition: all 0.2s ease;
    margin-top: 8px;
}
.sl-clear-filters:hover {
    background: #E53935;
    color: #fff;
}

/* ── Shop toolbar (desktop) ── */
.sl-shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #F0F0F0;
}

/* ── Mobile filter bar ── */
.sl-mobile-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #F0F0F0;
}
.sl-filter-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #212121;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: background 0.2s ease;
}
.sl-filter-toggle-btn:hover {
    background: #000;
}
.sl-mobile-sort {
    flex-shrink: 0;
}

/* ── Offcanvas drawer ── */
.sl-filter-offcanvas {
    max-width: 320px;
}
.sl-filter-offcanvas .offcanvas-header {
    border-bottom: 1px solid #F0F0F0;
    padding: 16px 20px;
}
.sl-filter-offcanvas .offcanvas-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.sl-filter-offcanvas .offcanvas-body {
    padding: 20px;
}

/* ── No products state ── */
.sl-no-products {
    text-align: center;
    padding: 80px 24px;
}
.sl-no-products i {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 20px;
}
.sl-no-products h3 {
    font-family: var(--sl-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.sl-no-products p {
    color: #999;
    font-size: 14px;
    margin-bottom: 24px;
}

/* ── Pagination wrap ── */
.sl-pagination-wrap {
    padding-top: 24px;
    border-top: 1px solid #F0F0F0;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
    .sl-shop-toolbar {
        display: none !important;
    }
}

@media (max-width: 575.98px) {
    .sl-mobile-filter-bar {
        flex-direction: row;
        gap: 8px;
    }
    .sl-filter-toggle-btn {
        flex: 1;
        justify-content: center;
    }
    .sl-mobile-sort {
        flex: 1;
    }
    .sl-mobile-sort select {
        width: 100%;
    }
}

/* ── 2. PRODUCT CARD (sl-card) ── */
.sl-shop-grid li {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    clear: none !important;
}

.sl-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid #F0F0F0;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.sl-card:hover {
    border-color: #D8D8D8;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.sl-card__media {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #f8f8f8;
    width: 100%;
    flex-shrink: 0;
}

.sl-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.sl-card__img--hover {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.sl-card:hover .sl-card__img--hover {
    opacity: 1;
    transform: scale(1.05);
}

.sl-card:hover .sl-card__img--main:not(:last-child) {
    opacity: 0;
}

.sl-card__badges {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sl-card__badge {
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    background: #212121;
    color: #fff;
}

.sl-card__badge--sale { background: #E53935; }

.sl-card__actions {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 4;
}

.sl-card:hover .sl-card__actions {
    opacity: 1;
    transform: translateY(0);
}

.sl-card__action-btn {
    width: 36px;
    height: 36px;
    background: #fff;
    border: 1px solid #EBEBEB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #212121;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.2s ease;
    cursor: pointer;
}

.sl-card__action-btn:hover {
    background: #212121;
    color: #fff;
    border-color: #212121;
}

.sl-card__info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.sl-card__cat {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999;
    margin-bottom: 6px;
    font-weight: 600;
}

.sl-card__title {
    font-family: var(--sl-font-heading, 'Playfair Display', serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: #212121;
    margin-bottom: 12px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
}

.sl-card__title:hover { color: #555; }

.sl-card__price {
    margin-top: auto;
    font-size: 14px;
    font-weight: 700;
    color: #212121;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.sl-card__price del {
    color: #bbb;
    font-size: 12px;
    font-weight: 400;
}

.sl-card__price ins {
    text-decoration: none;
    color: #212121;
}

/* ── 3. SINGLE PRODUCT (sl-pdp) — Bootstrap handles grid ── */

/* Gallery */
.sl-pdp__gallery {
    display: flex;
    gap: 16px;
}

.sl-pdp__thumbs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 70px;
    flex-shrink: 0;
    max-height: 525px;
    overflow-y: auto;
    scrollbar-width: thin;
}

.sl-pdp__thumb {
    width: 70px;
    height: 90px;
    border: 1px solid #EBEBEB;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s ease, border-color 0.2s ease;
}

.sl-pdp__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sl-pdp__thumb:hover,
.sl-pdp__thumb.is-active {
    opacity: 1;
    border-color: #212121;
}

.sl-pdp__main-img-wrap {
    position: relative;
    flex-grow: 1;
    aspect-ratio: 4 / 5;
    background: #f8f8f8;
    border-radius: 10px;
    border: 1px solid #F0F0F0;
    overflow: hidden;
    cursor: zoom-in;
}

.sl-pdp__main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.sl-pdp__zoom-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #E0E0E0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #212121;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}
.sl-pdp__zoom-btn:hover { background: #212121; color: #fff; border-color: #212121; }

@media (max-width: 991.98px) {
    .sl-pdp__gallery { flex-direction: column-reverse; gap: 12px; }
    .sl-pdp__thumbs { flex-direction: row; width: 100%; max-height: none; overflow-x: auto; gap: 8px; padding-bottom: 4px; }
    .sl-pdp__thumb { flex: 0 0 64px; width: 64px; height: 80px; }
    .sl-pdp__main-img-wrap { max-height: 55vh; border-radius: 8px; }
    .sl-pdp__title { font-size: 1.5rem; }
    .sl-pdp__price { font-size: 1.2rem; margin-bottom: 16px; padding-bottom: 16px; }
    .sl-pdp__info { position: static; }
}

/* Info */
.sl-pdp__info {
    position: sticky;
    top: 90px;
}

.sl-pdp__cat {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.sl-pdp__title {
    font-family: var(--sl-font-heading, 'Playfair Display', serif);
    font-size: 2rem;
    font-weight: 700;
    color: #212121;
    margin-bottom: 12px;
    line-height: 1.2;
}

.sl-pdp__price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #212121;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #F0F0F0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sl-pdp__price del { font-size: 1rem; color: #bbb; font-weight: 400; }
.sl-pdp__price ins { text-decoration: none; color: #212121; }

.sl-pdp__desc {
    font-size: 13.5px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Cart Form */
.sl-pdp__cart {
    margin-bottom: 32px;
}

.sl-pdp__cart form.cart {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sl-pdp__qty-wrap {
    display: inline-flex;
    align-items: center;
    border: 2px solid #212121;
    border-radius: 6px;
    height: 48px;
    overflow: hidden;
}

.sl-pdp__qty-btn {
    width: 44px;
    height: 100%;
    background: #fff;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #555;
    transition: background 0.2s ease;
}

.sl-pdp__qty-btn:hover { background: #f5f5f5; color: #212121; }

.sl-pdp__qty-input {
    width: 48px;
    height: 100%;
    border: none;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    -moz-appearance: textfield;
}
.sl-pdp__qty-input::-webkit-outer-spin-button,
.sl-pdp__qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.sl-pdp__add-btn {
    height: 48px;
    background: #212121 !important;
    color: #fff !important;
    border: 2px solid #212121 !important;
    border-radius: 6px !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 13px;
    padding: 0 32px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-grow: 1;
}
.sl-pdp__add-btn:hover { background: #fff !important; color: #212121 !important; }

.sl-pdp__cart-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Variations */
.sl-pdp__cart table.variations {
    width: 100%;
    margin-bottom: 16px;
    border-collapse: collapse;
}
.sl-pdp__cart table.variations td.label { padding: 0 16px 12px 0; font-weight: 600; font-size: 13px; color: #212121; }
.sl-pdp__cart table.variations td.value { padding: 0 0 12px 0; }
.sl-pdp__cart table.variations select { width: 100%; padding: 10px 14px; border: 1px solid #E0E0E0; border-radius: 6px; font-size: 13px; }

/* Meta */
.sl-pdp__meta {
    padding-top: 16px;
    border-top: 1px solid #F0F0F0;
    font-size: 12px;
    color: #888;
}
.sl-pdp__meta > span { display: block; margin-bottom: 4px; }
.sl-pdp__meta strong { color: #212121; font-weight: 600; }
.sl-pdp__meta a { color: #666; }

/* Accordion */
.sl-pdp__accordion {
    margin-top: 32px;
    border-top: 1px solid #EBEBEB;
}
.sl-pdp__acc-item { border-bottom: 1px solid #EBEBEB; }
.sl-pdp__acc-head {
    width: 100%;
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #212121;
    cursor: pointer;
}
.sl-pdp__acc-icon { font-size: 10px; color: #999; transition: transform 0.2s ease; }
.sl-pdp__acc-item.is-open .sl-pdp__acc-icon { transform: rotate(45deg); }
.sl-pdp__acc-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.sl-pdp__acc-item.is-open .sl-pdp__acc-body { max-height: 2000px; padding-bottom: 16px; }
.sl-pdp__acc-prose { font-size: 13px; color: #666; line-height: 1.6; }

/* Related Products */
.sl-related {
    max-width: 1200px;
    margin: 80px auto 40px;
    padding: 0 20px;
}
.sl-related__title {
    font-family: var(--sl-font-heading, serif);
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    color: #212121;
}

/* ── 4. LIGHTBOX (sl-lightbox) ── */
.sl-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.sl-lightbox.is-open { display: flex; opacity: 1; }
.sl-lightbox__img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}
.sl-lightbox.is-open .sl-lightbox__img { transform: scale(1); }
.sl-lightbox__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.2s ease;
}
.sl-lightbox__close:hover { background: rgba(255,255,255,0.25); }
.sl-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s ease;
}
.sl-lightbox__nav:hover { background: rgba(255,255,255,0.25); }
.sl-lightbox__nav--prev { left: 24px; }
.sl-lightbox__nav--next { right: 24px; }

/* ==========================================================================
   BOOTSTRAP 5 OVERRIDES & THEME FIXES
   ========================================================================== */

/* Force a narrower, centered container sitewide */
.container {
    max-width: 1140px !important;
}

/* ── GLOBAL IMAGE CONTAINMENT ── */
/* Prevent WooCommerce / plugin images from ever breaking layout */
.woocommerce img,
.woocommerce-page img,
.sl-card img,
.sl-pdp__gallery img,
.product img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
}

/* Override height:auto only where we explicitly set object-fit */
.sl-card__img,
.sl-pdp__main-img,
.sl-pdp__thumb img {
    height: 100% !important;
}

/* Prevent any WooCommerce element from overflowing */
.woocommerce,
.woocommerce-page,
.single-product,
.post-type-archive-product {
    overflow-x: clip;
}

/* WooCommerce default gallery resets */
.woocommerce div.product div.images,
.woocommerce div.product div.images img {
    max-width: 100% !important;
}

.woocommerce .products,
.woocommerce ul.products {
    overflow: hidden;
}

/* Related products containment */
.related.products,
.upsells.products {
    max-width: 100%;
    overflow: hidden;
}

.related.products ul.products,
.upsells.products ul.products {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.related.products ul.products li.product,
.upsells.products ul.products li.product {
    flex: 0 0 calc(25% - 12px);
    max-width: calc(25% - 12px);
    margin: 0 !important;
    padding: 0 !important;
}

@media (max-width: 991.98px) {
    .related.products ul.products li.product,
    .upsells.products ul.products li.product {
        flex: 0 0 calc(33.333% - 11px);
        max-width: calc(33.333% - 11px);
    }
}

@media (max-width: 575.98px) {
    .related.products ul.products li.product,
    .upsells.products ul.products li.product {
        flex: 0 0 calc(50% - 8px);
        max-width: calc(50% - 8px);
    }
}

.related.products ul.products li.product img,
.upsells.products ul.products li.product img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 6px;
}

/* Footer grid — prevent Bootstrap .grid class conflict */
.footer-grid {
    display: grid !important;
}

/* WooCommerce ordering & result count — prevent Bootstrap resets */
.woocommerce-ordering,
.woocommerce-result-count {
    float: none !important;
    margin: 0 !important;
}

.woocommerce-ordering select {
    padding: 8px 14px;
    border: 1px solid var(--sl-border-dark, #d8d4cc);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    border-radius: 4px;
    color: var(--sl-primary, #0f0f0f);
    background-color: #fff;
}

.woocommerce-result-count {
    font-size: 13px;
    color: var(--sl-text-muted, #6b6b6b);
}

/* WooCommerce pagination + blog archive pagination */
nav.woocommerce-pagination,
nav.la-pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #F0F0F0;
}

/* Reset any ul/li defaults WooCommerce may inject */
nav.woocommerce-pagination ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
    border: none;
}

nav.woocommerce-pagination ul li {
    border: none;
    padding: 0;
    margin: 0;
}

/* Page number links & spans (both structures) */
.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border: 1px solid #EBEBEB;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #212121;
    text-decoration: none;
    background: #fff;
    transition: all 0.2s ease;
    cursor: pointer;
}

a.page-numbers:hover,
nav.woocommerce-pagination ul li a:hover {
    background: #212121;
    color: #fff;
    border-color: #212121;
}

span.page-numbers.current,
nav.woocommerce-pagination ul li span.current {
    background: #212121;
    color: #fff;
    border-color: #212121;
}

span.page-numbers.dots {
    border-color: transparent;
    background: none;
    cursor: default;
    color: #999;
}

a.prev.page-numbers,
a.next.page-numbers {
    font-size: 12px;
}

/* ==========================================================================
   MOBILE OFFCANVAS MENU
   ========================================================================== */
.sl-mobile-menu-offcanvas {
    max-width: 320px;
}
.sl-mobile-menu-offcanvas .offcanvas-header {
    border-bottom: 1px solid #F0F0F0;
    padding: 16px 20px;
}
.sl-mobile-menu-offcanvas .offcanvas-title {
    font-family: var(--sl-font-heading);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.04em;
}
.sl-mobile-menu-offcanvas .offcanvas-body {
    padding: 0;
}

.sl-mobile-nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sl-mobile-nav__list li {
    border-bottom: 1px solid #F5F5F5;
}
.sl-mobile-nav__list a {
    display: block;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #212121;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: background 0.15s ease;
}
.sl-mobile-nav__list a:hover,
.sl-mobile-nav__list .current-menu-item a {
    background: #f5f5f5;
    color: var(--sl-accent, #b8956c);
}

.sl-mobile-nav__actions {
    padding: 20px;
    border-top: 1px solid #F0F0F0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sl-mobile-nav__action-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 1px solid #EBEBEB;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #212121;
    text-decoration: none;
    transition: all 0.2s ease;
}
.sl-mobile-nav__action-link:hover {
    background: #212121;
    color: #fff;
    border-color: #212121;
}
.sl-mobile-nav__action-link .cart-count {
    margin-left: auto;
}

/* ==========================================================================
   WOOCOMMERCE BUTTONS — GLOBAL
   ========================================================================== */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt,
.sl-btn-primary,
.single_add_to_cart_button,
.checkout-button,
button.button.alt {
    background: #212121 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 12px 28px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    cursor: pointer !important;
    transition: background 0.2s ease !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1.4 !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.sl-btn-primary:hover,
.single_add_to_cart_button:hover,
.checkout-button:hover {
    background: #000 !important;
    color: #fff !important;
}

/* Outline buttons */
.sl-btn-outline,
.woocommerce a.button:not(.alt):not(.checkout-button) {
    background: transparent !important;
    color: #212121 !important;
    border: 1px solid #212121 !important;
}
.sl-btn-outline:hover,
.woocommerce a.button:not(.alt):not(.checkout-button):hover {
    background: #212121 !important;
    color: #fff !important;
}

/* Light outline for dark backgrounds */
.sl-btn-light {
    border-color: #fff !important;
    color: #fff !important;
}
.sl-btn-light:hover {
    background: #fff !important;
    color: #212121 !important;
}

/* ==========================================================================
   WOOCOMMERCE — CART PAGE
   ========================================================================== */
.woocommerce-cart .woocommerce {
    max-width: 100%;
}

.woocommerce table.shop_table {
    border: 1px solid #F0F0F0;
    border-radius: 8px;
    overflow: hidden;
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
}
.woocommerce table.shop_table th {
    background: #f9f9f9;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #666;
    padding: 14px 16px;
    border-bottom: 1px solid #F0F0F0;
}
.woocommerce table.shop_table td {
    padding: 16px;
    border-bottom: 1px solid #F0F0F0;
    vertical-align: middle;
    font-size: 13px;
    color: #333;
}
.woocommerce table.shop_table img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 6px;
}
.woocommerce table.shop_table .product-remove a {
    color: #E53935;
    font-size: 18px;
    text-decoration: none;
}
.woocommerce table.shop_table .product-name a {
    color: #212121;
    font-weight: 600;
    text-decoration: none;
}

/* Quantity input */
.woocommerce .quantity .qty {
    width: 60px;
    padding: 8px 6px;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

/* Coupon */
.woocommerce .coupon {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}
.woocommerce .coupon .input-text {
    padding: 10px 14px;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    font-size: 13px;
    flex: 1;
    min-width: 160px;
}

/* Cart totals */
.woocommerce .cart_totals {
    border: 1px solid #F0F0F0;
    border-radius: 8px;
    padding: 24px;
    background: #fafafa;
}
.woocommerce .cart_totals h2 {
    font-family: var(--sl-font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.woocommerce .cart_totals table {
    width: 100%;
}
.woocommerce .cart_totals th,
.woocommerce .cart_totals td {
    padding: 10px 0;
    font-size: 13px;
    border-bottom: 1px solid #F0F0F0;
}
.woocommerce .cart_totals .order-total th,
.woocommerce .cart_totals .order-total td {
    font-size: 16px;
    font-weight: 700;
    color: #212121;
}
.woocommerce .cart_totals .checkout-button {
    width: 100%;
    margin-top: 16px;
}

/* ==========================================================================
   WOOCOMMERCE — CHECKOUT PAGE
   ========================================================================== */
.woocommerce-checkout .woocommerce {
    max-width: 100%;
}

.woocommerce form .form-row {
    margin-bottom: 16px;
}
.woocommerce form .form-row label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #555;
    margin-bottom: 6px;
    display: block;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce-input-wrapper input,
.woocommerce-input-wrapper select,
.woocommerce-input-wrapper textarea,
.select2-container--default .select2-selection--single {
    width: 100%;
    padding: 10px 14px !important;
    border: 1px solid #E0E0E0 !important;
    border-radius: 6px !important;
    font-size: 13px;
    color: #212121;
    background: #fff;
    transition: border-color 0.2s ease;
    height: auto !important;
    min-height: 42px;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
    border-color: #212121 !important;
    outline: none;
    box-shadow: none;
}

/* Order review */
.woocommerce-checkout-review-order-table {
    border: 1px solid #F0F0F0 !important;
    border-radius: 8px !important;
    overflow: hidden;
}

/* Payment methods */
.woocommerce-checkout #payment {
    background: #fafafa;
    border-radius: 8px;
    border: 1px solid #F0F0F0;
    padding: 20px;
}
.woocommerce-checkout #payment ul.payment_methods {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}
.woocommerce-checkout #payment ul.payment_methods li {
    padding: 12px 0;
    border-bottom: 1px solid #F0F0F0;
}
.woocommerce-checkout #payment ul.payment_methods li label {
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}
.woocommerce-checkout #payment .place-order {
    padding-top: 16px;
}
.woocommerce #place_order {
    width: 100%;
}

/* ==========================================================================
   WOOCOMMERCE — MY ACCOUNT
   ========================================================================== */
.woocommerce-account .woocommerce {
    max-width: 100%;
}

.woocommerce-MyAccount-navigation {
    margin-bottom: 24px;
}
.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    border: 1px solid #F0F0F0;
    border-radius: 8px;
    padding: 6px;
    background: #fafafa;
}
.woocommerce-MyAccount-navigation ul li {
    flex: 1;
    min-width: 0;
}
.woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 10px 16px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #666;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.woocommerce-MyAccount-navigation ul li a:hover {
    background: #fff;
    color: #212121;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--dashboard.is-active a {
    background: #212121;
    color: #fff;
}

/* Login/Register form (base — account page overrides below) */
.woocommerce form.woocommerce-form-login,
.woocommerce form.woocommerce-form-register {
    border: 1px solid #E8E8E8;
    border-radius: 14px;
    padding: 36px 32px;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

/* Order table */
.woocommerce-orders-table {
    width: 100%;
}



/* ==========================================================================
   WOOCOMMERCE — NOTICES
   ========================================================================== */
.woocommerce-message,
.woocommerce-info {
    border-top-color: #212121 !important;
    background: #f5f5f5;
    border-radius: 6px;
    padding: 12px 20px;
    font-size: 13px;
    margin-bottom: 16px;
}
.woocommerce-error {
    border-top-color: #E53935 !important;
    background: #FFF5F5;
    border-radius: 6px;
}
.woocommerce-message::before,
.woocommerce-info::before {
    color: #212121 !important;
}

/* ==========================================================================
   MOBILE RESPONSIVE FIXES
   ========================================================================== */
@media (max-width: 991.98px) {
    /* My Account nav goes vertical on mobile */
    .woocommerce-MyAccount-navigation ul {
        flex-direction: column;
    }
    .woocommerce-MyAccount-navigation ul li a {
        text-align: left;
    }

    /* Cart table responsive */
    .woocommerce table.shop_table_responsive thead {
        display: none;
    }
    .woocommerce table.shop_table_responsive tr td {
        display: block;
        text-align: right;
        padding: 8px 16px;
    }
    .woocommerce table.shop_table_responsive tr td::before {
        content: attr(data-title) ": ";
        float: left;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 11px;
        letter-spacing: 0.04em;
    }
    .woocommerce table.shop_table_responsive tr {
        border-bottom: 2px solid #F0F0F0;
        margin-bottom: 8px;
    }
}

@media (max-width: 575.98px) {
    /* Tighter container padding on small phones */
    .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    /* Result count: inline */
    .woocommerce-result-count {
        font-size: 11px !important;
        white-space: nowrap;
    }

    /* Checkout columns */
    .woocommerce .col2-set .col-1,
    .woocommerce .col2-set .col-2 {
        width: 100%;
        float: none;
    }
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.sl-contact-info__title {
    font-family: var(--sl-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.sl-contact-info__desc {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 28px;
}
.sl-contact-info__items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
}
.sl-contact-info__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.sl-contact-info__icon {
    width: 44px;
    height: 44px;
    background: #f5f5f5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--sl-accent, #b8956c);
    flex-shrink: 0;
}
.sl-contact-info__item strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #212121;
    margin-bottom: 4px;
}
.sl-contact-info__item p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}
.sl-contact-info__item a {
    color: #212121;
    text-decoration: none;
}
.sl-contact-info__item a:hover {
    color: var(--sl-accent, #b8956c);
}

/* Social links in contact */
.sl-contact-social {
    margin-top: 16px;
}
.sl-contact-social strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #212121;
    margin-bottom: 10px;
}
.sl-contact-social__links {
    display: flex;
    gap: 10px;
}
.sl-contact-social__links a {
    width: 40px;
    height: 40px;
    border: 1px solid #EBEBEB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.sl-contact-social__links a:hover {
    background: #212121;
    border-color: #212121;
    color: #fff;
}

/* Contact form */
.sl-contact-form-wrap {
    background: #fafafa;
    border: 1px solid #F0F0F0;
    border-radius: 10px;
    padding: 32px;
}
.sl-contact-form__title {
    font-family: var(--sl-font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
}
.sl-contact-form label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #555;
    margin-bottom: 6px;
}
.sl-contact-form label .required {
    color: #E53935;
}
.sl-contact-form input[type="text"],
.sl-contact-form input[type="email"],
.sl-contact-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    font-size: 13px;
    color: #212121;
    background: #fff;
    transition: border-color 0.2s ease;
}
.sl-contact-form input:focus,
.sl-contact-form textarea:focus {
    border-color: #212121;
    outline: none;
}
.sl-contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Alerts */
.sl-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}
.sl-alert--success {
    background: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #C8E6C9;
}
.sl-alert--error {
    background: #FFF5F5;
    color: #E53935;
    border: 1px solid #FFCDD2;
}

/* Map */
.sl-contact-map {
    border-radius: 10px;
    overflow: hidden;
}

/* ==========================================================================
   404 PAGE
   ========================================================================== */
.sl-404 {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
}
.sl-404__inner {
    max-width: 480px;
}
.sl-404__code {
    display: block;
    font-family: var(--sl-font-heading);
    font-size: clamp(6rem, 15vw, 10rem);
    font-weight: 700;
    color: #F0F0F0;
    line-height: 1;
    margin-bottom: 16px;
}
.sl-404__title {
    font-family: var(--sl-font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #212121;
}
.sl-404__desc {
    font-size: 14px;
    color: #999;
    line-height: 1.6;
    margin-bottom: 28px;
}
.sl-404__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   CUSTOM LOGO IN HEADER
   ========================================================================== */
.logo .custom-logo-link {
    display: flex;
    align-items: center;
}
.logo .custom-logo {
    max-height: 48px;
    width: auto;
}
.footer-logo .custom-logo {
    max-height: 36px;
    width: auto;
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.sl-about-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--sl-accent, #b8956c);
    margin-bottom: 10px;
}
.sl-about-heading {
    font-family: var(--sl-font-heading);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: #212121;
    margin-bottom: 16px;
    line-height: 1.3;
}
.sl-about-text {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 12px;
}
.sl-about-image-placeholder {
    background: #f5f5f5;
    border: 2px dashed #e0e0e0;
    border-radius: 10px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #bbb;
    font-size: 14px;
}
.sl-about-image-placeholder i {
    font-size: 48px;
    color: #ddd;
}

/* Value Cards */
.sl-value-card {
    background: #fafafa;
    border: 1px solid #F0F0F0;
    border-radius: 10px;
    padding: 28px 24px;
    text-align: center;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sl-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.sl-value-icon {
    width: 52px;
    height: 52px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--sl-accent, #b8956c);
    margin-bottom: 16px;
}
.sl-value-card h3 {
    font-family: var(--sl-font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #212121;
}
.sl-value-card p {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    margin: 0;
}

/* Stats */
.sl-about-stats {
    background: #fafafa;
    border: 1px solid #F0F0F0;
    border-radius: 10px;
    padding: 40px 24px;
}
.sl-stat__number {
    display: block;
    font-family: var(--sl-font-heading);
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    color: #212121;
    margin-bottom: 4px;
}
.sl-stat__label {
    font-size: 13px;
    color: #999;
    font-weight: 500;
}

/* Section title reusable */
.sl-section-title {
    font-family: var(--sl-font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #212121;
}

/* ==========================================================================
   POLICY / LEGAL PAGES
   ========================================================================== */
.sl-policy-toc {
    position: sticky;
    top: 100px;
    background: #fafafa;
    border: 1px solid #F0F0F0;
    border-radius: 10px;
    padding: 20px;
}
.sl-policy-toc__title {
    font-family: var(--sl-font-heading);
    font-size: 14px;
    font-weight: 700;
    color: #212121;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}
.sl-policy-toc__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sl-policy-toc__item {
    margin-bottom: 4px;
}
.sl-policy-toc__item a {
    display: block;
    padding: 6px 10px;
    font-size: 13px;
    color: #555;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.15s ease;
}
.sl-policy-toc__item a:hover {
    background: #fff;
    color: #212121;
}
.sl-policy-toc__item--sub a {
    padding-left: 24px;
    font-size: 12px;
    color: #888;
}
.sl-policy-article {
    /* Nothing extra */
}
.sl-policy-meta {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 13px;
    color: #999;
}

/* sl-prose typography for content pages */
.sl-prose {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}
.sl-prose h2 {
    font-family: var(--sl-font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: #212121;
    margin-top: 32px;
    margin-bottom: 12px;
}
.sl-prose h3 {
    font-family: var(--sl-font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-top: 24px;
    margin-bottom: 8px;
}
.sl-prose p {
    margin-bottom: 14px;
}
.sl-prose ul,
.sl-prose ol {
    margin-bottom: 14px;
    padding-left: 24px;
}
.sl-prose li {
    margin-bottom: 6px;
}
.sl-prose strong {
    color: #212121;
}
.sl-prose a {
    color: var(--sl-accent, #b8956c);
    text-decoration: underline;
}
.sl-prose a:hover {
    color: #212121;
}
.sl-prose img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 16px 0;
}
.sl-prose blockquote {
    border-left: 3px solid var(--sl-accent, #b8956c);
    padding: 12px 20px;
    margin: 20px 0;
    background: #fafafa;
    font-style: italic;
    color: #666;
}
.sl-prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}
.sl-prose th,
.sl-prose td {
    border: 1px solid #e0e0e0;
    padding: 10px 14px;
    font-size: 13px;
    text-align: left;
}
.sl-prose th {
    background: #f9f9f9;
    font-weight: 600;
}

/* ==========================================================================
   WC PAGE WRAPPER
   ========================================================================== */
.sl-wc-page {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   RESPONSIVE — NEW PAGES
   ========================================================================== */
@media (max-width: 991px) {
    .sl-policy-toc {
        position: static;
        margin-bottom: 20px;
    }
}

/* ==========================================================================
   WOOCOMMERCE — GLOBAL ELEMENTS
   ========================================================================== */

/* Buttons */
.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button,
.woocommerce #respond input#submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    line-height: 1.4;
    background: #212121;
    color: #fff;
}
.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce a.button:hover,
.woocommerce #respond input#submit:hover {
    background: #000;
    color: #fff;
}
.woocommerce .button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce a.button.alt,
.woocommerce #respond input#submit.alt {
    background: #212121;
    color: #fff;
}
.woocommerce .button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce a.button.alt:hover {
    background: #000;
    color: #fff;
}
.woocommerce .button:disabled,
.woocommerce button.button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Notices */
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error {
    padding: 14px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    list-style: none;
}
.woocommerce .woocommerce-message {
    background: #E8F5E9;
    color: #2E7D32;
    border-left: 4px solid #4CAF50;
}
.woocommerce .woocommerce-info {
    background: #E3F2FD;
    color: #1565C0;
    border-left: 4px solid #2196F3;
}
.woocommerce .woocommerce-error {
    background: #FFF5F5;
    color: #E53935;
    border-left: 4px solid #F44336;
}
.woocommerce .woocommerce-error li {
    list-style: none;
}
.woocommerce .woocommerce-message .button,
.woocommerce .woocommerce-info .button,
.woocommerce .woocommerce-error .button {
    float: right;
    padding: 6px 14px;
    font-size: 12px;
    background: transparent;
    color: inherit;
    border: 1px solid currentColor;
}
.woocommerce .woocommerce-message .button:hover,
.woocommerce .woocommerce-info .button:hover {
    background: rgba(0,0,0,0.05);
}

/* Form fields global */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce input[type="text"],
.woocommerce input[type="email"],
.woocommerce input[type="tel"],
.woocommerce input[type="password"],
.woocommerce input[type="number"],
.woocommerce input[type="url"],
.woocommerce select,
.woocommerce textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    font-size: 14px;
    color: #212121;
    background: #fff;
    transition: border-color 0.2s ease;
    font-family: var(--sl-font-body);
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce input[type="text"]:focus,
.woocommerce input[type="email"]:focus,
.woocommerce input[type="tel"]:focus,
.woocommerce input[type="password"]:focus,
.woocommerce select:focus,
.woocommerce textarea:focus {
    border-color: #212121;
    outline: none;
    box-shadow: 0 0 0 2px rgba(33,33,33,0.08);
}
.woocommerce form .form-row label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
}
.woocommerce form .form-row .required {
    color: #E53935;
}

/* ==========================================================================
   MY ACCOUNT
   ========================================================================== */
.woocommerce-account .woocommerce-MyAccount-navigation {
    width: 100%;
    margin-bottom: 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    background: #fafafa;
    border: 1px solid #F0F0F0;
    border-radius: 10px;
    padding: 8px;
    margin-bottom: 28px;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li {
    flex: 1;
    min-width: 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-align: center;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
    background: #fff;
    color: #212121;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--dashboard.is-active a {
    background: #212121;
    color: #fff;
    font-weight: 600;
}
/* WC uses .is-active on current item */
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
    background: #212121;
    color: #fff;
    font-weight: 600;
}

/* Account content area */
.woocommerce-account .woocommerce-MyAccount-content {
    width: 100%;
}

/* Dashboard welcome */
.woocommerce-account .woocommerce-MyAccount-content > p:first-child {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    padding: 20px 24px;
    background: #fafafa;
    border: 1px solid #F0F0F0;
    border-radius: 10px;
    margin-bottom: 24px;
}
.woocommerce-account .woocommerce-MyAccount-content > p:first-child a {
    color: var(--sl-accent, #b8956c);
    font-weight: 600;
}

/* Orders table */
.woocommerce-account .woocommerce-orders-table {
    width: 100%;
    border-collapse: collapse;
}
.woocommerce-account .woocommerce-orders-table th {
    background: #fafafa;
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #888;
    text-align: left;
    border-bottom: 2px solid #F0F0F0;
}
.woocommerce-account .woocommerce-orders-table td {
    padding: 14px 16px;
    font-size: 14px;
    color: #444;
    border-bottom: 1px solid #F5F5F5;
    vertical-align: middle;
}
.woocommerce-account .woocommerce-orders-table tr:last-child td {
    border-bottom: none;
}
.woocommerce-account .woocommerce-orders-table .woocommerce-orders-table__cell-order-number a {
    color: #212121;
    font-weight: 600;
}
.woocommerce-account .woocommerce-orders-table .woocommerce-orders-table__cell-order-actions a.button {
    padding: 6px 14px;
    font-size: 12px;
}

/* No orders / empty state */
.woocommerce-account .woocommerce-info {
    text-align: center;
    padding: 48px 24px;
    background: #fafafa;
    border: 1px dashed #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}
.woocommerce-account .woocommerce-info::before {
    display: block;
    font-size: 32px;
    margin-bottom: 12px;
    color: #bbb;
}
.woocommerce-account .woocommerce-info .wc-forward,
.woocommerce-account .sl-account__content .wc-forward {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 28px;
    background: #212121;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: background 0.25s ease, transform 0.2s ease;
}
.woocommerce-account .woocommerce-info .wc-forward:hover,
.woocommerce-account .sl-account__content .wc-forward:hover {
    background: #444;
    transform: translateY(-1px);
    color: #fff;
}

/* Addresses */
.woocommerce-account .woocommerce-Addresses {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.woocommerce-account .woocommerce-Addresses .woocommerce-Address,
.woocommerce-account .woocommerce-Addresses .col-1,
.woocommerce-account .woocommerce-Addresses .col-2 {
    min-width: 0;
}
.woocommerce-account .woocommerce-Address {
    background: #fff;
    border: 1px solid #E8E8E8;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}
.woocommerce-account .woocommerce-Address header,
.woocommerce-account .woocommerce-Address .woocommerce-Address-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid #F0F0F0;
}
.woocommerce-account .woocommerce-Address header h3,
.woocommerce-account .woocommerce-Address .woocommerce-Address-title h3 {
    font-family: var(--sl-font-heading);
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    color: #212121;
}
.woocommerce-account .woocommerce-Address header a,
.woocommerce-account .woocommerce-Address .woocommerce-Address-title a {
    font-size: 12px;
    color: var(--sl-accent, #b8956c);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    padding: 4px 12px;
    border: 1px solid var(--sl-accent, #b8956c);
    border-radius: 6px;
    transition: all 0.2s ease;
}
.woocommerce-account .woocommerce-Address header a:hover,
.woocommerce-account .woocommerce-Address .woocommerce-Address-title a:hover {
    background: var(--sl-accent, #b8956c);
    color: #fff;
}
.woocommerce-account .woocommerce-Address address {
    font-style: normal;
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* Login / Register forms */
.woocommerce-account .woocommerce-form-login,
.woocommerce-account .woocommerce-form-register {
    background: #fff;
    border: 1px solid #E8E8E8;
    border-radius: 14px;
    padding: 36px 32px;
    max-width: 480px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.woocommerce-account .u-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 960px;
    margin: 0 auto;
}
.woocommerce-account .u-columns .u-column1,
.woocommerce-account .u-columns .u-column2,
.woocommerce-account .u-columns .col-1,
.woocommerce-account .u-columns .col-2 {
    min-width: 0;
}
.woocommerce-account .u-columns h2,
.woocommerce-account .woocommerce-form-login h2,
.woocommerce-account .woocommerce-form-register h2 {
    font-family: var(--sl-font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: #212121;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #F0F0F0;
}

/* Form input refinement for login/register */
.woocommerce-account .woocommerce-form-login .form-row input.input-text,
.woocommerce-account .woocommerce-form-register .form-row input.input-text {
    padding: 13px 16px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.woocommerce-account .woocommerce-form-login .form-row input.input-text:focus,
.woocommerce-account .woocommerce-form-register .form-row input.input-text:focus {
    border-color: var(--sl-primary, #212121);
    box-shadow: 0 0 0 3px rgba(33,33,33,0.06);
}

/* Login / Register submit button */
.woocommerce-account .woocommerce-form-login .woocommerce-button,
.woocommerce-account .woocommerce-form-register .woocommerce-button {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: #212121;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
    margin-top: 8px;
}
.woocommerce-account .woocommerce-form-login .woocommerce-button:hover,
.woocommerce-account .woocommerce-form-register .woocommerce-button:hover {
    background: #000;
    transform: translateY(-1px);
}

.woocommerce .woocommerce-form__label-for-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
    margin: 12px 0;
}
.woocommerce .woocommerce-form__label-for-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #212121;
}
.woocommerce .lost_password {
    margin-top: 14px;
    text-align: center;
}
.woocommerce .lost_password a {
    font-size: 13px;
    color: var(--sl-accent, #b8956c);
    font-weight: 500;
    transition: color 0.2s ease;
}
.woocommerce .lost_password a:hover {
    color: #212121;
}

/* Account details form */
.woocommerce-account .woocommerce-EditAccountForm fieldset {
    border: 1px solid #F0F0F0;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}
.woocommerce-account .woocommerce-EditAccountForm fieldset legend {
    font-size: 14px;
    font-weight: 600;
    padding: 0 8px;
}

/* ==========================================================================
   CART
   ========================================================================== */
.woocommerce table.shop_table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #F0F0F0;
    border-radius: 10px;
    overflow: hidden;
}
.woocommerce table.shop_table th {
    background: #fafafa;
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #888;
    text-align: left;
    border-bottom: 2px solid #F0F0F0;
}
.woocommerce table.shop_table td {
    padding: 14px 16px;
    font-size: 14px;
    color: #444;
    border-bottom: 1px solid #F5F5F5;
    vertical-align: middle;
}
.woocommerce table.shop_table img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 6px;
}
.woocommerce table.shop_table .product-remove a {
    color: #999;
    font-size: 18px;
    text-decoration: none;
}
.woocommerce table.shop_table .product-remove a:hover {
    color: #E53935;
}
.woocommerce table.shop_table .product-name a {
    color: #212121;
    font-weight: 500;
    text-decoration: none;
}
.woocommerce table.shop_table .product-name a:hover {
    color: var(--sl-accent, #b8956c);
}

/* Quantity input */
.woocommerce .quantity .qty {
    width: 60px;
    text-align: center;
    padding: 8px;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    font-size: 14px;
}

/* Cart collaterals / Totals */
.woocommerce .cart-collaterals {
    margin-top: 24px;
}
.woocommerce .cart_totals {
    width: 100%;
    max-width: 440px;
    margin-left: auto;
}
.woocommerce .cart_totals h2 {
    font-family: var(--sl-font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.woocommerce .cart_totals table {
    width: 100%;
    border-collapse: collapse;
}
.woocommerce .cart_totals table th,
.woocommerce .cart_totals table td {
    padding: 12px 0;
    border-bottom: 1px solid #F0F0F0;
    font-size: 14px;
}
.woocommerce .cart_totals table th {
    font-weight: 600;
    color: #666;
    text-align: left;
    width: 40%;
}
.woocommerce .cart_totals table .order-total th,
.woocommerce .cart_totals table .order-total td {
    font-size: 16px;
    font-weight: 700;
    color: #212121;
    border-bottom: none;
}
.woocommerce .cart_totals .wc-proceed-to-checkout {
    margin-top: 16px;
}
.woocommerce .cart_totals .wc-proceed-to-checkout a.checkout-button {
    display: block;
    text-align: center;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 700;
    background: #212121;
    color: #fff;
    border-radius: 8px;
}
.woocommerce .cart_totals .wc-proceed-to-checkout a.checkout-button:hover {
    background: #000;
}

/* Coupon */
.woocommerce .coupon {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}
.woocommerce .coupon label {
    display: none;
}
.woocommerce .coupon #coupon_code {
    flex: 1;
    min-width: 160px;
    max-width: 240px;
}
.woocommerce .coupon .button {
    padding: 10px 20px;
}
.woocommerce td.actions {
    text-align: right;
}
.woocommerce td.actions .coupon {
    float: left;
}
.woocommerce td.actions > .button {
    margin-left: 8px;
}

/* ==========================================================================
   CHECKOUT
   ========================================================================== */
.woocommerce-checkout .col2-set {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}
.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
    flex: 1 1 360px;
}
.woocommerce-checkout h3 {
    font-family: var(--sl-font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #F0F0F0;
}
.woocommerce-checkout .form-row {
    margin-bottom: 16px;
}
.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last {
    width: 48%;
    display: inline-block;
}
.woocommerce-checkout .form-row-first {
    float: left;
    margin-right: 4%;
}
.woocommerce-checkout .form-row-wide {
    width: 100%;
    clear: both;
}

/* Order review */
.woocommerce-checkout #order_review_heading {
    font-family: var(--sl-font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table {
    margin-bottom: 24px;
}

/* Payment methods */
.woocommerce-checkout #payment {
    background: #fafafa;
    border: 1px solid #F0F0F0;
    border-radius: 10px;
    padding: 24px;
}
.woocommerce-checkout #payment ul.payment_methods {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.woocommerce-checkout #payment ul.payment_methods li {
    padding: 14px 16px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 8px;
    background: #fff;
}
.woocommerce-checkout #payment ul.payment_methods li label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #212121;
    cursor: pointer;
    margin: 0;
}
.woocommerce-checkout #payment ul.payment_methods li .payment_box {
    padding: 12px 0 0 28px;
    font-size: 13px;
    color: #777;
}
.woocommerce-checkout #payment .place-order {
    padding-top: 16px;
}
.woocommerce-checkout #payment #place_order {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    font-weight: 700;
    background: #212121;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}
.woocommerce-checkout #payment #place_order:hover {
    background: #000;
}
.woocommerce-checkout .woocommerce-privacy-policy-text {
    font-size: 12px;
    color: #999;
    margin-bottom: 12px;
}
.woocommerce-checkout .woocommerce-terms-and-conditions-checkbox-text {
    font-size: 13px;
}

/* ==========================================================================
   WC RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {

    /* My Account nav → vertical */
    .woocommerce-account .woocommerce-MyAccount-navigation ul {
        flex-direction: column;
    }
    .woocommerce-account .woocommerce-MyAccount-navigation ul li a {
        justify-content: flex-start;
    }

    /* Login columns → stack */
    .woocommerce-account .u-columns {
        grid-template-columns: 1fr;
    }
    .woocommerce-account .woocommerce-form-login,
    .woocommerce-account .woocommerce-form-register {
        max-width: 100%;
        padding: 28px 20px;
    }

    /* Addresses → stack */
    .woocommerce-account .woocommerce-Addresses {
        grid-template-columns: 1fr;
    }

    /* Orders table → card layout */
    .woocommerce-account .woocommerce-orders-table thead {
        display: none;
    }
    .woocommerce-account .woocommerce-orders-table,
    .woocommerce-account .woocommerce-orders-table tbody,
    .woocommerce-account .woocommerce-orders-table tr,
    .woocommerce-account .woocommerce-orders-table td {
        display: block;
        width: 100%;
    }
    .woocommerce-account .woocommerce-orders-table tr {
        background: #fafafa;
        border: 1px solid #F0F0F0;
        border-radius: 8px;
        padding: 16px;
        margin-bottom: 12px;
    }
    .woocommerce-account .woocommerce-orders-table td {
        padding: 4px 0;
        border: none;
        font-size: 13px;
    }
    .woocommerce-account .woocommerce-orders-table td::before {
        content: attr(data-title) ": ";
        font-weight: 600;
        color: #444;
    }

    /* Cart table → card */
    .woocommerce table.shop_table.cart thead {
        display: none;
    }
    .woocommerce table.shop_table.cart,
    .woocommerce table.shop_table.cart tbody,
    .woocommerce table.shop_table.cart tr,
    .woocommerce table.shop_table.cart td {
        display: block;
        width: 100%;
    }
    .woocommerce table.shop_table.cart tr {
        border: 1px solid #F0F0F0;
        border-radius: 8px;
        padding: 16px;
        margin-bottom: 12px;
        background: #fafafa;
        position: relative;
    }
    .woocommerce table.shop_table.cart td {
        padding: 4px 0;
        border: none;
        text-align: left;
    }
    .woocommerce table.shop_table.cart td.product-remove {
        position: absolute;
        top: 12px;
        right: 12px;
    }
    .woocommerce table.shop_table.cart td.product-thumbnail {
        text-align: center;
        padding-bottom: 8px;
    }
    .woocommerce table.shop_table.cart td.product-thumbnail img {
        width: 80px;
        height: 80px;
    }
    .woocommerce table.shop_table.cart td::before {
        content: attr(data-title);
        font-weight: 600;
        color: #444;
        margin-right: 8px;
    }
    .woocommerce table.shop_table.cart td.actions {
        text-align: center;
    }
    .woocommerce table.shop_table.cart td.actions .coupon {
        float: none;
        justify-content: center;
        margin-bottom: 12px;
    }
    .woocommerce table.shop_table.cart td.actions > .button {
        margin: 0;
    }
    .woocommerce .cart_totals {
        max-width: 100%;
    }

    /* Checkout columns → stack */
    .woocommerce-checkout .col2-set {
        flex-direction: column;
    }
    .woocommerce-checkout .form-row-first,
    .woocommerce-checkout .form-row-last {
        width: 100%;
        float: none;
        margin-right: 0;
    }
}

/* ==========================================================================
   MY ACCOUNT — CUSTOM sl-account
   ========================================================================== */
.sl-account {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Navigation */
.sl-account__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    background: #fafafa;
    border: 1px solid #F0F0F0;
    border-radius: 12px;
    padding: 8px;
    margin-bottom: 32px;
}
.sl-account__nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 500;
    color: #777;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    flex: 1;
    justify-content: center;
    white-space: nowrap;
}
.sl-account__nav-item:hover {
    background: #fff;
    color: #212121;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.sl-account__nav-item--active {
    background: #212121;
    color: #fff !important;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.sl-account__nav-item--active:hover {
    background: #111;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.sl-account__nav-item--logout {
    color: #c0392b;
}
.sl-account__nav-item--logout:hover {
    background: #FFF5F5;
    color: #e74c3c;
    box-shadow: none;
}
.sl-account__nav-icon {
    font-size: 14px;
    width: 16px;
    text-align: center;
}
.sl-account__nav-label {
    /* label text */
}

/* Content area */
.sl-account__content {
    width: 100%;
}

/* ==========================================================================
   DASHBOARD — sl-dash
   ========================================================================== */
.sl-dash {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Welcome */
.sl-dash__welcome {
    display: flex;
    align-items: center;
    gap: 18px;
    background: linear-gradient(135deg, #fafafa 0%, #f0ede8 100%);
    border: 1px solid #ebe7e0;
    border-radius: 14px;
    padding: 28px 30px;
}
.sl-dash__avatar img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.sl-dash__greeting {
    flex: 1;
}
.sl-dash__hello {
    font-family: var(--sl-font-heading);
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    font-weight: 700;
    color: #212121;
    margin: 0 0 4px;
    line-height: 1.3;
}
.sl-dash__sub {
    font-size: 14px;
    color: #888;
    margin: 0;
    line-height: 1.5;
}

/* Stat Cards */
.sl-dash__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.sl-dash__stat-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid #F0F0F0;
    border-radius: 12px;
    padding: 20px;
    transition: box-shadow 0.2s ease;
}
.sl-dash__stat-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.sl-dash__stat-icon {
    width: 44px;
    height: 44px;
    background: #f5f0eb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--sl-accent, #b8956c);
    flex-shrink: 0;
}
.sl-dash__stat-icon--green {
    background: #e8f5e9;
    color: #4caf50;
}
.sl-dash__stat-icon--purple {
    background: #ede7f6;
    color: #7e57c2;
}
.sl-dash__stat-info {
    display: flex;
    flex-direction: column;
}
.sl-dash__stat-value {
    font-size: 18px;
    font-weight: 700;
    color: #212121;
    line-height: 1.2;
}
.sl-dash__stat-label {
    font-size: 12px;
    color: #999;
    margin-top: 2px;
}

/* Quick Actions */
.sl-dash__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sl-dash__action-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid #F0F0F0;
    border-radius: 12px;
    padding: 18px 22px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.sl-dash__action-card:hover {
    border-color: #ddd;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    transform: translateX(4px);
}
.sl-dash__action-icon {
    width: 44px;
    height: 44px;
    background: #f5f0eb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--sl-accent, #b8956c);
    flex-shrink: 0;
}
.sl-dash__action-icon--green {
    background: #e8f5e9;
    color: #4caf50;
}
.sl-dash__action-icon--blue {
    background: #e3f2fd;
    color: #2196f3;
}
.sl-dash__action-icon--accent {
    background: #f5f0eb;
    color: var(--sl-accent, #b8956c);
}
.sl-dash__action-text {
    flex: 1;
    min-width: 0;
}
.sl-dash__action-text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #212121;
    margin-bottom: 2px;
}
.sl-dash__action-text span {
    font-size: 13px;
    color: #999;
}
.sl-dash__action-arrow {
    color: #ccc;
    font-size: 12px;
    flex-shrink: 0;
    transition: transform 0.2s ease, color 0.2s ease;
}
.sl-dash__action-card:hover .sl-dash__action-arrow {
    color: #212121;
    transform: translateX(3px);
}

/* ==========================================================================
   MY ACCOUNT — RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {
    .sl-account__nav {
        flex-direction: column;
        gap: 4px;
    }
    .sl-account__nav-item {
        justify-content: flex-start;
        padding: 12px 16px;
    }

    .sl-dash__welcome {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .sl-dash__stats {
        grid-template-columns: 1fr;
    }

    .sl-dash__action-card {
        padding: 14px 16px;
    }
    .sl-dash__action-text span {
        display: none;
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    .sl-dash__stats {
        grid-template-columns: repeat(2, 1fr);
    }
}
