/* ====== ESHOP STYLY - FITNESS RING ====== */

/* ============================== */
/* ========== MAIN NAV ========== */
/* ============================== */
.main-nav {
    gap: 4px;
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    font-family: 'Anton', sans-serif;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.08em;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    background: transparent;
    overflow: hidden;
    transition: color 0.3s ease;
    z-index: 1;
}

/* Animovany podklad - vyjizdi zespodu */
.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #e31e24;
    transform: translateY(101%);
    transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: -1;
}
.nav-link:hover::before {
    transform: translateY(0);
}

/* Aktivni polozka (napr. Shop) */
.nav-link.is-active {
    background: #e31e24;
    color: #fff;
}
.nav-link.is-active::before {
    transform: translateY(0);
    background: #e31e24;
}

/* GYM button - jiny odstin cervene + sipka */
.nav-link--gym {
    background: #ba0013;
    color: #fff;
    margin-left: 8px;
}
.nav-link--gym::before {
    background: #1a1c1d;
}
.nav-link--gym:hover {
    color: #fff;
}
.nav-link--gym .nav-link-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
    display: inline-flex;
}
.nav-link--gym:hover .nav-link-icon {
    transform: translate(3px, -3px);
}

/* ============================== */
/* ====== CURRENCY SWITCH ======= */
/* ============================== */
.currency-switch {
    display: inline-flex;
    background: rgba(0, 0, 0, 0.35);
}
.currency-btn {
    padding: 6px 12px;
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.6);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.currency-btn:hover { color: #fff; }
.currency-btn.is-active {
    background: #e31e24;
    color: #fff;
}

/* ============================== */
/* ======== FILTER LIST ========= */
/* ============================== */
.filter-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

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

.filter-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 6px;
    cursor: pointer;
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #1a1c1d;
    transition: color 0.15s;
    -webkit-user-select: none;
    user-select: none;
}
.filter-label:hover {
    color: #e31e24;
}

.filter-checkbox {
    width: 18px;
    height: 18px;
    accent-color: #e31e24;
    cursor: pointer;
    flex-shrink: 0;
}

.filter-name {
    flex: 1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.filter-chevron {
    font-size: 20px;
    color: #5d3f3c;
    transition: transform 0.3s ease;
}

.filter-item--has-sub .filter-label:has(.filter-checkbox:checked) .filter-chevron {
    transform: rotate(180deg);
    color: #e31e24;
}

.filter-sub {
    list-style: none;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding-left: 28px;
}
.filter-item--has-sub:has(.filter-checkbox.filter-category:checked) .filter-sub {
    max-height: 400px;
}

.filter-sub-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 4px;
    cursor: pointer;
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #5d3f3c;
    transition: color 0.15s;
    position: relative;
}
.filter-sub-label::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 50%;
    width: 8px;
    height: 1px;
    background: rgba(0, 0, 0, 0.15);
}
.filter-sub-label:hover {
    color: #e31e24;
}
.filter-sub-label .filter-checkbox {
    width: 14px;
    height: 14px;
}

/* ============================== */
/* ====== PRICE SLIDER ========== */
/* ============================== */
.price-slider-wrap {
    position: relative;
    height: 34px;
    margin: 16px 0 12px;
}
.price-slider-track {
    position: absolute;
    inset: 14px 0 14px 0;
    background: #e5e5e5;
}
.price-slider-range {
    position: absolute;
    height: 100%;
    background: #e31e24;
}
.price-slider-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 34px;
    background: transparent;
    -webkit-appearance: none;
    appearance: none;
    pointer-events: none;
}
.price-slider-input::-webkit-slider-runnable-track {
    background: transparent;
    height: 34px;
}
.price-slider-input::-moz-range-track {
    background: transparent;
    height: 34px;
}
.price-slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #1a1c1d;
    border: 2px solid #fff;
    border-radius: 0;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    transition: transform 0.15s, background 0.15s;
    margin-top: 8px;
}
.price-slider-input::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #1a1c1d;
    border: 2px solid #fff;
    border-radius: 0;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.price-slider-input::-webkit-slider-thumb:hover,
.price-slider-input::-webkit-slider-thumb:active {
    background: #e31e24;
    transform: scale(1.15);
}
.price-slider-input::-moz-range-thumb:hover {
    background: #e31e24;
}

.price-slider-values {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #1a1c1d;
}
.price-slider-label {
    display: block;
    font-size: 10px;
    letter-spacing: 0.2em;
    color: #5d3f3c;
    margin-bottom: 2px;
}

.filter-reset-btn {
    width: 100%;
    padding: 12px;
    background: #1a1c1d;
    color: #fff;
    border: none;
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.filter-reset-btn:hover {
    background: #e31e24;
    transform: translate(3px, 3px);
    box-shadow: -3px -3px 0 #1a1c1d;
}

.filter-reset-mini {
    width: 28px;
    height: 28px;
    background: #f3f3f4;
    border: none;
    color: #1a1c1d;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, color 0.15s, transform 0.3s;
}
.filter-reset-mini:hover {
    background: #e31e24;
    color: #fff;
    transform: rotate(-180deg);
}

/* ============================== */
/* ========== SEARCH BAR ======== */
/* ============================== */
.search-wrap { position: relative; }

.search-clear {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    color: #1a1c1d;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.15s, transform 0.15s;
}
.search-clear:hover {
    color: #e31e24;
    transform: translateY(-50%) rotate(90deg);
}
.search-clear .material-symbols-outlined {
    font-size: 18px;
}

.product-card.search-highlight {
    box-shadow: 0 0 0 2px #e31e24;
}

/* ============================== */
/* ====== SECTION HEAD EDIT ===== */
/* ============================== */
.section-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 56px;
    position: relative;
}
@media (min-width: 768px) {
    .section-head {
        grid-template-columns: 1.4fr 1fr;
        gap: 48px;
        align-items: end;
    }
}

.section-head-main {
    position: relative;
}

.section-head-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.section-head-num {
    font-family: 'Anton', sans-serif;
    font-size: 18px;
    color: #e31e24;
    letter-spacing: 0.1em;
}

.section-head-divider {
    flex-shrink: 0;
    height: 1px;
    width: 36px;
    background: #1a1c1d;
}

.section-head-tag {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #1a1c1d;
}

.section-head-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(3.5rem, 9vw, 6.5rem);
    line-height: 0.9;
    text-transform: uppercase;
    color: #1a1c1d;
    letter-spacing: -0.01em;
}
.section-head-title em {
    font-style: normal;
    color: #e31e24;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 2px #e31e24;
}

.section-head-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 6px;
}

.section-head-desc {
    font-size: 0.95rem;
    line-height: 1.55;
    color: #5d3f3c;
    max-width: 380px;
}

/* ============================== */
/* ====== STATS SECTION ========= */
/* ============================== */
.stats-section {
    position: relative;
    background: #f3f3f4;
    padding: 100px 16px;
    overflow: hidden;
}
@media (min-width: 768px) {
    .stats-section { padding: 120px 40px; }
}

.stats-bg-text {
    position: absolute;
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
    font-family: 'Anton', sans-serif;
    font-size: clamp(14rem, 28vw, 28rem);
    color: rgba(26, 28, 29, 0.05);
    line-height: 0.85;
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
    letter-spacing: -0.02em;
    z-index: 0;
}

.stats-container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
}

.stats-head {
    margin-bottom: 56px;
    max-width: 720px;
}

.stats-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #5d3f3c;
    margin-bottom: 18px;
}
.stats-eyebrow-line {
    width: 48px;
    height: 1px;
    background: #e31e24;
}

.stats-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 0.95;
    text-transform: uppercase;
    color: #1a1c1d;
}
.stats-title-accent {
    color: #e31e24;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: 1.6fr 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 24px;
    }
    .stat-card--dark {
        grid-column: span 2;
    }
}

.stat-card {
    background: #fff;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}
.stat-card::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: #e31e24;
    transition: width 0.4s ease;
}
.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}
.stat-card:hover::after {
    width: 100%;
}

.stat-card--feature {
    grid-row: span 2;
    background: #fff;
    padding: 40px;
}
@media (max-width: 767px) {
    .stat-card--feature { grid-row: auto; }
}

.stat-card--dark {
    background: #1a1c1d;
    color: #fff;
}
.stat-card--dark .stat-card-label { color: rgba(255, 255, 255, 0.85); }
.stat-card--dark .stat-card-foot { color: rgba(255, 255, 255, 0.5); }

.stat-card-num {
    font-family: 'Anton', sans-serif;
    font-size: clamp(4rem, 7vw, 6rem);
    line-height: 0.9;
    color: #e31e24;
    letter-spacing: -0.02em;
}
.stat-card--feature .stat-card-num {
    font-size: clamp(7rem, 12vw, 11rem);
}
.stat-card-unit {
    font-size: 0.5em;
    vertical-align: super;
}

.stat-card-label {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #1a1c1d;
    line-height: 1.4;
}

.stat-card-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.stat-card-text {
    font-size: 0.95rem;
    line-height: 1.55;
    color: #5d3f3c;
}

.stat-card-foot {
    margin-top: 8px;
    font-family: 'Lexend', sans-serif;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #5d3f3c;
}

