/*
Theme Name: Vibrato Custom
Author: Petr Kuneš
Description: Full Vanilla CSS Theme with Mega Menu and Horizontal Nav.
Version: 2.4
*/

:root {
    --primary: #2F7559;
    --primary-deep: #153629;
    --emerald-luxury: #2F7559;
    --emerald-dark: #153629;
    --background-dark: #f6faf5;
    --surface-dark: #ffffff;
    --surface-alt: #eff5ef;
    --surface-elevated: #e6eee7;
    --surface-strong: #d5e0d6;
    --text-main: #101f18;
    --text-muted: #41564a;
    --text-soft: #61766a;
    --text-inverse: #f8fcf9;
    --border-color: #bcccbc;
    --border-strong: #a2b5a5;
    --accent-gradient: linear-gradient(135deg, #3F966F, #2F7559, #245F47);
    --accent-gradient-hover: linear-gradient(135deg, #4CAB80, #3F966F, #2F7559);
    --font-display: 'Nunito', sans-serif;
    --font-body: 'Nunito', sans-serif;
    --shadow-glow: 0 10px 30px rgba(47, 117, 89, 0.24);
    --shadow-glow-sm: 0 4px 15px rgba(47, 117, 89, 0.16);
    --shadow-emerald: 0 10px 30px rgba(21, 54, 41, 0.28);
    --shadow-emerald-sm: 0 4px 15px rgba(21, 54, 41, 0.2);
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Base Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 300;
    letter-spacing: -0.01em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.text-primary {
    color: var(--primary) !important;
}

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

::-webkit-scrollbar-track {
    background: var(--surface-strong);
}

::-webkit-scrollbar-thumb {
    background: var(--surface-strong);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--border-color);
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 1024px) {
    .container {
        padding: 0 64px;
    }
}

.section-spacing {
    padding: 80px 0;
}

@media (min-width: 1024px) {
    .section-spacing {
        padding: 120px 0;
    }
}

/* HEADER */
.top-announcement {
    background: var(--surface-strong);
    text-align: center;
    padding: 10px;
    border-bottom: 1px solid rgba(16, 41, 31, 0.06);
}

.top-announcement p {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--text-muted);
    font-weight: 500;
}

.accent-link {
    color: var(--primary);
    text-decoration: underline;
    margin-left: 10px;
    font-weight: 600;
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(246, 251, 247, 0.94);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(16, 41, 31, 0.06);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    height: 75px;
}

@media (min-width: 1024px) {
    .header-top {
        height: 90px;
        padding: 0 64px;
    }
}

.header-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

@media (max-width: 1023px) {
    .header-left {
        gap: 12px;
    }
}

.menu-toggle {
    display: flex;
}

@media (min-width: 1024px) {
    .menu-toggle {
        display: none !important;
    }
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.custom-logo-link img,
.header-logo img,
.header-logo .logo-icon,
.mobile-menu-logo img,
.mobile-menu-logo .logo-icon {
    height: 90px !important;
    max-height: 90px !important;
    width: auto !important;
    display: block;
    object-fit: contain;
}

/* Fallback icons should not have forced height if they are text icons */
.header-logo .logo-icon,
.mobile-menu-logo .logo-icon {
    height: auto !important;
    max-height: none !important;
    width: auto !important;
}

@media (max-width: 700px) {

    .custom-logo-link img,
    .header-logo img,
    .mobile-menu-logo img {
        height: 60px !important;
        max-height: 60px !important;
    }
}

@media (max-width: 480px) {

    .custom-logo-link img,
    .header-logo img,
    .mobile-menu-logo img {
        height: 45px !important;
        max-height: 45px !important;
    }
}

.main-header .header-top {
    min-height: 100px;
}

.header-logo .custom-logo-link {
    display: block;
    line-height: 0;
}

.footer-topbar .custom-logo {
    max-height: 60px;
    width: auto;
    display: block;
}

.footer-topbar .custom-logo-link {
    display: inline-block;
    line-height: 0;
}

.logo-icon {
    color: var(--primary);
    font-size: 32px !important;
    filter: drop-shadow(var(--shadow-glow-sm));
}

.logo-text {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    font-style: normal;
    letter-spacing: -0.03em;
    color: var(--text-main);
}

@media (min-width: 1024px) {
    .logo-text {
        font-size: 36px;
    }
}

.header-right {
    display: flex;
    gap: 12px;
    align-items: center;
}

@media (min-width: 1024px) {
    .header-right {
        gap: 15px;
    }
}

.icon-btn {
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    transition: 0.3s;
    padding: 8px;
    display: flex;
    align-items: center;
}

.icon-btn .material-symbols-outlined {
    font-size: 26px !important;
}

.icon-btn:hover {
    color: var(--primary);
}

.header-search {
    position: fixed;
    inset: 0;
    z-index: 2000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.header-search.is-open {
    opacity: 1;
    pointer-events: auto;
}

.header-search-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 35, 27, 0.34);
    backdrop-filter: blur(6px);
}

.header-search-panel {
    position: relative;
    max-width: 1100px;
    margin: 60px auto 0;
    background: var(--surface-alt);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 2px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-height: calc(100vh - 120px);
    overflow: auto;
}

.header-search-close {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    cursor: pointer;
    padding: 0 12px;
    height: 54px;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.header-search-close:hover {
    border-color: rgba(16, 41, 31, 0.30);
    color: var(--primary);
}

.header-search-form {
    display: flex;
    gap: 12px;
    align-items: center;
}

.header-top {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-center {
    flex: 1;
    display: none;
    justify-content: center;
}

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

.header-search-inline {
    position: relative;
    max-width: 520px;
    width: 100%;
}

.header-search-form--inline .header-search-input {
    height: 46px;
}

.header-search-form--inline .header-search-submit {
    height: 46px;
    padding: 0 16px;
}

.header-search-inline .header-search-results {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    z-index: 50;
    background: var(--surface-alt);
}

.header-search-inline .header-search-results.is-visible {
    display: grid;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    width: 900px;
    max-width: 95vw;
    left: 50%;
    transform: translateX(-50%);
}

.header-search-inline .search-cats,
.header-search-inline .search-products {
    background: transparent;
    border: none;
    padding: 0;
}

@media (min-width: 901px) {
    #header-search {
        display: none;
    }

    #header-search-trigger {
        display: none;
    }
}

@media (max-width: 900px) {
    .header-center {
        display: none;
    }
}

.header-search-input {
    flex: 1 1 auto;
    height: 54px;
    padding: 0 16px;
    background: var(--surface-elevated);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-size: 16px;
    border-radius: 2px;
}

.header-search-input::-webkit-search-cancel-button {
    -webkit-appearance: none;
    height: 14px;
    width: 14px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2314231b'><path d='M18.3 5.71 12 12l6.3 6.29-1.42 1.42L10.59 13.4 4.29 19.7 2.87 18.3 9.17 12 2.87 5.71 4.29 4.29l6.3 6.3 6.29-6.3z'/></svg>") center/contain no-repeat;
    opacity: 0.8;
    cursor: pointer;
}

.header-search-input::placeholder {
    color: var(--text-soft);
}

.header-search-input:focus {
    outline: none;
    border-color: rgba(16, 41, 31, 0.38);
}

.header-search-submit {
    height: 54px;
    padding: 0 22px;
    background: var(--accent-gradient);
    color: var(--text-inverse);
    border: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 2px;
    cursor: pointer;
}

.header-search-submit:hover {
    background: var(--accent-gradient-hover);
}

.header-search-results {
    margin-top: 18px;
    display: none;
    gap: 20px;
}

.header-search-results.is-visible {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
}

.search-col-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-right: 1px solid var(--border-color);
    padding-right: 24px;
}

