/* ==========================================================================
   MODERN E-SHOP REDESIGN — style-modern.css
   Version: 2.0
   Design: "Přirozená Elegance" — Premium e-commerce experience
   ========================================================================== */

/* ==========================================================================
   1. DESIGN TOKENS — Custom Properties
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=DM+Serif+Display&display=swap');

:root {
    /* ---- Primary — Fresh Emerald ---- */
    --primary-50:  hsl(152, 60%, 96%);
    --primary-100: hsl(152, 55%, 90%);
    --primary-200: hsl(152, 50%, 78%);
    --primary-300: hsl(152, 46%, 64%);
    --primary-400: hsl(153, 50%, 48%);
    --primary-500: hsl(153, 55%, 38%);
    --primary-600: hsl(155, 58%, 30%);
    --primary-700: hsl(156, 60%, 24%);
    --primary-rgb: 46, 139, 87;

    /* Legacy mapping for compatibility */
    --green: var(--primary-400);
    --green-hover: var(--primary-500);
    --green-light-bg: var(--primary-50);

    /* ---- Accent — Warm Coral ---- */
    --accent-50:  hsl(4, 85%, 97%);
    --accent-100: hsl(4, 80%, 92%);
    --accent-400: hsl(4, 72%, 62%);
    --accent-500: hsl(4, 68%, 55%);
    --accent-600: hsl(4, 64%, 48%);

    /* Legacy mapping */
    --red: var(--accent-500);
    --red-hover: var(--accent-600);
    --pink: var(--accent-50);

    /* ---- Warm Surface ---- */
    --beige: hsl(38, 100%, 96%);

    /* ---- Neutral — Warm Slate ---- */
    --neutral-0:   #ffffff;
    --neutral-50:  hsl(220, 14%, 97%);
    --neutral-100: hsl(220, 14%, 94%);
    --neutral-150: hsl(220, 13%, 91%);
    --neutral-200: hsl(220, 12%, 88%);
    --neutral-300: hsl(220, 10%, 74%);
    --neutral-400: hsl(220, 8%, 56%);
    --neutral-500: hsl(220, 8%, 42%);
    --neutral-600: hsl(220, 10%, 28%);
    --neutral-700: hsl(220, 14%, 18%);
    --neutral-800: hsl(220, 18%, 12%);
    --neutral-900: hsl(220, 22%, 8%);

    /* ---- Surfaces (Glassmorphism) ---- */
    --surface-base: var(--neutral-0);
    --surface-raised: var(--neutral-50);
    --surface-glass: rgba(255, 255, 255, 0.72);
    --surface-glass-strong: rgba(255, 255, 255, 0.88);
    --surface-glass-border: rgba(255, 255, 255, 0.2);
    --surface-overlay: rgba(0, 0, 0, 0.4);

    /* ---- Typography ---- */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-stack: var(--font-sans);

    --text-xs:   clamp(0.69rem, 0.66rem + 0.16vw, 0.8rem);
    --text-sm:   clamp(0.8rem, 0.76rem + 0.22vw, 0.95rem);
    --text-base: clamp(0.94rem, 0.89rem + 0.27vw, 1.13rem);
    --text-lg:   clamp(1.13rem, 1.05rem + 0.37vw, 1.38rem);
    --text-xl:   clamp(1.38rem, 1.28rem + 0.49vw, 1.72rem);
    --text-2xl:  clamp(1.72rem, 1.58rem + 0.71vw, 2.19rem);
    --text-3xl:  clamp(2.19rem, 1.99rem + 0.98vw, 2.81rem);
    --text-4xl:  clamp(2.81rem, 2.54rem + 1.36vw, 3.63rem);

    --leading-tight: 1.2;
    --leading-normal: 1.5;
    --leading-relaxed: 1.65;
    --tracking-tight: -0.025em;
    --tracking-normal: 0;
    --tracking-wide: 0.05em;

    /* ---- Spacing Scale ---- */
    --space-0: 0;
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-7: 2rem;
    --space-8: 2.5rem;
    --space-9: 3rem;
    --space-10: 4rem;
    --space-11: 5rem;
    --space-12: 6rem;
    --space-16: 8rem;

    /* ---- Shadows ---- */
    --shadow-xs:  0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm:  0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md:  0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 2px 4px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg:  0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -4px rgba(0, 0, 0, 0.03);
    --shadow-xl:  0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(var(--primary-rgb), 0.15);
    --shadow-glow-lg: 0 0 40px rgba(var(--primary-rgb), 0.2);
    --shadow-card-hover: 0 20px 40px -8px rgba(0, 0, 0, 0.12);

    /* ---- Border Radius ---- */
    --radius-xs:   0.25rem;
    --radius-sm:   0.375rem;
    --radius-md:   0.625rem;
    --radius-lg:   0.875rem;
    --radius-xl:   1.25rem;
    --radius-2xl:  1.5rem;
    --radius-3xl:  2rem;
    --radius-full: 9999px;

    /* ---- Transitions ---- */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);

    --duration-fast: 150ms;
    --duration-normal: 250ms;
    --duration-slow: 400ms;
    --duration-slower: 600ms;

    /* ---- Z-Index Scale ---- */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-overlay: 300;
    --z-modal: 400;
    --z-toast: 500;
    --z-max: 999;

    /* ---- Layout ---- */
    --container-max: 1400px;
    --container-padding: clamp(1rem, 3vw, 2rem);
    --header-height: 72px;
    --top-panel-height: 40px;

    /* ---- Panel Colors ---- */
    --top-panel-bg: var(--primary-600);
    --top-panel-text: #ffffff;
    --top-panel-link: rgba(255, 255, 255, 0.9);
    --top-panel-link-hover: #ffffff;
    --search-btn: var(--neutral-800);
    --search-btn-hover: var(--primary-500);
    --action-bg: var(--neutral-800);
    --bookmark-active: var(--neutral-800);
    --categories-active-phone: var(--neutral-800);
    --categories-trigger: var(--neutral-800);
}


/* ==========================================================================
   2. CSS RESET & BASE STYLES
   ========================================================================== */

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

*:focus {
    outline: 2px solid var(--primary-400);
    outline-offset: 2px;
}

*:focus:not(:focus-visible) {
    outline: none;
}

*:focus-visible {
    outline: 2px solid var(--primary-400);
    outline-offset: 2px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    padding: 0;
    margin: 0;
    font-family: var(--font-sans);
    color: var(--neutral-700);
    font-weight: 400;
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    background-color: var(--neutral-50);
    overflow-x: hidden;
}

input, button, select, textarea {
    font-family: var(--font-sans);
    font-size: inherit;
    line-height: inherit;
}

table {
    border-spacing: 0;
}

table td, table th {
    padding: 0;
}

a {
    transition: color var(--duration-fast) var(--ease-in-out),
                opacity var(--duration-fast) var(--ease-in-out);
    color: var(--neutral-700);
    text-decoration: none;
}

a:hover {
    color: var(--primary-500);
}

h1 {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    line-height: var(--leading-tight);
    font-weight: 400;
    margin: var(--space-2) 0 var(--space-5) 0;
    text-align: left;
    color: var(--neutral-800);
    letter-spacing: var(--tracking-tight);
}

h2 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    padding: 0;
    margin: var(--space-3) 0;
    text-align: left;
    font-weight: 400;
    color: var(--neutral-800);
    letter-spacing: var(--tracking-tight);
}

label {
    cursor: pointer;
}

.clear {
    clear: both !important;
    float: none !important;
}

p {
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--neutral-600);
}

#static p {
    font-size: var(--text-sm);
}

img {
    border: 0;
    max-width: 100%;
    height: auto;
}

.alert, .error_message {
    color: var(--accent-500);
    background: var(--accent-50);
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-lg);
    font-size: var(--text-sm);
    font-weight: 500;
}


/* ==========================================================================
   3. BUTTONS
   ========================================================================== */

.submit {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    margin-bottom: var(--space-5);
    text-transform: uppercase;
    padding: var(--space-3) var(--space-6);
    transition: all var(--duration-normal) var(--ease-out);
    line-height: 1;
    cursor: pointer;
    border: none;
    color: #ffffff;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary-400), var(--primary-500));
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: var(--tracking-wide);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.15);
}

.submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-out);
}

.submit:hover {
    text-decoration: none;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.submit:hover::before {
    opacity: 1;
}

.submit:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.btn_primary {
    font-size: var(--text-sm);
    margin: 0;
    padding: var(--space-4) var(--space-6);
    width: 100%;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary-400), var(--primary-500));
    transition: all var(--duration-normal) var(--ease-out);
    color: #ffffff;
    border: none;
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.15);
    position: relative;
    overflow: hidden;
}

.btn_primary:hover {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn_primary:active {
    transform: translateY(0);
}


/* ==========================================================================
   4. LAYOUT
   ========================================================================== */

.sticky {
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
}

.display-xs {
    display: none;
}

.container-flex {
    display: flex;
    flex-flow: row wrap;
    max-width: var(--container-max);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}


/* ==========================================================================
   5. TOP PANEL — Promotional Banner
   ========================================================================== */

#top_panel {
    background: var(--top-panel-bg);
    max-height: var(--top-panel-height);
    position: relative;
    overflow: hidden;
}

#top_panel .text-layer {
    text-align: center;
    color: var(--top-panel-text);
    font-weight: 600;
    font-size: var(--text-xs);
    padding: var(--space-2) var(--space-2) var(--space-3);
    letter-spacing: var(--tracking-wide);
}

#top_panel .close-btn {
    background: url("../images/close_top_panel.svg") no-repeat center;
    background-size: 10px;
    width: 28px;
    height: 28px;
    position: absolute;
    right: var(--space-3);
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    transition: all var(--duration-slow) var(--ease-spring);
    opacity: 0.7;
    border-radius: var(--radius-full);
}

#top_panel .close-btn:hover {
    transform: translateY(-50%) rotate(90deg);
    opacity: 1;
    background-color: rgba(255,255,255,0.15);
}

#top_panel a {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    transition: all var(--duration-normal) var(--ease-out);
    border-radius: var(--radius-full);
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.6rem;
    padding: var(--space-1) var(--space-3);
    margin-left: var(--space-2);
    position: relative;
    top: -1px;
    letter-spacing: var(--tracking-wide);
    border: 1px solid rgba(255,255,255,0.25);
}

#top_panel a:hover, #top_panel a:focus, #top_panel a:visited {
    background: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    color: #ffffff;
}

#top_panel p {
    margin: 0;
    padding: 0;
    font-size: var(--text-xs);
    white-space: nowrap;
    overflow: auto;
}


/* ==========================================================================
   6. HEADER — Glassmorphism Sticky Header
   ========================================================================== */

#header {
    width: 100%;
    position: fixed;
    transition: all var(--duration-slow) var(--ease-out);
    z-index: var(--z-sticky);
    top: 0;
    height: var(--header-height);
    background: var(--surface-glass-strong);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--surface-glass-border);
    box-shadow: var(--shadow-xs);
}

.template_title_page #header {
    border-bottom: none;
    background: var(--surface-glass);
}