/* ============================== */
/* ====== LOYALTY CTA =========== */
/* ============================== */
.loyalty-cta {
    position: relative;
    background-image: linear-gradient(135deg, rgba(26,28,29,0.90) 0%, rgba(47,49,50,0.84) 55%, rgba(186,0,19,0.78) 100%), url('../img/eshop/hero-razitka.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 16px;
    overflow: hidden;
}
@media (min-width: 768px) {
    .loyalty-cta { padding: 120px 40px; }
}

.loyalty-stamps {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 24px;
    padding: 60px;
    opacity: 0.12;
    pointer-events: none;
}
.loyalty-stamps span {
    width: 90px;
    height: 90px;
    border: 3px solid #fff;
    border-radius: 50%;
    justify-self: center;
    align-self: center;
    position: relative;
}
.loyalty-stamps span:not(.is-empty)::before {
    content: '✓';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Anton', sans-serif;
    font-size: 40px;
    color: #fff;
}
.loyalty-stamps .is-empty {
    border-style: dashed;
    border-color: #fff;
    opacity: 0.5;
}

.loyalty-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.loyalty-eyebrow {
    display: inline-block;
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.3);
}

.loyalty-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.95;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.loyalty-title-accent {
    color: #e31e24;
    display: inline-block;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 2px #e31e24;
}

.loyalty-desc {
    font-size: 1.1rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}
.loyalty-desc strong {
    color: #fff;
}

.loyalty-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #e31e24;
    color: #fff;
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.loyalty-btn:hover {
    transform: translate(4px, 4px);
    box-shadow: -4px -4px 0 #fff;
}
.loyalty-btn .material-symbols-outlined {
    transition: transform 0.3s ease;
}
.loyalty-btn:hover .material-symbols-outlined {
    transform: translateX(4px);
}

/* ============================== */
/* ====== SCROLL REVEAL ========= */
/* ============================== */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    [data-reveal] { opacity: 1; transform: none; }
}

/* ============================== */
/* ====== STOCK + PRODUCT LINK == */
/* ============================== */
.stock-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: #00875a;
    text-transform: uppercase;
}
.stock-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #00c170;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0;
}
.stock-dot::before {
    content: '✓';
}
.stock-indicator--out {
    color: #e31e24; /* Červená barva pro "Není skladem" */
    font-weight: 600;
}

/* Zešednutí tlačítka u nedostupného produktu na hlavní stránce */
.product-card[data-disabled="true"] .btn-primary {
    background-color: #a0a0a0;
    cursor: not-allowed;
    box-shadow: none;
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    transition: color 0.2s ease;
}
.product-link:hover,
.product-link:hover h4 {
    color: #e31e24;
}

/* ============================== */
/* ====== PRODUCT VISIBILITY ==== */
/* ============================== */
.product-card.is-hidden {
    display: none !important;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    margin-top: 24px;
}
.no-results .material-symbols-outlined {
    font-size: 64px;
    color: #e31e24;
    margin-bottom: 12px;
}
.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}
.no-results p {
    color: #5d3f3c;
    margin-bottom: 20px;
}

/* ============================== */
/* ======= LOADING SCREEN ======= */
/* ============================== */
.loading-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loading-screen.is-done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

body.is-loading {
    overflow: hidden;
}

.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.loading-logo-img {
    width: clamp(120px, 18vw, 180px);
    height: auto;
    display: block;
    animation: logoBreathe 2.4s ease-in-out infinite;
}

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

/* === HEADER LOGO === */
.header-logo-img {
    height: 56px;
    width: auto;
    display: block;
    transition: transform 0.2s ease;
}
.header-logo:hover .header-logo-img {
    transform: scale(1.05);
}
@media (max-width: 640px) {
    .header-logo-img { height: 44px; }
}

.loading-dots {
    display: flex;
    gap: 8px;
}

.loading-dots span {
    width: 8px;
    height: 8px;
    background: #e31e24;
    border-radius: 50%;
    animation: dotBounce 1.2s ease-in-out infinite;
}

