/**
 * Timepiece Souq Theme - Main Stylesheet
 * Luxury Watch Store Theme
 */

/* Black & white theme */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f5;
    --bg-card: #ffffff;
    --bg-input: #eeeeee;
    --accent-primary: #1a1a1a;
    --accent-secondary: #333333;
    --accent-glow: rgba(0, 0, 0, 0.12);
    --accent-error: #b91c1c;
    --accent-success: #166534;
    --accent-warning: #92400e;
    --text-primary: #111111;
    --text-secondary: #333333;
    --text-muted: #666666;
    --border-color: rgba(0, 0, 0, 0.1);
    --border-focus: rgba(0, 0, 0, 0.4);
    --gradient-1: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    --gradient-2: linear-gradient(135deg, #404040 0%, #1a1a1a 100%);
    --gradient-hero: radial-gradient(ellipse at 50% 0%, rgba(0, 0, 0, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 0, 0, 0.02) 0%, transparent 40%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif !important;
    background: var(--bg-primary) !important;
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--text-primary);
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   Background Pattern
======================================== */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: var(--gradient-hero);
    transform: none !important;
    /* Force fixed position - no parallax */
}

.bg-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.02) 0%, transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(0, 0, 0, 0.02) 0%, transparent 30%);
    animation: pulse 8s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

/* ========================================
   Navigation
======================================== */
.gcc-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

/* Offset navbar when admin bar is visible */
body.admin-bar .gcc-navbar {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar .gcc-navbar {
        top: 46px;
    }
}

/* Language Switcher */
.language-switcher {
    position: relative;
}

.lang-dropdown {
    position: relative;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-color);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    color: var(--text-secondary);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-current:hover {
    background: rgba(0, 0, 0, 0.08);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.lang-current svg {
    transition: transform 0.3s ease;
}

.lang-dropdown.active .lang-current svg {
    transform: rotate(180deg);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.5rem 0;
    min-width: 150px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.lang-dropdown.active .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-menu li {
    margin: 0;
}

.lang-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.lang-menu a:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--accent-primary);
}

.lang-menu a.active {
    background: rgba(0, 0, 0, 0.05);
    color: var(--accent-primary);
}

.lang-flag {
    font-size: 1.2rem;
    line-height: 1;
}

.lang-name {
    font-weight: 500;
}

.lang-code {
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
}

/* RTL Support */
body.rtl {
    direction: rtl;
}

body.rtl .gcc-navbar {
    left: 0;
    right: 0;
    direction: ltr;
}

/* Reverse header in RTL: language switcher & nav-actions on the left, logo on the right */
body.rtl .navbar-content {
    flex-direction: row-reverse;
}

body.rtl .navbar-content .logo {
    margin-right: 0;
    margin-left: auto;
}

body.rtl .navbar-left {
    justify-content: flex-end;
}

body.rtl .nav-actions {
    justify-content: flex-start;
}

/* Desktop nav: reverse menu order in Arabic (Contact, Blog, Home) */
body.rtl .navbar-left .nav-links,
html[dir="rtl"] .navbar-left .nav-links {
    flex-direction: row-reverse;
}

/* Desktop full-width menu bar: keep horizontal row in RTL */
body.rtl .header-menu-full,
html[dir="rtl"] .header-menu-full {
    flex-direction: row;
}

body.rtl .nav-actions,
body.rtl .logo {
    flex-direction: row;
}

/* Same header reversal when dir="rtl" is set on html (e.g. by Polylang) */
html[dir="rtl"] .navbar-content {
    flex-direction: row-reverse;
}

html[dir="rtl"] .navbar-content .logo {
    margin-right: 0;
    margin-left: auto;
}

html[dir="rtl"] .navbar-left {
    justify-content: flex-end;
}

html[dir="rtl"] .nav-actions {
    justify-content: flex-start;
}

/* RTL header side-swap only: left = language/cart, right = logo/menu */
body.rtl .navbar-content.header-layout-swap-rtl,
html[dir="rtl"] .navbar-content.header-layout-swap-rtl {
    flex-direction: row;
}

body.rtl .navbar-content.header-layout-swap-rtl .nav-actions,
html[dir="rtl"] .navbar-content.header-layout-swap-rtl .nav-actions {
    order: 1;
    flex: 0 0 auto;
    justify-content: flex-start;
}

body.rtl .navbar-content.header-layout-swap-rtl .navbar-left,
html[dir="rtl"] .navbar-content.header-layout-swap-rtl .navbar-left {
    order: 2;
    flex: 1;
    justify-content: flex-end;
}

body.rtl .navbar-content.header-layout-swap-rtl .logo,
html[dir="rtl"] .navbar-content.header-layout-swap-rtl .logo {
    order: 3;
    margin-left: 0;
    margin-right: 0;
}

body.rtl .lang-menu {
    right: auto;
    left: 0;
}

body.rtl .breadcrumbs {
    flex-direction: row-reverse;
}

body.rtl .gcc-form-row {
    direction: rtl;
}

body.rtl .gcc-quantity {
    flex-direction: row-reverse;
}