.top-panel-visible #header {
    height: calc(var(--header-height) + var(--top-panel-height));
}

#header .logo {
    flex: 0 1 auto;
    cursor: pointer;
    display: flex;
    align-items: center;
    width: 180px;
    max-width: 180px;
    max-height: 48px;
    transition: opacity var(--duration-normal) var(--ease-out);
}

#header .logo:hover {
    opacity: 0.8;
}

#header .logo img {
    max-width: 180px;
    width: 100%;
}

#header .logo p {
    margin: 0;
}

#header .container-flex {
    flex-flow: row nowrap;
}

.header-flex-wrapper {
    justify-content: center;
    align-items: center;
    padding: var(--space-4) var(--container-padding);
}

.template_order #header .logo, .template_cart #header .logo {
    margin-top: 2px;
}


/* ==========================================================================
   7. CUSTOMER SERVICE / CONTACTS DROPDOWN
   ========================================================================== */

.customer_service_number {
    display: flex;
    align-items: center;
}

.after_arrow {
    background: url("../images/arrow_down.svg") no-repeat center;
    background-size: 8px;
    width: 16px;
    height: 16px;
    display: inline-block;
    position: absolute;
    top: 10px;
    right: -18px;
    transition: transform var(--duration-normal) var(--ease-out);
}

.customer_service_number > div:nth-child(1) {
    background: url("../images/headset.svg") no-repeat center;
    background-size: contain;
    width: 32px;
    height: 32px;
    opacity: 0.7;
    transition: opacity var(--duration-fast);
}

.customer_service_number:hover > div:nth-child(1) {
    opacity: 1;
}

.customer_service_number div:nth-child(2) {
    font-size: var(--text-sm);
    flex: 3;
    display: block;
    margin-left: var(--space-3);
    position: relative;
}

.customer_service_number div:nth-child(2) span {
    display: block;
    margin-bottom: -1px;
    font-size: var(--text-xs);
    color: var(--neutral-400);
}

.customer_service_number a {
    font-size: var(--text-base);
    color: var(--neutral-700);
    font-weight: 700;
    white-space: nowrap;
}

.customer_service_number a:hover {
    color: var(--primary-500);
    text-decoration: none;
}

.customer_service_number .mail_wrap a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.customer_service_number .mail_wrap a:hover {
    text-decoration: none;
}

#contacts_dropdown_wrap {
    flex: 0 1 auto;
    margin: 0 var(--space-8) 0 var(--space-3);
}

#other_contacts_dropdown.dropdown_menu {
    display: none;
    position: absolute;
    left: -53px;
    padding: var(--space-6);
    margin: var(--space-3) 0 0 0;
    text-align: left;
    background: var(--surface-glass-strong);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--neutral-100);
    animation: fadeInDown var(--duration-normal) var(--ease-out);
}

#other_contacts_dropdown.dropdown_menu.active {
    display: block;
}


/* ==========================================================================
   8. CART DROPDOWN
   ========================================================================== */

#cart_dropdown.dropdown_menu {
    display: none;
    position: absolute;
    right: 0;
    min-width: 420px;
    padding: var(--space-6);
    margin: var(--space-3) 0 0 0;
    text-align: left;
    background: var(--surface-glass-strong);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: var(--shadow-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--neutral-100);
    z-index: var(--z-dropdown);
    animation: fadeInDown var(--duration-normal) var(--ease-out);
}

#cart_dropdown.dropdown_menu.active {
    display: block;
}

#cart_dropdown.dropdown_menu button {
    color: #ffffff;
    transition: all var(--duration-normal) var(--ease-out);
    text-transform: uppercase;
    padding: var(--space-3) var(--space-5);
    font-size: var(--text-xs);
    font-weight: 700;
    text-align: center;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: linear-gradient(135deg, var(--primary-400), var(--primary-500));
    letter-spacing: var(--tracking-wide);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

#cart_dropdown.dropdown_menu button:hover {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    transform: translateY(-1px);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

#cart_dropdown.dropdown_menu button.quant_up,
#cart_dropdown.dropdown_menu button.quant_down {
    background: var(--neutral-100);
    border: none;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-md);
    transition: all var(--duration-fast);
    color: var(--neutral-700);
    width: 30px;
    height: 30px;
    box-shadow: none;
}

#cart_dropdown.dropdown_menu button.quant_up:hover,
#cart_dropdown.dropdown_menu button.quant_down:hover {
    background: var(--neutral-200);
    transform: none;
    box-shadow: none;
}

#cart_dropdown.dropdown_menu button.quant_down.disabled {
    cursor: not-allowed !important;
    opacity: 0.4;
}

#cart_dropdown.dropdown_menu button.quant_down.disabled:hover {
    background: var(--neutral-100);
}

#cart_dropdown.dropdown_menu .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--neutral-100);
    padding: var(--space-3) 0;
    margin-bottom: var(--space-3);
    gap: var(--space-3);
}

#cart_dropdown.dropdown_menu .delete {
    background: url("../images/cart_dropdown_remove.svg") center no-repeat;
    background-size: 16px;
    width: 24px;
    height: 24px;
    opacity: 0.4;
    transition: opacity var(--duration-fast);
    border-radius: var(--radius-sm);
}

#cart_dropdown.dropdown_menu .delete:hover {
    opacity: 1;
}

#cart_dropdown.dropdown_menu .delete a {
    display: block;
    width: 100%;
    height: 100%;
}

#cart_dropdown.dropdown_menu .image {
    flex: 0 0 52px;
    text-align: center;
}

#cart_dropdown.dropdown_menu .image img {
    max-width: 48px;
    max-height: 48px;
    border-radius: var(--radius-md);
}

#cart_dropdown.dropdown_menu .name {
    flex: 4;
}

#cart_dropdown.dropdown_menu .name a {
    font-weight: 700;
    color: var(--neutral-700);
    font-size: var(--text-sm);
    display: block;
    line-height: var(--leading-tight);
    transition: color var(--duration-fast);
}

#cart_dropdown.dropdown_menu .name a:hover {
    color: var(--primary-500);
}

#cart_dropdown.dropdown_menu .quantity {
    flex: 2;
    font-size: var(--text-sm);
}

#cart_dropdown.dropdown_menu .delete-wrap {
    margin-right: var(--space-3);
}

#cart_dropdown.dropdown_menu .variant_name {
    font-size: var(--text-xs);
    display: inline;
    color: var(--neutral-400);
}

#cart_dropdown.dropdown_menu .price_total {
    display: none;
}

#cart_dropdown.dropdown_menu .prices {
    display: inline;
}

#cart_dropdown.dropdown_menu .price {
    font-weight: 700;
    font-size: var(--text-xs);
    display: inline;
    color: var(--neutral-700);
}

#cart_dropdown.dropdown_menu .availability {
    display: none;
}

#cart_dropdown.dropdown_menu input {
    height: 30px;
    width: 32px;
    text-align: center;
    border-radius: var(--radius-md);
    margin: 0;
    outline: none;
    vertical-align: top;
    border: 1px solid var(--neutral-200);
    color: var(--neutral-700);
    background: var(--neutral-0);
    font-weight: 700;
    font-size: var(--text-sm);
}

/* Zero fee / free shipping */
#cart_dropdown.dropdown_menu .zero_fee_price {
    background: var(--beige);
    padding: var(--space-4);
    font-size: var(--text-sm);
    text-align: left;
    margin: var(--space-2) 0 var(--space-4) 0;
    display: flex;
    flex-flow: column;
    border-radius: var(--radius-lg);
}

#cart_dropdown.dropdown_menu .zero_fee_price.success {
    background: var(--primary-50);
    color: var(--primary-600);
    border-radius: var(--radius-lg);
    padding: var(--space-3) var(--space-4);
    justify-content: center;
    border: 1px solid var(--primary-200);
}

/* Progressbar */
.progressbar-shipping-bg {
    background: var(--neutral-200);
    height: 6px;
    border-radius: var(--radius-full);
    margin: var(--space-3) 0 var(--space-1) 0;
    order: 2;
    overflow: hidden;
}

.progressbar-shipping {
    background: linear-gradient(90deg, var(--primary-400), var(--primary-300));
    height: 6px;
    border-radius: var(--radius-full);
    transition: width var(--duration-slow) var(--ease-out);
}

.progressbar-shipping-text {
    display: flex;
    font-size: var(--text-xs);
}

#cart .progressbar-shipping-text {
    justify-content: center;
}

.progressbar-shipping-text b {
    background: var(--neutral-100);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-sm);
    color: var(--neutral-600);
    font-weight: 600;
}

.progressbar-shipping-text b:last-child {
    padding: 0;
    background: transparent;
    color: var(--primary-500);
}

.free_shipping_ico {
    background: url(../images/free_shipping.svg) no-repeat center;
    background-size: 24px;
    width: 28px;
    height: 24px;
    margin-right: var(--space-3);
}

.free_shipping_ico_active {
    background: url(../images/free_shipping_active.svg) no-repeat center;
    background-size: 22px;
    width: 28px;
    height: 14px;
    margin-right: var(--space-2);
}

.zero_fee_price.success {
    flex-flow: row !important;
    font-weight: 600;
}

#cart_dropdown.dropdown_menu .total_price {
    font-weight: 800;
    flex: 1;
    font-size: var(--text-lg);
}

#cart_dropdown.dropdown_menu .total_price::first-letter {
    text-transform: uppercase;
}

.cart_box_dropdown_btns {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.empty_cart {
    margin: 0 auto;
    text-align: center;
    color: var(--neutral-400);
}

.cart_box_content_wrap {
    max-height: 362px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--neutral-200) transparent;
}

.cart_box_content_wrap::-webkit-scrollbar {
    width: 4px;
}

.cart_box_content_wrap::-webkit-scrollbar-track {
    background: transparent;
}

.cart_box_content_wrap::-webkit-scrollbar-thumb {
    background: var(--neutral-200);
    border-radius: var(--radius-full);
}

/* Store & contacts in dropdown */
.store_location, .other_contacts_wrap {
    display: flex !important;
    margin-left: 0 !important;
    align-items: flex-start;
}

.loc_wrap {
    display: inline-block;
    margin-left: 33px;
}

.store_location::before {
    content: " ";
    display: inline-block;
    background: url("../images/location.svg") -3px 12px no-repeat;
    background-size: 100%;
    width: 22px;
    height: 35px;
    position: absolute;
}

.mail_wrap {
    display: inline-block;
    margin-left: 33px;
}

.other_contacts_wrap::before {
    content: " ";
    display: inline-block;
    background: url("../images/mail_header.svg") left 1px no-repeat;
    background-size: 100%;
    position: absolute;
    width: 17px;
    height: 32px;
}

.store_location p {
    font-size: var(--text-sm);
    margin: 0;
    font-weight: 400;
}

#other_contacts_dropdown div.head {
    font-size: var(--text-sm);
    font-weight: 700;
}

.store_location div.head {
    margin-top: var(--space-3) !important;
}


/* ==========================================================================
   9. SETTINGS / LANGUAGE / CURRENCY
   ========================================================================== */

#settings_wrap {
    margin: 0 var(--space-3);
    height: 22px;
}