.search-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.search-group ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-group li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: rgba(16, 41, 31, 0.06);
    border-radius: 4px;
    font-size: 14px;
    color: var(--text-main);
    transition: all 0.2s;
}

.search-group li a:hover {
    background: rgba(16, 41, 31, 0.14);
    color: var(--primary);
}

.search-group li a .count {
    font-size: 12px;
    color: var(--text-muted);
}

.search-empty-item {
    font-size: 13px;
    color: var(--text-muted);
    font-style: normal;
    padding: 0 12px;
}

.header-search-results .search-group-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.header-search-results .search-col-left,
.header-search-results .search-col-right {
    background: transparent;
    border: none;
    padding: 0;
}

.header-search-results .search-products-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-search-results .search-cats a {
    color: var(--text-main);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 14px;
}

.header-search-results .search-cats a:hover {
    color: var(--primary);
}

.header-search-results .search-products li {
    list-style: none;
}

.header-search-results .search-product-card {
    background: var(--surface-alt);
    border: 1px solid var(--border-color);
    border-radius: 2px;
    overflow: hidden;
}

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

.header-search-results .search-product-card-link {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
    padding: 10px;
    text-decoration: none;
}

.header-search-results .search-product-card-link:hover {
    border-color: rgba(16, 41, 31, 0.30);
}

.header-search-results .search-product-thumb img {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
    border-radius: 2px;
    background: var(--surface-alt);
}

.header-search-results .search-product-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.header-search-results .search-product-title {
    color: var(--text-main);
    font-size: 14px;
    text-decoration: none;
}

.header-search-results .search-product-title:hover {
    color: var(--primary);
}

.header-search-results .search-price {
    white-space: nowrap;
    font-weight: 700;
    color: var(--text-main);
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
}

.header-search-results .search-price del {
    order: 2;
    color: var(--text-soft);
    font-size: 12px;
    text-decoration: line-through;
}

.header-search-results .search-price del .amount {
    color: var(--text-soft);
}

.header-search-results .search-price ins {
    order: 1;
    text-decoration: none;
    color: var(--text-main);
}

.header-search-results .search-price ins .amount {
    color: var(--text-main);
}

.header-search-results .search-empty {
    grid-column: 1 / -1;
    color: var(--text-muted);
    font-size: 14px;
}

.search-loader-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
}

.search-loader-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.search-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.search-loading-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(16, 41, 31, 0.25);
    border-top-color: rgba(16, 41, 31, 0.8);
    animation: vibratoSearchSpin 0.7s linear infinite;
}

.search-skel-line {
    height: 34px;
    border-radius: 4px;
    background: linear-gradient(100deg, rgba(16, 41, 31, 0.08) 0%, rgba(16, 41, 31, 0.16) 45%, rgba(16, 41, 31, 0.08) 100%);
    background-size: 220% 100%;
    animation: vibratoSearchPulse 1.2s ease-in-out infinite;
}

.search-skel-line.is-short {
    width: 72%;
}