.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotBounce {
    0%, 80%, 100% { transform: scale(0.5); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}



/* ====== LOKALNI FONTY ====== */
/* Anton - headlines */
@font-face {
    font-family: 'Anton';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/Anton-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Anton';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/Anton-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Lexend - body (variable font, kryje vahy 400-700) */
@font-face {
    font-family: 'Lexend';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('../fonts/Lexend-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Lexend';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('../fonts/Lexend-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Material Symbols Outlined - ikony */
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Lexend', sans-serif; }

/* === BORDERS & BUTTONS === */
.border-iron, .border-iron-thin { border: none; }

.btn-primary {
    background: #e31e24;
    color: #fff;
    text-transform: uppercase;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.05em;
}
.btn-primary:hover {
    transform: translate(4px, 4px);
    box-shadow: -4px -4px 0 #1a1c1d;
}

.card-iron {
    background: #fff;
    border: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.card-iron:hover {
    border: none;
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.input-iron {
    border: none;
    border-radius: 0;
    background: #f3f3f4;
    transition: background 0.2s, box-shadow 0.2s;
}
.input-iron:focus {
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 2px rgba(227, 30, 36, 0.25);
}

.badge-new, .badge-low {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 10;
    padding: 4px 10px;
    font-family: 'Lexend';
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.1em;
    background: #1a1c1d;
    color: #fff;
}
.badge-low { background: #e31e24; }

/* ============================== */
/* ======== HERO CAROUSEL ======== */
/* ============================== */
.hero-carousel {
    height: 560px;
    position: relative;
    background: #1a1c1d;
}
@media (max-width: 768px) {
    /* Carousel = přesně výška fotky (4:3 na plnou šířku) → žádné šedé pruhy nad ani pod fotkou */
    .hero-carousel { height: 75vw; }
    .carousel-slide {
        background-size: cover !important;
        background-position: center !important;
    }
}

.carousel-track {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
}

.slide-content {
    position: relative;
    z-index: 5;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}
@media (min-width: 768px) {
    .slide-content { padding: 0 40px; }
}

.carousel-slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-eyebrow {
    display: inline-block;
    font-family: 'Lexend';
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    padding: 6px 14px;
    margin-bottom: 24px;
    background: rgba(0,0,0,0.3);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.slide-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.4);
    max-width: 750px;
}

.slide-desc {
    font-size: 1.1rem;
    line-height: 1.5;
    max-width: 520px;
    margin-bottom: 28px;
    opacity: 0.95;
}

.slide-price {
    font-family: 'Anton';
    font-size: 2.5rem;
    color: #fff;
}

.slide-badge {
    font-family: 'Lexend';
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    letter-spacing: 0.15em;
}

.slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #fff;
    color: #1a1c1d;
    font-family: 'Lexend';
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
    border: none;
}
.slide-cta:hover {
    transform: translate(4px, 4px);
    box-shadow: -4px -4px 0 #e31e24;
    background: #e31e24;
    color: #fff;
}

.slide-bg-text {
    position: absolute;
    right: -20px;
    bottom: -60px;
    font-family: 'Anton';
    font-size: clamp(10rem, 25vw, 22rem);
    color: rgba(255,255,255,0.06);
    line-height: 0.85;
    pointer-events: none;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
    letter-spacing: -0.02em;
    transform: translateY(0);
    transition: transform 1.2s ease;
}

.carousel-slide.active .slide-bg-text {
    transform: translateY(-10px);
}

/* === ARROWS === */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(0,0,0,0.5);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: background 0.2s, transform 0.2s;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}
.carousel-arrow:hover {
    background: #e31e24;
    transform: translateY(-50%) scale(1.08);
}
.carousel-arrow-prev { left: 20px; }
.carousel-arrow-next { right: 20px; }

@media (max-width: 768px) {
    .carousel-arrow { width: 44px; height: 44px; }
    .carousel-arrow-prev { left: 8px; }
    .carousel-arrow-next { right: 8px; }
}

/* === INDIKATORY === */
.carousel-indicators {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 20;
}
.indicator {
    width: 36px;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: background 0.3s, width 0.3s;
}
.indicator.active {
    background: #e31e24;
    width: 56px;
}
.indicator:hover { background: rgba(255,255,255,0.6); }

/* === PROGRESS BAR === */
.carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.1);
    z-index: 15;
}
.carousel-progress-bar {
    height: 100%;
    background: #e31e24;
    width: 0%;
    transition: width 0.1s linear;
}

/* ============================== */
/* ====== TICKER / MARQUEE ====== */
/* ============================== */
.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker 40s linear infinite;
}
.ticker-content {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-right: 32px;
    font-family: 'Anton';
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    white-space: nowrap;
}
.ticker-content .dot {
    color: #e31e24;
    font-size: 1.8rem;
    line-height: 1;
}
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.ticker-track:hover { animation-play-state: paused; }

/* ============================== */
/* ======= REVEAL ANIMACE ======= */
/* ============================== */
.card-iron {
    opacity: 0;
    transform: translateY(20px);
    animation: cardReveal 0.6s ease forwards;
}
.card-iron:nth-child(1) { animation-delay: 0.05s; }
.card-iron:nth-child(2) { animation-delay: 0.15s; }
.card-iron:nth-child(3) { animation-delay: 0.25s; }
.card-iron:nth-child(4) { animation-delay: 0.35s; }
.card-iron:nth-child(5) { animation-delay: 0.45s; }
.card-iron:nth-child(6) { animation-delay: 0.55s; }
.card-iron:nth-child(7) { animation-delay: 0.65s; }
.card-iron:nth-child(8) { animation-delay: 0.75s; }
.card-iron:nth-child(9) { animation-delay: 0.85s; }

@keyframes cardReveal {
    to { opacity: 1; transform: translateY(0); }
}

/* ============================== */
/* PRODUKTOVÝ DETAIL + KOŠÍK      */
/* ============================== */
.cart-toast{position:fixed;left:50%;bottom:28px;transform:translate(-50%,160%);z-index:200;display:flex;align-items:center;gap:10px;background:#1a1c1d;color:#fff;font-family:'Lexend',sans-serif;font-weight:700;font-size:14px;padding:14px 22px;box-shadow:0 12px 32px rgba(0,0,0,.28);transition:transform .35s cubic-bezier(.22,1,.36,1);max-width:90vw;}
.cart-toast.is-visible{transform:translate(-50%,0);}
.cart-toast .material-symbols-outlined{color:#19c37d;font-size:20px;}

.pd-wrap{max-width:1280px;margin:0 auto;padding:32px 16px 80px;}
@media(min-width:768px){.pd-wrap{padding:48px 40px 100px;}}
.pd-breadcrumb{display:flex;align-items:center;gap:8px;font-family:'Lexend',sans-serif;font-weight:700;font-size:12px;letter-spacing:.12em;text-transform:uppercase;color:#5d3f3c;margin-bottom:28px;flex-wrap:wrap;}
.pd-breadcrumb a{color:#5d3f3c;text-decoration:none;transition:color .2s;}
.pd-breadcrumb a:hover{color:#e31e24;}
.pd-grid{display:grid;grid-template-columns:1fr;gap:40px;}
@media(min-width:900px){.pd-grid{grid-template-columns:1fr 1fr;gap:64px;align-items:start;}}

.pd-gallery{display:flex;flex-direction:column;gap:14px;}
.pd-main{position:relative;aspect-ratio:1/1;display:flex;flex-direction:column;align-items:center;justify-content:center;overflow:hidden;transition:background .4s ease;}
.pd-main-word{font-family:'Anton',sans-serif;color:#fff;font-size:clamp(3rem,9vw,6rem);line-height:.9;letter-spacing:.02em;text-shadow:2px 2px 12px rgba(0,0,0,.4);}
.pd-main-flavor{font-family:'Lexend',sans-serif;font-weight:700;color:rgba(255,255,255,.92);font-size:12px;letter-spacing:.22em;text-transform:uppercase;margin-top:14px;text-align:center;padding:0 16px;text-shadow:1px 1px 4px rgba(0,0,0,.5);}
.pd-main-cap{position:absolute;bottom:14px;left:16px;font-family:'Lexend',sans-serif;font-weight:700;font-size:11px;letter-spacing:.14em;text-transform:uppercase;color:rgba(255,255,255,.6);}
.pd-thumbs{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;}
.pd-thumb{aspect-ratio:1/1;border:none;cursor:pointer;position:relative;opacity:.6;transition:opacity .2s,transform .2s;outline:2px solid transparent;outline-offset:2px;display:flex;align-items:center;justify-content:center;}
.pd-thumb:hover{opacity:1;transform:translateY(-2px);}
.pd-thumb.is-active{opacity:1;outline-color:#e31e24;}
.pd-thumb .material-symbols-outlined{color:rgba(255,255,255,.85);font-size:26px;}

.pd-info{display:flex;flex-direction:column;}
.pd-eyebrow{font-family:'Lexend',sans-serif;font-weight:700;font-size:12px;letter-spacing:.22em;text-transform:uppercase;color:#e31e24;margin-bottom:10px;}
.pd-title{font-family:'Anton',sans-serif;font-size:clamp(2rem,4.5vw,3.2rem);line-height:1.02;text-transform:uppercase;color:#1a1c1d;}
.pd-sub{font-family:'Lexend',sans-serif;color:#5d3f3c;margin-top:12px;font-size:15px;line-height:1.6;}
.pd-pricebar{display:flex;align-items:baseline;gap:14px;margin:24px 0 6px;flex-wrap:wrap;}
.pd-price{font-family:'Anton',sans-serif;font-size:2.4rem;color:#1a1c1d;line-height:1;}
.pd-pack{font-family:'Lexend',sans-serif;font-weight:700;font-size:12px;letter-spacing:.1em;text-transform:uppercase;background:#eeeeef;color:#5d3f3c;padding:5px 10px;}
.pd-vat{font-family:'Lexend',sans-serif;font-size:12px;color:#926f6b;margin-bottom:18px;}
.pd-stock{display:flex;align-items:center;gap:8px;font-family:'Lexend',sans-serif;font-weight:700;font-size:12px;letter-spacing:.18em;text-transform:uppercase;color:#00875a;margin-bottom:22px;}
.pd-stock .stock-dot{display:inline-flex;align-items:center;justify-content:center;color:#00c170;font-size:13px;line-height:1;}
.pd-stock .stock-dot::before{content:'✓';}

.pd-stock--out {
    color: #e31e24; /* Červená barva pro text "Není skladem" */
}
.pd-add:disabled {
    background-color: #a0a0a0; /* Šedé pozadí pro neaktivní tlačítko */
    cursor: not-allowed;
}
.pd-buy{display:flex;gap:12px;flex-wrap:wrap;align-items:stretch;}
.pd-qty{display:flex;align-items:center;background:#f3f3f4;}
.pd-qty button{width:46px;min-height:52px;border:none;background:transparent;font-size:22px;font-weight:700;cursor:pointer;color:#1a1c1d;transition:background .2s;}
.pd-qty button:hover{background:#e6e6e7;}
.pd-qty input{width:48px;text-align:center;border:none;background:transparent;font-family:'Lexend',sans-serif;font-weight:700;font-size:16px;-moz-appearance:textfield;appearance:textfield;}
.pd-qty input::-webkit-outer-spin-button,.pd-qty input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0;}
.pd-add{flex:1;min-width:200px;min-height:52px;display:flex;align-items:center;justify-content:center;gap:10px;font-family:'Lexend',sans-serif;font-weight:700;font-size:14px;padding:0 24px;cursor:pointer;}

.pd-trust{display:flex;flex-wrap:wrap;gap:18px;margin-top:24px;padding-top:24px;border-top:1px solid #eeeeef;}
.pd-trust span{display:flex;align-items:center;gap:7px;font-family:'Lexend',sans-serif;font-size:12px;font-weight:600;color:#5d3f3c;}
.pd-trust .material-symbols-outlined{font-size:18px;color:#e31e24;}

.pd-trust span img {
    /* Změní barvu černého PNG na červenou (#e31e24) */
    filter: invert(19%) sepia(89%) saturate(5518%) hue-rotate(349deg) brightness(90%) contrast(115%);
    transition: transform 0.2s;
}
.pd-trust span:hover img { transform: scale(1.1); }
.pd-sections{max-width:1280px;margin:0 auto;}
.pd-section{margin-top:34px;}
.pd-section h2{font-family:'Anton',sans-serif;font-size:1.4rem;text-transform:uppercase;color:#1a1c1d;margin-bottom:12px;letter-spacing:.01em;}
.pd-section p{font-family:'Lexend',sans-serif;color:#3a3c3d;font-size:14.5px;line-height:1.7;margin-bottom:10px;}
.pd-section ul{list-style:none;display:flex;flex-direction:column;gap:9px;}
.pd-section ul li{display:flex;gap:10px;align-items:flex-start;font-family:'Lexend',sans-serif;color:#3a3c3d;font-size:14.5px;line-height:1.6;}
.pd-section ul li .material-symbols-outlined{color:#e31e24;font-size:18px;flex-shrink:0;margin-top:2px;}
.pd-note{background:#f9f9fa;border-left:3px solid #926f6b;padding:14px 18px;font-family:'Lexend',sans-serif;font-size:12.5px;color:#5d3f3c;line-height:1.65;}

.pd-pillars{display:grid;grid-template-columns:1fr;gap:16px;margin-top:6px;}
@media(min-width:640px){.pd-pillars{grid-template-columns:1fr 1fr;}}
.pd-pillar{background:#fff;box-shadow:0 1px 3px rgba(0,0,0,.06),0 1px 2px rgba(0,0,0,.04);padding:22px;}
.pd-pillar-ico{color:#e31e24;font-size:26px;}
.pd-pillar h3{font-family:'Anton',sans-serif;font-size:1.05rem;text-transform:uppercase;margin:8px 0;color:#1a1c1d;}
.pd-pillar ul{list-style:none;display:flex;flex-direction:column;gap:6px;}
.pd-pillar li{font-family:'Lexend',sans-serif;font-size:13px;color:#5d3f3c;line-height:1.5;padding-left:14px;position:relative;}
.pd-pillar li::before{content:'';position:absolute;left:0;top:8px;width:5px;height:5px;background:#e31e24;}

/* ---- proklik celé karty na detail ---- */
.product-card{cursor:pointer;}

/* ---- VÝSUVNÝ KOŠÍK ---- */
.cart-overlay{position:fixed;inset:0;background:rgba(0,0,0,.5);opacity:0;visibility:hidden;transition:opacity .3s;z-index:150;}
.cart-overlay.is-open{opacity:1;visibility:visible;}
.cart-drawer{position:fixed;top:0;right:0;height:100%;width:390px;max-width:90vw;background:#fff;z-index:160;display:flex;flex-direction:column;transform:translateX(100%);transition:transform .35s cubic-bezier(.22,1,.36,1);box-shadow:-12px 0 40px rgba(0,0,0,.18);}
.cart-drawer.is-open{transform:translateX(0);}
.cart-drawer-head{display:flex;align-items:center;justify-content:space-between;padding:20px 22px;background:#1a1c1d;color:#fff;flex-shrink:0;}
.cart-drawer-head h3{font-family:'Anton',sans-serif;font-size:1.4rem;text-transform:uppercase;letter-spacing:.02em;}
.cart-drawer-close{background:none;border:none;color:#fff;cursor:pointer;display:flex;transition:color .2s;}
.cart-drawer-close:hover{color:#e31e24;}
.cart-drawer-body{flex:1;overflow-y:auto;padding:4px 22px;}
.cart-empty{display:flex;flex-direction:column;align-items:center;gap:10px;color:#926f6b;padding:64px 0;font-family:'Lexend',sans-serif;font-size:14px;}
.cart-empty .material-symbols-outlined{font-size:42px;opacity:.45;}
.cart-line{display:grid;grid-template-columns:1fr auto;grid-template-areas:"main remove" "qty sum";gap:8px 12px;padding:16px 0;border-bottom:1px solid #eeeeef;align-items:center;}
.cart-line-main{grid-area:main;display:flex;flex-direction:column;gap:3px;}
.cart-line-name{font-family:'Lexend',sans-serif;font-weight:700;font-size:13.5px;color:#1a1c1d;line-height:1.3;}
.cart-line-unit{font-family:'Lexend',sans-serif;font-size:11px;color:#926f6b;}
.cart-line-qty{grid-area:qty;display:inline-flex;align-items:center;background:#f3f3f4;width:fit-content;}
.cart-line-qty button{width:30px;height:30px;border:none;background:transparent;cursor:pointer;font-size:16px;font-weight:700;color:#1a1c1d;transition:background .2s;}
.cart-line-qty button:hover{background:#e6e6e7;}
.cart-line-qty span{min-width:30px;text-align:center;font-family:'Lexend',sans-serif;font-weight:700;font-size:13px;}
.cart-line-sum{grid-area:sum;justify-self:end;font-family:'Anton',sans-serif;font-size:1.05rem;color:#1a1c1d;}
.cart-line-remove{grid-area:remove;justify-self:end;background:none;border:none;cursor:pointer;color:#b8a3a0;display:flex;transition:color .2s;}
.cart-line-remove:hover{color:#e31e24;}
.cart-drawer-foot{padding:20px 22px;border-top:1px solid #eeeeef;display:flex;flex-direction:column;gap:14px;flex-shrink:0;}
.cart-drawer-total{display:flex;justify-content:space-between;align-items:baseline;font-family:'Lexend',sans-serif;font-weight:700;text-transform:uppercase;font-size:13px;letter-spacing:.1em;color:#5d3f3c;}
.cart-total-val{font-family:'Anton',sans-serif;font-size:1.7rem;color:#1a1c1d;}
.cart-checkout{min-height:52px;display:flex;align-items:center;justify-content:center;gap:8px;font-family:'Lexend',sans-serif;font-weight:700;font-size:14px;cursor:pointer;}
.cart-checkout:disabled{opacity:.4;cursor:not-allowed;}
body.cart-open{overflow:hidden;}


/* ============================== */
/* === CART / CHECKOUT / SHOP === */
/* ============================== */

/* Empty cart */
.empty-cart {
    text-align: center;
    padding: 80px 20px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.empty-cart-icon {
    font-size: 80px !important;
    color: #e31e24;
    margin-bottom: 20px;
    opacity: 0.6;
}

/* Cart items */
.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto auto auto;
    gap: 16px;
    align-items: center;
    padding: 20px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s;
}
.cart-item:hover {
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
.cart-item-photo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a1c1d, #e31e24);
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-item-photo .material-symbols-outlined {
    color: rgba(255,255,255,0.7);
    font-size: 36px;
}
.cart-item-info { min-width: 0; }
.cart-item-qty {
    display: inline-flex;
    align-items: center;
    background: #f3f3f4;
}
.qty-btn {
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    color: #1a1c1d;
    transition: background 0.15s;
}
.qty-btn:hover { background: #e31e24; color: #fff; }
.qty-input {
    width: 50px;
    height: 36px;
    border: none;
    background: transparent;
    text-align: center;
    font-family: 'Lexend';
    font-weight: 700;
    font-size: 14px;
    -moz-appearance: textfield;
}
.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.cart-item-subtotal { text-align: right; min-width: 100px; }
.cart-item-remove {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #5d3f3c;
    transition: color 0.15s, transform 0.15s;
}
.cart-item-remove:hover { color: #e31e24; transform: rotate(90deg); }

@media (max-width: 640px) {
    .cart-item {
        grid-template-columns: 60px 1fr auto;
        grid-template-areas:
            'photo info remove'
            'photo info remove'
            'qty qty subtotal';
        gap: 8px 14px;
    }
    .cart-item-photo { grid-area: photo; width: 60px; height: 60px; }
    .cart-item-info { grid-area: info; }
    .cart-item-qty { grid-area: qty; }
    .cart-item-subtotal { grid-area: subtotal; }
    .cart-item-remove { grid-area: remove; align-self: start; }
}

/* Cart summary */
.cart-summary {
    background: #fff;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    position: sticky;
    top: 100px;
    align-self: start;
}
.cart-summary--sticky {
    position: sticky;
    top: 100px;
}
.cart-trust {
    list-style: none;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cart-trust li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #5d3f3c;
}
.cart-trust li .material-symbols-outlined {
    font-size: 18px;
    color: #00875a;
}

/* Checkout */
.checkout-section { background: #f3f3f4; }
.checkout-fieldset {
    background: #fff;
    padding: 24px;
    border: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.checkout-legend {
    font-family: 'Anton';
    font-size: 1.4rem;
    text-transform: uppercase;
    color: #1a1c1d;
    margin-bottom: 16px;
    padding: 0;
    letter-spacing: 0.02em;
}
.checkout-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.checkout-field > span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #5d3f3c;
}
.checkout-field input,
.checkout-field textarea {
    padding: 12px 14px;
    border: none;
    background: #f3f3f4;
    font-family: 'Lexend';
    font-size: 14px;
    transition: background 0.15s, box-shadow 0.15s;
}
.checkout-field input:focus,
.checkout-field textarea:focus {
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 2px rgba(227, 30, 36, 0.3);
}
.checkout-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.checkout-option {
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 14px 18px;
    background: #f3f3f4;
    cursor: pointer;
    transition: background 0.15s, box-shadow 0.15s;
}
.checkout-option-logo {
    height: 26px; width: auto; max-width: 64px; object-fit: contain;
    display: block;
}
.checkout-option-icon { font-size: 26px; color: #1a1c1d; }
.checkout-option:hover { background: #ebebec; }
.checkout-option:has(input:checked) {
    background: #fff;
    box-shadow: 0 0 0 2px #e31e24;
}
.checkout-option input { accent-color: #e31e24; width: 18px; height: 18px; }
.checkout-option-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.checkout-option strong { font-size: 14px; }
.checkout-option.is-locked { cursor: default; }
.checkout-gdpr {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #fff;
    padding: 16px 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    cursor: pointer;
    font-size: 13px;
    line-height: 1.4;
}
.checkout-hint { display:block; font-size: 12px; color: #5d3f3c; opacity: 0.8; margin-top: 6px; line-height: 1.4; }

/* Doprava — cena v možnostech i v souhrnu (zdarma = přeškrtnutá + 0 Kč) */
.ship-price { display: inline-flex; flex-direction: column; align-items: flex-end; line-height: 1.15; }
.ship-price-summary { display: inline-flex; flex-direction: column; align-items: flex-end; line-height: 1.15; }
.ship-price-orig { text-decoration: line-through; opacity: 0.45; font-size: 0.82em; font-weight: 600; }
.ship-price-free { color: #e31e24; font-weight: 800; }

/* Slevový kód v souhrnu */
.checkout-code { padding: 10px 0; }
.checkout-code-row { display: flex; gap: 8px; }
.checkout-code-row input {
    flex: 1 1 auto; min-width: 0;
    padding: 10px 12px; background: #fff; border: 1px solid rgba(26,28,29,0.18);
    border-radius: 4px; font-family: inherit; font-size: 14px; text-transform: uppercase;
    letter-spacing: 1px;
}
.checkout-code-row input:focus { outline: none; border-color: #e31e24; box-shadow: 0 0 0 2px rgba(227,30,36,0.18); }
.checkout-code-apply {
    flex: 0 0 auto; padding: 10px 16px; background: #1a1c1d; color: #fff;
    border: 0; border-radius: 4px; font-weight: 700; cursor: pointer; font-family: inherit; font-size: 13px;
    transition: background 0.2s;
}
.checkout-code-apply:hover { background: #e31e24; }
.checkout-code-apply:disabled { opacity: 0.6; cursor: default; }
.checkout-code-applied {
    display: flex; align-items: center; justify-content: space-between; gap: 8px;
    background: #f7f7f8; border-left: 3px solid #e31e24; padding: 8px 10px; border-radius: 4px;
}
.checkout-code-applied-label { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; }
.checkout-code-applied-label .material-symbols-outlined { font-size: 18px; color: #e31e24; }
.checkout-code-applied-label strong { letter-spacing: 1px; }
#codeAppliedDesc { color: #5d3f3c; font-size: 12px; }
#removeCodeBtn { background: none; border: 0; cursor: pointer; color: #5d3f3c; display: inline-flex; }
#removeCodeBtn .material-symbols-outlined { font-size: 18px; }
.checkout-code-msg { font-size: 12px; color: #e31e24; margin-top: 6px; }

/* Packeta / Zásilkovna — tlačítko otevření mapy */
.packeta-pick-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: #1a1c1d; color: #fff; font-weight: 700;
    padding: 12px 18px; border: 0; border-radius: 4px; cursor: pointer;
    transition: background 0.2s; font-family: inherit; font-size: 14px;
}
.packeta-pick-btn:hover { background: #e31e24; }
.packeta-pick-btn .material-symbols-outlined { font-size: 20px; }

/* Inline mapa Zásilkovny (menší, u výběru služby) */
.packeta-map {
    width: 100%;
    height: 420px;
    margin-top: 12px;
    border: 1px solid rgba(26,28,29,0.15);
    border-radius: 6px;
    overflow: hidden;
    background: #f3f3f4;
}
@media (max-width: 640px) { .packeta-map { height: 360px; } }

/* Vybrané výdejní místo */
.packeta-selected {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    background: #f7f7f8; border-left: 3px solid #e31e24; padding: 12px 14px; border-radius: 4px;
}
.packeta-selected-label {
    display: block; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: #5d3f3c; margin-bottom: 2px;
}
.packeta-selected strong { font-size: 14px; color: #1a1c1d; }
.packeta-change-btn {
    flex: 0 0 auto; background: none; border: 1px solid rgba(26,28,29,0.25); color: #1a1c1d;
    padding: 7px 14px; border-radius: 4px; font-weight: 700; cursor: pointer; font-family: inherit; font-size: 13px;
    transition: all 0.15s;
}
.packeta-change-btn:hover { background: #1a1c1d; color: #fff; }

/* Doprava nevybrána */
.ship-price-na { color: #9a9a9a; font-weight: 700; }

/* === DEBUG LOG pokladny (jen lokálně) === */
.checkout-debug {
    background: #0e0f10;
    color: #d4f7d4;
    border: 1px solid #2a2c2e;
    border-radius: 8px;
    padding: 14px 16px;
    margin: 0 auto 24px;
    max-width: 720px;
    text-align: left;
    font-family: ui-monospace, Menlo, Consolas, monospace;
    font-size: 12.5px;
    line-height: 1.55;
}
.checkout-debug-head {
    color: #ff5a5f;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.5px;
}
.checkout-debug-line {
    white-space: pre-wrap;
    word-break: break-word;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 3px 0;
}

/* === VALIDACE: nevyplněná povinná pole === */
.checkout-field.is-invalid input,
.checkout-field.is-invalid textarea {
    background-color: #ffecec;
    box-shadow: inset 0 0 0 1.5px #e31e24;
}
.checkout-field.is-invalid span { color: #c20012; }
.checkout-options.is-invalid {
    box-shadow: 0 0 0 2px rgba(227,30,36,0.5);
    border-radius: 6px;
}
.checkout-gdpr.is-invalid {
    background: #ffe2e2;
    box-shadow: inset 0 0 0 1.5px #e31e24;
}
.checkout-fieldset.is-invalid {
    box-shadow: 0 0 0 2px rgba(227,30,36,0.5);
    border-radius: 6px;
    padding: 10px;
}
.checkout-form-msg {
    margin-top: 10px;
    padding: 10px 14px;
    background: #ffe2e2;
    border-left: 3px solid #e31e24;
    color: #c20012;
    font-size: 13px;
    font-weight: 700;
    border-radius: 4px;
}
.checkout-gdpr input { accent-color: #e31e24; margin-top: 2px; width: 18px; height: 18px; flex-shrink: 0; }
.checkout-gdpr a { color: #e31e24; }
.checkout-gdpr--required {
    border-left: 4px solid #e31e24;
    background: #fff7f7;
}
.checkout-gdpr-req { color: #e31e24; font-weight: 700; }

/* Success / Error sections */
.success-section, .error-section { background: #f9f9fa; }
.success-icon {
    display: inline-flex;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #00c170;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    animation: successPop 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.success-icon .material-symbols-outlined {
    color: #fff;
    font-size: 56px;
}
@keyframes successPop {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.error-icon {
    display: inline-flex;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #e31e24;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}
.error-icon .material-symbols-outlined {
    color: #fff;
    font-size: 56px;
}
.btn-secondary {
    background: #1a1c1d;
    color: #fff;
    text-transform: uppercase;
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.05em;
}
.btn-secondary:hover {
    transform: translate(4px, 4px);
    box-shadow: -4px -4px 0 #e31e24;
}

/* Legal pages */
.legal-page { background: #fff; min-height: 60vh; }
.legal-block {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.legal-block:last-child { border-bottom: none; }
.legal-block h2 {
    font-family: 'Anton';
    font-size: 1.6rem;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #1a1c1d;
}
.legal-block p, .legal-block li {
    color: #1a1c1d;
    line-height: 1.65;
    margin-bottom: 10px;
}
.legal-block ul, .legal-block ol {
    padding-left: 24px;
    margin-bottom: 16px;
}
.legal-block ul { list-style: disc; }
.legal-block ol { list-style: decimal; }
.legal-block li { margin-bottom: 6px; }

.info-card {
    background: #f9f9fa;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: background 0.2s, transform 0.2s;
}
.info-card:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,0.08); }
.info-card .material-symbols-outlined {
    font-size: 32px;
    color: #e31e24;
    margin-bottom: 6px;
}
.info-card strong {
    font-family: 'Anton';
    font-size: 1.3rem;
    text-transform: uppercase;
}

/* Product detail page */
.breadcrumb-bar {
    background: #f3f3f4;
}
.product-detail { background: #fff; }
.product-photo-main {
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #1a1c1d 0%, #e31e24 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.product-photo-variant {
    position: absolute;
    bottom: 16px;
    right: 20px;
    font-family: 'Anton';
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 14px;
}
.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #1a1c1d;
    color: #fff;
    padding: 6px 14px;
    font-family: 'Lexend';
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.2em;
}
.add-to-cart-form {
    display: flex;
    gap: 14px;
    margin: 8px 0 28px;
    flex-wrap: wrap;
    align-items: stretch;
}
.qty-picker {
    display: inline-flex;
    background: #f3f3f4;
    align-items: center;
}
.qty-input-detail {
    width: 50px;
    height: 56px;
    border: none;
    background: transparent;
    text-align: center;
    font-family: 'Lexend';
    font-weight: 700;
    font-size: 16px;
    -moz-appearance: textfield;
}
.qty-input-detail::-webkit-inner-spin-button,
.qty-input-detail::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.qty-picker .qty-btn { width: 48px; height: 56px; font-size: 20px; }
.product-trust {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    background: #f9f9fa;
}
.product-trust li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #5d3f3c;
}
.product-trust li .material-symbols-outlined {
    color: #e31e24;
    font-size: 20px;
}

.product-description .prose {
    color: #1a1c1d;
    line-height: 1.7;
}
.product-description .prose h3 {
    font-family: 'Anton';
    font-size: 1.4rem;
    text-transform: uppercase;
    margin: 24px 0 12px;
}
.product-description .prose ul {
    padding-left: 24px;
    margin-bottom: 16px;
}
.product-description .prose li { margin-bottom: 8px; }

.related-products .related-card {
    background: #fff;
    padding: 16px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
    display: block;
}
.related-products .related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.related-card-photo {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #1a1c1d, #e31e24);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

/* Toast */
.cart-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, 100px);
    z-index: 9998;
    padding: 14px 24px;
    background: #1a1c1d;
    color: #fff;
    font-family: 'Lexend';
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.05em;
    box-shadow: 0 14px 40px rgba(0,0,0,0.4);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s;
    opacity: 0;
    pointer-events: none;
}
.cart-toast.is-visible {
    transform: translate(-50%, 0);
    opacity: 1;
}
.cart-toast[data-type="error"] { background: #e31e24; }

@keyframes cartBadgePop {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.5); }
}
.cart-badge-pop { animation: cartBadgePop 0.35s ease; }

/* Stock indicator (re-use if needed) */
.cart-section { background: #f9f9fa; min-height: 60vh; }


/* === RELATED PRODUCTS RAIL (vedle sekce "Co umí" uvnitř pd-info) === */
.pd-co-umi-with-rail{
    display: flex;
    gap: 16px;
    align-items: stretch;
}
.pd-co-umi-with-rail > .pd-section{ flex: 1; min-width: 0; }
@media(max-width:900px){
    .pd-co-umi-with-rail{ flex-direction: column; }
}
.pd-related-rail{
    width: 190px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    background: rgba(0,0,0,0.03);
    padding: 12px;
    max-height: 340px;
    overflow: hidden;
    align-self: stretch;
}
@media(max-width:900px){
    .pd-related-rail{ width: 100%; max-height: none; }
}
.pd-related-head{
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Anton';
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #1a1c1d;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 10px;
}
.pd-related-head .material-symbols-outlined{ font-size: 16px; color: #e31e24; }
.pd-related-list{
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #e31e24 transparent;
}
.pd-related-list::-webkit-scrollbar{ width: 4px; }
.pd-related-list::-webkit-scrollbar-thumb{ background: #e31e24; }
.pd-related-card{
    display: flex;
    gap: 10px;
    align-items: stretch;
    padding: 6px;
    background: #fff;
    text-decoration: none;
    color: inherit;
    transition: background 0.18s, transform 0.18s;
    border-left: 3px solid transparent;
}
.pd-related-card:hover{
    background: #f7f7f8;
    border-left-color: #e31e24;
    transform: translateX(-2px);
}
.pd-related-card-img{
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}
.pd-related-card-info{ flex:1; min-width:0; display:flex; flex-direction:column; justify-content:center; }
.pd-related-card-name{
    font-family: 'Anton';
    font-size: 13px;
    line-height: 1.1;
    text-transform: uppercase;
    color: #1a1c1d;
    letter-spacing: 0.01em;
}
.pd-related-card-tag{
    font-size: 9.5px;
    color: #5d3f3c;
    line-height: 1.2;
    margin-top: 2px;
}
.pd-related-card-price{
    font-family: 'Lexend';
    font-weight: 700;
    font-size: 11px;
    color: #e31e24;
    margin-top: 2px;
    letter-spacing: 0.05em;
}
@media(max-width:1099px){
    .pd-related-rail{
        position: static;
        max-height: none;
        margin-top: 20px;
    }
    .pd-related-list{ overflow: visible; max-height: none; }
}

/* Empty thumbnail placeholder pro chybějící produktovou fotku */
.pd-thumb--empty{
    background: repeating-linear-gradient(45deg, rgba(0,0,0,0.05) 0 8px, rgba(0,0,0,0.1) 8px 9px);
    cursor: not-allowed;
    opacity: 0.55;
}
.pd-thumb--empty:hover{ transform: none; }

/* === Věrnostní program (loyalty-program.php) === */
/* Hero sekce s obrázkem razítek a gradientem */
.loyalty-hero {
    background-image: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0) 100%), url('../img/eshop/hero-razitka.jpg');
}

/* Sekce s textem, kde byla dříve fotka */
.loyalty-details-section .split-grid {
    grid-template-columns: 1fr; /* Změní layout na jeden sloupec */
}

/* Zajištění, že text zabere celou šířku a je zarovnán */
.loyalty-details-section .split-text-wrap {
    grid-column: 1 / -1; /* Rozšíří text přes celou šířku gridu */
    /* max-width a margin jsou již řešeny v .split-text-wrap pro mobil a desktop */
    /* text-align je defaultně left */
}

/* Styly pro seznam pravidel */
.loyalty-details-section .split-text-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.loyalty-details-section .split-text-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #3a3c3d;
}
.loyalty-details-section .split-text-list li .material-symbols-outlined {
    color: #e31e24;
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Skryj defaultní centrovaný text na obrázku produktu (zobrazujeme reálné fotky) */
.pd-main-word, .pd-main-flavor, .pd-badge, .pd-main-cap { display: none !important; }

/* Hladké scrollování pro #produkty a další ankery */
html { scroll-behavior: smooth; }
#produkty { scroll-margin-top: 90px; }

/* ============================================
   FITNESS RING — POPUPS (App + Cookies)
   ============================================ */
body.fr-popup-open{ overflow: hidden; }
.fr-popup-overlay{
    position: fixed; inset: 0; z-index: 9990;
    background: rgba(60,60,65,0.78);
    backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
    padding: 16px;
    opacity: 0; transition: opacity 0.3s ease;
}
.fr-popup-overlay.is-visible{ opacity: 1; }

/* --- APP POPUP --- */
.fr-app-popup{
    position: relative;
    width: min(960px, 100%);
    aspect-ratio: 16/9;
    max-height: 92vh;
    border-radius: 22px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
    overflow: hidden;
    transform: scale(0.96) translateY(8px);
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
    color: #1a1c1d;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.is-visible .fr-app-popup{ transform: scale(1) translateY(0); }

.fr-app-popup-text{
    position: absolute;
    inset: 0;
    width: 52%;
    padding: 7% 5% 5% 6%;
    display: flex; flex-direction: column; gap: 12px;
    justify-content: center;
}
@media(max-width: 780px){
    .fr-app-popup{ aspect-ratio: 3/4; max-height: 90vh; }
    .fr-app-popup-text{ width: 100%; padding: 24px 22px; gap: 10px; justify-content: flex-end; background: linear-gradient(180deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.92) 60%, rgba(255,255,255,0.98) 100%); }
}
.fr-app-popup-logo{
    width: 56px; height: 56px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(227,30,36,0.25);
    margin-bottom: 6px;
}
.fr-app-popup-eyebrow{
    font-family: 'Lexend',sans-serif;
    font-weight: 700; font-size: 11px;
    letter-spacing: 0.32em; text-transform: uppercase;
    color: #e31e24;
}
.fr-app-popup-title{
    font-family: 'Anton',sans-serif;
    font-size: clamp(2rem,4vw,2.8rem);
    line-height: 0.95; text-transform: uppercase;
    color: #ffffff; letter-spacing: -0.01em;
    margin: 0;
    text-shadow: 0 2px 14px rgba(0,0,0,0.55);
}
.fr-app-popup-title em{
    font-style: normal; color: #e31e24;
    -webkit-text-fill-color: #e31e24;
    -webkit-text-stroke: 0;
    text-shadow: 0 2px 16px rgba(0,0,0,0.55), 0 0 22px rgba(227,30,36,0.45);
}
.fr-app-popup-eyebrow{
    font-family: 'Lexend',sans-serif;
    font-weight: 700; font-size: 11px;
    letter-spacing: 0.32em; text-transform: uppercase;
    color: #e31e24;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
.fr-app-popup-desc{
    font-size: 0.98rem; line-height: 1.55;
    color: #ffffff; margin: 4px 0 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}
.fr-app-popup-desc strong{ color: #e31e24; }
.fr-app-popup-bullets{
    list-style: none; padding: 0; margin: 6px 0 4px;
    display: flex; flex-direction: column; gap: 7px;
}
.fr-app-popup-bullets li{
    display: flex; align-items: center; gap: 9px;
    font-size: 0.92rem; color: #1a1c1d;
}
.fr-app-popup-bullets li .material-symbols-outlined{
    font-size: 18px; color: #e31e24;
}
.fr-app-popup-stores{
    display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px;
}
.fr-app-store-btn{
    flex: 1; min-width: 140px;
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 16px;
    background: #1a1c1d; color: #fff;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.18s ease, background 0.18s ease;
    font-family: 'Lexend',sans-serif;
}
.fr-app-store-btn:hover{ background: #e31e24; transform: translateY(-2px); }
.fr-app-store-btn svg{ flex-shrink: 0; }
.fr-app-store-btn span{ display: flex; flex-direction: column; line-height: 1.1; }
.fr-app-store-btn small{ font-size: 9.5px; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.75; }
.fr-app-store-btn strong{ font-size: 14px; letter-spacing: 0.02em; }

.fr-app-popup-close{
    position: absolute; top: 12px; right: 12px;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.92);
    color: #1a1c1d;
    border: none;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.3s ease, background 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.fr-app-popup-close:disabled{ cursor: not-allowed; opacity: 0; }
.fr-app-popup-close.is-ready{ opacity: 1; }
.fr-app-popup-close:not(:disabled):hover{ background: #e31e24; color: #fff; transform: scale(1.08); }
.fr-app-popup-close .material-symbols-outlined{ font-size: 22px; }

.fr-app-popup-timer{
    position: absolute; top: 18px; right: 60px;
    font-family: 'Lexend',sans-serif;
    font-weight: 700; font-size: 10px;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(0,0,0,0.45);
    background: rgba(255,255,255,0.85);
    padding: 6px 10px;
    border-radius: 100px;
}

/* --- COOKIE BAR --- */
.fr-cookie-bar{
    position: fixed; left: 12px; right: 12px; bottom: 12px;
    z-index: 10010;
    background: #ffffff;
    color: #1a1c1d;
    border-radius: 18px;
    box-shadow: 0 18px 48px rgba(0,0,0,0.25);
    transform: translateY(120%);
    transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
    border-top: 4px solid #e31e24;
}
.fr-cookie-bar.is-visible{ transform: translateY(0); }
.fr-cookie-inner{
    max-width: 1100px; margin: 0 auto;
    padding: 18px 22px;
    display: flex; flex-direction: column; gap: 14px;
}
.fr-cookie-head{
    display: flex; gap: 14px; align-items: flex-start;
}
.fr-cookie-icon{
    font-size: 32px !important; color: #e31e24; flex-shrink: 0;
}
.fr-cookie-title{
    font-family: 'Anton',sans-serif;
    font-size: 1.3rem; text-transform: uppercase;
    line-height: 1.1; margin: 0 0 4px; color: #1a1c1d;
    letter-spacing: -0.01em;
}
.fr-cookie-text{
    font-size: 0.88rem; line-height: 1.5;
    color: #5d3f3c; margin: 0;
}
.fr-cookie-text a{ color: #e31e24; text-decoration: underline; }
.fr-cookie-actions{
    display: flex; gap: 8px; flex-wrap: wrap; align-items: center;
}
.fr-cookie-btn{
    padding: 10px 16px;
    font-family: 'Lexend',sans-serif;
    font-weight: 700; font-size: 12px;
    letter-spacing: 0.12em; text-transform: uppercase;
    border-radius: 8px; border: none; cursor: pointer;
    transition: background 0.18s ease, transform 0.18s ease;
}
.fr-cookie-btn--primary{ background: #e31e24; color: #fff; }
.fr-cookie-btn--primary:hover{ background: #ff3340; transform: translateY(-1px); }

@media(max-width: 600px){
    .fr-cookie-actions{ flex-direction: column; align-items: stretch; }
    .fr-cookie-btn{ width: 100%; }
}

/* === VRÁCENÍ / REKLAMACE — výběr položek === */
.return-item {
    display: flex; align-items: center; gap: 12px;
    background: #f3f3f4; padding: 12px 16px; border-radius: 4px; cursor: pointer;
}
.return-item input[type="checkbox"] { accent-color: #e31e24; width: 18px; height: 18px; flex-shrink: 0; }
.return-item-name { flex: 1; font-size: 14px; font-weight: 600; color: #1a1c1d; }
.return-item-qty { font-size: 13px; color: #5d3f3c; white-space: nowrap; }
.return-qty-input { width: 56px; padding: 4px 6px; border: 1px solid rgba(26,28,29,0.18); border-radius: 4px; font-family: inherit; }

/* Věrnostní program - centrování sekce "Co tím získáš" */
.centered-content .split-text-wrap {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

/* Věrnostní program - centrování sekce "Co tím získáš" */
.centered-content .split-text-wrap {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

/* ---------- MOBILNÍ MENU (výsuv zprava, jen telefon) ---------- */
.mobile-menu-overlay{position:fixed;inset:0;background:rgba(0,0,0,.5);opacity:0;visibility:hidden;transition:opacity .25s ease;z-index:60;}
.mobile-menu-overlay.is-open{opacity:1;visibility:visible;}
.mobile-menu-drawer{position:fixed;top:0;right:0;height:100%;width:82%;max-width:320px;background:#2f3132;transform:translateX(100%);transition:transform .28s ease;z-index:70;display:flex;flex-direction:column;padding:72px 22px 24px;box-shadow:-8px 0 24px rgba(0,0,0,.3);}
.mobile-menu-drawer.is-open{transform:translateX(0);}
.mobile-menu-close{position:absolute;top:14px;right:14px;background:none;border:0;color:#fff;cursor:pointer;padding:6px;line-height:0;}
.mobile-menu-link{color:#fff;text-decoration:none;font-size:19px;padding:15px 6px;border-bottom:1px solid rgba(255,255,255,.12);display:flex;align-items:center;gap:8px;}
.mobile-menu-link:hover,.mobile-menu-link:active{color:#e31e24;}
button.mobile-menu-link{background:none;border:0;border-bottom:1px solid rgba(255,255,255,.12);font:inherit;width:100%;text-align:left;cursor:pointer;}
body.mobile-menu-open{overflow:hidden;}
@media (min-width:768px){.mobile-menu-overlay,.mobile-menu-drawer{display:none !important;}}

/* === IKONY: SVG přes CSS mask (nahrazuje 10MB font; dědí barvu i velikost) === */
.material-symbols-outlined{display:inline-block;width:1em;height:1em;background-color:currentColor;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;-webkit-mask-size:contain;mask-size:contain;vertical-align:-.15em;flex-shrink:0;}
.material-symbols-outlined[data-icon="accessibility_new"]{-webkit-mask-image:url(../img/icons/accessibility_new.svg);mask-image:url(../img/icons/accessibility_new.svg)}
.material-symbols-outlined[data-icon="account_balance"]{-webkit-mask-image:url(../img/icons/account_balance.svg);mask-image:url(../img/icons/account_balance.svg)}
.material-symbols-outlined[data-icon="add_shopping_cart"]{-webkit-mask-image:url(../img/icons/add_shopping_cart.svg);mask-image:url(../img/icons/add_shopping_cart.svg)}
.material-symbols-outlined[data-icon="arrow_back"]{-webkit-mask-image:url(../img/icons/arrow_back.svg);mask-image:url(../img/icons/arrow_back.svg)}
.material-symbols-outlined[data-icon="arrow_downward"]{-webkit-mask-image:url(../img/icons/arrow_downward.svg);mask-image:url(../img/icons/arrow_downward.svg)}
.material-symbols-outlined[data-icon="arrow_forward"]{-webkit-mask-image:url(../img/icons/arrow_forward.svg);mask-image:url(../img/icons/arrow_forward.svg)}
.material-symbols-outlined[data-icon="arrow_outward"]{-webkit-mask-image:url(../img/icons/arrow_outward.svg);mask-image:url(../img/icons/arrow_outward.svg)}
.material-symbols-outlined[data-icon="assignment_return"]{-webkit-mask-image:url(../img/icons/assignment_return.svg);mask-image:url(../img/icons/assignment_return.svg)}
.material-symbols-outlined[data-icon="bedtime"]{-webkit-mask-image:url(../img/icons/bedtime.svg);mask-image:url(../img/icons/bedtime.svg)}
.material-symbols-outlined[data-icon="bolt"]{-webkit-mask-image:url(../img/icons/bolt.svg);mask-image:url(../img/icons/bolt.svg)}
.material-symbols-outlined[data-icon="call"]{-webkit-mask-image:url(../img/icons/call.svg);mask-image:url(../img/icons/call.svg)}
.material-symbols-outlined[data-icon="card_giftcard"]{-webkit-mask-image:url(../img/icons/card_giftcard.svg);mask-image:url(../img/icons/card_giftcard.svg)}
.material-symbols-outlined[data-icon="check_circle"]{-webkit-mask-image:url(../img/icons/check_circle.svg);mask-image:url(../img/icons/check_circle.svg)}
.material-symbols-outlined[data-icon="close"]{-webkit-mask-image:url(../img/icons/close.svg);mask-image:url(../img/icons/close.svg)}
.material-symbols-outlined[data-icon="cookie"]{-webkit-mask-image:url(../img/icons/cookie.svg);mask-image:url(../img/icons/cookie.svg)}
.material-symbols-outlined[data-icon="credit_card"]{-webkit-mask-image:url(../img/icons/credit_card.svg);mask-image:url(../img/icons/credit_card.svg)}
.material-symbols-outlined[data-icon="directions_bus"]{-webkit-mask-image:url(../img/icons/directions_bus.svg);mask-image:url(../img/icons/directions_bus.svg)}
.material-symbols-outlined[data-icon="directions_car"]{-webkit-mask-image:url(../img/icons/directions_car.svg);mask-image:url(../img/icons/directions_car.svg)}
.material-symbols-outlined[data-icon="directions_walk"]{-webkit-mask-image:url(../img/icons/directions_walk.svg);mask-image:url(../img/icons/directions_walk.svg)}
.material-symbols-outlined[data-icon="error"]{-webkit-mask-image:url(../img/icons/error.svg);mask-image:url(../img/icons/error.svg)}
.material-symbols-outlined[data-icon="expand_more"]{-webkit-mask-image:url(../img/icons/expand_more.svg);mask-image:url(../img/icons/expand_more.svg)}
.material-symbols-outlined[data-icon="fitness_center"]{-webkit-mask-image:url(../img/icons/fitness_center.svg);mask-image:url(../img/icons/fitness_center.svg)}
.material-symbols-outlined[data-icon="grain"]{-webkit-mask-image:url(../img/icons/grain.svg);mask-image:url(../img/icons/grain.svg)}
.material-symbols-outlined[data-icon="grid_view"]{-webkit-mask-image:url(../img/icons/grid_view.svg);mask-image:url(../img/icons/grid_view.svg)}
.material-symbols-outlined[data-icon="inventory_2"]{-webkit-mask-image:url(../img/icons/inventory_2.svg);mask-image:url(../img/icons/inventory_2.svg)}
.material-symbols-outlined[data-icon="local_drink"]{-webkit-mask-image:url(../img/icons/local_drink.svg);mask-image:url(../img/icons/local_drink.svg)}
.material-symbols-outlined[data-icon="local_fire_department"]{-webkit-mask-image:url(../img/icons/local_fire_department.svg);mask-image:url(../img/icons/local_fire_department.svg)}
.material-symbols-outlined[data-icon="local_shipping"]{-webkit-mask-image:url(../img/icons/local_shipping.svg);mask-image:url(../img/icons/local_shipping.svg)}
.material-symbols-outlined[data-icon="lock"]{-webkit-mask-image:url(../img/icons/lock.svg);mask-image:url(../img/icons/lock.svg)}
.material-symbols-outlined[data-icon="looks_3"]{-webkit-mask-image:url(../img/icons/looks_3.svg);mask-image:url(../img/icons/looks_3.svg)}
.material-symbols-outlined[data-icon="looks_one"]{-webkit-mask-image:url(../img/icons/looks_one.svg);mask-image:url(../img/icons/looks_one.svg)}
.material-symbols-outlined[data-icon="looks_two"]{-webkit-mask-image:url(../img/icons/looks_two.svg);mask-image:url(../img/icons/looks_two.svg)}
.material-symbols-outlined[data-icon="mail"]{-webkit-mask-image:url(../img/icons/mail.svg);mask-image:url(../img/icons/mail.svg)}
.material-symbols-outlined[data-icon="map"]{-webkit-mask-image:url(../img/icons/map.svg);mask-image:url(../img/icons/map.svg)}
.material-symbols-outlined[data-icon="menu"]{-webkit-mask-image:url(../img/icons/menu.svg);mask-image:url(../img/icons/menu.svg)}
.material-symbols-outlined[data-icon="person"]{-webkit-mask-image:url(../img/icons/person.svg);mask-image:url(../img/icons/person.svg)}
.material-symbols-outlined[data-icon="photo_camera"]{-webkit-mask-image:url(../img/icons/photo_camera.svg);mask-image:url(../img/icons/photo_camera.svg)}
.material-symbols-outlined[data-icon="progress_activity"]{-webkit-mask-image:url(../img/icons/progress_activity.svg);mask-image:url(../img/icons/progress_activity.svg)}
.material-symbols-outlined[data-icon="replay"]{-webkit-mask-image:url(../img/icons/replay.svg);mask-image:url(../img/icons/replay.svg)}
.material-symbols-outlined[data-icon="restaurant"]{-webkit-mask-image:url(../img/icons/restaurant.svg);mask-image:url(../img/icons/restaurant.svg)}
.material-symbols-outlined[data-icon="schedule"]{-webkit-mask-image:url(../img/icons/schedule.svg);mask-image:url(../img/icons/schedule.svg)}
.material-symbols-outlined[data-icon="search"]{-webkit-mask-image:url(../img/icons/search.svg);mask-image:url(../img/icons/search.svg)}
.material-symbols-outlined[data-icon="search_off"]{-webkit-mask-image:url(../img/icons/search_off.svg);mask-image:url(../img/icons/search_off.svg)}
.material-symbols-outlined[data-icon="self_improvement"]{-webkit-mask-image:url(../img/icons/self_improvement.svg);mask-image:url(../img/icons/self_improvement.svg)}
.material-symbols-outlined[data-icon="sell"]{-webkit-mask-image:url(../img/icons/sell.svg);mask-image:url(../img/icons/sell.svg)}
.material-symbols-outlined[data-icon="send"]{-webkit-mask-image:url(../img/icons/send.svg);mask-image:url(../img/icons/send.svg)}
.material-symbols-outlined[data-icon="shopping_cart"]{-webkit-mask-image:url(../img/icons/shopping_cart.svg);mask-image:url(../img/icons/shopping_cart.svg)}
.material-symbols-outlined[data-icon="smartphone"]{-webkit-mask-image:url(../img/icons/smartphone.svg);mask-image:url(../img/icons/smartphone.svg)}
.material-symbols-outlined[data-icon="spa"]{-webkit-mask-image:url(../img/icons/spa.svg);mask-image:url(../img/icons/spa.svg)}
.material-symbols-outlined[data-icon="sports_mma"]{-webkit-mask-image:url(../img/icons/sports_mma.svg);mask-image:url(../img/icons/sports_mma.svg)}
.material-symbols-outlined[data-icon="stars"]{-webkit-mask-image:url(../img/icons/stars.svg);mask-image:url(../img/icons/stars.svg)}
.material-symbols-outlined[data-icon="store"]{-webkit-mask-image:url(../img/icons/store.svg);mask-image:url(../img/icons/store.svg)}
.material-symbols-outlined[data-icon="verified"]{-webkit-mask-image:url(../img/icons/verified.svg);mask-image:url(../img/icons/verified.svg)}
.material-symbols-outlined[data-icon="verified_user"]{-webkit-mask-image:url(../img/icons/verified_user.svg);mask-image:url(../img/icons/verified_user.svg)}
.material-symbols-outlined[data-icon="water_drop"]{-webkit-mask-image:url(../img/icons/water_drop.svg);mask-image:url(../img/icons/water_drop.svg)}
.material-symbols-outlined[data-icon="wb_sunny"]{-webkit-mask-image:url(../img/icons/wb_sunny.svg);mask-image:url(../img/icons/wb_sunny.svg)}

/* --- Webora (tvurce webu) --- */
.footer-webora-bar{position:absolute;right:24px;bottom:14px;display:flex;align-items:center;justify-content:flex-end;gap:9px;font-size:12px;color:rgba(255,255,255,.45);}
@media(max-width:768px){.footer-webora-bar{position:static;justify-content:center;padding:18px 20px 4px;}}
.site-footer{position:relative;}
.footer-webora{display:inline-flex;align-items:center;line-height:0;}
.footer-webora-logo{display:inline-block;width:104px;height:28px;background-color:#fff;-webkit-mask:url(../img/webora-white-green22c55e.webp) center/contain no-repeat;mask:url(../img/webora-white-green22c55e.webp) center/contain no-repeat;transition:background-color .2s ease;}
.footer-webora:hover .footer-webora-logo{background-color:#22c55e;}

html,body{overflow-x:hidden;max-width:100%;}

/* --- Loading screen: vynucene centrovani loga (fix posunu doprava) --- */
.loading-screen{left:0;right:0;width:100%;padding:0;}
.loading-content{width:100%;max-width:100%;align-items:center;justify-content:center;text-align:center;padding:0 16px;}
.loading-logo-img{margin-left:auto;margin-right:auto;}
.loading-dots{justify-content:center;width:100%;}

/* === Loading screen: NEPRUSTRELNE centrovani (ID + !important prebije vse) === */
#loadingScreen{position:fixed !important;inset:0 !important;width:auto !important;height:auto !important;margin:0 !important;padding:0 !important;display:grid !important;place-items:center !important;}
#loadingScreen .loading-content{width:auto !important;max-width:100% !important;margin:0 auto !important;padding:0 !important;display:flex !important;flex-direction:column !important;align-items:center !important;justify-content:center !important;text-align:center !important;position:static !important;left:auto !important;right:auto !important;transform:none !important;}
#loadingScreen .loading-logo-img{margin:0 auto !important;display:block !important;position:static !important;left:auto !important;right:auto !important;float:none !important;}
#loadingScreen .loading-dots{margin:0 auto !important;justify-content:center !important;width:auto !important;}

/* === MOBIL: text v carouselu zmenšit, ať se celý vejde do fotky (nic nepřetéká, žádné šedé pruhy) === */
@media (max-width: 768px) {
    .slide-content { padding: 0 14px; }
    .slide-eyebrow { font-size: 9px; padding: 3px 9px; margin-bottom: 8px; letter-spacing: .2em; }
    .slide-title { font-size: 1.8rem; line-height: 1; margin-bottom: 8px; }
    .slide-desc { font-size: .82rem; line-height: 1.35; margin-bottom: 10px; }
    .slide-content > div.flex { margin-bottom: 10px !important; gap: 12px !important; }
    .slide-price { font-size: 1.6rem; }
    .slide-badge { font-size: .7rem; padding: 4px 10px; letter-spacing: .1em; }
    .slide-cta { padding: 10px 20px; font-size: .75rem; gap: 6px; }
    .slide-bg-text { display: none; }
}

/* === CAROUSEL: text na pravé straně slidu ===
   Slide 4 (Dobrou noc s Lolinkem): na fotce je Radim s produktem vlevo,
   takže text musí doprava, aby mu nelezl přes obličej a kelímek.
   Řešeno vlastním CSS, ne Tailwind třídami (justify-end apod.) — build je
   purgovaný a nové třídy by se bez rekompilace nenastylovaly.
   Platí i na mobilu: ořez tam ukazuje prostředních ~66 % šířky, takže Radim
   zůstává vlevo a pravá strana je volná. */
.slide-content--right { text-align: right; }
.slide-content--right .slide-title,
.slide-content--right .slide-desc { margin-left: auto; }
.slide-content--right > div.flex { justify-content: flex-end; }