#settings_wrap .modal-content {
    max-height: 333px;
    top: 32%;
}

.settings_trigger .ico {
    background: url("../images/settings.svg") no-repeat center;
    background-size: contain;
    width: 22px;
    height: 22px;
    opacity: 0.6;
    transition: opacity var(--duration-fast);
}

.settings_trigger:hover .ico {
    opacity: 1;
}

.settings_trigger #language_switcher {
    position: relative;
    top: -26px;
    left: 20px;
    background-color: transparent;
}

.settings_trigger #language_switcher .arrow {
    display: none;
}

.settings_trigger #language_switcher img {
    height: 11px;
    max-width: 11px;
}

.settings_trigger #language_switcher ul {
    display: none !important;
}

#language_switcher ul li.active a {
    cursor: no-drop;
}

/* Wishlist */
#wishlist_wrap {
    margin: 0 var(--space-3);
}

.wishlist_trigger .ico {
    background: url("../images/wishlist.svg") no-repeat center;
    background-size: contain;
    width: 22px;
    height: 21px;
    opacity: 0.6;
    transition: all var(--duration-normal) var(--ease-out);
}

.wishlist_trigger:hover .ico {
    opacity: 1;
    transform: scale(1.1);
}

.wishlist_trigger .items_count {
    color: var(--accent-500);
    font-size: 0.65rem;
    font-weight: 800;
    position: absolute;
    top: -6px;
    left: 24px;
    width: 16px;
    height: 16px;
    background: var(--accent-50);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

#wishlist_order_by {
    border-radius: var(--radius-sm);
    border-color: var(--neutral-200);
    cursor: pointer;
}

/* Language Switcher */
#language_switcher {
    background-color: transparent;
    float: left;
    height: 27px;
    position: relative;
    font-weight: 400;
    margin: 0 0 var(--space-5) 0;
    font-size: var(--text-sm);
}

#language_switcher img {
    height: 18px;
    max-width: 18px;
    border-radius: var(--radius-full);
}

#language_switcher .selected {
    padding: 0 var(--space-1);
    line-height: 0;
    height: 27px;
    display: block;
    float: left;
}

#language_switcher .selected span {
    display: block;
    line-height: 15px;
}

#language_switcher .arrow {
    background: url("../images/arrow_down.svg") center center no-repeat;
    background-size: 80%;
    height: 7px;
    width: 11px;
    float: right;
    position: relative;
    top: 7px;
    transition: transform var(--duration-normal);
}

#language_switcher ul {
    list-style: none;
    margin: 0;
    padding: var(--space-2);
    min-width: 100%;
    position: absolute;
    top: 40px;
    left: 0;
    display: none;
    z-index: var(--z-dropdown);
    background: var(--neutral-0);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--neutral-100);
}

#language_switcher:hover ul {
    display: block;
    animation: fadeInDown var(--duration-fast) var(--ease-out);
}

#language_switcher ul li {
    margin: 0;
    padding: 0;
}

#language_switcher ul li a {
    padding: var(--space-2);
    width: 100%;
    display: block;
    line-height: 33px;
    text-decoration: none;
    text-align: center;
    border-radius: var(--radius-md);
    transition: background var(--duration-fast);
}

#language_switcher ul li a:hover {
    background: var(--neutral-50);
}

#language_switcher ul li a img {
    margin: 2px 0 3px 0;
}

/* Currency Switcher */
#currency_switcher {
    float: left;
    height: 27px;
    position: relative;
    font-weight: 400;
    margin: var(--space-2) var(--space-2) var(--space-5) var(--space-2);
    font-size: var(--text-sm);
}

#currency_switcher .selected {
    padding: var(--space-1) var(--space-1);
    line-height: 15px;
    height: 27px;
    display: block;
    float: left;
    font-weight: 500;
}

#currency_switcher .arrow {
    background: url("../images/arrow_down.svg") center center no-repeat;
    background-size: 80%;
    height: 7px;
    width: 11px;
    float: right;
    position: relative;
    top: 7px;
}

#currency_switcher ul {
    list-style: none;
    margin: 0;
    padding: var(--space-2);
    min-width: 100%;
    position: absolute;
    top: 40px;
    left: 0;
    display: none;
    z-index: var(--z-dropdown);
    background: var(--neutral-0);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--neutral-100);
}

#currency_switcher:hover ul {
    display: block;
    animation: fadeInDown var(--duration-fast) var(--ease-out);
}

#currency_switcher ul li {
    margin: 0;
    padding: 0;
}

#currency_switcher ul li a {
    padding: var(--space-1) var(--space-2);
    width: 100%;
    box-sizing: border-box;
    display: block;
    line-height: 29px;
    text-decoration: none;
    text-align: center;
    font-size: var(--text-xs);
    border-radius: var(--radius-md);
    transition: background var(--duration-fast);
}

#currency_switcher ul li a:hover {
    background: var(--neutral-50);
    text-decoration: none;
}

#currency_switcher ul li.active a {
    cursor: no-drop;
}


/* ==========================================================================
   10. USER PANEL
   ========================================================================== */

#user_panel {
    margin: 1px var(--space-7) 0 var(--space-3);
}

#user_panel::first-letter {
    text-transform: uppercase;
}

#user_panel a {
    font-size: var(--text-sm);
    color: var(--neutral-600);
    text-decoration: none;
    white-space: nowrap;
    font-weight: 500;
    transition: color var(--duration-fast);
}

#user_panel a:hover {
    color: var(--primary-500);
    text-decoration: none;
}

a.logout {
    display: none;
}

a.logout::before {
    content: " ";
    background: url("../images/logout.svg") center center no-repeat;
    background-size: 73%;
    display: inline-block;
    width: 30px;
    height: 30px;
    position: relative;
    top: -5px;
    margin-left: 1px;
}

a.my_account::before {
    content: " ";
    background: url("../images/user_acc_phone.svg") center center no-repeat;
    background-size: 100%;
    display: inline-block;
    width: 31px;
    height: 29px;
    position: relative;
    top: -5px;
    display: none;
}

.logout_redirect {
    display: flex;
    margin-top: var(--space-6);
}

.logout_redirect #counter {
    margin: 0 3px;
    font-weight: 700;
}

.logout_redirect a {
    text-decoration: underline;
    text-underline-offset: 3px;
    margin-left: var(--space-1);
    font-weight: 700;
}

.logout_redirect a:hover {
    text-decoration: none;
    color: var(--neutral-700);
}

.no-records, .no-orders {
    background: var(--accent-50);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-lg);
    color: var(--accent-500);
    font-size: var(--text-sm);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--accent-100);
}


/* ==========================================================================
   11. CART BOX — Header Cart Icon
   ========================================================================== */

#cart_box .cart-box-wrapper {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26 26'%3E%3Cpath fill='%23ffffff' stroke='%23ffffff' stroke-width='0.25' d='M22.7 7.1c0-0.4-0.4-0.7-0.7-0.7h-4V5.3C18 2.9 15.7 1 13 1S8 2.9 8 5.3v1.2H4c-0.4 0-0.7 0.3-0.7 0.7l-1 17c0 0.2 0.1 0.4 0.2 0.6C2.6 24.9 2.8 25 3 25h20c0.2 0 0.4-0.1 0.5-0.2c0.1-0.2 0.2-0.4 0.2-0.6L22.7 7.1z M9.5 5.3c0-1.5 1.6-2.8 3.5-2.8s3.5 1.2 3.5 2.8v1.2h-7V5.3z M8 7.9v1.6c0 0.4 0.3 0.8 0.8 0.8S9.5 10 9.5 9.6V7.9h6.9v1.6c0 0.4 0.3 0.8 0.8 0.8S18 10 18 9.6V7.9h3.3l0.6 10.4H4.1L4.8 7.9H8z M3.8 23.5l0.3-4.2H22l0.3 4.2H3.8z'/%3E%3C/svg%3E") 16px center no-repeat;
    background-color: var(--primary-400);
    background-size: 22px;
    height: 48px;
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
    border-radius: var(--radius-xl);
    padding: var(--space-3) var(--space-5) var(--space-3) var(--space-10);
    transition: all var(--duration-normal) var(--ease-out);
    box-shadow: var(--shadow-md);
}

#cart_box .cart-box-wrapper:hover {
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transform: translateY(-1px);
    background-color: var(--primary-500);
}

#cart_box .body {
    border: 2px solid var(--neutral-0);
    width: 18px;
    height: 18px;
    position: absolute;
    top: -4px;
    right: -4px;
    z-index: 20;
    line-height: 16px;
    border-radius: var(--radius-full);
    font-size: 0.6rem;
    color: var(--primary-600);
    background-color: #ffffff;
    text-align: center;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

#cart_box span {
    font-size: var(--text-sm);
    font-weight: 700;
    display: block;
    text-align: center;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
}

#cart_box span:hover, #cart_box span:active, #cart_box span:visited {
    color: #ffffff;
    text-decoration: none;
}

#cart_box .cart-box-wrapper.empty {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26 26'%3E%3Cpath fill='%23222222' stroke='%23222222' stroke-width='0.25' d='M22.7 7.1c0-0.4-0.4-0.7-0.7-0.7h-4V5.3C18 2.9 15.7 1 13 1S8 2.9 8 5.3v1.2H4c-0.4 0-0.7 0.3-0.7 0.7l-1 17c0 0.2 0.1 0.4 0.2 0.6C2.6 24.9 2.8 25 3 25h20c0.2 0 0.4-0.1 0.5-0.2c0.1-0.2 0.2-0.4 0.2-0.6L22.7 7.1z M9.5 5.3c0-1.5 1.6-2.8 3.5-2.8s3.5 1.2 3.5 2.8v1.2h-7V5.3z M8 7.9v1.6c0 0.4 0.3 0.8 0.8 0.8S9.5 10 9.5 9.6V7.9h6.9v1.6c0 0.4 0.3 0.8 0.8 0.8S18 10 18 9.6V7.9h3.3l0.6 10.4H4.1L4.8 7.9H8z M3.8 23.5l0.3-4.2H22l0.3 4.2H3.8z'/%3E%3C/svg%3E") 16px center no-repeat;
    background-color: var(--neutral-0);
    background-size: 22px;
    height: 48px;
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-xl);
    padding: var(--space-3) var(--space-5) var(--space-3) var(--space-10);
    transition: all var(--duration-normal) var(--ease-out);
}

#cart_box .cart-box-wrapper.empty:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-1px);
}

#cart_box .cart-box-wrapper.empty .body {
    border: 2px solid var(--neutral-0);
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary-400), var(--primary-500));
}

#cart_box .cart-box-wrapper.empty span {
    color: var(--neutral-700);
}

a.dropdown-toggle:hover, a.dropdown-toggle:active, a.dropdown-toggle:visited {
    color: var(--neutral-700);
    text-decoration: none;
}

.button-dropdown.cart_wrap {
    position: relative;
}

.button-dropdown.cart_wrap .mask {
    background-color: rgba(0,0,0,0);
}


/* ==========================================================================
   12. SEARCH BOX
   ========================================================================== */