.search-skel-products {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.search-skel-card {
    min-height: 168px;
    border-radius: 4px;
    background: linear-gradient(100deg, rgba(16, 41, 31, 0.08) 0%, rgba(16, 41, 31, 0.16) 45%, rgba(16, 41, 31, 0.08) 100%);
    background-size: 220% 100%;
    animation: vibratoSearchPulse 1.2s ease-in-out infinite;
}

@keyframes vibratoSearchPulse {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

@keyframes vibratoSearchSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 900px) {
    .header-search-results.is-visible {
        grid-template-columns: 1fr;
    }

    .search-loader-grid {
        grid-template-columns: 1fr;
    }

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

    .header-search-results .search-products-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .header-search-results .search-products-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .header-search-results .search-price {
        justify-self: start;
    }
}

@media (max-width: 700px) {
    .header-search-panel {
        margin: 24px 12px 0;
        padding: 18px;
        max-height: calc(100vh - 48px);
    }

    .header-search-form {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }

    .header-search-input {
        flex: 1 1 100%;
    }

    .header-search-submit {
        flex: 1 1 auto;
        height: 46px;
    }

    .header-search-close {
        flex: 0 0 46px;
        width: 46px;
        height: 46px;
        padding: 0;
    }
}

.cart-btn {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--primary) !important;
    color: var(--text-inverse) !important;
    font-size: 9px !important;
    width: 16px !important;
    height: 16px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: bold !important;
    font-family: var(--font-body) !important;
    line-height: 1 !important;
    z-index: 10;
}

/* DESKTOP NAV */
.desktop-nav {
    background: var(--surface-elevated);
    border-top: 1px solid rgba(16, 41, 31, 0.09);
    display: none;
    position: relative;
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: block;
        padding: 0 64px;
    }
}

.nav-list {
    display: flex;
    justify-content: center;
    gap: 50px;
    list-style: none;
    height: 56px;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    /* Force single line */
}

.nav-list>li {
    position: static;
    height: 100%;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    /* Prevent shrinking so JS can measure true width */
}

.nav-list>li>.nav-link {
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    padding: 0;
}

.nav-link-button {
    cursor: pointer;
}

.nav-list>li>.nav-link:hover,
.nav-list>li:hover>.nav-link,
.nav-list>li.current-menu-item>.nav-link {
    color: var(--text-main);
}

.nav-link .chevron {
    font-size: 18px !important;
    opacity: 0.6;
    margin-top: -2px;
}

.sale-link {
    color: var(--primary) !important;
}

/* MEGA MENU */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--surface-elevated);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
    transition-delay: 0.15s;
    /* Mouse tunnel fix */
    z-index: 1000;
}

.nav-list>li:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-grid {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
    padding: 40px 0;
}

/* Visual Category Grid */
.cats-col {
    border-right: 1px solid rgba(16, 41, 31, 0.09);
    padding-right: 40px;
}

.mega-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 24px;
    display: block;
}

.mega-list-visual {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
}

.cat-visual-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    transition: 0.3s;
    padding: 10px;
    border-radius: 4px;
}

.cat-visual-link:hover {
    background: rgba(16, 41, 31, 0.06);
}

/* Square thumbnails with slight rounding */
.cat-thumb {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: 0.3s;
}

.cat-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.cat-visual-link span {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cat-visual-link:hover .cat-thumb {
    border-color: var(--primary);
}

.cat-visual-link:hover .cat-thumb img {
    opacity: 1;
    transform: scale(1.05);
}

.cat-visual-link:hover span {
    color: var(--text-main);
}

/* Handling categories without images */
.cat-visual-link.no-img {
    justify-content: center;
    height: 100%;
    border: 1px solid rgba(16, 41, 31, 0.09);
    min-height: 60px;
}

.cat-visual-link.no-img span {
    font-size: 11px;
}


/* Menu Teaser */
.teaser-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mega-teaser-link {
    display: block;
    height: 100%;
    transition: 0.3s;
}

.mega-teaser-link:hover {
    transform: translateY(-3px);
}

.mega-teaser-card {
    background: var(--surface-alt);
    border: 1px solid var(--border-color);
    border-radius: 2px;
    overflow: hidden;
    display: grid;
    grid-template-rows: 1fr auto;
    min-height: 180px;
}

.mega-teaser-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.4s;
}

.mega-teaser-media {
    position: relative;
}

.mega-teaser-link:hover .mega-teaser-media img {
    transform: scale(1.03);
}

.mega-teaser-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mega-teaser-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--surface-dark);
    color: var(--text-main);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 4px 8px;
    border-radius: 2px;
    z-index: 2;
}

.mega-teaser-title {
    color: var(--text-main);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

.mega-teaser-price {
    color: var(--text-main);
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    gap: 8px;
    align-items: baseline;
}

.mega-teaser-price del {
    font-size: 12px;
    color: var(--text-soft);
    font-weight: 400;
}

.mega-teaser-price ins {
    text-decoration: none;
    color: var(--text-main);
}

/* MOBILE MENU OVERLAY - PREMIUM DESIGN */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 35, 27, 0.38);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(25px);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    width: 90%;
    max-width: 380px;
    height: 100%;
    background: var(--surface-alt);
    position: relative;
    transform: translateX(-100%);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(16, 41, 31, 0.09);
}

.mobile-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(16, 41, 31, 0.09);
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-menu-logo .logo-icon {
    font-size: 28px !important;
}

.mobile-menu-logo .logo-text {
    font-size: 24px;
}

