﻿:root {
    --bg-color: #0f0f0f;
    --card-bg: #1c1c1c;
    --text-primary: #ffffff;
    --text-secondary: #999999;
    --white: #ffffff;
    --black: #000000;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-hover: rgba(255, 255, 255, 0.2);
    --glass-border: rgba(255, 255, 255, 0.1);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;
}

body.light-theme {
    --bg-color: #f0f0f0;
    --card-bg: #ffffff;
    --text-primary: #111111;
    --text-secondary: #666666;
    --white: #111111;
    --black: #ffffff;
    --glass-bg: rgba(0, 0, 0, 0.05);
    --glass-hover: rgba(0, 0, 0, 0.1);
    --glass-border: rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    padding: 16px;
    -webkit-font-smoothing: antialiased;
}

/* Fallback for non-Elementor pages */


/* Force Elementor root container to act as the 1fr 1fr grid */
body.elementor-page > .elementor.elementor-wp-page,
body.elementor-page .elementor.elementor-wp-page {
    display: grid;
    grid-template-columns: 380px 1fr; /* ORJ template uses fixed width for left panel */
    gap: 16px;
    align-items: start;
}

@media (min-width: 1200px) {
    body.elementor-page .elementor.elementor-wp-page {
        grid-template-columns: 450px 1fr;
    }
}

@media (max-width: 992px) {
    body:not(.elementor-page),
    body.elementor-page .elementor.elementor-wp-page {
        grid-template-columns: 1fr;
        height: auto;
    }
}

a {
    text-decoration: none;
    color: inherit;
}

/* Left Panel */
.left-panel {
    position: relative;
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: calc(100vh - 32px);
    min-width: 0;
}

/* Slider Images */
.slider-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slider-images img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover !important;
    filter: brightness(0.9) grayscale(20%);
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slider-images img.active {
    opacity: 1;
}

/* Right Panel */
.right-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: calc(100vh - 32px);
    overflow-y: auto;
    min-width: 0;
}

.right-panel::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for clean look */
}

/* Top Bridge Connector */
.nav-connector {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 16px;
    /* Matches body padding */
    background: var(--bg-color, #0f0f0f);
    z-index: 99;
    /* Below wrappers (100) but above everything else */
}

/* Floating Nav Pill Wrapper */
.nav-pill-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: fit-content;
    max-width: calc(100vw - 200px);
    background: var(--bg-color, #0f0f0f);
    padding: 16px 32px 16px 24px;
    border-bottom-right-radius: var(--radius-lg, 24px);
    z-index: 100;
    overflow: visible;
}

.nav-pill-wrapper::before {
    content: '';
    position: absolute;
    right: -24px;
    top: 16px;
    width: 24px;
    height: 24px;
    background: radial-gradient(circle at 100% 100%, transparent 23.5px, var(--bg-color, #0f0f0f) 24px);
    pointer-events: none;
}

.nav-pill-wrapper::after {
    content: '';
    position: absolute;
    bottom: -24px;
    left: 0;
    width: 24px;
    height: 24px;
    background: radial-gradient(circle at 100% 100%, transparent 23.5px, var(--bg-color, #0f0f0f) 24px);
    pointer-events: none;
}

/* Right Nav Pill Wrapper (Lang & Search) */
.nav-pill-wrapper-right {
    position: fixed;
    top: 0;
    right: 0;
    background: var(--bg-color, #0f0f0f);
    padding: 16px 16px 16px 24px;
    border-bottom-left-radius: var(--radius-lg, 24px);
    z-index: 100;
    overflow: visible;
}

.nav-pill-wrapper-right::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 16px;
    width: 24px;
    height: 24px;
    background: radial-gradient(circle at 0% 100%, transparent 23.5px, var(--bg-color, #0f0f0f) 24px);
    pointer-events: none;
}

.nav-pill-wrapper-right::after {
    content: '';
    position: absolute;
    bottom: -24px;
    right: 0;
    width: 24px;
    height: 24px;
    background: radial-gradient(circle at 0% 100%, transparent 23.5px, var(--bg-color, #0f0f0f) 24px);
    pointer-events: none;
}

.nav-pill {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    color: var(--white);
    font-size: 1.8rem;
    font-family: 'Text Me One', sans-serif;
    letter-spacing: 2px;
    text-transform: lowercase;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 9px;
    white-space: nowrap;
}

.nav-links a {
    color: var(--text-secondary);
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.theme-toggle {
    width: 48px;
    height: 24px;
    background: var(--glass-bg);
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s;
    border: 1px solid var(--glass-border);
}

.theme-toggle:hover {
    background: var(--glass-hover);
}

.theme-toggle .toggle-dot {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    background: var(--white);
    border-radius: 50%;
    transition: transform 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

body.light-theme .theme-toggle .toggle-dot {
    transform: translateX(24px);
}

.search-btn,
.profile-btn,
.cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--glass-bg, rgba(255,255,255,0.1));
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
    position: relative;
    text-decoration: none;
}

.search-btn:hover,
.profile-btn:hover,
.cart-btn:hover {
    background: var(--glass-hover, rgba(255,255,255,0.2));
}

/* Cart Count Badge */
.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #e53e3e;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
    pointer-events: none;
    animation: vocCartPop 0.3s ease;
}

@keyframes vocCartPop {
    0% { transform: scale(0); }
    60% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* Login Error Message */
.login-error {
    background: rgba(229, 62, 62, 0.1);
    border: 1px solid rgba(229, 62, 62, 0.3);
    color: #e53e3e;
    padding: 12px 16px;
    border-radius: var(--radius-sm, 12px);
    font-size: 0.85rem;
    margin-bottom: 20px;
    text-align: center;
}

/* Arrows */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--white);
    transition: background 0.3s, transform 0.3s, border-color 0.3s;
    z-index: 10;
}

.arrow svg {
    width: 28px;
    height: 28px;
}

.arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1) translateY(-45%);
    /* Adjust Y slightly for scale offset */
}

.arrow-left {
    left: 16px;
}

.arrow-right {
    right: 16px;
}

/* Dots */
.dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--glass-border);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.dot.active {
    background: var(--white);
    transform: scale(1.3);
}


/* Right Panel Components */
.top-section {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 16px;
    flex-shrink: 0;
}

/* Bio Card */
.bio-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.bio-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.bio-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.bio-name {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 2px;
}

.bio-title {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.bio-desc {
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 400;
}

/* Social Stack */
.social-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-btn {
    background: var(--card-bg);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 500;
    transition: background 0.3s;
    cursor: pointer;
    color: var(--text-primary);
}

.social-btn:hover {
    background: var(--card-hover);
}

.social-icon {
    color: var(--text-secondary);
    font-size: 1rem;
}

.social-btn.contact-btn {
    background: var(--white);
    color: var(--black);
    margin-top: 4px;
}

.social-btn.contact-btn:hover {
    background: #f0f0f0;
}

/* Section Title */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 8px 8px 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
}

.view-all {
    text-decoration: underline;
    color: var(--white);
    cursor: pointer;
}

/* Bottom Grid */
.bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    flex-grow: 1;
}

.img-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4 / 5;
    width: 100%;
    cursor: pointer;
}

.img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.img-card:hover img {
    filter: brightness(0.6) blur(4px);
    transform: scale(1.02);
}

.img-card .product-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 32px 24px 24px 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 4px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 5;
}

.img-card:hover .product-info {
    transform: translateY(0);
    opacity: 1;
}

.img-card .product-name {
    font-size: 1.1rem;
    font-weight: 500;
}

.img-card .product-price {
    font-size: 0.95rem;
    opacity: 0.7;
}

/* Image Card Cutout Label */
.img-card .cutout-label {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--bg-color);
    padding: 16px 24px;
    border-radius: 0;
    border-bottom-right-radius: 24px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
    display: flex;
    align-items: center;
    transition: padding 0.3s ease;
    z-index: 10;
}

.img-card .cutout-label::before {
    content: '';
    position: absolute;
    right: -24px;
    top: 0;
    width: 24px;
    height: 24px;
    border-top-left-radius: 24px;
    box-shadow: -12px -12px 0 12px var(--bg-color);
    z-index: -1;
    pointer-events: none;
}

.img-card .cutout-label::after {
    content: '';
    position: absolute;
    bottom: -24px;
    left: 0;
    width: 24px;
    height: 24px;
    border-top-left-radius: 24px;
    box-shadow: -12px -12px 0 12px var(--bg-color);
    z-index: -1;
    pointer-events: none;
}

/* ---------------------------------
   MAGIC CUTOUT EFFECTS & FLOATING BTNS
-----------------------------------*/

.cutout-wrapper {
    position: absolute;
    background: var(--bg-color);
    z-index: 2;
}