#search_box {
    border: 2px solid var(--neutral-200);
    border-radius: var(--radius-full);
    flex: 1 1 auto;
    height: 44px;
    position: relative;
    margin: 0 var(--space-7);
    background: var(--neutral-0);
    transition: all var(--duration-normal) var(--ease-out);
}

#search_box:focus-within {
    border-color: var(--primary-300);
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
}

#search_box select, #search_box_phone select {
    border: 0;
    border-left: 1px solid var(--neutral-100);
    height: 40px;
    padding-left: var(--space-3);
    font-size: var(--text-sm);
}

#search_box .submit, #search_box_phone .submit {
    width: 44px;
    height: 44px;
    padding: 0;
    margin: -2px -2px 0 0;
    position: absolute;
    right: 0;
    top: 0;
    border-radius: var(--radius-full);
    box-shadow: none;
}

#search_box #search_submit, #search_box_phone #search_submit_phone {
    background: url('../images/search.svg') center no-repeat var(--neutral-800);
    background-size: 20px;
    transition: all var(--duration-normal) var(--ease-out);
    border: none;
    height: 44px;
    width: 48px;
    padding: 0;
    margin: 0;
    cursor: pointer;
    border-radius: var(--radius-full);
}

#search_box #search_submit:hover, #search_box_phone #search_submit_phone:hover {
    background: url('../images/search.svg') center no-repeat var(--primary-500);
    background-size: 20px;
}

#search_result h2::first-letter {
    text-transform: uppercase;
}

#search_result #product_list {
    margin: 0 var(--space-4);
}

.template_search #main_body {
    margin-top: var(--space-5);
}


/* ==========================================================================
   13. MAIN MENU
   ========================================================================== */

.main-menu-area {
    position: relative;
}

.template_title_page #main_menu {
    margin-bottom: var(--space-7);
    margin-top: 0;
}

.template_title_page #main_menu a {
    padding: var(--space-3) var(--space-7) var(--space-3) 0;
}

#main_menu {
    margin-bottom: var(--space-6);
    margin-top: calc(-1 * var(--space-3));
}

.template_title_page #main_menu .body {
    padding: var(--space-5) var(--space-8);
}

#main_menu .body {
    padding: var(--space-1) var(--space-5);
    background: var(--neutral-0);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--neutral-100);
}

#main_menu a {
    float: left;
    text-decoration: none;
    font-size: var(--text-sm);
    font-weight: 600;
    line-height: 20px;
    flex: 1 100%;
    display: flex;
    align-items: center;
    padding: var(--space-3) var(--space-7) var(--space-3) 0;
    background: transparent;
    width: 100%;
    transition: all var(--duration-normal) var(--ease-out);
    color: var(--neutral-600);
    border-bottom: 1px solid var(--neutral-100);
}

#main_menu a:hover {
    color: var(--primary-500);
    text-decoration: none;
    padding-left: var(--space-2);
}

#main_menu li {
    list-style: none;
    float: left;
    padding: 0;
    margin: 0;
    position: relative;
    width: 100%;
}

#main_menu li:last-child a {
    border-bottom: 0;
}

#main_menu li li a {
    font-size: var(--text-xs);
    font-weight: 400;
    padding: var(--space-1) 0 var(--space-2) 0;
    color: var(--neutral-500);
}

#main_menu li li a:hover {
    color: var(--primary-500);
    padding-left: var(--space-2);
}

#main_menu li li {
    margin: 0;
}

#main_menu ul {
    padding: 0;
    margin: 0;
}

#main_menu li.active li {
    padding-bottom: 2px;
}

#main_menu li.preview a:hover, #main_menu li.active a:hover {
    background: transparent;
}

#main_menu .sp_plusminus {
    background: url(../images/arrow_down.svg) no-repeat center center;
    background-size: 8px;
    border: 1px solid var(--neutral-200);
    width: 24px;
    height: 24px;
    border-radius: var(--radius-full);
    position: absolute;
    right: 0;
    top: 9px;
    transition: all var(--duration-normal) var(--ease-out);
}

#main_menu .sp_plusminus.minus {
    background: url(../images/arrow_to_top.svg) no-repeat center center;
    background-size: 8px;
}

#main_menu .sp_plusminus:hover {
    border-color: var(--neutral-400);
    background-color: var(--neutral-50);
}

#main_menu li.active li.active a {
    font-weight: 700;
    color: var(--primary-500);
}


/* ==========================================================================
   14. ESHOP BODY LAYOUT
   ========================================================================== */

.top-panel-visible #eshop {
    margin-top: calc(var(--header-height) + var(--top-panel-height) + var(--space-4));
}

#eshop {
    margin-top: calc(var(--header-height) + var(--space-4));
}

.template_title_page #eshop.is-slideshow {
    margin-top: 40px !important;
}

.template_title_page #eshop {
    margin-top: calc(var(--header-height) + var(--space-3)) !important;
}

#eshop .eshop_body {
    padding-bottom: var(--space-10);
}

#eshop .eshop_body.container-flex {
    flex-flow: row nowrap;
}

#main_body {
    flex: 4;
    margin: var(--space-8) 0 0 var(--space-8);
    overflow: hidden;
}

.template_title_page #main_body {
    margin-top: 0;
    flex: 3;
}


/* ==========================================================================
   15. LEFT COLUMN
   ========================================================================== */

#left_column {
    margin-top: 0;
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 280px;
}

#left_column .header {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    line-height: 1;
    text-transform: none;
    font-weight: 400;
    padding: var(--space-4) var(--space-3);
    position: relative;
    color: var(--neutral-800);
}

#left_column .box {
    margin-bottom: var(--space-5);
    display: none;
}

#left_column .box .body {
    padding: var(--space-3);
}

.template_product_detail #left_column {
    display: none;
}


/* ==========================================================================
   16. CATEGORIES MENU
   ========================================================================== */

#categories_menu {
    margin-bottom: var(--space-7);
    box-shadow: none;
    padding: 0;
}

.template_title_page #categories_menu {
    margin-bottom: var(--space-7);
    background: var(--neutral-0);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--neutral-100);
}

#categories_menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

#categories_menu ul li a {
    color: var(--neutral-700);
    padding: var(--space-3) var(--space-10) var(--space-3) var(--space-4);
    background: var(--neutral-0);
    border-radius: var(--radius-md);
    border: 1px solid var(--neutral-150);
    display: flex;
    font-size: var(--text-sm);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    align-items: center;
    transition: all var(--duration-fast) var(--ease-out);
}

#categories_menu ul li a:hover {
    border-color: var(--primary-300);
    background: var(--primary-50);
    color: var(--primary-600);
}

#categories_menu ul li {
    margin-bottom: var(--space-1);
}

#categories_menu ul li li a {
    border: none;
    padding: var(--space-1) var(--space-4);
    font-size: var(--text-xs);
    background: transparent;
    font-weight: 400;
    display: flex;
    color: var(--neutral-500);
}

#categories_menu ul li li a:hover {
    border: none;
    color: var(--primary-500);
    background: transparent;
}

#categories_menu ul li a .category_name_wrap {
    position: relative;
    right: auto;
    order: 1;
    flex: 1;
    top: auto;
    z-index: 0;
}

#categories_menu ul li li a:before {
    content: " ";
    background: url(../images/li_arrow.svg) no-repeat;
    background-size: 100%;
    width: 5px;
    height: 10px;
    margin-right: 8px;
    display: inline-block;
    opacity: 0.4;
}

.plusminus {
    width: 13px;
    height: 8px;
    line-height: 10px;
    text-align: center;
    display: block;
    float: right;
    padding: var(--space-3) var(--space-1);
    margin-left: var(--space-3);
    cursor: pointer;
}

.plusminus.plus {
    background: url('../images/arrow_down.svg') no-repeat center center var(--neutral-100);
    background-size: 8px;
    width: 24px;
    height: 10px;
    border-radius: var(--radius-full);
    transition: all var(--duration-fast);
}

.plusminus.minus {
    background: url('../images/arrow_to_top.svg') no-repeat center center var(--neutral-100);
    background-size: 8px;
    width: 24px;
    height: 10px;
    border-radius: var(--radius-full);
    transition: all var(--duration-fast);
}

.plusminus.plus:hover,
.plusminus.minus:hover {
    background-color: var(--neutral-200);
}

#categories_menu .header {
    display: none;
}

#header #categories_menu {
    display: none;
}

#categories_mobile_menu {
    display: none;
}

#categories_menu .category_icon {
    max-width: 18px;
    max-height: 18px;
    margin-right: var(--space-3);
    margin-top: 2px;
}


/* ==========================================================================
   17. PRODUCT CARDS — Grid Layout
   ========================================================================== */

.header {
    text-align: center;
    font-weight: 400;
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    margin-bottom: var(--space-5);
    width: 100%;
    color: var(--neutral-800);
}

.header::first-letter {
    text-transform: uppercase;
}

#product_list {
    min-height: 150px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: var(--space-4);
}

.template_category_detail #product_list {
    min-height: 150px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: var(--space-4);
    margin: 0;
}

#product_list .product-card {
    flex: none;
    padding: var(--space-4);
    border: 1px solid var(--neutral-100);
    background: var(--neutral-0);
    border-radius: var(--radius-xl);
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
    overflow: hidden;
}

#product_list .product-card:hover {
    border-color: var(--neutral-200);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

#product_list .product-card a:hover,
#product_list .product-card a:focus,
#product_list .product-card a:visited {
    text-decoration: none;
}

/* Product card wishlist icon */
#product_list .product-card .wishlist {
    background: url("../images/wishlist.svg") no-repeat center;
    background-size: contain;
    width: 20px;
    height: 20px;
    transition: all var(--duration-normal) var(--ease-spring);
    cursor: pointer;
    margin: 0 var(--space-1);
    opacity: 0.5;
}

#product_list .product-card .wishlist:hover,
#product_list .product-card .wishlist.active {
    background: url("../images/wishlist_hover.svg") no-repeat center;
    background-size: contain;
    opacity: 1;
    transform: scale(1.2);
}

/* Product card thumbnail */
.homepage_products_body .product .thumbnail,
#product_list .product .thumbnail {
    padding: 0;
    height: 220px;
    margin: 0;
    position: relative;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--neutral-50);
}

.homepage_products_body .product .thumbnail a,
#product_list .product .thumbnail a {
    margin: 0 auto;
}

.homepage_products_body .product .thumbnail img,
#product_list .product .thumbnail img {
    max-width: 100%;
    max-height: 220px;
    transition: transform var(--duration-slow) var(--ease-out);
    object-fit: contain;
}

#product_list .product-card:hover .thumbnail img {
    transform: scale(1.05);
}

/* Product info */
.homepage_products_body .product .body,
#product_list .product .body {
    text-align: center;
    margin-bottom: var(--space-2);
    position: relative;
}

.homepage_products_body .product .info,
#product_list .product .info {
    padding: var(--space-3) 0 var(--space-4);
}

/* Product name */
.product-card .name {
    padding: 0;
    margin: var(--space-2) 0 var(--space-1) 0;
    font-size: var(--text-sm);
    text-align: left;
    font-weight: 600;
    color: var(--neutral-700);
    line-height: var(--leading-tight);
}