.close-menu {
    background: rgba(16, 41, 31, 0.06);
    border: 1px solid rgba(16, 41, 31, 0.14);
    color: var(--text-main);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.close-menu:hover {
    background: rgba(16, 41, 31, 0.14);
    color: var(--primary);
}

.mobile-menu-search {
    padding: 20px 24px;
}

.mobile-search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.mobile-search-form .search-icon {
    position: absolute;
    left: 14px;
    color: var(--text-muted);
    font-size: 20px !important;
}

.mobile-search-input {
    width: 100%;
    height: 48px;
    background: var(--surface-elevated);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0 16px 0 44px;
    color: var(--text-main);
    font-size: 14px;
    transition: 0.3s;
}

.mobile-search-input:focus {
    border-color: var(--primary);
    background: var(--surface-strong);
    outline: none;
}

.mobile-menu-body {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0 40px;
}

/* Accordion Nav */
.mobile-accordion {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(16, 41, 31, 0.04);
}

.mobile-nav-link-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav-link {
    display: block;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
    flex: 1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-nav-link.sale-link {
    color: var(--primary);
}

.mobile-nav-toggle {
    background: none;
    border: none;
    color: var(--text-muted);
    padding: 16px 24px;
    cursor: pointer;
    transition: 0.3s;
}

.mobile-nav-toggle .material-symbols-outlined {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-item.is-open .mobile-nav-toggle .material-symbols-outlined {
    transform: rotate(180deg);
    color: var(--text-main);
}

.mobile-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(16, 41, 31, 0.04);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-item.is-open .mobile-submenu {
    max-height: 1000px;
    /* Large enough for any submenu */
}

.mobile-submenu .mobile-nav-link {
    padding: 12px 24px 12px 40px;
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    color: var(--text-muted);
}

.mobile-submenu .view-all-link {
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--primary);
    border-bottom: 1px solid rgba(16, 41, 31, 0.09);
}

/* Utility Links */
.mobile-utility-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 30px 24px;
}

.utility-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    background: rgba(16, 41, 31, 0.06);
    border: 1px solid rgba(16, 41, 31, 0.09);
    border-radius: 4px;
    transition: 0.3s;
}

.utility-item:hover {
    background: rgba(16, 41, 31, 0.11);
    border-color: var(--primary);
}

.utility-item .material-symbols-outlined {
    color: var(--primary);
    font-size: 24px !important;
}

.utility-item span:not(.material-symbols-outlined) {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Benefits */
.mobile-benefits {
    padding: 30px 24px;
    background: rgba(16, 41, 31, 0.05);
    border-top: 1px solid rgba(16, 41, 31, 0.10);
    border-bottom: 1px solid rgba(16, 41, 31, 0.10);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit-item .material-symbols-outlined {
    color: var(--primary);
    font-size: 24px !important;
    margin-top: 2px;
}

.benefit-item strong {
    display: block;
    font-size: 13px;
    color: var(--text-main);
    margin-bottom: 2px;
}

.benefit-item p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

/* Contact Links */
.mobile-contact-links {
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--surface-elevated);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    transition: 0.3s;
}

.contact-item .material-symbols-outlined {
    color: var(--primary);
}

.contact-item.whatsapp {
    background: rgba(37, 211, 102, 0.05);
    border-color: rgba(37, 211, 102, 0.2);
}

.contact-item.whatsapp .material-symbols-outlined {
    color: #25D366;
}

/* Rest of the design (Hero, Teasers, etc.) restored */
.hero {
    height: 500px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

@media (min-width: 1024px) {
    .hero {
        height: 850px;
        padding-bottom: 100px;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 2.5s;
}

.hero:hover .hero-bg {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.95), transparent);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
    text-align: left;
}

@media (min-width: 1024px) {
    .hero-content {
        padding: 0 80px;
    }
}

.tag-label {
    display: inline-flex;
    padding: 4px 12px;
    border-left: 2px solid var(--primary);
    background: rgba(0, 0, 0, 0.4);
    color: var(--primary);
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero h1 {
    font-size: 36px;
    line-height: 1.1;
    color: var(--text-inverse);
    margin-bottom: 16px;
    font-weight: 500;
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: clamp(60px, 7vw, 110px);
        line-height: 0.85;
        margin-bottom: 32px;
    }
}

.hero-accent-bar {
    height: 6px;
    width: 120px;
    background: var(--primary);
    box-shadow: var(--shadow-glow);
    margin-bottom: 30px;
}

.hero p {
    font-size: 16px;
    line-height: 1.4;
    color: var(--text-inverse);
    max-width: 500px;
    font-weight: 300;
    margin-bottom: 24px;
}

@media (min-width: 1024px) {
    .hero p {
        font-size: 22px;
        margin-bottom: 48px;
    }
}

.btn-luxury {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 24px;
    background: var(--emerald-luxury);
    color: var(--text-inverse);
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 2px;
}

@media (min-width: 1024px) {
    .btn-luxury {
        height: 64px;
        padding: 0 48px;
    }
}

.btn-luxury:hover {
    background: var(--emerald-dark);
    box-shadow: var(--shadow-emerald);
    transform: translateY(-3px);
}

.btn-outline {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(16, 41, 31, 0.28);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    box-shadow: var(--shadow-glow);
}

.teaser-section {
    max-width: 1440px;
    margin: -30px auto 0;
    position: relative;
    z-index: 20;
    padding: 0 16px 30px;
}

@media (min-width: 1024px) {
    .teaser-section {
        margin: -120px auto 0;
        padding: 0 48px 64px;
    }
}

.teaser-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .teaser-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

.teaser-card {
    height: 350px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.teaser-card.is-static {
    cursor: default;
}

@media (min-width: 1024px) {
    .teaser-card {
        height: 500px;
    }
}

.teaser-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: 0.7s;
    width: 100%;
    height: 100%;
}

.teaser-card:hover .teaser-img {
    transform: scale(1.1);
}

.teaser-card.is-static:hover .teaser-img {
    transform: none;
}

.teaser-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, black, transparent);
    opacity: 0.8;
    transition: 0.3s;
}

.teaser-card:hover .teaser-overlay {
    opacity: 0.6;
}

.teaser-card.is-static:hover .teaser-overlay {
    opacity: 0.8;
}