/* Floating View Project Button (No Cutout) */
.view-project-btn {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s;
    z-index: 10;
}

.view-project-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Cutout for Left Panel (Bottom Right) */
.cutout-bottom-right {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--bg-color);
    padding: 16px 0 0 16px;
    border-top-left-radius: 24px;
}

.cutout-bottom-right::before {
    content: '';
    position: absolute;
    left: -24px;
    bottom: 0;
    width: 24px;
    height: 24px;
    background: radial-gradient(circle at 0% 0%, transparent 23.5px, var(--bg-color) 24px);
    z-index: -1;
    pointer-events: none;
}

.cutout-bottom-right::after {
    content: '';
    position: absolute;
    top: -24px;
    right: 0;
    width: 24px;
    height: 24px;
    background: radial-gradient(circle at 0% 0%, transparent 23.5px, var(--bg-color) 24px);
    z-index: -1;
    pointer-events: none;
}

/* Cutout for Right Panel Cards (Removed wrapper) */

/* Inner Cutout Content */
.cutout-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.cutout-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}


.cutout-label {
    background: #0f0f0f;
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--white);
    display: flex;
    align-items: center;
    transition: padding 0.3s ease;
}

.cutout-label .arrow-icon {
    display: inline-flex;
    align-items: center;
    max-width: 0;
    opacity: 0;
    transition: max-width 0.3s ease, opacity 0.3s ease, margin-left 0.3s ease;
    overflow: hidden;
    white-space: nowrap;
}

.img-card:hover .cutout-label .arrow-icon {
    max-width: 20px;
    opacity: 1;
    margin-left: 8px;
}

/* Responsive */
@media (max-width: 992px) {
    body {
        grid-template-columns: 1fr;
        height: auto;
        overflow: visible;
    }

    .left-panel {
        height: calc(100vh - 32px);
    }

    .right-panel {
        height: auto;
    }

    .top-section {
        grid-template-columns: 1fr;
    }

    .bottom-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------------------------------
   MOBILE MENU & LANG DROPDOWN
-----------------------------------*/

/* Language Dropdown */
.lang-dropdown {
    position: relative;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
    display: flex;
    align-items: center;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 4px;
}

.lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 16px;
    background: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 8px 0;
    display: flex;
    flex-direction: column;
    min-width: 60px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10;
    border: 1px solid var(--glass-border);
}

.lang-dropdown:hover .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-menu a {
    padding: 8px 16px;
    color: var(--text-secondary);
    text-align: center;
    transition: color 0.3s, background 0.3s;
}

.lang-menu a:hover {
    color: var(--white);
    background: var(--glass-bg);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    cursor: pointer;
    color: var(--white);
    align-items: center;
    justify-content: center;
}

/* ---------------------------------
   RESPONSIVE (MOBILE)
-----------------------------------*/
@media (max-width: 992px) {
    body {
        grid-template-columns: 1fr;
        height: auto;
    }

    .left-panel {
        height: 60vh;
        min-height: 400px;
    }

    .right-panel {
        height: auto;
        overflow-y: visible;
    }



    .top-section {
        grid-template-columns: 1fr;
    }

    .bottom-grid {
        grid-template-columns: 1fr;
    }

    .nav-pill-wrapper {
        width: auto;
        padding-right: 24px;
    }

    /* Move the button up and center it so it doesn't overlap dots on narrow screens */
    .view-project-btn {
        bottom: 64px;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Hide desktop nav links, theme toggle, and desktop lang dropdown */
    .nav-pill-wrapper .nav-links,
    .theme-toggle,
    .lang-dropdown {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

/* ---------------------------------
   SEARCH MODAL & BACKDROP
-----------------------------------*/
.search-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    z-index: 90;
    /* Header is 100, so header stays unblurred */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.search-modal {
    position: fixed;
    top: 76px;
    right: 24px;
    width: 340px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    padding: 12px 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

body.light-theme .search-modal {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.search-modal-content {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-input {
    width: 100%;
    background: transparent;
    border: none;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-primary);
    padding: 4px 0;
    font-family: inherit;
    outline: none;
}

.search-input::placeholder {
    color: var(--text-secondary);
}

.search-modal-close {
    cursor: pointer;
    color: var(--text-secondary);
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.search-modal-close:hover {
    color: var(--text-primary);
}

.search-results {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 100%;
    background: transparent;
    border: none;
    box-shadow: none;
    max-height: calc(100vh - 160px);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 24px;
    /* Space at the bottom of the list */
}

.search-results::-webkit-scrollbar {
    display: none;
}

.search-results.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    cursor: pointer;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s, background 0.3s;
}

body.light-theme .search-result-item {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.search-result-item:hover {
    background: rgb(0 0 0);
    transform: translateY(-2px);
}

.search-result-img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
}

.search-result-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.search-result-title {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
}

.search-result-price {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .search-modal {
        top: 76px;
        left: 24px;
        right: 24px;
        width: auto;
    }
}

/* ---------------------------------
   MOBILE MENU MODAL
-----------------------------------*/
.mobile-menu-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0f0f0fba;
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s ease;
}

.mobile-menu-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    cursor: pointer;
    color: var(--white);
    transition: transform 0.3s;
}

.mobile-menu-close:hover {
    transform: scale(1.1);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.mobile-dropdown {
    padding-left: 16px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.desktop-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 12px;
    border-radius: 8px;
    z-index: 99;
}
.menu-item.has-children:hover > .desktop-dropdown {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.menu-item {
    display: flex;
    flex-direction: column;
}
.nav-links .menu-item {
    display: block;
}

.mobile-nav-links a {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-nav-links a:hover {
    color: var(--text-secondary);
}

.mobile-lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 12px 24px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.mobile-lang-btn:hover {
    color: var(--white);
    background: var(--glass-hover);
}

/* ---------------------------------
   LANGUAGE MODAL (MOBILE)
-----------------------------------*/
.lang-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0f0f0fba;
    backdrop-filter: blur(10px);
    z-index: 2100;
    /* Above mobile menu */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s ease;
}

.lang-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    cursor: pointer;
    color: var(--white);
    transition: transform 0.3s;
}

.lang-modal-close:hover {
    transform: scale(1.1);
}

.lang-modal-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-height: 80vh;
    overflow-y: auto;
    width: 100%;
    padding: 20px 0;
}

.lang-modal-list a {
    color: var(--text-secondary);
    font-size: 2rem;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s;
}

.lang-modal-list a.active,
.lang-modal-list a:hover {
    color: var(--white);
}

/* ---------------------------------
   FOOTER SECTION
-----------------------------------*/
.footer-section {
    position: relative;
    z-index: 10;
    grid-column: 1 / -1;
    margin-top: 16px;
}

.footer-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    color: var(--black);
}

.footer-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-catalog-btn {
    background: var(--black);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s;
}

.footer-catalog-btn:hover {
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}

.footer-col h4 {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--black);
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col a {
    color: var(--black);
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 1;
}

.legal-col {
    grid-column: 1 / -1;
    margin-top: 16px;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    align-items: center;
    text-align: center;
}

.legal-col .legal-links-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.copyright {
    font-size: 0.85rem;
    color: #666;
}

.footer-payment-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.footer-payment-methods img,
.footer-payment-methods svg {
    max-height: 24px;
    width: auto;
}

.footer-social-icons {
    display: flex;
    gap: 16px;
}

.social-icon-link {
    color: var(--black);
    opacity: 0.6;
    transition: opacity 0.3s, transform 0.3s;
}

.social-icon-link:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* ---------------------------------
   LOGIN MODAL
-----------------------------------*/
.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.login-modal.active {
    opacity: 1;
    visibility: visible;
}

.login-modal-content {
    background: var(--white);
    width: 90%;
    max-width: 480px;
    border-radius: var(--radius-lg);
    padding: 48px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    box-sizing: border-box;
}

.login-modal.active .login-modal-content {
    transform: translateY(0);
}

.login-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    cursor: pointer;
    color: var(--black);
    opacity: 0.5;
    transition: opacity 0.3s, transform 0.3s;
}

.login-modal-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

.login-header h2 {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 8px;
    font-weight: 500;
}

.login-header p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.5;
}

.login-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.login-form label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-form input {
    gap: 24px;
}

.woocommerce-MyAccount-content .form-row {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.woocommerce-MyAccount-content .form-row-first,
.woocommerce-MyAccount-content .form-row-last {
    width: calc(50% - 12px);
}

@media (max-width: 768px) {
    .woocommerce-MyAccount-content .form-row-first,
    .woocommerce-MyAccount-content .form-row-last {
        width: 100%;
    }
}

.woocommerce-MyAccount-content .form-row label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary, #999);
}