body.rtl .product-footer,
body.rtl .cart-item,
body.rtl .order-item-row {
    flex-direction: row-reverse;
}

body.rtl .footer-grid {
    direction: rtl;
}

/* Arabic Font Support */
body.rtl {
    font-family: 'Outfit', 'Cairo', 'Tajawal', sans-serif;
}

body.rtl h1,
body.rtl h2,
body.rtl h3,
body.rtl h4,
body.rtl h5,
body.rtl h6 {
    font-family: 'Outfit', 'Cairo', 'Tajawal', sans-serif;
}

.navbar-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.navbar-content .logo {
    flex: 0 0 auto;
    margin-right: auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-img {
    width: 125px;
    height: 45px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-text .logo-accent,
.logo-text span {
    color: var(--accent-primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links>li {
    position: relative;
}

.nav-links>li>a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}

.nav-links>li.has-dropdown>a::after {
    content: '';
    display: inline-block;
    margin-left: 0.35em;
    vertical-align: middle;
    border: 4px solid transparent;
    border-top-color: currentColor;
    border-bottom: none;
}

.nav-links>li>a:hover {
    color: var(--accent-primary);
}

/* Hide "Under Header" menu items from main nav on desktop (they show in the bar below) */
/* Desktop: mobile panel is a pass-through wrapper; hide its header */
@media (min-width: 769px) {
    .nav-links > li.nav-link-header-below {
        display: none;
    }
    .mobile-menu-panel {
        display: contents;
    }
    .mobile-menu-header {
        display: none;
    }
}

.nav-links>li:not(.has-dropdown)>a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: width 0.3s ease;
    border: none;
}

.nav-links>li:not(.has-dropdown)>a:hover::after {
    width: 100%;
}

/* Category dropdown (subcategories on hover) */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    margin: 0;
    padding: 0.5rem 0;
    list-style: none;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    z-index: 1000;
}

.nav-links>li.has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(4px);
}

.nav-dropdown li {
    margin: 0;
}

.nav-dropdown a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown a:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--accent-primary);
}

/* ========================================
   Category strip under navbar
======================================== */
.navbar-categories {
    border-top: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.02);
}

.navbar-categories-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.65rem 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cat-pill-wrap {
    position: relative;
}

.cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.cat-pill:hover {
    color: var(--accent-primary);
    border-color: var(--accent-primary);
    background: rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 12px var(--accent-glow);
}

.cat-pill-name {
    white-space: nowrap;
}

.cat-pill-arrow {
    flex-shrink: 0;
    opacity: 0.7;
    transition: transform 0.2s ease;
}

.cat-pill-wrap.has-dropdown:hover .cat-pill-arrow {
    transform: rotate(180deg);
}

/* Subcategories dropdown under pill */
.cat-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 180px;
    margin: 0.25rem 0 0;
    padding: 0.5rem 0;
    list-style: none;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
    z-index: 999;
}

.cat-pill-wrap.has-dropdown:hover .cat-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(2px);
}

.cat-dropdown li {
    margin: 0;
}

.cat-dropdown a {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease;
}

.cat-dropdown a:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--accent-primary);
}

/* ========================================
   Under Header Menu – full-width list, sub-menus on hover
======================================== */
.header-menu-fullwrap {
    width: 100%;
    border-top: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.02);
}

.header-menu-full {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0 1rem;
    max-width: none;
}

.header-menu-full>li {
    position: relative;
    flex: 0 0 auto;
}

.header-menu-full>li>a {
    display: block;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
}

.header-menu-full>li>a:hover,
.header-menu-full>li.current-menu-item>a {
    color: var(--accent-primary);
    background: rgba(0, 0, 0, 0.05);
}

.header-menu-full>li.has-submenu>a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border: 4px solid transparent;
    border-top-color: currentColor;
    border-bottom: none;
    margin-left: 0.35rem;
    opacity: 0.8;
    vertical-align: middle;
    transition: transform 0.2s ease;
}

.header-menu-full>li.has-submenu:hover>a::after {
    transform: rotate(180deg);
}

/* Sub-menu dropdown on hover */
.header-menu-full .header-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    margin: 0;
    padding: 0.5rem 0;
    list-style: none;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
    z-index: 999;
}

.header-menu-full>li:hover .header-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(2px);
}

.header-menu-full .header-submenu li {
    margin: 0;
}

.header-menu-full .header-submenu a {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease;
}

.header-menu-full .header-submenu a:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--accent-primary);
}

.nav-actions {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
}

/* CURCY currency dropdown in header */
.currency-switcher .woo-multi-currency.wmc-shortcode {
    position: relative;
    margin: 0;
}

.currency-switcher .woo-multi-currency.wmc-shortcode .wmc-currency {
    margin: 0;
}

.currency-switcher .woo-multi-currency.wmc-shortcode .wmc-nav {
    min-width: 92px;
    width: 92px;
    padding: 0.8rem 2.75rem 0.5rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: transparent;
    color: var(--text-secondary);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: all 0.3s ease;
}