.teaser-content {
    position: absolute;
    bottom: 32px;
    left: 0;
    width: 100%;
    text-align: center;
}

.teaser-content h3 {
    font-size: 32px;
    font-style: normal;
    color: var(--text-main);
    margin-bottom: 8px;
    transition: 0.3s;
}

@media (min-width: 1024px) {
    .teaser-content h3 {
        font-size: 40px;
    }
}

.teaser-card:hover h3 {
    transform: translateY(-8px);
}

.teaser-card.is-static:hover h3 {
    transform: none;
}

.teaser-discover {
    color: var(--primary);
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0;
    transform: translateY(16px);
    transition: 0.3s;
    display: block;
}

.teaser-card:hover .teaser-discover {
    opacity: 1;
    transform: translateY(0);
}

.features-bar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 1024px;
    margin: 40px auto;
}

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

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(16, 41, 31, 0.24);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 12px;
    transition: 0.3s;
    box-shadow: var(--shadow-glow-sm);
}

.feature-item h4 {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--text-main);
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 12px;
    color: var(--text-muted);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
    margin-top: 60px;
    margin-bottom: 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 0;
}

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

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
        padding: 40px 0;
    }
}

.p-card {
    display: flex;
    flex-direction: column;
    padding: 12px;
    background: rgba(16, 41, 31, 0.03);
    border: 1px solid rgba(16, 41, 31, 0.09);
    border-radius: 4px;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.p-card:hover {
    background: rgba(16, 41, 31, 0.06);
    border-color: rgba(16, 41, 31, 0.24);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.p-img-box {
    position: relative;
    aspect-ratio: 1 / 1;
    margin-bottom: 12px;
    overflow: hidden;
    border-radius: 2px;
    background: var(--surface-elevated);
}

.p-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.7s;
}

.p-card:hover .p-img-box img {
    transform: scale(1.05);
}

.p-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.p-card:hover .p-overlay {
    opacity: 1;
}

.p-zoom-btn {
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(16, 41, 31, 0.28);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.p-zoom-btn .material-symbols-outlined {
    color: #fff;
}

.p-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.p-badge {
    font-family: var(--font-body);
    font-weight: bold;
    font-size: 9px;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.p-badge.sale {
    background: var(--primary);
    color: var(--text-inverse);
}

.p-badge.new {
    background: var(--surface-dark);
    color: var(--text-main);
}

.p-badge.new.has-sale {
    margin-top: 4px;
}

.p-badge.tag {
    background: var(--surface-dark);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.p-title-wrapper {
    height: 64px;
    overflow: hidden;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.p-title {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-main);
    line-height: 1.4;
    font-weight: 600;
}

.p-price {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: baseline;
    gap: 8px;
    font-size: 16px;
    color: var(--text-main);
    font-weight: 800;
    margin-bottom: 12px;
    min-height: 24px;
}

.p-price ins {
    text-decoration: none;
    color: var(--text-main);
}

.p-price del {
    font-size: 12px;
    color: var(--text-soft);
    margin-left: 6px;
    font-weight: 500;
    position: relative;
    padding-right: 18px;
    cursor: help;
}

.p-price del::after {
    content: "i";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-size: 10px;
    line-height: 14px;
    text-align: center;
    background: var(--surface-elevated);
}

.p-price del::before {
    content: "Doporučená MOC cena";
    position: absolute;
    right: 0;
    top: -34px;
    white-space: nowrap;
    background: var(--surface-elevated);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-size: 10px;
    padding: 6px 8px;
    border-radius: 2px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(4px);
    transition: 0.2s;
}

.p-price del:hover::before,
.p-price del.moc-active::before {
    opacity: 1;
    transform: translateY(0);
}

.p-footer {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.qty-box {
    display: flex;
    align-items: center;
    background: var(--surface-strong);
    border: 1px solid var(--border-color);
    border-radius: 2px;
}

.qty-btn {
    width: 30px;
    background: none;
    border: none;
    color: var(--text-soft);
    cursor: pointer;
    font-size: 16px;
    padding: 0;
}

.qty-input {
    width: 30px;
    background: none;
    border: none;
    color: var(--text-main);
    text-align: center;
    font-weight: 700;
    -moz-appearance: textfield;
    appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.btn-buy-card {
    flex: 1;
    background: var(--accent-gradient);
    color: var(--text-inverse);
    border: none;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 2px;
    height: 44px;
    padding: 0 16px;
}

.btn-buy-card .material-symbols-outlined {
    font-size: 18px !important;
}

.btn-buy-card:hover {
    background: var(--accent-gradient-hover);
    box-shadow: var(--shadow-emerald-sm);
}

.btn-buy-card.added {
    background: var(--primary-deep);
    box-shadow: var(--shadow-emerald-sm);
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 48px;
    }
}

.inspiration-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 1024px) {
    .inspiration-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
}

.inspiration-item {
    position: relative;
    height: 160px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inspiration-item.is-static {
    cursor: default;
}

@media (min-width: 1024px) {
    .inspiration-item {
        height: 256px;
    }
}

.inspiration-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: 0.7s;
}

.inspiration-item:hover img {
    opacity: 1;
    transform: scale(1.1);
}

.inspiration-item.is-static:hover img {
    opacity: 0.6;
    transform: none;
}

.inspiration-item h3 {
    position: relative;
    z-index: 10;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--text-main);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.footer-link-button {
    appearance: none;
    background: none;
    border: none;
    padding: 0;
    color: inherit;
    font: inherit;
    cursor: pointer;
}

.footer-link-button:hover {
    color: var(--primary);
}

.mag-header {
    text-align: center;
    margin-bottom: 40px;
}

.mag-header h2 {
    font-size: 32px;
}

@media (min-width: 1024px) {
    .mag-header h2 {
        font-size: 48px;
    }
}

.accent-line {
    height: 4px;
    width: 80px;
    background: var(--primary);
    margin: 20px auto;
}

.magazine-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .magazine-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

.magazine-card {
    background: var(--surface-elevated);
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
    height: 100%;
}

.magazine-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow-sm);
}

.mag-img-box {
    height: 200px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .mag-img-box {
        height: 250px;
    }
}

.mag-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: 0.7s;
}

.mag-content {
    padding: 25px;
    background: var(--surface-elevated);
    flex-grow: 1;
}

.mag-link {
    color: var(--primary);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
}

.newsletter-box {
    background: var(--surface-elevated);
    border-top: 1px solid var(--border-color);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.05;
    pointer-events: none;
}

.newsletter-inner {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-inner h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    flex-direction: column;
}

@media (min-width: 600px) {
    .newsletter-form {
        flex-direction: row;
    }
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 2px;
    color: var(--text-main);
}

.btn-newsletter {
    background: var(--emerald-luxury);
    color: var(--text-inverse);
    border: none;
    padding: 15px 30px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.btn-newsletter:hover {
    background: var(--emerald-dark);
    box-shadow: var(--shadow-emerald);
}

.newsletter-message {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-muted);
}

.newsletter-message.success {
    color: #9ee0c4;
}

.newsletter-message.error {
    color: var(--primary);
}

.newsletter-gdpr {
    margin-top: 12px;
    font-size: 12px;
    color: var(--text-muted);
}

.newsletter-gdpr a {
    color: var(--text-main);
    text-decoration: underline;
    text-underline-offset: 3px;
}

footer {
    background: var(--surface-dark);
    border-top: 1px solid var(--border-color);
    padding: 44px 20px 24px;
}

@media (min-width: 1024px) {
    footer {
        padding: 56px 48px 32px;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 1440px;
    margin: 0 auto 32px;
}

.footer-topbar {
    max-width: 1440px;
    margin: 0 auto 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-inline: 2px;
}

.footer-utility-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-utility-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.footer-utility-link .material-symbols-outlined {
    font-size: 19px;
    color: var(--primary);
    flex-shrink: 0;
}

.footer-utility-link:hover {
    color: var(--primary);
}

.footer-utility-link--static {
    color: var(--text-main);
}

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

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

    .footer-utility-links {
        flex-direction: row;
        align-items: center;
        gap: 12px 28px;
        justify-content: flex-end;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 36px;
    }
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-col h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-main);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
}