.homepage_products_body .product .name a,
#product_list .product .name a {
    font-size: var(--text-sm);
    display: block;
    text-decoration: none;
    font-weight: 600;
    color: var(--neutral-700);
    text-align: left;
    transition: color var(--duration-fast);
}

.homepage_products_body .product .name a:hover,
#product_list .product .name a:hover {
    color: var(--primary-500);
}

/* Product price */
.homepage_products_body .product .price,
#product_list .product .price {
    color: var(--neutral-800);
    font-size: var(--text-lg);
    font-weight: 800;
    text-align: left;
    line-height: 1.2;
    padding-top: var(--space-2);
    padding-bottom: var(--space-2);
    flex: 2;
    order: 1;
    margin-right: var(--space-2);
    white-space: nowrap;
}

.homepage_products_body .product .action-price,
#product_list .product .action-price {
    flex: 1;
    order: 2;
    text-align: left;
}

.action-price {
    font-size: var(--text-xs);
    color: var(--accent-400);
    text-decoration: line-through;
}

.homepage_products_body .product .price .dual,
#product_list .product .price .dual {
    font-size: 80%;
}

/* Availability */
.homepage_products_body .product .availability,
#product_list .product .availability, .variant_product_availability {
    font-size: var(--text-xs);
    text-align: left;
    flex: 1;
    order: 3;
}

/* Sale/Discount badge */
.homepage_products_body .product .action,
#product_list .product .action {
    background: var(--neutral-800);
    color: #ffffff;
    font-weight: 800;
    border-radius: var(--radius-full);
    position: absolute;
    top: var(--space-2);
    right: var(--space-2);
    font-size: var(--text-xs);
    width: 44px;
    height: 44px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    letter-spacing: -0.5px;
    box-shadow: var(--shadow-md);
}

/* Pictogram badges */
.homepage_products_body .product .thumbnail .pictogram,
#product_list .product .thumbnail .pictogram,
#product_detail .image .pictogram {
    position: absolute;
    height: 22px;
    line-height: 22px;
    padding: 0 var(--space-2);
    font-size: 0.6rem;
    left: var(--space-2);
    top: var(--space-2);
    text-transform: uppercase;
    font-weight: 800;
    border-radius: var(--radius-md);
    z-index: 1;
    background: var(--accent-500);
}

.homepage_products_body .product .thumbnail .pictogram .text,
#product_list .product .thumbnail .pictogram .text,
#product_detail .image .pictogram .text {
    position: relative;
    color: #ffffff;
}

/* Button area */
.homepage_products_body .product .button_area,
#product_list .product .button_area {
    margin: var(--space-3) 0 var(--space-4) 0;
    text-align: left;
}

/* Add to cart button */
.homepage_products_body .product .cart_add .add_to_cart,
#product_list .product .cart_add .add_to_cart,
#recommended_products .product .cart_add .add_to_cart {
    transition: all var(--duration-normal) var(--ease-out);
    background: linear-gradient(135deg, var(--primary-400), var(--primary-500));
    color: #ffffff;
    border: none;
    border-radius: var(--radius-full);
    padding: var(--space-3) var(--space-5);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    letter-spacing: var(--tracking-wide);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.homepage_products_body .product .cart_add .add_to_cart:hover,
#product_list .product .cart_add .add_to_cart:hover,
#recommended_products .product .cart_add .add_to_cart:hover {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    transform: translateY(-1px);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

/* Show variants button */
.homepage_products_body .product .show_variants,
#product_list .product .show_variants,
#recommended_products .product .show_variants {
    color: var(--primary-500);
    background: var(--neutral-0);
    border: 1px solid var(--primary-400);
    transition: all var(--duration-normal) var(--ease-out);
    text-transform: uppercase;
    padding: var(--space-3) var(--space-5);
    font-size: var(--text-xs);
    font-weight: 700;
    text-align: center;
    border-radius: var(--radius-full);
    display: inline-flex;
    letter-spacing: var(--tracking-wide);
    cursor: pointer;
}

.homepage_products_body .product .show_variants:hover,
#product_list .product .show_variants:hover,
#recommended_products .product .show_variants:hover {
    color: #ffffff;
    background: var(--primary-400);
    border-color: var(--primary-400);
}

/* Product description */
.product-card .description {
    font-size: var(--text-xs) !important;
    text-align: left;
    color: var(--neutral-400);
    margin-bottom: var(--space-1);
    line-height: var(--leading-normal);
}

.price_availability_wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

/* Product labels */
.product_labels {
    position: absolute;
    margin-left: 0;
    margin-top: var(--space-3);
    top: 0;
    left: 0;
    z-index: 1;
}

.product_label {
    position: relative;
    float: left;
    margin-bottom: var(--space-3);
    margin-left: var(--space-1);
}

.product_label .text {
    text-align: center;
    padding: 0 var(--space-2);
    height: 22px;
    line-height: 22px;
    font-size: 0.6rem;
    text-transform: uppercase;
    font-weight: 800;
    border-radius: var(--radius-md);
    z-index: 1;
    color: #ffffff;
}

.product_label .background {
    border-radius: var(--radius-md);
    background: #2e7dbf;
}

/* No products message */
#product_list #no_product {
    margin-top: var(--space-6);
    background: var(--accent-50);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-lg);
    color: var(--accent-500);
    font-size: var(--text-sm);
    border: 1px solid var(--accent-100);
    grid-column: 1 / -1;
}

/* Product card classification/stars */
.product-card #classification {
    text-align: left;
}

.product-card #classification .number {
    color: var(--neutral-600);
    font-size: var(--text-xs);
    margin-left: var(--space-2);
    position: relative;
    top: -1px;
    font-weight: 600;
}

.product-card #classification .number span {
    background: var(--beige);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-full);
}

.product-card #classification .star {
    width: 12px;
    height: 12px;
    margin-right: -2px;
    display: inline-block;
    line-height: 20px;
}

.product-card #classification .star.full {
    background-image: url("../images/star_full.svg");
}

.product-card #classification .star.blank {
    background-image: url("../images/star_blank.svg");
}

.product-card #classification .star.half {
    background-image: url("../images/star_half.svg");
}


/* ==========================================================================
   18. CATEGORY PATH (BREADCRUMBS)
   ========================================================================== */

#category_path, #static_page_path {
    margin-bottom: var(--space-2);
}

#category_path a, #static_page_path a, #blog_path a,
.template_forgotten_password .path a, .template_search .path a {
    display: inline-block;
    text-decoration: none;
    font-size: var(--text-xs);
    line-height: 1;
    color: var(--neutral-500);
    background: var(--neutral-100);
    padding: var(--space-1) var(--space-2);
    margin: 0 var(--space-1);
    border-radius: var(--radius-sm);
    transition: all var(--duration-fast);
    font-weight: 500;
}

#category_path a:hover, #static_page_path a:hover, #blog_path a:hover {
    background: var(--neutral-200);
    color: var(--neutral-700);
}

#category_path .arrow, #static_page_path .arrow, #blog_path .arrow {
    background: url("../images/li_arrow.svg") center left no-repeat;
    display: inline-block;
    height: 9px;
    width: 4px;
    margin-left: var(--space-1);
    opacity: 0.4;
}

#category_path .home, #static_page_path .home, #blog_path .home {
    background: url('../images/home.svg') top 12px center no-repeat !important;
    display: inline-block;
    position: relative;
    top: 6px;
    width: 20px;
    height: 33px;
    padding-right: 0;
    margin-left: -1px !important;
    margin-right: 0;
}

#category_path a.last, #static_page_path a.last, #blog_path a.last {
    color: var(--neutral-700);
    text-decoration: none;
    background: var(--primary-50);
    font-weight: 600;
}


/* ==========================================================================
   19. PRODUCT DETAIL
   ========================================================================== */

#product_detail {
    display: flex;
    flex-flow: column;
}

#product_detail .image.big {
    background: var(--neutral-0);
    position: relative;
    margin-bottom: var(--space-7);
    text-align: center;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

#product_detail .image {
    background: var(--neutral-0);
    position: relative;
    border-radius: var(--radius-xl);
}

#product_detail .image .action {
    background: var(--neutral-800);
    color: #ffffff;
    font-weight: 800;
    border-radius: var(--radius-full);
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    font-size: var(--text-xs);
    width: 48px;
    height: 48px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: var(--shadow-md);
}

#product_detail h1 {
    background-color: transparent;
    color: var(--neutral-800);
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    line-height: var(--leading-tight);
    text-transform: none;
    font-weight: 400;
    padding: 0;
    margin: 0;
}

/* Classification / Stars */
#product_detail #classification {
    margin: 0;
    padding: var(--space-5) 0 var(--space-4) 0;
    clear: both;
    flex: 1;
    order: 0;
}

#product_detail #classification .star {
    width: 16px;
    height: 19px;
    margin-right: 2px;
    display: block;
    float: left;
    line-height: 20px;
    cursor: pointer;
    transition: transform var(--duration-fast);
}

#product_detail #classification .star:hover {
    transform: scale(1.15);
}

#product_detail #classification .star.blank {
    background-image: url("../images/star_blank.svg");
}

#product_detail #classification .star.full {
    background-image: url("../images/star_full.svg");
}

#product_detail #classification .star.half {
    background-image: url("../images/star_half.svg");
}

#product_detail .number {
    color: var(--neutral-600);
    font-size: var(--text-sm);
    line-height: 16px;
    float: left;
    margin-left: var(--space-2);
    font-weight: 700;
    display: flex;
}

.classification_link {
    margin-left: var(--space-2);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.classification_link:hover {
    text-decoration: none;
}

/* Price */
#product_detail .price_etc .price {
    color: var(--neutral-800);
    font-size: var(--text-2xl);
    font-weight: 800;
    flex: 1;
    order: 1;
}

.product_detail_standard_price {
    font-size: var(--text-sm);
    color: var(--accent-400);
    text-decoration: line-through;
    flex: 1;
    order: 2;
}

/* Add to Cart */
#product_detail .price_etc .cart_add {
    margin-top: var(--space-5);
    display: flex;
    flex: 1;
    order: 5;
}

#product_detail .price_etc .cart_add_inner_wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

#product_detail .price_etc .cart_add input {
    height: 52px;
    width: 60px;
    text-align: center;
    border-radius: var(--radius-lg);
    display: block;
    margin: 0;
    outline: none;
    border: 2px solid var(--neutral-200);
    color: var(--neutral-700);
    background: var(--neutral-0);
    font-weight: 700;
    font-size: var(--text-base);
    transition: border-color var(--duration-fast);
}

#product_detail .price_etc .cart_add input:focus {
    border-color: var(--primary-400);
}

#product_detail .price_etc .cart_add .add_to_cart {
    transition: all var(--duration-normal) var(--ease-out);
    background: linear-gradient(135deg, var(--primary-400), var(--primary-500));
    color: #ffffff;
    border: none;
    border-radius: var(--radius-full);
    padding: var(--space-4) var(--space-7);
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    margin-left: var(--space-4);
    height: 52px;
    letter-spacing: var(--tracking-wide);
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.15);
    cursor: pointer;
}