.currency-switcher .woo-multi-currency.wmc-shortcode::after {
    content: '';
    position: absolute;
    right: 0.8rem;
    top: 50%;
    width: 0.5rem;
    height: 0.5rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
    color: var(--text-secondary);
}

.currency-switcher .woo-multi-currency.wmc-shortcode .wmc-nav:hover,
.currency-switcher .woo-multi-currency.wmc-shortcode .wmc-nav:focus {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    background: transparent;
    outline: none;
}
.woo-multi-currency.wmc-shortcode .wmc-currency{
    background: transparent;
}

.nav-cart {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.nav-cart:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.nav-cart svg {
    width: 20px;
    height: 20px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    z-index: 3;
    background: var(--accent-primary);
    color: var(--bg-primary);
    font-size: 0.75rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-cta {
    background: var(--gradient-1);
    color: var(--bg-primary) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Dismiss button – hidden until mobile menu open */
.mobile-menu-close {
    display: none;
}

/* ========================================
   Main Content Container
======================================== */
.gcc-main {
    position: relative;
    z-index: 1;
    padding-top: 80px;
    min-height: calc(100vh - 200px);
}

/* More top padding when Under Header menu is present */
.gcc-navbar:has(.header-menu-fullwrap)+.gcc-main,
.gcc-navbar:has(.header-menu-wrap)+.gcc-main,
.gcc-navbar:has(.navbar-categories)+.gcc-main {
    padding-top: 128px;
}

.gcc-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.gcc-container.narrow {
    max-width: 900px;
}

.gcc-container.wide {
    max-width: 1600px;
}

/* ========================================
   Page Header / Breadcrumbs
======================================== */
.page-header {
    padding: 3rem 0;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.breadcrumbs a {
    color: var(--text-secondary);
}

.breadcrumbs a:hover {
    color: var(--accent-primary);
}

.breadcrumbs .separator {
    color: var(--text-muted);
}

.breadcrumbs .current {
    color: var(--accent-primary);
}

/* ========================================
   Cards & Boxes
======================================== */
.gcc-card {
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    padding: 2rem;
    transition: all 0.3s ease;
}

.gcc-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.gcc-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.gcc-card-title {
    font-size: 1.25rem;
    font-weight: 600;
}

/* ========================================
   Buttons
======================================== */
.gcc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.gcc-btn-primary {
    background: var(--gradient-1);
    color: var(--bg-primary);
}

.gcc-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
    color: var(--bg-primary);
}

.gcc-btn-secondary {
    background: transparent;
    border: 2px solid var(--accent-primary);
    color: var(--accent-primary);
}

.gcc-btn-secondary:hover {
    background: var(--accent-primary);
    color: var(--bg-primary);
}

.gcc-btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.gcc-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-muted);
}

.gcc-btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 8px;
}

.gcc-btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.gcc-btn-block {
    width: 100%;
}

.gcc-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* ========================================
   WooCommerce Form Elements (Product Page)
======================================== */
.single-product .variations_form table.variations {
    width: 100%;
    margin-bottom: 1rem;
    border-collapse: separate;
    border-spacing: 0 0.5rem;
}

.single-product .variations_form td.label {
    width: 120px;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    padding-right: 0.75rem;
}

.single-product .variations_form td.value select {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    padding: 0.85rem 1rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: all 0.2s ease;
    appearance: none;
}