.footer-brand-icon {
    color: var(--primary);
    font-size: 32px;
}

.footer-brand-title {
    font-size: 24px;
    font-weight: 700;
    font-style: normal;
    margin: 0;
}

.footer-contact-card {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact-card h3 {
    margin: 0;
}

.footer-contact-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 2px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--surface-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.social-icon:hover {
    background: var(--primary);
    color: var(--text-inverse);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 22px;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 18px 24px;
}

.footer-guarantee-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-guarantee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
}

.footer-guarantee-item .material-symbols-outlined {
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
}

.footer-payments {
    display: flex;
    gap: 8px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.footer-payments span {
    min-width: 48px;
    height: 32px;
    background: #fff;
    border-radius: 8px;
    color: #333;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    letter-spacing: 0.02em;
}

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

    .footer-bottom-links {
        justify-content: flex-end;
    }
}

/* Hide unwanted WooCommerce 'View Cart' link after AJAX add */
.added_to_cart.wc-forward {
    display: none !important;
}

/* TOAST NOTIFICATION */
.vibrato-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--surface-elevated);
    border: 1px solid rgba(16, 41, 31, 0.17);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    border-radius: 4px;
    z-index: 100000;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 26px;
    transform: translateY(100px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.vibrato-toast.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.vibrato-toast.is-error {
    background: linear-gradient(135deg, #8f1f1f 0%, #6f1717 100%);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 48px rgba(95, 20, 20, 0.45);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.check-icon {
    color: var(--emerald-luxury);
    font-size: 24px !important;
}

.vibrato-toast.is-error .check-icon {
    color: #fff;
}

.vibrato-toast.is-error .toast-title {
    color: #fff;
}

.vibrato-toast.is-error .toast-subtitle {
    color: rgba(255, 255, 255, 0.88);
}

.vibrato-toast.is-error .toast-link {
    display: none;
}

.toast-message {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.toast-title {
    color: var(--text-main);
    font-weight: 700;
    font-size: 14px;
}

.toast-subtitle {
    color: var(--text-muted);
    font-size: 11px;
}

.toast-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--emerald-luxury);
    color: var(--text-inverse);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 10px 16px;
    border-radius: 2px;
    text-decoration: none;
    margin-left: auto;
    height: 36px;
}

.toast-link:hover {
    background: var(--emerald-dark);
}

.toast-btn {
    background: var(--emerald-luxury);
    color: var(--text-inverse);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 11px;
    padding: 10px 20px;
    border-radius: 2px;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-emerald-sm);
    transition: 0.3s;
    white-space: nowrap;
}

.toast-btn:hover {
    background: var(--emerald-dark);
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .vibrato-toast {
        bottom: 20px;
        right: 20px;
        left: 20px;
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .toast-content {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 10px;
    }

    .toast-btn {
        width: 100%;
        text-align: center;
    }
}

/* =========================================
   PRODUCT DETAIL PAGE - NEW DESIGN
   ========================================= */

.vibrato-product-detail {
    padding-top: 40px;
    padding-bottom: 100px;
}

/* 1. Header & Meta */
.product-collection-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--primary);
    margin-bottom: 12px;
}