#product_detail .price_etc .cart_add .add_to_cart:hover {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow-lg);
}

#product_detail .price_etc .cart_add .add_to_cart:active {
    transform: translateY(0);
}

/* Quantity buttons */
button.quant_down, button.quant_up {
    background: var(--neutral-0);
    border: 1px solid var(--neutral-200);
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-lg);
    transition: all var(--duration-fast);
    cursor: pointer;
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--neutral-600);
}

button.quant_down:hover, button.quant_up:hover {
    background: var(--neutral-50);
    border-color: var(--neutral-300);
}

button.quant_down.disabled:hover {
    background: var(--neutral-50);
    cursor: not-allowed;
    opacity: 0.5;
}

/* Price Box */
#product_detail .price_box {
    margin: var(--space-5) 0;
    padding: var(--space-3) 0;
    flex: 1;
    order: 4;
}

#product_detail .price_box table {
    width: 100%;
}

#product_detail .price_box tr {
    display: flex;
    justify-content: space-between;
}

#product_detail .price_box td {
    padding: var(--space-1) 0;
    font-size: var(--text-sm);
    color: var(--neutral-500);
}

#product_detail .price_box td a {
    color: var(--neutral-600);
    text-decoration: underline;
    text-underline-offset: 3px;
}

#product_detail .price_box td a:hover {
    text-decoration: none;
}

#product_detail .price_box tr td:first-child {
    font-weight: 600;
    padding-right: var(--space-2);
    color: var(--neutral-600);
}

/* Product description */
#product_detail .description {
    flex: 1;
    order: 1;
    font-size: var(--text-sm);
    color: var(--neutral-500);
    line-height: var(--leading-relaxed);
}

.flex-wrap {
    display: flex;
    flex-flow: column;
    gap: var(--space-3);
}


/* ==========================================================================
   20. FILTER SYSTEM
   ========================================================================== */

#filter {
    clear: both;
    padding: var(--space-1) 0;
}

#filter .filter_header {
    font-weight: 700;
    margin-bottom: var(--space-3);
    font-size: var(--text-sm);
    color: var(--neutral-700);
}

#filter .filter_header::first-letter {
    text-transform: uppercase;
}

#filter .manufacturers, #filter .subcategories, #filter .attributes,
#filter .availability, #filter .variants, #filter .prices {
    padding: var(--space-7);
    margin-bottom: var(--space-4);
    display: none;
    background: var(--neutral-50);
    border: none;
    border-radius: var(--radius-xl);
}

.category_filter_wrapper {
    width: auto;
    background: var(--neutral-0);
    border-radius: var(--radius-xl);
    margin: 0 calc(-1 * var(--space-1));
    transition: all var(--duration-normal) var(--ease-out);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--neutral-100);
}

.category_filter_wrapper:hover {
    box-shadow: var(--shadow-xl);
}

.category_filter_dropdown {
    width: 100%;
    height: 100%;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    padding: var(--space-4);
    font-size: var(--text-sm);
    margin-top: var(--space-5);
    letter-spacing: var(--tracking-wide);
    cursor: pointer;
}

#category_filter_bookmarks {
    margin-top: var(--space-7);
    padding-bottom: var(--space-1);
    display: flex;
    flex-flow: row wrap;
    gap: var(--space-2);
    margin-left: var(--space-1);
}

#category_filter_bookmarks .bookmark {
    flex: 1;
    cursor: pointer;
    font-size: var(--text-sm);
    line-height: 1;
    font-weight: 700;
    color: var(--neutral-600);
    padding: var(--space-3) var(--space-4);
    background: var(--neutral-50);
    transition: all var(--duration-fast);
    text-align: center;
    display: block;
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
}

#category_filter_bookmarks .bookmark:hover {
    background: var(--neutral-100);
}

#category_filter_bookmarks .active.bookmark {
    background: var(--neutral-800);
    color: #ffffff;
    border-color: var(--neutral-800);
}

/* Display / Sorting */
.display {
    clear: both;
    padding: var(--space-5) 0 0 0;
    min-height: 45px;
    font-size: var(--text-xs);
    line-height: 25px;
    display: flex;
    align-items: center;
}

.display select {
    height: 32px;
    margin-left: var(--space-1);
    cursor: pointer;
    border-radius: var(--radius-md);
    border: 1px solid var(--neutral-200);
    color: var(--neutral-600);
    padding: 0 var(--space-2);
    font-size: var(--text-xs);
}

.display .paging label {
    cursor: pointer;
    float: left;
    height: 28px;
    width: 28px;
    text-align: center;
    font-size: var(--text-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    background: var(--neutral-0);
    color: var(--neutral-600);
    margin-right: var(--space-2);
    border-radius: var(--radius-md);
    transition: all var(--duration-fast);
    border: 1px solid var(--neutral-200);
}

.display .paging label:hover {
    background: var(--neutral-50);
}

.display .paging .checked {
    background: var(--primary-50) !important;
    color: var(--primary-600) !important;
    font-weight: 700;
    border-color: var(--primary-200) !important;
    border-radius: var(--radius-md);
}

.display .paging input {
    display: none;
}

.display-type-item[data-displaytype="grid"] {
    background: url("../images/columns.svg") center no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
    display: inline-block;
    text-indent: -999999px;
    cursor: pointer;
    opacity: 0.3;
    transition: opacity var(--duration-fast);
}

.display-type-item[data-displaytype="table"] {
    background: url("../images/rows.svg") center no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
    display: inline-block;
    text-indent: -999999px;
    cursor: pointer;
    opacity: 0.3;
    transition: opacity var(--duration-fast);
}

.display-type-item.active[data-displaytype="grid"] {
    background: url("../images/columns_active.svg") center no-repeat;
    background-size: contain;
    opacity: 1;
}

.display-type-item.active[data-displaytype="table"] {
    background: url("../images/rows_active.svg") center no-repeat;
    background-size: contain;
    opacity: 1;
}

.display-type-item:hover {
    opacity: 0.6;
}


/* ==========================================================================
   21. SUBCATEGORIES
   ========================================================================== */

#category_detail .header {
    margin-bottom: var(--space-3);
    font-size: var(--text-xl);
    text-align: left;
}

#category_detail h1 {
    margin-top: var(--space-1);
    padding-top: 0;
    margin-bottom: 0;
}

#category_detail .subcategories {
    display: flex;
    margin-bottom: var(--space-3);
    overflow: auto;
    flex-flow: wrap;
    margin-top: var(--space-3);
    gap: var(--space-2);
}

#category_detail .subcategories .subcategory {
    background: var(--neutral-0);
    color: var(--neutral-700);
    font-weight: 700;
    display: block;
    transition: all var(--duration-normal) var(--ease-out);
    flex: 0 1 calc(25% - var(--space-2));
    border-radius: var(--radius-lg);
    border: 1px solid var(--neutral-150);
}

#category_detail .subcategories .subcategory:hover {
    border-color: var(--primary-300);
    background: var(--primary-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

#category_detail .subcategories .subcategory img {
    max-width: 90px;
    max-height: 30px;
    margin-right: var(--space-3);
}

#category_detail .subcategories .subcategory a {
    color: var(--neutral-700);
    font-weight: 600;
    width: 100%;
    height: 100%;
    padding: var(--space-4) var(--space-5);
    display: flex;
    align-items: center;
    line-height: 1.1;
    text-align: left;
    min-width: 120px;
    font-size: var(--text-sm);
}

#category_detail .subcategories .subcategory a:hover {
    text-decoration: none;
    color: var(--primary-600);
}


/* ==========================================================================
   22. DISCUSSION / REVIEWS
   ========================================================================== */

.msg-wrap {
    margin: 0;
    border-radius: var(--radius-xl);
    border-bottom-left-radius: 0;
    padding: var(--space-4) var(--space-7) var(--space-6);
    background: var(--beige);
    margin-bottom: var(--space-4);
}

.message .message .msg-wrap {
    background: var(--neutral-50);
    border-top-left-radius: 0;
    border-bottom-left-radius: var(--radius-xl);
}

#reviews_content .review {
    display: flex;
    border-radius: var(--radius-xl);
    border-bottom-left-radius: 0;
    padding: var(--space-6) var(--space-7);
    background: var(--beige);
    margin: 0 0 var(--space-2);
}

#reviews_content .review .star {
    width: 20px;
    height: 19px;
    margin-right: 2px;
    display: inline-block;
    line-height: 20px;
}

#reviews_content .review .star.full {
    background-image: url('../images/star_full.svg');
}

#reviews_content .review .star.half {
    background-image: url('../images/star_half.svg');
}

#reviews_content .review .star.blank {
    background-image: url('../images/star_blank.svg');
}

#reviews_content .person_icon {
    background: url('../images/user.svg') center center no-repeat;
    background-size: 100%;
    display: inline-block;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    background-color: var(--neutral-200);
}


/* ==========================================================================
   23. MISC BOX / BOOKMARKS (Product Detail Tabs)
   ========================================================================== */

#misc_box {
    display: flex;
    flex-flow: column;
}

.misc_box_header .bookmark {
    background: var(--neutral-0);
    border-radius: var(--radius-lg);
    padding: var(--space-3) var(--space-5);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--neutral-500);
    cursor: pointer;
    transition: all var(--duration-fast);
    border: 1px solid var(--neutral-200);
}

.misc_box_header .bookmark:hover {
    background: var(--neutral-50);
    color: var(--neutral-700);
}

.misc_box_header .bookmark.last {
    border-right: 0;
}

/* Attributes table */
#attributes_content.bookmark_content tr {
    background: var(--neutral-0);
    border-radius: var(--radius-md);
    transition: background var(--duration-fast);
    font-weight: 600;
    color: var(--neutral-700);
    font-size: var(--text-sm);
    width: 100%;
}

#attributes_content.bookmark_content tr.odd {
    background: var(--beige);
}

#attributes_content.bookmark_content tr th {
    padding: var(--space-3) var(--space-5);
    text-align: left;
}

#attributes_content.bookmark_content tr td {
    padding: var(--space-3) var(--space-5);
    text-align: right;
}


/* ==========================================================================
   24. LOGIN / SUBSCRIBE FORMS
   ========================================================================== */

#login_form form {
    padding: var(--space-4);
}

#login_form form .text {
    margin: var(--space-3) 0 var(--space-3) 0;
    font-weight: 700;
    font-size: var(--text-sm);
}

#login_form form .input {
    height: 48px;
    width: 100%;
    padding: 0 var(--space-3) 0 var(--space-10);
    margin-bottom: var(--space-7);
    border: 2px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    transition: border-color var(--duration-fast);
    font-size: var(--text-base);
}

#login_form form .input:focus {
    border-color: var(--primary-400);
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
}

#login_form h1 {
    text-align: center;
    margin: 0;
}

#personal_form .second input, #personal_form .second textarea, #loginForm .second input {
    height: 40px;
    line-height: 38px;
    font-size: var(--text-sm);
    padding: 0 var(--space-3);
    font-family: var(--font-sans);
    width: 100%;
    margin: var(--space-1) 0;
    border: 2px solid var(--neutral-200);
    border-radius: var(--radius-md);
    transition: border-color var(--duration-fast);
}