.single-product .variations_form td.value select:focus {
    outline: none;
    border-color: var(--border-focus);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.single-product .variations_form td.value .reset_variations {
    display: inline-block;
    margin-top: 0.35rem;
    font-size: 0.9rem;
    color: var(--accent-primary);
}

.single-product .single_variation_wrap {
    padding: 1rem 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    margin-bottom: 1.25rem;
}

.single-product .single_variation .price {
    font-family: 'Space Mono', monospace;
    font-size: 1.4rem;
    color: var(--accent-primary);
    font-weight: 700;
}

.single-product .woocommerce-variation-description {
    color: var(--text-secondary);
    margin-top: 0.35rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.single-product form.cart .quantity .qty,
.single-product .woocommerce-variation-add-to-cart .quantity .qty {
    width: 120px;
    padding: 0.85rem 0.9rem;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    margin-right: 0.75rem;
}

.single-product form.cart .quantity .qty:focus {
    outline: none;
    border-color: var(--border-focus);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.single-product .single_add_to_cart_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.6rem;
    border-radius: 12px;
    background: var(--gradient-1);
    color: var(--bg-primary);
    border: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.single-product .single_add_to_cart_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.single-product .single_add_to_cart_button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.single-product .gcc-variation-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* Variation pills */
.single-product .gcc-variation-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.single-product .gcc-variation-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.65rem 0.9rem;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.single-product .gcc-variation-btn:hover {
    border-color: var(--border-focus);
    color: var(--accent-primary);
}

.single-product .gcc-variation-btn.active {
    border-color: var(--border-focus);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    color: var(--accent-primary);
}

/* ========================================
   Form Elements
======================================== */
.gcc-form-group {
    margin-bottom: 1.5rem;
}

.gcc-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.gcc-label.required::after {
    content: ' *';
    color: var(--accent-error);
}

.gcc-input,
.gcc-select,
.gcc-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.gcc-input:focus,
.gcc-select:focus,
.gcc-textarea:focus {
    outline: none;
    border-color: var(--border-focus);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.gcc-input::placeholder {
    color: var(--text-muted);
}

.gcc-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a0a0b0' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.gcc-textarea {
    min-height: 120px;
    resize: vertical;
}

.gcc-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.gcc-checkbox {
    width: 20px;
    height: 20px;
    accent-color: var(--accent-primary);
    cursor: pointer;
}

.gcc-checkbox-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.gcc-form-error {
    color: var(--accent-error);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.gcc-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (max-width: 600px) {
    .gcc-form-row {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Tables
======================================== */
.gcc-table {
    width: 100%;
    border-collapse: collapse;
}

.gcc-table th,
.gcc-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.gcc-table th {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gcc-table tbody tr {
    transition: background 0.3s ease;
}

.gcc-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* ========================================
   Alerts & Messages
======================================== */
.gcc-alert {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.gcc-alert-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.gcc-alert-content {
    flex: 1;
}

.gcc-alert-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: var(--accent-success);
}

.gcc-alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--accent-error);
}

.gcc-alert-warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--accent-warning);
}

.gcc-alert-info {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: var(--accent-primary);
}

/* ========================================
   Price Display
======================================== */
.gcc-price {
    font-family: 'Space Mono', monospace;
}

.gcc-price-current {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.gcc-price-original {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 0.5rem;
}

/* ========================================
   Badges
======================================== */
.gcc-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gcc-badge-sale {
    background: var(--gradient-2);
    color: white;
}

.gcc-badge-new {
    background: var(--gradient-1);
    color: var(--bg-primary);
}

.gcc-badge-stock {
    background: rgba(34, 197, 94, 0.2);
    color: var(--accent-success);
}

.gcc-badge-outofstock {
    background: rgba(239, 68, 68, 0.2);
    color: var(--accent-error);
}

/* ========================================
   Quantity Selector
======================================== */
.gcc-quantity {
    display: inline-flex;
    align-items: center;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.gcc-quantity-btn {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gcc-quantity-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent-primary);
}

.gcc-quantity-input {
    width: 60px;
    height: 40px;
    background: transparent;
    border: none;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    color: var(--text-primary);
    font-family: 'Space Mono', monospace;
    font-size: 1rem;
    text-align: center;
}

.gcc-quantity-input:focus {
    outline: none;
}

/* ========================================
   Footer (gradient black)
======================================== */
.gcc-footer {
    position: relative;
    z-index: 1;
    padding: 4rem 2rem 2rem;
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 4rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-brand .footer-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    text-decoration: none;
    color: #fff;
}

.footer-logo-img {
    width: 148px;
    height: 64px;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    max-width: 300px;
    margin: 0 auto;
}

.gcc-footer .footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
}

.gcc-footer .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.gcc-footer .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.gcc-footer .footer-links a:hover {
    color: #fff;
}

/* Footer address (inside brand column) */
.gcc-footer .footer-address__block {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-style: normal;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
    margin: 1.25rem 0 0;
    font-size: 0.875rem;
}
.gcc-footer .footer-address__icon {
    flex-shrink: 0;
    margin-top: 0.1rem;
    color: rgba(255, 255, 255, 0.5);
}
.gcc-footer .footer-address__text {
    font-size: inherit;
}

.gcc-footer .footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.875rem;
}

.gcc-footer .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.gcc-footer .footer-payments {
    display: flex;
    gap: 1rem;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
}

.footer-payments img {
    height: 24px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-payments img:hover {
    opacity: 1;
}

/* ========================================
   Responsive
======================================== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gcc-navbar {
        padding: 1rem;
    }

    /* Mobile: panel = full-screen overlay with header (close + lang) and scrollable list */
    .mobile-menu-panel {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 998;
        background: var(--bg-card);
        flex-direction: column;
        overflow: hidden;
    }

    body.mobile-menu-open .mobile-menu-panel,
    .mobile-menu-panel:has(.nav-links.active) {
        display: flex !important;
        animation: mobileMenuOverlayIn 0.3s ease forwards;
    }

    /* Header at top: close button + language switcher */
    .mobile-menu-header {
        display: flex;
        flex-shrink: 0;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 1rem 1.25rem;
        border-bottom: 1px solid var(--border-color);
        background: rgba(0, 0, 0, 0.02);
    }

    body.mobile-menu-open .mobile-menu-header {
        display: flex;
    }

    .mobile-menu-close {
        display: flex;
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.06);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        color: var(--text-primary);
        cursor: pointer;
        transition: color 0.2s ease, background 0.2s ease;
    }

    .mobile-menu-close:hover {
        background: rgba(0, 0, 0, 0.1);
        color: var(--accent-primary);
    }

    .mobile-menu-lang {
        flex: 1;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .mobile-menu-lang .lang-current {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }

    /* Scrollable menu list */
    .mobile-menu-panel .nav-links {
        display: flex;
        flex: 1;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        min-height: 0;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        padding: 1.25rem 1.5rem 2rem;
        list-style: none;
        margin: 0;
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        box-shadow: none;
    }

    /* Mobile menu in RTL: keep natural order (Home stays first) */
    body.rtl .mobile-menu-panel .nav-links,
    html[dir="rtl"] .mobile-menu-panel .nav-links {
        flex-direction: column;
    }

    .mobile-menu-panel .nav-links > li {
        flex-shrink: 0;
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .mobile-menu-panel .nav-links > li:last-child {
        border-bottom: none;
    }

    .mobile-menu-panel .nav-links > li > a {
        font-size: 1.1rem;
        font-weight: 600;
        padding: 0.6rem 0;
        color: var(--text-primary);
        display: block;
    }

    .mobile-menu-panel .nav-links > li > a:hover {
        color: var(--accent-primary);
    }

    .mobile-menu-panel .nav-links.active > li {
        opacity: 0;
        animation: mobileMenuItemIn 0.35s ease forwards;
    }
    .mobile-menu-panel .nav-links.active > li:nth-child(1) { animation-delay: 0.05s; }
    .mobile-menu-panel .nav-links.active > li:nth-child(2) { animation-delay: 0.1s; }
    .mobile-menu-panel .nav-links.active > li:nth-child(3) { animation-delay: 0.15s; }
    .mobile-menu-panel .nav-links.active > li:nth-child(4) { animation-delay: 0.2s; }
    .mobile-menu-panel .nav-links.active > li:nth-child(5) { animation-delay: 0.25s; }
    .mobile-menu-panel .nav-links.active > li:nth-child(6) { animation-delay: 0.3s; }
    .mobile-menu-panel .nav-links.active > li:nth-child(n+7) { animation-delay: 0.35s; }

    /* Under-header bar: hidden on mobile (those items are in the overlay list) */
    .header-menu-fullwrap {
        display: none !important;
    }

    /* Less top padding when under-header bar is hidden on mobile */
    .gcc-navbar:has(.header-menu-fullwrap)+.gcc-main {
        padding-top: 80px;
    }

    /* Submenus inside mobile overlay: stacked list */
    .mobile-menu-panel .nav-links .nav-sublinks {
        display: block;
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0.35rem 0 0 1rem;
        margin: 0.2rem 0 0 0;
        list-style: none;
        border: none;
        box-shadow: none;
        background: transparent;
        min-width: 0;
        border-left: 2px solid var(--border-color);
        margin-left: 0.25rem;
    }

    .mobile-menu-panel .nav-links .nav-sublinks li {
        margin: 0;
    }

    .mobile-menu-panel .nav-links .nav-sublinks a {
        display: block;
        font-size: 0.95rem;
        padding: 0.35rem 0;
        color: var(--text-secondary);
    }

    .mobile-menu-panel .nav-links .nav-sublinks a:hover {
        color: var(--accent-primary);
    }

    /* Hide cart on mobile – logo + language switcher + mobile menu btn visible */
    .nav-actions .nav-cart {
        display: none !important;
    }

    .mobile-menu-btn.active {
        color: var(--accent-primary);
    }

    .navbar-categories-inner {
        padding: 0.5rem 1rem;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .navbar-categories-inner::-webkit-scrollbar {
        display: none;
    }

    .cat-pill-wrap {
        flex-shrink: 0;
    }

    .cat-pill {
        padding: 0.4rem 0.85rem;
        font-size: 0.85rem;
    }

    .header-menu-inner {
        padding: 0.5rem 1rem;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .header-menu-inner::-webkit-scrollbar {
        display: none;
    }

    .header-menu {
        justify-content: flex-start;
        flex-wrap: nowrap;
    }

    .header-menu>li {
        flex-shrink: 0;
    }

    .header-menu>li>a {
        padding: 0.4rem 0.85rem;
        font-size: 0.85rem;
    }

    .header-menu-fullwrap {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .header-menu-fullwrap::-webkit-scrollbar {
        display: none;
    }

    .header-menu-full {
        padding: 0.5rem 1rem;
        justify-content: flex-start;
        flex-wrap: nowrap;
    }

    .header-menu-full>li>a {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .gcc-navbar:has(.navbar-categories)+.gcc-main,
    .gcc-navbar:has(.header-menu-wrap)+.gcc-main,
    .gcc-navbar:has(.header-menu-fullwrap)+.gcc-main {
        padding-top: 116px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .gcc-container {
        padding: 1rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ========================================
   Animations
======================================== */
/* Mobile menu overlay and list items */
@keyframes mobileMenuOverlayIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes mobileMenuItemIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}

.animate-delay-4 {
    animation-delay: 0.4s;
}

/* ========================================
   Utilities
======================================== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-primary {
    color: var(--text-primary);
}

.text-secondary {
    color: var(--text-secondary);
}

.text-muted {
    color: var(--text-muted);
}

.text-accent {
    color: var(--accent-primary);
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.hidden {
    display: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ========================================
   Shop / Category Archive (improved UI/UX)
======================================== */
.gcc-shop {
    position: relative;
    z-index: 1;
    padding-top: 100px;
}

.shop-archive-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
}

.shop-hero {
    text-align: center;
}

.shop-breadcrumb {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.shop-breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.shop-breadcrumb a:hover {
    color: var(--accent-primary);
}

.breadcrumb-sep {
    margin: 0 0.4rem;
    opacity: 0.6;
}

.breadcrumb-current {
    color: var(--text-primary);
    font-weight: 600;
}

.shop-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.shop-hero__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin: 0 0 0.75rem;
    line-height: 1.2;
    color: var(--text-primary);
}

.shop-hero__accent {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shop-hero__subtitle {
    max-width: 560px;
    margin: 0 auto;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

.shop-hero__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.shop-hero__count {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.shop-hero__back {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.shop-hero__back:hover {
    color: var(--text-primary);
}

/* Toolbar: result count + sort */
.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 0 1.5rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.shop-toolbar__count {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.shop-toolbar__order .woocommerce-ordering {
    margin: 0;
}

.shop-toolbar__order select,
.woocommerce-ordering select {
    appearance: none;
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0.6rem 2.5rem 0.6rem 0.9rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
}

.shop-toolbar__order select:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

/* Product grid (archive) */
.shop-grid-section {
    margin-bottom: 3rem;
}

.products-grid.shop-products {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.75rem;
}

.product-card-wrap {
    list-style: none;
    margin: 0;
}

.product-card--link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.product-card--link:hover {
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.product-card__image {
    position: relative;
    aspect-ratio: 1;
    background: var(--bg-secondary);
    overflow: hidden;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card--link:hover .product-card__image img {
    transform: scale(1.05);
}

.product-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.07));
}

.product-card__badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--accent-primary);
    color: #fff;
    padding: 0.3rem 0.65rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.product-card__body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.product-card__category {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.product-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    color: var(--text-primary);
    transition: color 0.2s ease;
}

.product-card--link:hover .product-card__title {
    color: var(--accent-primary);
}

.product-card__excerpt {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.product-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.product-card__price {
    font-family: 'Space Mono', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.product-card__cta {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-primary);
    transition: transform 0.2s ease;
}

.product-card--link:hover .product-card__cta {
    transform: translateX(4px);
}

/* Empty state */
.shop-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-secondary);
    border-radius: 20px;
    border: 1px dashed var(--border-color);
}

.shop-empty__icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.shop-empty__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--text-primary);
}

.shop-empty__text {
    color: var(--text-secondary);
    margin: 0 0 1.5rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.shop-empty__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--accent-primary);
    color: #fff !important;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.shop-empty__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--accent-glow);
}

.shop-filters {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.filter-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-select .woocommerce-ordering {
    margin: 0;
}

.filter-select select,
.woocommerce-ordering select {
    appearance: none;
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.75rem 2.75rem 0.75rem 1rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    min-width: 220px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2300d4aa' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.filter-select select:hover,
.woocommerce-ordering select:hover,
.filter-select select:focus,
.woocommerce-ordering select:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    outline: none;
}

.filter-results {
    color: var(--text-secondary);
    font-weight: 600;
}

.shop-grid {
    padding-top: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--bg-card);
    border-radius: 18px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.product-image {
    height: 200px;
    background: var(--bg-secondary);
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 3rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.08));
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-secondary);
    color: #fff;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.product-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
}

.product-category {
    font-size: 0.8rem;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
}

.product-name a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-name a:hover {
    color: var(--accent-primary);
}

.product-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.product-price {
    font-family: 'Space Mono', monospace;
}

.price-regular {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-right: 0.35rem;
}

.price-current {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.product-btn {
    background: var(--gradient-1);
    color: var(--bg-primary);
    border: none;
    padding: 0.65rem 1.25rem;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.product-btn:hover {
    transform: scale(1.04);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.shop-products .product-card {
    background: var(--bg-card);
    border-radius: 18px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.shop-products .product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.shop-products .product-image {
    height: 220px;
    background: var(--bg-secondary);
}

.shop-products .product-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
}

.shop-products .product-excerpt {
    color: var(--text-secondary);
    line-height: 1.5;
}

.shop-products .product-footer {
    margin-top: auto;
}

.shop-pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.shop-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.shop-pagination .page-numbers li {
    list-style: none;
}

.shop-pagination .page-numbers a,
.shop-pagination .page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-weight: 700;
    transition: all 0.3s ease;
}

.shop-pagination .page-numbers .current,
.shop-pagination .page-numbers a:hover {
    background: var(--gradient-1);
    color: var(--bg-primary);
    border-color: transparent;
    box-shadow: 0 10px 30px var(--accent-glow);
}

/* Archive pagination */
.shop-pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.shop-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.shop-pagination .page-numbers li {
    list-style: none;
    margin: 0;
}

.shop-pagination .page-numbers a,
.shop-pagination .page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 0.75rem;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.shop-pagination .page-numbers .current,
.shop-pagination .page-numbers a:hover {
    background: var(--accent-primary);
    color: #fff;
    border-color: var(--accent-primary);
}

@media (max-width: 900px) {
    .shop-hero__title {
        font-size: 2rem;
    }

    .products-grid.shop-products {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1.25rem;
    }
}

@media (max-width: 640px) {
    .shop-archive-wrap {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .shop-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .shop-toolbar__order select,
    .woocommerce-ordering select {
        width: 100%;
        min-width: 0;
    }

    .products-grid.shop-products {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .shop-filters {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-controls {
        width: 100%;
        justify-content: space-between;
    }

    .filter-select select,
    .woocommerce-ordering select {
        width: 100%;
        min-width: 0;
    }
}


/* ========================================
   Contact Page
======================================== */
.contact-page {
    position: relative;
    z-index: 1;
}

.contact-hero {
    text-align: center;
    padding: 0.5rem 1.5rem 2rem;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 0.9rem;
}

.contact-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    margin: 1rem 0 0.5rem;
    line-height: 1.1;
}

.contact-subtitle {
    max-width: 760px;
    margin: 0 auto 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.contact-meta {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.contact-meta .meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.9rem;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.contact-meta .meta-chip a {
    color: var(--text-primary);
    font-weight: 500;
    text-decoration: none;
}

.contact-meta .meta-chip a:hover {
    text-decoration: underline;
}

.contact-page .section-inner.contact-grid {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.75rem;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 1.75rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.contact-card h3 {
    margin: 0 0 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.contact-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-points {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-top: 1rem;
}

.contact-point {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-point:hover {
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.contact-point-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    color: var(--accent-primary);
}

.contact-point-icon svg {
    width: 24px;
    height: 24px;
}

.contact-point-content {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
   min-width: 0;
}

.contact-point-content strong {
    display: block;
    color: var(--text-primary);
    font-size: 1rem;
}

.contact-point-content span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form .form-row {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.contact-form label {
    font-weight: 700;
    color: var(--text-primary);
}

.contact-form input,
.contact-form textarea {
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    transition: all 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent-primary);
    outline: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.contact-submit {
    width: fit-content;
    align-self: flex-start;
}

.contact-note {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0.25rem 0 0;
}

/* Contact form success / error messages (form hidden after submit) */
.contact-form-message {
    display: none;
    text-align: center;
    padding: 2rem 1rem;
}

.contact-form-message[hidden] {
    display: none !important;
}

.contact-form-message:not([hidden]) {
    display: block;
}

.contact-form-message-icon {
    margin: 0 auto 1rem;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-form-message-icon svg {
    width: 48px;
    height: 48px;
}

.contact-form-message-icon--success {
    background: rgba(0, 180, 120, 0.12);
    color: #008858;
}

.contact-form-message-icon--error {
    background: rgba(200, 60, 60, 0.12);
    color: #b03030;
}

.contact-form-message h3 {
    margin: 0 0 0.5rem;
    font-size: 1.35rem;
    font-weight: 700;
}

.contact-form-message p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contact Form 7 – match theme contact form style */
.contact-form-7-wrap .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form-7-wrap .wpcf7-form p {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.contact-form-7-wrap .wpcf7-form label {
    font-weight: 700;
    color: var(--text-primary);
}

.contact-form-7-wrap .wpcf7-form-control.wpcf7-text,
.contact-form-7-wrap .wpcf7-form-control.wpcf7-email,
.contact-form-7-wrap .wpcf7-form-control.wpcf7-tel,
.contact-form-7-wrap .wpcf7-form-control.wpcf7-textarea {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-7-wrap .wpcf7-form-control.wpcf7-textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form-7-wrap .wpcf7-form-control:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.contact-form-7-wrap .wpcf7-form-control::placeholder {
    color: var(--text-muted);
}

.contact-form-7-wrap .wpcf7-submit {
    width: fit-content;
    padding: 0.85rem 1.5rem;
    background: var(--gradient-1);
    color: var(--bg-primary);
    border: none;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-7-wrap .wpcf7-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.contact-form-7-wrap .wpcf7-not-valid-tip {
    font-size: 0.85rem;
    color: #c00;
    margin-top: 0.25rem;
}

.contact-form-7-wrap .wpcf7-response-output {
    margin: 1rem 0 0;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    font-size: 0.95rem;
}

@media (max-width: 720px) {
    .contact-meta {
        justify-content: flex-start;
    }
}

/* ========================================
   Landing trust bar (used on About page & landing)
======================================== */
.landing-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 3rem 2rem;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.landing-trust-item {
    text-align: center;
    padding: 1.75rem 1.25rem;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.landing-trust-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.18);
}

.landing-trust-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.05));
    border-radius: 14px;
    color: var(--accent-primary);
}

.landing-trust-icon svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.landing-trust-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.35rem;
    color: var(--text-primary);
}

.landing-trust-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 700px) {
    .landing-trust {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 2rem 1rem;
    }
    .landing-trust-item {
        padding: 1.25rem 1rem;
    }
    .landing-trust-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 0.75rem;
    }
}

/* About page */
.about-page .about-content-wrap {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

.about-page .about-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.about-page .about-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.about-page .about-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin: 0 0 0.75rem;
    line-height: 1.15;
    color: var(--text-primary);
}

.about-page .about-lead {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto;
}

.about-page .about-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

.about-page .about-block.has-no-image {
    grid-template-columns: 1fr;
}

.about-page .about-text {
    min-width: 0;
}

.about-page .about-intro {
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.75;
    margin: 0 0 1.25rem;
    font-weight: 500;
}

.about-page .about-body {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0 0 1.5rem;
}

.about-page .about-highlight {
    padding: 1.25rem 1.5rem;
    background: rgba(0, 0, 0, 0.04);
    border-left: 4px solid var(--accent-primary);
    border-radius: 0 12px 12px 0;
    margin-bottom: 2rem;
}

.about-page .about-highlight p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.7;
    font-style: italic;
}

.about-page .about-image {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.about-page .about-image img {
    width: 100%;
    height: auto;
    min-height: 280px;
    display: block;
    object-fit: cover;
}

.about-page .about-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0;
}

.about-page .about-ctas .gcc-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.about-page .about-ctas .gcc-btn-primary {
    background: var(--gradient-1);
    color: var(--bg-primary);
    border: none;
}

.about-page .about-ctas .gcc-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.about-page .about-ctas .gcc-btn-ghost {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.about-page .about-ctas .gcc-btn-ghost:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

@media (max-width: 768px) {
    .about-page .about-block {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-page .about-image img {
        min-height: 220px;
    }
}

/* ========================================
   WooCommerce – My Account (UI/UX)
======================================== */
body.woocommerce-account .woocommerce {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: start;
}

/* Remove extra top gap (woocommerce.php adds 40px inline) */
body.woocommerce-account .gcc-container {
    padding-top: 0 !important;
}

/* Remove inline page header bottom gap on My Account page */
body.woocommerce-account .page-header {
    margin-bottom: 0 !important;
}

body.woocommerce-account .woocommerce-MyAccount-navigation,
body.woocommerce-account .woocommerce-MyAccount-content {
    float: none;
    width: auto;
}

body.woocommerce-account .woocommerce-MyAccount-navigation {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1rem;
    position: sticky;
    top: 110px;
}

body.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

body.woocommerce-account .woocommerce-MyAccount-navigation li a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 0.9rem;
    border-radius: 12px;
    color: var(--text-primary);
    text-decoration: none;
    border: 1px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

body.woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: var(--border-color);
    transform: translateY(-1px);
}

body.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.16);
    font-weight: 700;
}

body.woocommerce-account .woocommerce-MyAccount-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
}

body.woocommerce-account .woocommerce-MyAccount-content > *:first-child {
    margin-top: 0;
}

/* Forms */
body.woocommerce-account .woocommerce form .form-row label {
    font-weight: 700;
    color: var(--text-primary);
}

body.woocommerce-account .woocommerce form .form-row input.input-text,
body.woocommerce-account .woocommerce form .form-row textarea,
body.woocommerce-account .woocommerce form .form-row select {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.woocommerce-account .woocommerce form .form-row input.input-text:focus,
body.woocommerce-account .woocommerce form .form-row textarea:focus,
body.woocommerce-account .woocommerce form .form-row select:focus {
    outline: none;
    border-color: var(--border-focus);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

body.woocommerce-account .woocommerce button.button,
body.woocommerce-account .woocommerce a.button,
body.woocommerce-account .woocommerce input.button {
    background: var(--gradient-1);
    color: var(--bg-primary);
    border: none;
    border-radius: 12px;
    padding: 0.85rem 1.25rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.woocommerce-account .woocommerce button.button:hover,
body.woocommerce-account .woocommerce a.button:hover,
body.woocommerce-account .woocommerce input.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

body.woocommerce-account .woocommerce a {
    color: var(--accent-primary);
}

/* Tables (Orders, Downloads, etc.) */
body.woocommerce-account .woocommerce table.shop_table {
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--bg-card);
}

body.woocommerce-account .woocommerce table.shop_table th,
body.woocommerce-account .woocommerce table.shop_table td {
    padding: 0.9rem 1rem;
    border-top: 1px solid var(--border-color);
}

body.woocommerce-account .woocommerce table.shop_table thead th {
    border-top: none;
    background: rgba(0, 0, 0, 0.03);
    font-weight: 700;
}

body.woocommerce-account .woocommerce .woocommerce-notices-wrapper .woocommerce-message,
body.woocommerce-account .woocommerce .woocommerce-notices-wrapper .woocommerce-error,
body.woocommerce-account .woocommerce .woocommerce-notices-wrapper .woocommerce-info {
    border-radius: 14px;
}

@media (max-width: 900px) {
    body.woocommerce-account .woocommerce {
        grid-template-columns: 1fr;
    }
    body.woocommerce-account .woocommerce-MyAccount-navigation {
        position: static;
        top: auto;
    }
}

.crypto-payments-container {
    color: black !important;
}