.product-meta-top {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.rating-stars {
    color: #f1c40f;
    font-size: 14px;
    letter-spacing: 2px;
}

.rating-count {
    color: var(--text-muted);
    font-size: 12px;
    margin-left: 8px;
    letter-spacing: 0;
    font-family: var(--font-body);
}

.stock-status {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.stock-status .dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(47, 117, 89, 0.5);
}

/* 2. Gallery Badges */
.product-gallery-col {
    position: relative;
}

.product-badges-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.badge-sale {
    background: var(--primary);
    color: var(--text-inverse);
    padding: 4px 10px;
    font-weight: 800;
    font-size: 11px;
    border-radius: 2px;
}

.badge-tag {
    background: var(--surface-dark);
    color: var(--text-main);
    padding: 4px 10px;
    font-weight: 800;
    font-size: 11px;
    border-radius: 2px;
}

.wishlist-btn-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    width: 44px;
    height: 44px;
    background: rgba(16, 41, 31, 0.17);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    cursor: pointer;
    transition: 0.3s;
}

.wishlist-btn-overlay:hover {
    background: var(--surface-dark);
    color: var(--primary);
}

/* 3. Pricing Section */
.product-price-section {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.price-main {
    font-size: 48px;
    font-weight: 800;
    color: var(--emerald-luxury);
}

.price-main del {
    font-size: 24px;
    color: var(--text-soft);
    font-weight: 400;
    margin-left: 15px;
}

.price-main ins {
    text-decoration: none;
    color: var(--primary);
}

.save-badge {
    background: var(--surface-elevated);
    border: 1px solid var(--border-strong);
    color: var(--text-soft);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

/* 4. Variants */
.product-variants {
    margin-bottom: 40px;
}

.variant-group {
    margin-bottom: 24px;
}

.variant-group label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-main);
    margin-bottom: 12px;
    letter-spacing: 0.1em;
}

.variant-val {
    color: var(--text-muted);
    font-weight: 400;
    margin-left: 5px;
}

.swatches {
    display: flex;
    gap: 12px;
}

.swatch {
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.2s;
}

.swatch.circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.swatch.box {
    padding: 10px 24px;
    background: var(--surface-dark);
    border: 1px solid var(--border-strong);
    color: var(--text-main);
    font-size: 11px;
    font-weight: 700;
}

.swatch:hover {
    border-color: var(--primary);
}

.swatch.active {
    border-color: var(--primary);
    background: rgba(47, 117, 89, 0.12);
}

.swatch.circle.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px var(--primary);
}

/* 5. Buy Row */
.product-buy-row {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
}

.qty-selector {
    display: flex;
    border: 1px solid var(--border-strong);
    background: var(--surface-strong);
    border-radius: 2px;
}

.qty-selector button {
    width: 44px;
    height: 56px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
}

.qty-selector input {
    width: 50px;
    text-align: center;
    background: none;
    border: none;
    color: var(--text-main);
    font-weight: 700;
    font-size: 18px;
}

.btn-buy-large {
    flex: 1;
    background: var(--emerald-luxury);
    color: var(--text-inverse);
    border: none;
    height: 56px;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-buy-large:hover {
    background: var(--emerald-dark);
    box-shadow: var(--shadow-emerald);
    transform: translateY(-2px);
}

/* 6. Info Blocks */
.discreet-shipping-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(16, 41, 31, 0.04);
    border: 1px solid rgba(16, 41, 31, 0.09);
    border-radius: 4px;
    margin-bottom: 20px;
}

.discreet-shipping-box span {
    color: var(--primary);
    font-size: 28px !important;
}

.discreet-shipping-box strong {
    display: block;
    font-size: 12px;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.discreet-shipping-box span:not(.material-symbols-outlined) {
    font-size: 11px;
    color: var(--text-muted);
}

.free-shipping-info {
    font-size: 13px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.free-shipping-info span {
    color: var(--primary);
    font-size: 18px !important;
}

/* 7. Cross-sell */
.cross-sell-section {
    margin-top: 80px;
    padding: 40px;
    background: rgba(16, 41, 31, 0.03);
    border: 1px solid rgba(16, 41, 31, 0.06);
    border-radius: 4px;
}

.section-sub {
    font-size: 20px;
    color: var(--text-main);
    margin-bottom: 30px;
    font-style: normal;
}

.section-sub small {
    color: var(--text-muted);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
}

.cross-sell-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.cs-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(16, 41, 31, 0.04);
    border: 1px solid rgba(16, 41, 31, 0.09);
    position: relative;
}

.cs-img {
    width: 60px;
    height: 60px;
    background: var(--surface-elevated);
    border-radius: 2px;
}

.cs-info h4 {
    font-size: 13px;
    color: var(--text-main);
    margin-bottom: 4px;
}

.cs-info p {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.cs-info strong {
    font-size: 13px;
    color: var(--primary);
}

.cs-add {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 24px;
    height: 24px;
    background: var(--border-strong);
    border: none;
    color: var(--text-main);
    border-radius: 50%;
    cursor: pointer;
}

.cs-bundle-promo {
    padding: 20px;
    border: 1px dashed var(--text-soft);
    border-radius: 4px;
    text-align: center;
}

.cs-bundle-promo span {
    color: var(--primary);
    font-size: 32px !important;
    margin-bottom: 10px;
}

/* 8. Tech Specs Grid */
.tech-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    padding: 60px 0;
}

.tech-intro h3 {
    font-size: 32px;
    color: var(--text-main);
    margin-bottom: 20px;
    font-style: normal;
}

.tech-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.tech-list li {
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
}

.tech-list li .check {
    color: var(--primary);
    font-weight: bold;
}

.specs-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.spec-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: rgba(16, 41, 31, 0.04);
    border: 1px solid rgba(16, 41, 31, 0.09);
}