#personal_form .second input:focus, #personal_form .second textarea:focus, #loginForm .second input:focus {
    border-color: var(--primary-400);
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
    outline: none;
}

#personal_form .asterisk, #loginForm .asterisk {
    color: var(--accent-500);
    margin-left: var(--space-1);
}

/* Modal login */
.modal-login .modal-content {
    background: var(--neutral-0);
    overflow: auto;
    height: auto;
    max-height: 90vh;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    max-width: 480px;
    width: 90%;
}

span.login.open-modal, a.my_account {
    background: url(../images/user_acc_phone.svg) center no-repeat;
    background-size: contain;
    width: 28px;
    height: 26px;
    display: block;
    opacity: 0.6;
    transition: opacity var(--duration-fast);
}

span.login.open-modal:hover, a.my_account:hover {
    opacity: 1;
}


/* ==========================================================================
   25. CART TABLE
   ========================================================================== */

.template_cart #left_column, .template_order #left_column {
    display: none;
}

.template_cart #main_body, .template_order #main_body {
    width: 100%;
    margin: 0;
}

#cart h2 {
    padding: var(--space-4) 0;
    line-height: 1;
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 400;
    margin: 0;
    color: var(--neutral-800);
}

#cart_content {
    padding: var(--space-4) 0;
    font-weight: 400;
    margin-bottom: var(--space-8);
}

#cart_content .row {
    display: flex;
    align-items: center;
    padding: var(--space-4);
    border-radius: var(--radius-xl);
    background: var(--neutral-0);
    border: 1px solid var(--neutral-100);
    margin-bottom: var(--space-3);
    transition: all var(--duration-fast);
}

#cart_content .row:hover {
    border-color: var(--neutral-200);
    box-shadow: var(--shadow-sm);
}

#cart_content .image {
    flex: 1;
    min-width: 80px;
    text-align: center;
}

#cart_content .image img {
    max-width: 80px;
    max-height: 75px;
    border-radius: var(--radius-md);
}

#cart_content .name {
    flex: 4;
}

#cart_content .name a {
    color: var(--neutral-700);
    font-size: var(--text-sm);
    line-height: var(--leading-tight);
    text-decoration: none;
    display: block;
    font-weight: 700;
    transition: color var(--duration-fast);
}

#cart_content .name a:hover {
    color: var(--primary-500);
}

#cart_content .prices {
    margin-bottom: var(--space-3);
    flex: 3;
    line-height: 20px;
}

#cart_content .prices .price {
    margin-bottom: var(--space-1);
    font-size: var(--text-sm);
    font-weight: 700;
}

.price_excl {
    font-size: var(--text-xs);
    font-weight: 400;
    opacity: 0.6;
}

#cart_content .price_total {
    color: var(--neutral-800);
    font-size: var(--text-sm);
    font-weight: 800;
    flex: 4;
}

#cart_content .delete {
    text-align: right;
    background: url("../images/cart_dropdown_remove.svg") center no-repeat;
    background-size: 18px;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-md);
    opacity: 0.4;
    transition: all var(--duration-fast);
    cursor: pointer;
}

#cart_content .delete:hover {
    opacity: 1;
    background-color: var(--accent-50);
}

/* Quantity controls in cart */
#cart_content div.quantity {
    flex: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    gap: var(--space-1);
}

#cart .quantity input {
    width: 50px;
    height: 44px;
    text-align: center;
    margin: 0;
    outline: none;
    border: 2px solid var(--neutral-200);
    color: var(--neutral-700);
    background: var(--neutral-0);
    font-weight: 700;
    font-size: var(--text-sm);
    border-radius: var(--radius-md);
    transition: border-color var(--duration-fast);
}

#cart .quantity input:focus {
    border-color: var(--primary-400);
}

#cart .quant_up, #cart .quant_down {
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    color: var(--neutral-600);
    background: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-md);
    transition: all var(--duration-fast);
    line-height: 1;
}

#cart .quant_up:hover, #cart .quant_down:hover {
    background: var(--neutral-100);
    border-color: var(--neutral-300);
}

/* Cart summary */
#cart_content .summary {
    font-size: var(--text-sm);
    font-weight: 700;
    line-height: var(--leading-normal);
    background: var(--neutral-0);
    border-radius: var(--radius-2xl);
    padding: var(--space-6) var(--space-7);
    margin: 0 var(--space-3);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--neutral-100);
}

#cart_content .summary .price_total {
    font-size: var(--text-3xl);
    line-height: 1;
    text-align: center;
    margin-bottom: var(--space-3);
    font-weight: 800;
    color: var(--neutral-800);
}


/* ==========================================================================
   26. FOOTER
   ========================================================================== */

.footer-map {
    height: 400px;
    width: 100%;
}

#footer {
    padding-top: var(--space-10);
    background: var(--neutral-800);
    color: var(--neutral-300);
    position: relative;
}

#footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-400), var(--primary-300), var(--accent-400));
}

#footer .box {
    padding-bottom: var(--space-7);
    flex: 1;
}

#footer #footer-bottom .box {
    padding-left: var(--space-3);
    padding-right: var(--space-3);
}

#footer .box.contact .logo {
    margin-bottom: var(--space-6);
    max-width: 189px;
    max-height: 73px;
}

#footer .box.contact .logo p {
    margin-top: 0;
}

#footer .box.contact a.phone_link {
    color: var(--neutral-0);
    font-weight: 700;
    text-decoration: none;
    font-size: var(--text-lg);
    display: block;
    transition: color var(--duration-fast);
}

#footer .box.contact a.phone_link:hover {
    color: var(--primary-300);
}

#footer .box.contact a.mail_link {
    text-decoration: underline;
    text-underline-offset: 3px;
    color: var(--neutral-300);
    font-size: var(--text-base);
    transition: color var(--duration-fast);
}

#footer .box.contact a.mail_link:hover {
    color: var(--primary-300);
    text-decoration: none;
}

#footer .contacts {
    margin-top: var(--space-4);
    font-size: var(--text-sm);
    color: var(--neutral-400);
}

#footer .box .title, #footer .box .header {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: var(--text-xl);
    margin-bottom: var(--space-4);
    text-align: left;
    color: var(--neutral-0);
}

#footer .box .title::first-letter, #footer .box .header::first-letter {
    text-transform: uppercase;
}

#footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#footer ul a {
    display: block;
    padding: var(--space-2) 0;
    text-decoration: none;
    color: var(--neutral-400);
    font-size: var(--text-sm);
    transition: all var(--duration-fast);
}

#footer ul a:hover {
    color: var(--neutral-0);
    padding-left: var(--space-2);
}

#footer ul .active a {
    font-weight: 700;
    color: var(--neutral-0);
}

#footer-bottom {
    margin-top: var(--space-10);
    border-top: 1px solid var(--neutral-700);
    padding-top: var(--space-5);
}

/* Social icons */
#socials-wrapper .fb {
    width: 26px;
    height: 24px;
    display: inline-block;
    transition: opacity var(--duration-fast);
    opacity: 0.6;
}

#socials-wrapper .fb:hover {
    opacity: 1;
}

#socials-wrapper .fb.no-image {
    background: url("../images/fb.svg") no-repeat center;
    background-size: contain;
}

#socials-wrapper .ig {
    width: 28px;
    height: 27px;
    position: relative;
    display: inline-block;
    top: 2px;
    margin-left: var(--space-2);
    transition: opacity var(--duration-fast);
    opacity: 0.6;
}

#socials-wrapper .ig:hover {
    opacity: 1;
}

#socials-wrapper .ig.no-image {
    background: url("../images/ig.svg") no-repeat center;
    background-size: contain;
}

#socials-wrapper .ytb {
    width: 34px;
    height: 28px;
    display: inline-block;
    position: relative;
    margin-left: var(--space-3);
    transition: opacity var(--duration-fast);
    opacity: 0.6;
}

#socials-wrapper .ytb:hover {
    opacity: 1;
}

#socials-wrapper .ytb.no-image {
    background: url("../images/ytb.svg") no-repeat center;
    background-size: contain;
}


/* ==========================================================================
   27. NEWSLETTER & CONTACT FORM
   ========================================================================== */

#newsletter_cf_wrapper .box {
    flex: 1;
}

#contact_form .button {
    font-size: var(--text-sm);
    margin: 0;
    padding: var(--space-4);
    width: 100%;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    border-radius: var(--radius-full);
    transition: all var(--duration-normal) var(--ease-out);
    background: transparent;
    color: var(--primary-400);
    border: 2px solid var(--primary-400);
}

#contact_form .button:hover {
    background: var(--primary-400);
    color: #ffffff;
}

#contact_form input, #contact_form textarea {
    border: 2px solid var(--neutral-200);
    color: var(--neutral-700);
    width: 100%;
    box-sizing: border-box;
    padding: var(--space-3) var(--space-4);
    margin-bottom: var(--space-4);
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    border-radius: var(--radius-md);
    transition: border-color var(--duration-fast);
}

#contact_form input:focus, #contact_form textarea:focus {
    border-color: var(--primary-400);
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
    outline: none;
}


/* ==========================================================================
   28. BLOG
   ========================================================================== */

.blog-carousel {
    margin-top: var(--space-12);
}

.blog-carousel .header {
    flex: 1 100%;
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 400;
    text-align: center;
    margin-bottom: var(--space-8);
    color: var(--neutral-800);
}

.blog-carousel .blog-post {
    flex: 0 1 25%;
    padding: var(--space-5);
}

.blog-carousel .blog-post div, .blog-card .image {
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.blog-carousel .blog-post div img, .blog-card .image img {
    transition: transform var(--duration-slower) var(--ease-out);
}

.blog-carousel .blog-post div:hover img, .blog-card .image:hover img {
    transform: scale(1.08);
}

.blog-carousel .blog-post h2 {
    transition: color var(--duration-fast);
    margin-top: var(--space-5);
    font-family: var(--font-display);
    font-size: var(--text-lg);
}

.blog-carousel .blog-post h2:hover {
    color: var(--primary-500);
}

.blog-carousel .blog-post p {
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
    font-weight: 400;
    color: var(--neutral-500);
    margin: var(--space-3) 0 var(--space-5) 0;
}

.blog-carousel .blog-post .date {
    font-size: var(--text-xs);
    margin-bottom: var(--space-4);
    color: var(--neutral-400);
}

.blog-carousel img {
    width: 100%;
}

.blog-carousel a:hover {
    text-decoration: none;
}

.blog-carousel a.read_more {
    color: var(--primary-500);
    font-weight: 700;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    text-decoration: none;
    transition: all var(--duration-fast);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
}

.blog-carousel a.read_more:hover {
    gap: var(--space-3);
}

.blog-carousel a.read_more::after {
    content: '→';
    transition: transform var(--duration-fast);
}

.blog-carousel a.read_more:hover::after {
    transform: translateX(4px);
}


/* ==========================================================================
   29. MODALS
   ========================================================================== */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    overflow-y: hidden;
    overflow-x: hidden;
    width: 100%;
    height: 100%;
    padding: var(--space-10);
    z-index: var(--z-modal) !important;
    background: var(--surface-overlay);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: var(--space-8) var(--space-7);
    width: min(90vw, 700px);
    max-height: 85vh;
    background: var(--neutral-0);
    border: none !important;
    box-shadow: var(--shadow-2xl) !important;
    border-radius: var(--radius-2xl) !important;
    overflow-y: auto;
    animation: modalIn var(--duration-normal) var(--ease-out);
}