.woocommerce-MyAccount-content .form-row input.input-text,
.woocommerce-MyAccount-content .form-row textarea,
.woocommerce-MyAccount-content .form-row select {
    padding: 16px;
    border: 1px solid var(--glass-border, rgba(255,255,255,0.1));
    border-radius: var(--radius-sm, 12px);
    background: rgba(0,0,0,0.2);
    color: var(--white, #fff);
    outline: none;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
    width: 100%;
    box-sizing: border-box;
}

.woocommerce-MyAccount-content .form-row input.input-text:focus,
.woocommerce-MyAccount-content .form-row textarea:focus,
.woocommerce-MyAccount-content .form-row select:focus {
    border-color: var(--white, #fff);
}

/* Select element specific */
.woocommerce-MyAccount-content .form-row select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6l6 -6"/></svg>');
    background-repeat: no-repeat;
    background-position: right 16px center;
}
.woocommerce-MyAccount-content .form-row .select2-container {
    width: 100% !important;
}

/* Addresses */
.woocommerce-MyAccount-content .col2-set {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
@media (max-width: 768px) {
    .woocommerce-MyAccount-content .col2-set {
        grid-template-columns: 1fr;
    }
}
.woocommerce-MyAccount-content address {
    font-style: normal;
    color: var(--text-secondary, #999);
    line-height: 1.8;
    background: rgba(0,0,0,0.15);
    padding: 24px;
    border-radius: var(--radius-md, 16px);
    border: 1px solid var(--glass-border, rgba(255,255,255,0.05));
    margin-top: 16px;
}

/* Tables (Orders, Downloads) */
.woocommerce-MyAccount-content table.shop_table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}
.woocommerce-MyAccount-content table.shop_table th {
    text-align: left;
    padding: 16px;
    border-bottom: 1px solid var(--glass-border, rgba(255,255,255,0.1));
    color: var(--white, #fff);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}
.woocommerce-MyAccount-content table.shop_table td {
    padding: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--text-secondary, #999);
    vertical-align: middle;
}
.woocommerce-MyAccount-content table.shop_table tr:last-child td {
    border-bottom: none;
}
.woocommerce-MyAccount-content table.shop_table .button {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* Buttons */
.woocommerce-MyAccount-content .button,
.woocommerce-MyAccount-content button[type="submit"] {
    padding: 16px 32px;
    background: var(--white, #fff);
    color: var(--black, #000);
    border: none;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-top: 16px;
}

.woocommerce-MyAccount-content .button:hover,
.woocommerce-MyAccount-content button[type="submit"]:hover {
    transform: translateY(-2px);
    background: #e0e0e0;
}

/* Responsive */
@media (max-width: 768px) {
    .woocommerce-account .woocommerce {
        flex-direction: column;
        gap: 16px;
    }
    
    .woocommerce-MyAccount-navigation {
        flex: 1 1 100%;
        width: 100%;
        padding: 16px;
    }
    
    .woocommerce-MyAccount-content {
        padding: 24px 16px;
        width: 100%;
    }

    .woocommerce-MyAccount-content table.shop_table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

.login-form input:focus {
    border-color: var(--black);
}

.login-submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
    margin-bottom: 24px;
}

.login-submit-btn:hover {
    transform: translateY(-2px);
    background: #222;
}

.form-footer {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

.form-footer a {
    color: var(--black);
    font-weight: 500;
    text-decoration: underline;
}

/* ---------------------------------
   CONTACT PAGE STYLES
-----------------------------------*/

.contact-top-section {
    grid-template-columns: 1fr;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.contact-info-card, .contact-form-card {
    padding: 48px;
    border-radius: var(--radius-lg);
    background: var(--card-bg);
}

.contact-info-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    font-weight: 500;
    color: var(--white);
}

.contact-desc {
    font-size: 1.05rem;
    opacity: 0.7;
    margin-bottom: 48px;
    line-height: 1.6;
    color: var(--white);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-info-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    opacity: 0.5;
    margin-bottom: 4px;
}

.contact-info-value {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--white);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form label {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
}

.contact-form input,
.contact-form textarea {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    outline: none;
    font-family: inherit;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--white);
}

.contact-form .form-submit-wrapper {
    margin-top: 8px;
}

.contact-form button[type="submit"] {
    width: 100%;
    padding: 20px;
    background: var(--white);
    color: var(--black);
    border: none;
    border-radius: 100px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button[type="submit"]:hover {
    background: #e0e0e0;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-info-card, .contact-form-card {
        padding: 24px;
    }

    .contact-title {
        font-size: 2rem;
    }
    
    .contact-desc {
        margin-bottom: 32px;
    }
}

/* ---------------------------------
   FOOTER RESPONSIVE (MOBILE)
-----------------------------------*/
@media (max-width: 992px) {
    .footer-card {
        padding: 24px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-cta {
        flex-direction: column;
        gap: 24px;
        align-items: center;
        text-align: center;
    }

    .footer-cta .footer-logo {
        font-size: 2.5rem !important;
    }

    .footer-catalog-btn {
        width: 100%;
        text-align: center;
        white-space: normal;
        padding: 16px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        align-items: center;
        text-align: center;
    }

    .footer-social-icons {
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
    }

    .footer-col {
        align-items: center;
        text-align: center;
    }

    .legal-col .legal-links-row {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        align-items: center;
    }
}

/* ---------------------------------
   WOOCOMMERCE MY ACCOUNT B2B DASHBOARD
-----------------------------------*/

/* Main wrapper layout */
.woocommerce-account .woocommerce {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 32px;
    align-items: flex-start;
}

/* Navigation (Left Menu) */
.woocommerce-MyAccount-navigation {
    flex: 0 0 280px;
    background: var(--card-bg, #1c1c1c);
    border-radius: var(--radius-lg, 24px);
    padding: 24px 16px;
    border: 1px solid var(--glass-border, rgba(255,255,255,0.1));
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.woocommerce-MyAccount-navigation ul li {
    margin: 0;
}

.woocommerce-MyAccount-navigation ul li a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: var(--text-secondary, #999);
    text-decoration: none;
    border-radius: var(--radius-sm, 12px);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.woocommerce-MyAccount-navigation ul li a:hover {
    background: var(--glass-hover, rgba(255,255,255,0.05));
    color: var(--text-primary, #fff);
}

.woocommerce-MyAccount-navigation ul li.is-active a {
    background: var(--bg-color, #0f0f0f);
    color: var(--text-primary, #fff);
    box-shadow: inset 0 0 0 1px var(--glass-border, rgba(255,255,255,0.1));
}

/* Content Area (Right Panel) */
.woocommerce-MyAccount-content {
    flex: 1;
    min-width: 0;
    background: var(--card-bg, #1c1c1c);
    border-radius: var(--radius-lg, 24px);
    padding: 32px 40px;
    border: 1px solid var(--glass-border, rgba(255,255,255,0.1));
    color: var(--text-primary, #fff);
}

.woocommerce-MyAccount-content p {
    color: var(--text-secondary, #999);
    line-height: 1.6;
    margin-bottom: 24px;
}

.woocommerce-MyAccount-content a {
    color: var(--white, #fff);
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 500;
}

.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    font-weight: 500;
    color: var(--white, #fff);
}

/* WooCommerce Notices */
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-error,
.woocommerce-notices-wrapper .woocommerce-info {
    background: var(--glass-bg, rgba(255,255,255,0.05));
    border: 1px solid var(--glass-border, rgba(255,255,255,0.1));
    padding: 16px 24px;
    border-radius: var(--radius-md, 16px);
    margin-bottom: 24px;
    color: var(--white, #fff);
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
}
.woocommerce-notices-wrapper .woocommerce-error {
    border-color: rgba(229, 62, 62, 0.3);
    color: #e53e3e;
}

/* Forms & Inputs */
.woocommerce-MyAccount-content form {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.woocommerce-MyAccount-content .form-row {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.woocommerce-MyAccount-content .form-row-first,
.woocommerce-MyAccount-content .form-row-last {
    width: calc(50% - 12px);
}

@media (max-width: 768px) {
    .woocommerce-MyAccount-content .form-row-first,
    .woocommerce-MyAccount-content .form-row-last {
        width: 100%;
    }
}

body .woocommerce-MyAccount-content .form-row label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary, #999);
    font-weight: 500;
}

body .woocommerce-MyAccount-content .form-row input.input-text,
body .woocommerce-MyAccount-content .form-row textarea,
body .woocommerce-MyAccount-content .form-row select,
body .woocommerce-MyAccount-content .password-input input[type="password"] {
    padding: 16px !important;
    border: 1px solid var(--glass-border, rgba(255,255,255,0.1)) !important;
    border-radius: var(--radius-sm, 12px) !important;
    background: rgba(0,0,0,0.3) !important;
    color: var(--white, #fff) !important;
    outline: none !important;
    font-family: inherit !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    box-sizing: border-box !important;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2) !important;
}

body .woocommerce-MyAccount-content .form-row input.input-text:focus,
body .woocommerce-MyAccount-content .form-row textarea:focus,
body .woocommerce-MyAccount-content .form-row select:focus,
body .woocommerce-MyAccount-content .password-input input[type="password"]:focus {
    border-color: var(--white, #fff) !important;
    background: rgba(0,0,0,0.5) !important;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.4), 0 0 0 4px rgba(255,255,255,0.05) !important;
}

/* Password wrapper fix */
body .woocommerce-MyAccount-content .password-input {
    width: 100%;
    display: block;
}

/* Select element specific */
body .woocommerce-MyAccount-content .form-row select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6l6 -6"/></svg>') !important;
    background-repeat: no-repeat !important;
    background-position: right 16px center !important;
}
body .woocommerce-MyAccount-content .form-row .select2-container {
    width: 100% !important;
}
/* Fieldsets (Password, B2B Info, etc.) */
body .woocommerce-MyAccount-content fieldset {
    padding: 24px !important;
    margin-bottom: 32px !important;
    margin-top: 16px !important;
    border: 1px solid var(--glass-border, rgba(255,255,255,0.1)) !important;
    border-radius: var(--radius-md, 16px) !important;
    background: rgba(0,0,0,0.15) !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

body .woocommerce-MyAccount-content fieldset legend {
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    color: var(--white, #fff) !important;
    padding: 4px 16px !important;
    margin-bottom: 16px !important;
    background: var(--card-bg, #1c1c1c) !important;
    border-radius: 8px !important;
    border: 1px solid var(--glass-border, rgba(255,255,255,0.1)) !important;
}

/* Addresses */
body .woocommerce-MyAccount-content .col2-set,
body .woocommerce-MyAccount-content .u-columns.col2-set {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    width: 100%;
}
body .woocommerce-MyAccount-content .col2-set::before,
body .woocommerce-MyAccount-content .col2-set::after,
body .woocommerce-MyAccount-content .u-columns.col2-set::before,
body .woocommerce-MyAccount-content .u-columns.col2-set::after {
    display: none !important;
}
body .woocommerce-MyAccount-content .col2-set .col-1,
body .woocommerce-MyAccount-content .col2-set .col-2,
body .woocommerce-MyAccount-content .u-columns.col2-set .col-1,
body .woocommerce-MyAccount-content .u-columns.col2-set .col-2 {
    width: calc(50% - 16px) !important;
    float: none !important;
    max-width: 100% !important;
}
@media (max-width: 768px) {
    body .woocommerce-MyAccount-content .col2-set,
    body .woocommerce-MyAccount-content .u-columns.col2-set {
        flex-direction: column;
    }
    body .woocommerce-MyAccount-content .col2-set .col-1,
    body .woocommerce-MyAccount-content .col2-set .col-2,
    body .woocommerce-MyAccount-content .u-columns.col2-set .col-1,
    body .woocommerce-MyAccount-content .u-columns.col2-set .col-2 {
        width: 100% !important;
    }
}
.woocommerce-MyAccount-content address {
    font-style: normal;
    color: var(--text-secondary, #999);
    line-height: 1.8;
    background: rgba(0,0,0,0.15);
    padding: 24px;
    border-radius: var(--radius-md, 16px);
    border: 1px solid var(--glass-border, rgba(255,255,255,0.05));
    margin-top: 16px;
}

/* Tables (Orders, Downloads) */
.woocommerce-MyAccount-content table.shop_table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}
.woocommerce-MyAccount-content table.shop_table th {
    text-align: left;
    padding: 16px;
    border-bottom: 1px solid var(--glass-border, rgba(255,255,255,0.1));
    color: var(--white, #fff);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}
.woocommerce-MyAccount-content table.shop_table td {
    padding: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--text-secondary, #999);
    vertical-align: middle;
}
.woocommerce-MyAccount-content table.shop_table tr:last-child td {
    border-bottom: none;
}
.woocommerce-MyAccount-content table.shop_table .button {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* Buttons */
.woocommerce-MyAccount-content .button,
.woocommerce-MyAccount-content button[type="submit"] {
    padding: 16px 32px;
    background: var(--white, #fff);
    color: var(--black, #000);
    border: none;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-top: 16px;
}

.woocommerce-MyAccount-content .button:hover,
.woocommerce-MyAccount-content button[type="submit"]:hover {
    transform: translateY(-2px);
    background: #e0e0e0;
}

/* Responsive */
@media (max-width: 768px) {
    .woocommerce-account .woocommerce {
        flex-direction: column;
        gap: 16px;
    }
    
    .woocommerce-MyAccount-navigation {
        flex: 1 1 100%;
        width: 100%;
        padding: 16px;
    }
    
    .woocommerce-MyAccount-content {
        padding: 24px 16px;
        width: 100%;
    }

    .woocommerce-MyAccount-content table.shop_table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}
/* ---------------------------------
   CUSTOM WOOCOMMERCE DASHBOARD
-----------------------------------*/
.voc-dashboard-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.voc-dashboard-welcome {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
    padding: 24px 32px;
    border-radius: var(--radius-lg, 24px);
    border: 1px solid var(--glass-border, rgba(255,255,255,0.1));
}

.welcome-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white, #fff);
    flex-shrink: 0;
}

.lang-current,
.search-btn,
.profile-btn,
.cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--glass-bg, rgba(255,255,255,0.1));
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
    position: relative;
    text-decoration: none;
}

.lang-current:hover,
.search-btn:hover,
.profile-btn:hover,
.cart-btn:hover {
    background: var(--glass-hover, rgba(255,255,255,0.2));
}

.welcome-text h3 {
    margin: 0 0 8px 0;
    font-size: 1.5rem;
    color: var(--white, #fff);
    font-weight: 600;
}

.welcome-text .welcome-desc {
    margin: 0;
    color: var(--text-secondary, #999);
    font-size: 0.95rem;
}

.voc-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.voc-dashboard-card {
    display: flex;
    flex-direction: column;
    padding: 24px;
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--glass-border, rgba(255,255,255,0.05));
    border-radius: var(--radius-md, 16px);
    text-decoration: none !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.voc-dashboard-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.voc-dashboard-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.voc-dashboard-card:hover::before {
    opacity: 1;
}

.voc-dashboard-card .card-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white, #fff);
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.voc-dashboard-card:hover .card-icon {
    transform: scale(1.1);
    background: rgba(255,255,255,0.1);
}

.voc-dashboard-card h4 {
    color: var(--white, #fff);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0 0 8px 0;
    position: relative;
    z-index: 1;
}

.voc-dashboard-card .card-desc {
    color: var(--text-secondary, #999);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.logout-card {
    border-color: rgba(229, 62, 62, 0.2);
}

.logout-card .card-icon {
    color: #e53e3e;
    background: rgba(229, 62, 62, 0.1);
}

.logout-card:hover {
    border-color: rgba(229, 62, 62, 0.5);
}

@media (max-width: 576px) {
    .voc-dashboard-welcome {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
}

/* ---------------------------------
   WOOCOMMERCE INFO / EMPTY STATES
-----------------------------------*/
body .woocommerce-MyAccount-content .woocommerce-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 24px;
    padding: 48px 32px !important;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01)) !important;
    border: 1px dashed var(--glass-border, rgba(255,255,255,0.2)) !important;
    border-radius: var(--radius-lg, 24px) !important;
    color: var(--text-secondary, #999) !important;
    font-size: 1.1rem !important;
    margin: 32px 0 !important;
}

body .woocommerce-MyAccount-content .woocommerce-info::before {
    content: '';
    display: block;
    width: 64px;
    height: 64px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24" fill="none" stroke="rgba(255,255,255,0.5)" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><line x1="12" y1="8" x2="12" y2="12"></line><line x1="12" y1="16" x2="12.01" y2="16"></line></svg>');
    background-size: cover;
    background-position: center;
    margin-bottom: 8px;
}

body .woocommerce-MyAccount-content .woocommerce-info .button.wc-forward {
    margin-top: 0 !important;
    background: var(--white, #fff) !important;
    color: var(--black, #000) !important;
    padding: 16px 40px !important;
    border-radius: 100px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    box-shadow: 0 4px 16px rgba(255,255,255,0.1) !important;
}

body .woocommerce-MyAccount-content .woocommerce-info .button.wc-forward:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 24px rgba(255,255,255,0.2) !important;
    background: #f0f0f0 !important;
}

/* WPAUTOP FIX FOR DASHBOARD GRID */
.voc-dashboard-grid > p {
    display: contents !important;
}

/* ---------------------------------
   WOOCOMMERCE LOGIN / REGISTER FORMS
-----------------------------------*/
body .woocommerce-account .woocommerce > h2 {
    text-align: center;
    color: var(--white, #fff);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 32px;
}

body .woocommerce-form-login,
body .woocommerce-form-register {
    /* max-width: 500px; */
    /* margin: 0 auto; */
    /* padding: 40px !important; */
    /* background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(0,0,0,0.2)) !important; */
    /* border: 1px solid var(--glass-border, rgba(255,255,255,0.1)) !important; */
    /* border-radius: var(--radius-lg, 24px) !important; */
    /* box-shadow: 0 16px 40px rgba(0,0,0,0.3) !important; */
    /* backdrop-filter: blur(10px); */
}

body .woocommerce-form-login .form-row,
body .woocommerce-form-register .form-row {
    /* margin-bottom: 24px !important; */
    display: flex;
    flex-direction: column;
    gap: 8px;
}

body .woocommerce-form-login label,
body .woocommerce-form-register label {
    font-size: 0.9rem;
    color: var(--text-secondary, #999);
    font-weight: 500;
    letter-spacing: 0.5px;
}

body .woocommerce-form-login input.input-text,
body .woocommerce-form-register input.input-text,
body .woocommerce-form-login .password-input input[type="password"] {
    padding: 16px !important;
    border: 1px solid var(--glass-border, rgba(255,255,255,0.1)) !important;
    border-radius: var(--radius-sm, 12px) !important;
    background: rgba(0,0,0,0.3) !important;
    color: var(--white, #fff) !important;
    outline: none !important;
    font-family: inherit !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    box-sizing: border-box !important;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2) !important;
}

body .woocommerce-form-login input.input-text:focus,
body .woocommerce-form-register input.input-text:focus,
body .woocommerce-form-login .password-input input[type="password"]:focus {
    border-color: var(--white, #fff) !important;
    background: rgba(0,0,0,0.5) !important;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.4), 0 0 0 4px rgba(255,255,255,0.05) !important;
}

body .woocommerce-form-login .woocommerce-form-login__rememberme {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

body .woocommerce-form-login .woocommerce-form-login__rememberme input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--white, #fff);
    cursor: pointer;
}

body .woocommerce-form-login .woocommerce-button,
body .woocommerce-form-register .woocommerce-button {
    width: 100% !important;
    margin-top: 16px !important;
    background: var(--white, #fff) !important;
    color: var(--black, #000) !important;
    padding: 16px !important;
    border-radius: 100px !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border: none !important;
    transition: transform 0.3s, box-shadow 0.3s !important;
    cursor: pointer !important;
}

body .woocommerce-form-login .woocommerce-button:hover,
body .woocommerce-form-register .woocommerce-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(255,255,255,0.2) !important;
}

body .woocommerce-form-login .lost_password {
    text-align: center;
    margin-top: 24px;
}

body .woocommerce-form-login .lost_password a {
    color: var(--text-secondary, #999) !important;
    text-decoration: none !important;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

body .woocommerce-form-login .lost_password a:hover {
    color: var(--white, #fff) !important;
    text-decoration: underline !important;
}

/* Hide wpautop breaks in login form */
body .woocommerce-form-login > br,
body .woocommerce-form-login .form-row > br,
body .woocommerce-form-login label > br {
    display: none !important;
}

/* Hide wpautop breaks in navigation links */
.woocommerce-MyAccount-navigation-link a br {
    display: none !important;
}

/* Hide ALL wpautop garbage p tags inside dashboard cards */
.voc-dashboard-card p {
    display: none !important;
}

/* ---------------------------------
   ADDRESSES EDIT BUTTONS
-----------------------------------*/
body .woocommerce-MyAccount-content .woocommerce-Address-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

body .woocommerce-MyAccount-content .woocommerce-Address-title h2 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--white, #fff);
}

body .woocommerce-MyAccount-content .woocommerce-Address-title p {
    margin: 0 !important;
}

body .woocommerce-MyAccount-content .woocommerce-Address-title a.edit {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px !important;
    background: rgba(255,255,255,0.1) !important;
    color: var(--white, #fff) !important;
    border: 1px solid var(--glass-border, rgba(255,255,255,0.2)) !important;
    border-radius: 100px !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

body .woocommerce-MyAccount-content .woocommerce-Address-title a.edit:hover {
    background: rgba(255,255,255,0.2) !important;
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.3) !important;
}

/* Hide wpautop br tags */
body .woocommerce-MyAccount-content .woocommerce-Address-title a.edit br,
body .woocommerce-MyAccount-content .woocommerce-Address-title p br {
    display: none !important;
}

/* Hide wpautop br and empty p tags in Edit Account Form */
body .woocommerce-EditAccountForm br,
body .woocommerce-EditAccountForm > p:empty {
    display: none !important;
}

/* Fix wpautop p wrapper inside Address Title */
body .woocommerce-MyAccount-content .woocommerce-Address-title p {
    display: contents !important;
}

/* ---------------------------------
   CUSTOM VOC LOGIN FORM (vocLoginForm)
-----------------------------------*/
.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.login-modal.active {
    opacity: 1;
    visibility: visible;
}

.login-modal-content {
    max-width: 500px;
    width: 90%;
    margin: 0 auto;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(0,0,0,0.2));
    border: 1px solid var(--glass-border, rgba(255,255,255,0.1));
    border-radius: var(--radius-lg, 24px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body.light-theme .login-modal-content {
    background: var(--card-bg, #ffffff);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.login-modal.active .login-modal-content {
    transform: translateY(0) scale(1);
}

.login-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--glass-bg, rgba(255,255,255,0.1));
    color: var(--white, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-modal-close:hover {
    background: var(--glass-hover, rgba(255,255,255,0.2));
    transform: rotate(90deg);
}

body.light-theme .login-modal-close {
    color: var(--black, #111111);
}

.login-header {
    text-align: center;
    margin-bottom: 32px;
}

.login-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white, #ffffff);
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

body.light-theme .login-header h2 {
    color: var(--black, #111111);
}

.login-header p {
    color: var(--text-secondary, #999999);
    font-size: 0.95rem;
}

#vocLoginForm.login-form {
    width: 100%;
}

#vocLoginForm .form-group {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#vocLoginForm .form-group label {
    font-size: 0.9rem;
    color: var(--text-secondary, #999);
    font-weight: 500;
    letter-spacing: 0.5px;
}

#vocLoginForm input[type="text"],
#vocLoginForm input[type="password"],
#vocLoginForm input[type="email"] {
    padding: 16px !important;
    border: 1px solid var(--glass-border, rgba(255,255,255,0.1)) !important;
    border-radius: var(--radius-sm, 12px) !important;
    background: rgba(0,0,0,0.3) !important;
    color: var(--white, #fff) !important;
    outline: none !important;
    font-family: inherit !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    box-sizing: border-box !important;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2) !important;
}

#vocLoginForm input:focus {
    border-color: var(--white, #fff) !important;
    background: rgba(0,0,0,0.5) !important;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.4), 0 0 0 4px rgba(255,255,255,0.05) !important;
}

#vocLoginForm .login-submit-btn {
    width: 100% !important;
    margin-top: 16px !important;
    background: var(--white, #fff) !important;
    color: var(--black, #000) !important;
    padding: 16px !important;
    border-radius: 100px !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border: none !important;
    transition: transform 0.3s, box-shadow 0.3s !important;
    cursor: pointer !important;
}

#vocLoginForm .login-submit-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(255,255,255,0.2) !important;
}

#vocLoginForm .form-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 0.9rem;
    color: var(--text-secondary, #999);
}

#vocLoginForm .form-footer a {
    color: var(--white, #fff);
    text-decoration: none;
    font-weight: 500;
    margin-left: 8px;
    transition: all 0.3s ease;
}

#vocLoginForm .form-footer a:hover {
    text-decoration: underline;
    color: var(--white, #fff);
}

/* Elementor Top Margin Fix (Logged-in vs Logged-out) */
body:not(.logged-in) .elementor-13 .elementor-element.elementor-element-1af3a1b0 {
    --margin-top: -40px !important;
}

body.logged-in .elementor-13 .elementor-element.elementor-element-1af3a1b0 {
    --margin-top: 40px !important;
}

/* WooCommerce Notices Fix - Hide duplicated notices */
.woocommerce-notices-wrapper .woocommerce-message ~ .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-error li ~ li,
.woocommerce-notices-wrapper .woocommerce-info ~ .woocommerce-info {
    display: none !important;
}

/* Profile Dropdown */
.profile-dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.profile-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 16px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    min-width: 150px;
    border-radius: var(--radius-md);
    padding: 8px 0;
    margin-bottom: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.profile-dropdown-wrapper:hover .profile-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.profile-dropdown-menu li {
    margin: 0;
    padding: 0;
}

.profile-dropdown-menu li a {
    display: block;
    padding: 8px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s, color 0.3s;
}

.profile-dropdown-menu li a:hover {
    background: var(--glass-bg);
    color: var(--white);
}

.profile-dropdown-menu li a.logout-link {
    color: #ff4d4d;
}

.profile-dropdown-menu li a.logout-link:hover {
    background: rgba(255, 77, 77, 0.1);
}

/* WooCommerce Product Reviews Form Styling */
#respond.comment-respond {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md, 12px);
    padding: 24px;
    margin-top: 16px;
}

#respond.comment-respond .comment-reply-title {
    color: var(--white, #fff);
    font-size: 1.25rem;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
}

#respond.comment-respond .comment-reply-title small a {
    color: #ff4d4d;
    font-size: 0.85rem;
    margin-left: 12px;
    text-decoration: none;
}

#respond.comment-respond .logged-in-as {
    display: none !important;
}

#respond.comment-respond .logged-in-as a {
    color: #E5C158;
    text-decoration: none;
    transition: opacity 0.3s;
}

#respond.comment-respond .logged-in-as a:hover {
    opacity: 0.8;
}

#respond.comment-respond .comment-form-rating label,
#respond.comment-respond .comment-form-comment label {
    display: block;
    color: var(--white, #fff);
    font-size: 0.95rem;
    margin-bottom: 8px;
    font-weight: 500;
}

#respond.comment-respond .comment-form-comment textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm, 8px);
    color: var(--white, #fff);
    padding: 16px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.3s, background 0.3s;
    box-sizing: border-box;
}

#respond.comment-respond .comment-form-comment textarea:focus {
    outline: none;
    border-color: #E5C158;
    background: rgba(0, 0, 0, 0.5);
}

#respond.comment-respond .form-submit {
    margin-top: 24px;
    margin-bottom: 0;
    text-align: right;
}

#respond.comment-respond .form-submit .submit {
    background: #E5C158;
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: var(--radius-sm, 8px);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

#respond.comment-respond .form-submit .submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(229, 193, 88, 0.3);
    background: #f4d068;
}

/* Comments List Styling */
.woocommerce-Reviews .commentlist {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.woocommerce-Reviews .commentlist li {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md, 12px);
    padding: 24px;
    margin-bottom: 16px;
}

.woocommerce-Reviews .commentlist li .comment-text {
    color: var(--white, #fff);
}

.woocommerce-Reviews .commentlist li .meta {
    color: var(--text-secondary, rgba(255,255,255,0.5));
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.woocommerce-Reviews .commentlist li .description {
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .voc-mobile-filter-btn {
        display: flex !important;
    }
    .voc-filter-wrapper {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important;
        background: var(--card-bg, #1a1a1a) !important;
        z-index: 1000 !important;
        flex-direction: column !important;
        padding: 24px !important;
        border-radius: 24px 24px 0 0 !important;
        transform: translateY(100%) !important;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        box-shadow: 0 -10px 40px rgba(0,0,0,0.8) !important;
        align-items: stretch !important;
        gap: 0 !important;
    }
    .voc-filter-wrapper.active {
        transform: translateY(0) !important;
    }
    .voc-filter-wrapper > select, .voc-filter-wrapper > span {
        width: 100% !important;
        margin-left: 0 !important;
        margin-bottom: 12px !important;
        display: block !important;
    }
    .voc-filter-close {
        display: flex !important;
    }
}
/* ---------------------------------
   WOOCOMMERCE CART INPUTS & BUTTONS
-----------------------------------*/
table.shop_table {
    border: none !important;
}
table.shop_table .quantity .qty,
div.quantity .qty {
    background: #1a1a1a !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    border-radius: 8px !important;
    padding: 8px 12px !important;
    text-align: center !important;
    width: 70px !important;
    outline: none !important;
    box-sizing: border-box !important;
}

div.coupon {
    display: flex !important;
    gap: 12px !important;
    align-items: center !important;
    flex-wrap: wrap !important;
}

div.coupon .input-text {
    background: #1a1a1a !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    border-radius: 100px !important;
    padding: 12px 24px !important;
    outline: none !important;
    box-sizing: border-box !important;
    width: 250px !important;
    max-width: 100% !important;
}

div.coupon .button, 
table.shop_table .actions > .button {
    background: rgba(255,255,255,0.1) !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    border-radius: 100px !important;
    padding: 12px 24px !important;
    transition: all 0.3s ease !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    box-sizing: border-box !important;
}

div.coupon .button:hover, 
table.shop_table .actions > .button:hover:not(:disabled) {
    background: rgba(255,255,255,0.2) !important;
    border-color: rgba(255,255,255,0.4) !important;
    color: #E5C158 !important;
}

table.shop_table .actions > .button:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
}

/* ---------------------------------
   WOOCOMMERCE CART TOTALS & CHECKOUT
-----------------------------------*/

/* Align cart totals to the right */
.woocommerce .cart-collaterals {
    display: flex !important;
    justify-content: flex-end !important;
    margin-top: 40px !important;
}

/* Cart Totals Box */
.woocommerce .cart-collaterals .cart_totals {
    width: 100% !important;
    max-width: 500px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 24px !important;
    padding: 32px !important;
    float: none !important;
    margin: 0 !important;
}

.woocommerce .cart-collaterals .cart_totals h2 {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: var(--white) !important;
    margin-top: 0 !important;
    margin-bottom: 24px !important;
    padding-bottom: 16px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.woocommerce .cart-collaterals .cart_totals table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin-bottom: 32px !important;
}

.woocommerce .cart-collaterals .cart_totals table th,
.woocommerce .cart-collaterals .cart_totals table td {
    padding: 16px 0 !important;
    border: none !important;
    color: var(--white) !important;
    vertical-align: middle !important;
}

.woocommerce .cart-collaterals .cart_totals table th {
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.6) !important;
    text-align: left !important;
}

.woocommerce .cart-collaterals .cart_totals table td {
    text-align: right !important;
}

/* Subtotal & Total Rows */
.woocommerce .cart-collaterals .cart_totals table .order-total th,
.woocommerce .cart-collaterals .cart_totals table .order-total td {
    border-bottom: none !important;
    padding-top: 24px !important;
    font-size: 1.25rem !important;
    color: #E5C158 !important; /* Premium Gold */
}

.woocommerce .cart-collaterals .cart_totals table .order-total td strong {
    font-weight: 700 !important;
    color: inherit !important;
}

/* Proceed to Checkout Button */
.woocommerce .cart-collaterals .wc-proceed-to-checkout {
    padding: 0 !important;
    margin: 0 !important;
}

.woocommerce .cart-collaterals .wc-proceed-to-checkout .checkout-button, .woocommerce-checkout #place_order {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    background: #5d5d5d !important;
    color: #ffffff !important;
    padding: 18px 24px !important;
    border-radius: 100px !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.woocommerce .cart-collaterals .wc-proceed-to-checkout .checkout-button:hover, .woocommerce-checkout #place_order:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(93, 93, 93, 0.3) !important;
    background: #6e6e6e !important;
}

/* WhatsApp Button Adjustments */
.woocommerce .cart-collaterals .cart_totals > div > a.button[href*="wa.me"] {
    transition: all 0.3s ease !important;
}
.woocommerce .cart-collaterals .cart_totals > div > a.button[href*="wa.me"]:hover {
    background: #20b858 !important; /* Darker green on hover */
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3) !important;
}

/* ---------------------------------
   WOOCOMMERCE LOST PASSWORD
-----------------------------------*/
.woocommerce-ResetPassword.lost_reset_password {
    background: var(--card-bg, #1c1c1c);
    border: 1px solid var(--glass-border, rgba(255,255,255,0.1));
    border-radius: var(--radius-lg, 24px);
    padding: 40px;
    max-width: 500px;
    margin: 40px auto;
}

.woocommerce-ResetPassword.lost_reset_password > p:first-child {
    color: var(--text-secondary, #999);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.woocommerce-ResetPassword .woocommerce-form-row {
    margin-bottom: 24px;
}

.woocommerce-ResetPassword label {
    display: block;
    color: var(--text-primary, #fff);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.woocommerce-ResetPassword input.input-text {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary, #fff);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm, 12px);
    padding: 14px 16px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.woocommerce-ResetPassword input.input-text:focus {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.woocommerce-ResetPassword button[type="submit"] {
    width: 100%;
    background: #5d5d5d;
    color: #ffffff;
    padding: 16px 24px;
    border: none;
    border-radius: 100px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.woocommerce-ResetPassword button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(93, 93, 93, 0.3);
    background: #6e6e6e;
}

/* ---------------------------------
   MOBILE NAV LINKS
-----------------------------------*/
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}
/* GiriÅŸ Yap Button Custom CSS */
#vocLoginSubmitBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  background: var(--glass-bg, rgba(255,255,255,0.1));
  color: var(--text-primary, #fff);
  border: 1px solid var(--glass-border, rgba(255,255,255,0.1));
  border-radius: var(--radius-sm, 12px);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
}
#vocLoginSubmitBtn:hover {
  background: var(--glass-hover, rgba(255,255,255,0.2));
}
#vocLoginSubmitBtn:active {
  transform: translateY(0);
}

/* Login Footer Custom CSS */
.login-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid var(--glass-border, rgba(255,255,255,0.1));
}
.login-footer a {
  color: var(--text-secondary, #999);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

/* ==========================================================================
   WooCommerce Checkout Styles (Inputs and Buttons only)
   ========================================================================== */
.woocommerce-checkout input.input-text,
.woocommerce-checkout select {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 24px !important;
    background: #1a1a1a !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    border-radius: 100px !important;
    color: #fff !important;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: none !important;
}
.woocommerce-checkout textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 16px 24px !important;
    background: #1a1a1a !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    border-radius: 24px !important;
    color: #fff !important;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: none !important;
}
body.light-theme .woocommerce-checkout input.input-text,
body.light-theme .woocommerce-checkout select,
body.light-theme .woocommerce-checkout textarea {
    background: #f0f0f0 !important;
    color: #111 !important;
    border-color: rgba(0,0,0,0.1) !important;
}
.woocommerce-checkout input.input-text::placeholder,
.woocommerce-checkout textarea::placeholder {
    color: rgba(255,255,255,0.5) !important;
}
body.light-theme .woocommerce-checkout input.input-text::placeholder,
body.light-theme .woocommerce-checkout textarea::placeholder {
    color: rgba(0,0,0,0.5) !important;
}
.woocommerce-checkout input.input-text:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus {
    outline: none;
    border-color: #fff !important;
    background: #2a2a2a !important;
}
body.light-theme .woocommerce-checkout input.input-text:focus,
body.light-theme .woocommerce-checkout select:focus,
body.light-theme .woocommerce-checkout textarea:focus {
    border-color: #111 !important;
    background: #e0e0e0 !important;
}

/* Standard Select Options */
.woocommerce-checkout select option {
    background: #1a1a1a;
    color: #fff;
}
body.light-theme .woocommerce-checkout select option {
    background: #f0f0f0;
    color: #111;
}

/* Select2 Dropdowns */
.woocommerce-checkout .select2-container--default .select2-selection--single {
    background: #1a1a1a !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    border-radius: 100px !important;
    height: 48px !important;
    box-shadow: none !important;
}
body.light-theme .woocommerce-checkout .select2-container--default .select2-selection--single {
    background: #f0f0f0 !important;
    border-color: rgba(0,0,0,0.1) !important;
}
.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #fff !important;
    line-height: 46px !important;
    padding-left: 24px !important;
    font-size: 15px;
}
body.light-theme .woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #111 !important;
}
.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px !important;
    right: 16px !important;
}
/* Select2 Dropdown Panel */
body .select2-container--default .select2-dropdown {
    background: var(--card-bg) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: var(--radius-sm) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
    z-index: 99999;
}
body .select2-search--dropdown .select2-search__field {
    background: var(--bg-color) !important;
    border: 1px solid var(--glass-border) !important;
    color: var(--text-primary) !important;
    border-radius: 4px;
}
body .select2-container--default .select2-results__option {
    color: var(--text-primary) !important;
    background: transparent;
    padding: 10px 16px;
}
body .select2-container--default .select2-results__option[aria-selected=true],
body .select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--glass-hover) !important;
    color: var(--text-primary) !important;
}


/* ==========================================================================
   Checkout Layout (Billing 100% width, 2 columns)
   ========================================================================== */
.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
    width: 100%;
    float: none;
    margin-bottom: 24px;
}
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
.woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
}
.woocommerce-checkout .form-row {
    width: 100% !important;
    float: none !important;
    margin-bottom: 16px;
}
.woocommerce-checkout .form-row.form-row-wide {
    grid-column: 1 / -1;
}
.woocommerce-checkout .form-row.form-row-first,
.woocommerce-checkout .form-row.form-row-last {
    grid-column: span 1;
}
@media (max-width: 991px) {
    .woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
    .woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Vocens Custom Checkout Layout (2-Column Grid + Sticky Right Sidebar)
   ========================================================================== */
/* IMPORTANT: WooCommerce adds "woocommerce-checkout" as a BODY class on this
   page (body class="... woocommerce-checkout ..."). A bare ".woocommerce-checkout"
   selector therefore also matches <body> itself, turning the ENTIRE PAGE into a
   grid and squeezing everything to the left with empty space on the right.
   Always scope these rules with the "form" tag: "form.woocommerce-checkout". */

/* Widen the boxed Elementor container on the checkout page so the form has
   more room instead of being squeezed into the default ~1140px boxed width. */
body.woocommerce-checkout .e-con-boxed,
body.woocommerce-checkout .container,
body.woocommerce-checkout .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

/* Make sure the checkout form always stretches to fill the available width
   instead of leaving empty space on the right, whatever kind of parent
   (flex/grid/elementor container) it sits in. */
form.woocommerce-checkout {
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 1 auto !important;
    align-self: stretch !important;
    justify-self: stretch !important;
}

@media (min-width: 992px) {
    form.woocommerce-checkout {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) 400px !important;
        grid-template-rows: auto 1fr !important;
        gap: 32px !important;
        align-items: start !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    /* Grouping customer details to the left (scrolls with the page) */
    form.woocommerce-checkout #customer_details {
        grid-column: 1 !important;
        grid-row: 1 / span 2 !important;
        min-width: 0 !important;
        padding-right: 16px;
    }

    /* Order review heading on the right */
    form.woocommerce-checkout #order_review_heading {
        grid-column: 2 !important;
        grid-row: 1 !important;
        margin-top: 0 !important;
        min-width: 0 !important;
    }

    /* Order review stays fixed/sticky on the right while left column scrolls */
    form.woocommerce-checkout #order_review {
        grid-column: 2 !important;
        grid-row: 2 !important;
        position: sticky !important;
        top: 110px !important;
        align-self: start !important;
        min-width: 0 !important;
    }
}

/* Make inner columns of left side full width */
form.woocommerce-checkout #customer_details .col-1,
form.woocommerce-checkout #customer_details .col-2 {
    width: 100% !important;
    float: none !important;
    margin-bottom: 24px !important;
}

/* Force 2-Column Grid inside Billing and Shipping */
form.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
form.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper,
form.woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0 20px !important;
}

/* Reset form rows */
form.woocommerce-checkout .form-row {
    width: 100% !important;
    float: none !important;
    margin-bottom: 16px !important;
}

/* Full width elements (Address, Email, Phone, Country etc.) */
form.woocommerce-checkout .form-row.form-row-wide {
    grid-column: 1 / -1 !important;
}

/* Half width elements (First Name, Last Name) */
form.woocommerce-checkout .form-row.form-row-first,
form.woocommerce-checkout .form-row.form-row-last {
    grid-column: span 1 !important;
}

/* Mobile: Collapse grid to 1 column */
@media (max-width: 991px) {
    form.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
    form.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper,
    form.woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
        grid-template-columns: 1fr !important;
    }
    form.woocommerce-checkout .form-row.form-row-first,
    form.woocommerce-checkout .form-row.form-row-last {
        grid-column: 1 / -1 !important;
    }
}




/* ==========================================================================
   Order Received (Thank You) Page
   ========================================================================== */
.woocommerce-order {
    margin-top: 100px !important;
    margin-bottom: 60px !important;
}

/* Teşekkürler mesajı kutusu (Şık ve yeşilimsi) */
.woocommerce-order .woocommerce-notice--success {
    background: rgba(37, 211, 102, 0.1) !important;
    border: 1px solid rgba(37, 211, 102, 0.3) !important;
    border-left: 5px solid #25D366 !important;
    color: #25D366 !important;
    padding: 24px !important;
    border-radius: 16px !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    margin-bottom: 40px !important;
}

/* Başlıklar (Sipariş detayları, Fatura adresi vs.) */
.woocommerce-order h2.woocommerce-order-details__title,
.woocommerce-order h2.woocommerce-column__title,
.woocommerce-order .wc-bacs-bank-details-heading {
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 1.5rem !important;
    margin-top: 48px !important;
    margin-bottom: 24px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding-bottom: 16px !important;
}

/* Metinler ve Fatura Adresi Detayları */
.woocommerce-order p,
.woocommerce-order address {
    color: #b0b0b0 !important;
    line-height: 1.8 !important;
    font-style: normal !important;
    font-size: 1rem !important;
}

.woocommerce-order address {
    background: #1a1a1a !important;
    padding: 24px !important;
    border-radius: 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

/* Sipariş Üst Bilgi Kutusu (Tarih, Numara vb.) */
.woocommerce-order ul.woocommerce-order-overview {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 32px !important;
    background: #1a1a1a !important;
    padding: 32px !important;
    border-radius: 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    margin-bottom: 40px !important;
}

.woocommerce-order ul.woocommerce-order-overview li {
    border: none !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    text-transform: uppercase !important;
    font-size: 0.85rem !important;
    color: #999 !important;
    letter-spacing: 0.5px !important;
}

.woocommerce-order ul.woocommerce-order-overview li strong {
    display: block !important;
    color: #ffffff !important;
    margin-top: 10px !important;
    font-size: 1.2rem !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

body.light-theme .woocommerce-order ul.woocommerce-order-overview,
body.light-theme .woocommerce-order address {
    background: #f8f8f8 !important;
    border-color: rgba(0,0,0,0.1) !important;
}
body.light-theme .woocommerce-order h2.woocommerce-order-details__title,
body.light-theme .woocommerce-order h2.woocommerce-column__title,
body.light-theme .woocommerce-order .wc-bacs-bank-details-heading,
body.light-theme .woocommerce-order ul.woocommerce-order-overview li strong {
    color: #111 !important;
    border-color: rgba(0,0,0,0.1) !important;
}
body.light-theme .woocommerce-order p,
body.light-theme .woocommerce-order address,
body.light-theme .woocommerce-order ul.woocommerce-order-overview li {
    color: #555 !important;
}
/* ==========================================================================
   Lost Password Form (Premium UI)
   ========================================================================== */
.woocommerce form.lost_reset_password {
    max-width: 500px;
    margin: 40px auto;
    background: var(--card-bg, #1e1e2d);
    padding: 40px;
    border-radius: var(--radius-lg, 16px);
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.woocommerce form.lost_reset_password p:first-child {
    font-size: 15px;
    color: var(--text-gray, #a7a8bb);
    margin-bottom: 30px;
    line-height: 1.6;
}

.woocommerce form.lost_reset_password .woocommerce-form-row {
    margin-bottom: 24px;
    position: relative;
    padding: 0;
}

.woocommerce form.lost_reset_password .woocommerce-form-row label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--white, #ffffff);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.woocommerce form.lost_reset_password .woocommerce-form-row input.input-text {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.woocommerce form.lost_reset_password .woocommerce-form-row input.input-text:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.05);
    border-color: #745cff;
    box-shadow: 0 0 0 3px rgba(116, 92, 255, 0.2), inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.woocommerce form.lost_reset_password .woocommerce-Button.button {
    width: 100%;
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #745cff 0%, #b854ff 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(116, 92, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

.woocommerce form.lost_reset_password .woocommerce-Button.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(116, 92, 255, 0.4);
    background: linear-gradient(135deg, #8b75ff 0%, #c470ff 100%);
}

/* Light Theme overrides */
body.light-theme .woocommerce form.lost_reset_password {
    background: #ffffff;
    border-color: #e2e8f0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}
body.light-theme .woocommerce form.lost_reset_password p:first-child {
    color: #64748b;
}
body.light-theme .woocommerce form.lost_reset_password .woocommerce-form-row label {
    color: #334155;
}
body.light-theme .woocommerce form.lost_reset_password .woocommerce-form-row input.input-text {
    color: #1e293b;
    background: #f8fafc;
    border-color: #cbd5e1;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}
body.light-theme .woocommerce form.lost_reset_password .woocommerce-form-row input.input-text:focus {
    background: #ffffff;
    border-color: #745cff;
    box-shadow: 0 0 0 3px rgba(116,92,255,0.1), inset 0 2px 4px rgba(0,0,0,0.02);
}

/* Ensure the class hits regardless of theme structure */
.woocommerce form.woocommerce-ResetPassword {
    max-width: 500px;
    margin: 40px auto;
    background: var(--card-bg, #1e1e2d);
    padding: 40px;
    border-radius: var(--radius-lg, 16px);
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.woocommerce form.woocommerce-ResetPassword p:first-child {
    font-size: 15px;
    color: var(--text-gray, #a7a8bb);
    margin-bottom: 30px;
    line-height: 1.6;
}
.woocommerce form.woocommerce-ResetPassword .woocommerce-form-row {
    margin-bottom: 24px;
    position: relative;
    padding: 0;
}
.woocommerce form.woocommerce-ResetPassword .woocommerce-form-row label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--white, #ffffff);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.woocommerce form.woocommerce-ResetPassword .woocommerce-form-row input.input-text {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}
.woocommerce form.woocommerce-ResetPassword .woocommerce-form-row input.input-text:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.05);
    border-color: #745cff;
    box-shadow: 0 0 0 3px rgba(116, 92, 255, 0.2), inset 0 2px 4px rgba(0, 0, 0, 0.2);
}
.woocommerce form.woocommerce-ResetPassword .woocommerce-Button.button {
    width: 100%;
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #745cff 0%, #b854ff 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(116, 92, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
}
.woocommerce form.woocommerce-ResetPassword .woocommerce-Button.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(116, 92, 255, 0.4);
    background: linear-gradient(135deg, #8b75ff 0%, #c470ff 100%);
}
body.light-theme .woocommerce form.woocommerce-ResetPassword {
    background: #ffffff;
    border-color: #e2e8f0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}
body.light-theme .woocommerce form.woocommerce-ResetPassword p:first-child {
    color: #64748b;
}
body.light-theme .woocommerce form.woocommerce-ResetPassword .woocommerce-form-row label {
    color: #334155;
}
body.light-theme .woocommerce form.woocommerce-ResetPassword .woocommerce-form-row input.input-text {
    color: #1e293b;
    background: #f8fafc;
    border-color: #cbd5e1;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}
body.light-theme .woocommerce form.woocommerce-ResetPassword .woocommerce-form-row input.input-text:focus {
    background: #ffffff;
    border-color: #745cff;
    box-shadow: 0 0 0 3px rgba(116,92,255,0.1), inset 0 2px 4px rgba(0,0,0,0.02);
}

/* Fix for form rows taking 50% width */
.woocommerce form .form-row-first, .woocommerce form .form-row-last, .woocommerce-page form .form-row-first, .woocommerce-page form .form-row-last {
    width: 100% !important;
    overflow: visible;
}

/* ==========================================================================
   Lost Password Error Notices Fix
   ========================================================================== */
.woocommerce .woocommerce-notices-wrapper:has(+ form.woocommerce-ResetPassword),
.woocommerce .woocommerce-notices-wrapper:has(+ form.lost_reset_password) {
    max-width: 500px;
    margin: 40px auto 20px auto;
}

.woocommerce .woocommerce-notices-wrapper:has(+ form.woocommerce-ResetPassword) + form,
.woocommerce .woocommerce-notices-wrapper:has(+ form.lost_reset_password) + form {
    margin-top: 0 !important;
}

.woocommerce .woocommerce-error {
    background: rgba(239, 68, 68, 0.1) !important;
    border: 1px solid rgba(239, 68, 68, 0.2) !important;
    border-left: 4px solid #ef4444 !important;
    color: #ef4444 !important;
    border-radius: 12px !important;
    padding: 16px 20px !important;
    margin: 0 !important;
    list-style: none !important;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.1);
}

.woocommerce .woocommerce-error li {
    margin: 0 !important;
    padding: 0 !important;
}

/* Light Theme overrides for errors */
body.light-theme .woocommerce .woocommerce-error {
    background: #fef2f2 !important;
    border-color: #fca5a5 !important;
    border-left-color: #ef4444 !important;
    color: #991b1b !important;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.05);
}

/* ==========================================================================
   Lost Password Alignment Fix (Vertical Stacking)
   ========================================================================== */
.woocommerce:has(form.woocommerce-ResetPassword),
.woocommerce:has(form.lost_reset_password) {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
}

.woocommerce:has(form.woocommerce-ResetPassword) .woocommerce-notices-wrapper,
.woocommerce:has(form.lost_reset_password) .woocommerce-notices-wrapper {
    width: 100% !important;
    max-width: 500px !important;
    margin: 40px auto 20px auto !important;
    display: block !important;
}

.woocommerce form.woocommerce-ResetPassword,
.woocommerce form.lost_reset_password {
    width: 100% !important;
    max-width: 500px !important;
    margin: 0 auto 40px auto !important;
    display: block !important;
}



/* Custom Scrollbar for Language Modal */
.lang-modal-list::-webkit-scrollbar {
    width: 6px;
}
.lang-modal-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}
.lang-modal-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

/* Scroll Down Indicator for Language Modal */
.lang-modal::after {
    content: '↓';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 24px;
    animation: vocBounce 2s infinite;
    pointer-events: none;
}
@keyframes vocBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}