.spec-icon {
    width: 48px;
    height: 48px;
    background: var(--surface-elevated);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.spec-text strong {
    display: block;
    font-size: 12px;
    color: var(--text-main);
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.spec-text p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* 9. Tabs Styling */
.custom-tabs {
    display: flex;
    justify-content: center;
    gap: 60px;
    list-style: none;
    border-bottom: 1px solid var(--border-strong);
    margin-top: 80px;
}

.custom-tabs li {
    padding-bottom: 20px;
    font-size: 14px;
    font-weight: 800;
    color: var(--text-soft);
    cursor: pointer;
    letter-spacing: 0.15em;
    transition: 0.3s;
}

.custom-tabs li.active {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

.custom-tabs li:hover {
    color: var(--text-main);
}

@media (max-width: 1023px) {
    .hide-mobile {
        display: none;
    }
}

/* PDP ROBUST LAYOUT FIXES */
.vibrato-product-detail .pdp-main-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 40px !important;
}

@media (min-width: 1024px) {
    .vibrato-product-detail .pdp-main-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 80px !important;
    }
}

.pdp-gallery-col {
    width: 100% !important;
}

.pdp-summary-col {
    width: 100% !important;
}

.pdp-cross-sell {
    margin-top: 60px !important;
    width: 100% !important;
}

.cs-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 24px !important;
}

.pdp-tabs-wrapper {
    margin-top: 80px !important;
}

.specs-layout {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 40px !important;
}

@media (min-width: 1024px) {
    .specs-layout {
        grid-template-columns: 1fr 2fr !important;
    }
}

.pdp-related {
    margin-top: 80px !important;
}

.pdp-related .product-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px !important;
}

@media (max-width: 1024px) {
    .pdp-related .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .pdp-related .product-grid {
        grid-template-columns: 1fr !important;
    }
}

.vibrato-product-detail .woocommerce-tabs,
.vibrato-product-detail .related.products,
.vibrato-product-detail .upsells.products {
    display: none !important;
}

.header-left .custom-logo-link+.logo-icon,
.header-left .custom-logo-link+.logo-text,
.header-left .custom-logo-link~.logo-icon,
.header-left .custom-logo-link~.logo-text {
    display: none !important;
}

.header-logo {
    display: none !important;
}

/* 404 Page */
.error-404 {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 20px;
}

.error-title {
    font-size: 100px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 20px;
}

.error-subtitle {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 20px;
}

.error-text {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.error-search form {
    display: flex;
    gap: 10px;
}

.error-actions {
    margin-top: 40px;
}

/* Footer Contact Styles */
.footer-contact-item {
    list-style: none;
}

.footer-contact-item a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    color: var(--text-main);
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
    text-decoration: none;
    min-height: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    text-align: left;
}

.footer-contact-item a .material-symbols-outlined {
    font-size: 18px !important;
    color: var(--primary);
}

.footer-contact-item a:hover {
    color: var(--primary);
}

/* Standard Text Page Styles */
.page-standard__header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(16, 41, 31, 0.09);
}

.page-standard__title {
    font-size: 2.5rem;
    font-family: var(--font-display);
    color: var(--text-main);
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 2px 6px rgba(20, 35, 27, 0.12);
}

@media (min-width: 768px) {
    .page-standard__title {
        font-size: 3.5rem;
    }
}



/* Prose for text content */
.prose {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-main);
}

.prose p {
    margin-bottom: 1.5rem;
}

.prose h2 {
    font-size: 1.8rem;
    color: var(--text-main);
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-family: var(--font-display);
    border-bottom: 1px solid rgba(16, 41, 31, 0.09);
    padding-bottom: 10px;
}

.prose h3 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-family: var(--font-display);
}

.prose h4 {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.prose ul,
.prose ol {
    margin-bottom: 1.5rem;
    padding-left: 20px;
}

.prose li {
    margin-bottom: 0.5rem;
}

.prose a {
    color: var(--primary);
    text-decoration: underline;
    transition: 0.2s;
}

.prose a:hover {
    color: #ff3333;
    text-decoration: none;
}

.prose blockquote {
    margin: 2rem 0;
    padding-left: 1.5rem;
    border-left: 4px solid var(--primary);
    font-style: normal;
    color: var(--text-muted);
}

.prose img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 1.5rem 0;
}

/* Priority Nav */
.more-item {
    position: relative;
    cursor: pointer;
}

.more-item .mega-menu.simple-dropdown {
    width: 250px !important;
    left: auto !important;
    right: 0;
    padding: 15px !important;
    background: var(--surface-elevated);
    top: 100%;
    grid-template-columns: 1fr;
    display: block;
    height: auto;
    border-radius: 0 0 4px 4px;
}

.more-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.more-list .nav-item {
    display: block;
    height: auto;
    padding: 0;
}

.more-list .nav-link {
    font-size: 13px;
    padding: 10px 15px;
    color: var(--text-muted);
    justify-content: flex-start;
    /* Override center */
    width: 100%;
    text-transform: none;
    /* Make it cleaner */
    letter-spacing: 0.05em;
    font-weight: 500;
}

.more-list .nav-link:hover {
    color: var(--primary);
    background: rgba(16, 41, 31, 0.06);
}

.more-list .chevron {
    display: none;
    /* Hide chevrons in dropdown */
}

.more-list .mega-menu {
    display: none !important;
    /* Hide nested mega menus */
}