.close-modal {
    background: url("../images/close_modal.svg") no-repeat center;
    background-size: 10px;
    width: 32px;
    height: 32px;
    position: absolute;
    right: var(--space-4) !important;
    top: var(--space-4);
    border: none;
    opacity: 0.5;
    transition: all var(--duration-slow) var(--ease-spring);
    z-index: var(--z-modal) !important;
    border-radius: var(--radius-full);
    cursor: pointer;
}

.close-modal:hover {
    opacity: 1;
    background-color: var(--neutral-50);
    transform: rotate(90deg);
}


/* ==========================================================================
   30. SOCIAL ICONS (Fixed Sidebar)
   ========================================================================== */

.social_icons {
    clear: both;
    margin: var(--space-1) 0 var(--space-7) 0;
    position: fixed;
    right: 0;
    top: 200px;
    z-index: var(--z-sticky);
}

.social_icons .icon.tweet {
    background: #1d9bf0;
    padding: var(--space-2) 0 var(--space-1) var(--space-1);
    min-height: 33px;
    position: relative;
    right: 0;
    border-bottom-left-radius: var(--radius-md);
    transition: all var(--duration-fast);
}

.social_icons .icon.tweet:hover {
    padding-right: var(--space-2);
}

.social_icons .icon.fb_share {
    background: #36669a;
    padding: 2px 1px 1px 2px;
    min-height: 33px;
    display: flex;
    justify-content: center;
    position: relative;
    right: 0;
    border-top-left-radius: var(--radius-md);
    transition: all var(--duration-fast);
}

.social_icons .icon.fb_share:hover {
    padding-right: var(--space-2);
}


/* ==========================================================================
   31. OFFER OF THE DAY
   ========================================================================== */

#offer_of_the_day {
    display: flex;
    border: 2px solid var(--neutral-800);
    border-radius: var(--radius-xl);
    padding: var(--space-3) var(--space-10);
    margin-bottom: var(--space-5);
    align-items: center;
    background: var(--neutral-0);
    transition: all var(--duration-normal) var(--ease-out);
}

#offer_of_the_day:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

#offer_of_the_day .product_wrap {
    display: flex;
    flex: 4;
    align-items: center;
}

#offer_of_the_day .product_wrap .product_img {
    flex: 1;
    max-width: 143px;
    max-height: 110px;
}

#offer_of_the_day .product_wrap .product_img img {
    width: 100%;
    height: auto;
    padding: 0 var(--space-3);
    object-fit: contain;
    max-height: 110px;
}

#offer_of_the_day .product_info div:nth-child(2) {
    font-size: var(--text-lg);
    font-weight: 800;
    text-align: left;
}


/* ==========================================================================
   32. SLIDESHOW
   ========================================================================== */

.slideshow_panel {
    display: none;
}

.slideshow_panel_wrap {
    position: relative;
    max-height: 480px;
    border-radius: var(--radius-2xl);
    overflow: hidden;
}

.slideshow_panel_spacer {
    height: 480px;
    min-height: 480px;
    position: relative;
    width: 100%;
    top: -480px;
    z-index: -1;
    background: var(--neutral-100);
    max-width: 1761px;
    margin: 0 auto;
    border-radius: var(--radius-2xl);
}

.slides-pagination a {
    width: 10px;
    height: 10px;
    display: inline-block;
    margin: 0 var(--space-1);
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.5);
    transition: all var(--duration-fast);
    border: none;
    cursor: pointer;
}

.slides-pagination a.current,
.slides-pagination a:hover {
    background: #ffffff;
    transform: scale(1.2);
}

.slides-navigation a {
    position: absolute;
    display: block;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    width: 44px;
    height: 44px;
    transition: all var(--duration-fast);
}

.slides-navigation a:hover {
    background: rgba(255,255,255,0.4);
}


/* ==========================================================================
   33. BASKET DIALOG (Add to Cart Confirmation)
   ========================================================================== */

.basketDialog-header .text {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: var(--text-2xl);
    text-align: center;
    border-bottom: 1px solid var(--neutral-100);
    padding-bottom: var(--space-7);
    color: var(--neutral-800);
}

.basketDialog-header .icon {
    background: url("../images/success.svg") center center no-repeat;
    background-size: 100%;
    width: 56px;
    height: 56px;
    margin: 0 auto;
    margin-bottom: var(--space-3);
    animation: scaleIn var(--duration-slow) var(--ease-spring);
}

.basketDialog-buttons a {
    transition: all var(--duration-normal) var(--ease-out);
    background: linear-gradient(135deg, var(--primary-400), var(--primary-500));
    border: none;
    border-radius: var(--radius-full);
    padding: var(--space-4) var(--space-7);
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    display: inline-flex;
    color: #ffffff !important;
    letter-spacing: var(--tracking-wide);
    box-shadow: var(--shadow-md);
}

.basketDialog-buttons a:hover {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}


/* ==========================================================================
   34. ORDER FLOW
   ========================================================================== */

.template_order #payment_and_transport select[name="country_id"] {
    text-align: left !important;
    display: block;
    font-size: var(--text-sm);
    padding: var(--space-2) var(--space-3);
    margin: var(--space-1) 0;
    background: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    height: 40px;
    border-radius: var(--radius-md);
}

/* Order template adjustments */
.template_cart #footer, .template_order #footer {
    display: none;
}

.template_cart #eshop, .template_order #eshop {
    margin-top: calc(var(--header-height) + var(--space-2));
}

.template_cart #header, .template_order #header {
    height: var(--header-height);
    z-index: 1;
}

.template_cart #header .container-flex, .template_order #header .container-flex {
    justify-content: space-between;
}

.template_cart #submenu_panel, .template_order #submenu_panel,
.template_cart #search_box, .template_order #search_box,
.template_cart #top_panel, .template_order #top_panel {
    display: none;
}


/* ==========================================================================
   35. ERROR STATES
   ========================================================================== */

.error-fill-field {
    border: 2px solid var(--accent-400) !important;
    animation: shake var(--duration-normal) var(--ease-out);
}

.error_field_name {
    font-weight: 700;
    background: var(--accent-50);
    padding: var(--space-2) var(--space-3);
    display: inline-block;
    margin-top: var(--space-1);
    border-radius: var(--radius-md);
    font-size: var(--text-xs);
    color: var(--accent-500);
}


/* ==========================================================================
   36. ANIMATIONS & KEYFRAMES
   ========================================================================== */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Stagger animation for product cards */
#product_list .product-card {
    animation: fadeInUp var(--duration-slow) var(--ease-out) both;
}

#product_list .product-card:nth-child(1) { animation-delay: 0ms; }
#product_list .product-card:nth-child(2) { animation-delay: 60ms; }
#product_list .product-card:nth-child(3) { animation-delay: 120ms; }
#product_list .product-card:nth-child(4) { animation-delay: 180ms; }
#product_list .product-card:nth-child(5) { animation-delay: 240ms; }
#product_list .product-card:nth-child(6) { animation-delay: 300ms; }
#product_list .product-card:nth-child(7) { animation-delay: 360ms; }
#product_list .product-card:nth-child(8) { animation-delay: 420ms; }

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* ==========================================================================
   37. UTILITY CLASSES
   ========================================================================== */

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.version_type_for_mobile {
    display: none;
}

.hidden_till_768 {
    display: none;
}

/* Skeleton loading */
.skeleton {
    background: linear-gradient(90deg, var(--neutral-100) 25%, var(--neutral-50) 50%, var(--neutral-100) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-md);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--neutral-200);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neutral-300);
}

/* Selection styling */
::selection {
    background: var(--primary-100);
    color: var(--primary-700);
}


/* ==========================================================================
   38. RESPONSIVE — Mobile First
   ========================================================================== */

/* Tablet */
@media screen and (max-width: 1024px) {
    #product_list {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: var(--space-3);
    }

    #left_column {
        max-width: 240px;
    }

    .blog-carousel .blog-post {
        flex: 0 1 33.33%;
    }

    #category_detail .subcategories .subcategory {
        flex: 0 1 calc(33.33% - var(--space-2));
    }

    #search_box {
        margin: 0 var(--space-4);
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    :root {
        --header-height: 60px;
    }

    #product_list {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-2);
    }

    #product_list .product-card {
        padding: var(--space-3);
    }

    .homepage_products_body .product .thumbnail,
    #product_list .product .thumbnail {
        height: 160px;
    }

    #left_column {
        max-width: 100%;
        position: static;
    }

    #main_body {
        margin: var(--space-4) 0 0 0;
    }

    #eshop .eshop_body.container-flex {
        flex-flow: column;
    }

    .blog-carousel .blog-post {
        flex: 0 1 50%;
        padding: var(--space-3);
    }

    #category_detail .subcategories .subcategory {
        flex: 0 1 calc(50% - var(--space-2));
    }

    #footer .container-flex {
        flex-flow: column;
    }

    #footer .box {
        padding-bottom: var(--space-6);
    }

    .display-xs {
        display: block;
    }

    .hidden_till_768 {
        display: block;
    }

    #search_box {
        margin: 0 var(--space-2);
    }

    #contacts_dropdown_wrap {
        display: none;
    }

    h1 {
        font-size: var(--text-2xl);
    }

    h2 {
        font-size: var(--text-lg);
    }
}

/* Small mobile */
@media screen and (max-width: 480px) {
    #product_list {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2);
    }

    .product-card .name {
        font-size: var(--text-xs);
    }

    .homepage_products_body .product .price,
    #product_list .product .price {
        font-size: var(--text-base);
    }

    .blog-carousel .blog-post {
        flex: 0 1 100%;
    }

    #category_detail .subcategories .subcategory {
        flex: 0 1 100%;
    }

    #cart_dropdown.dropdown_menu {
        min-width: calc(100vw - var(--space-8));
        right: calc(-1 * var(--space-4));
    }

    .modal-content {
        padding: var(--space-6) var(--space-4);
        width: 95vw;
    }
}

/* Desktop wide */
@media screen and (min-width: 1440px) {
    #product_list {
        grid-template-columns: repeat(4, 1fr);
    }

    .name_desc_wrap {
        min-height: 115px;
    }
}

@media screen and (max-width: 1439px) {
    .name_desc_wrap {
        min-height: 133px;
    }
}


/* ==========================================================================
   39. PRINT STYLES
   ========================================================================== */

@media print {
    #header, #footer, .social_icons, #top_panel,
    .category_filter_wrapper, .display {
        display: none !important;
    }

    body {
        background: white;
        color: black;
        font-size: 12pt;
    }

    #eshop {
        margin-top: 0 !important;
    }
}
