/* ============================================
   WILDERO SHOP – shop.css
   ============================================ */

/* ---------- Shop Hero ---------- */
.shop-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 5rem;
}

.shop-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(180, 210, 180, 0.35) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 70%, rgba(244, 235, 217, 0.5) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(56, 94, 60, 0.06) 0%, transparent 40%);
    z-index: 0;
}

.shop-hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.shop-hero__badge {
    display: inline-block;
    background: rgba(56, 94, 60, 0.08);
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(56, 94, 60, 0.15);
}

.shop-hero__title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--color-primary);
    margin-bottom: 1.25rem;
    line-height: 1.1;
}

.shop-hero__subtitle {
    font-size: 1.15rem;
    color: var(--color-text-light);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.shop-hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.shop-hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.shop-hero__imgs {
    position: relative;
    width: 360px;
    height: 340px;
}

.shop-hero__img {
    position: absolute;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(56, 94, 60, 0.12);
}

.shop-hero__img--1 {
    width: 210px;
    top: 0;
    left: 0;
    transform: rotate(-4deg);
    z-index: 3;
    animation: shopFloat1 7s ease-in-out infinite;
}

.shop-hero__img--2 {
    width: 180px;
    bottom: 0;
    right: 30px;
    transform: rotate(3deg);
    z-index: 2;
    animation: shopFloat2 8s ease-in-out infinite;
}

.shop-hero__img--3 {
    width: 160px;
    top: 60px;
    right: 0;
    transform: rotate(6deg);
    z-index: 1;
    animation: shopFloat3 6s ease-in-out infinite;
}

@keyframes shopFloat1 {
    0%, 100% { transform: rotate(-4deg) translateY(0); }
    50% { transform: rotate(-4deg) translateY(-12px); }
}
@keyframes shopFloat2 {
    0%, 100% { transform: rotate(3deg) translateY(0); }
    50% { transform: rotate(3deg) translateY(-8px); }
}
@keyframes shopFloat3 {
    0%, 100% { transform: rotate(6deg) translateY(0); }
    50% { transform: rotate(6deg) translateY(-16px); }
}

/* ---------- Category Filters ---------- */
.shop-filters {
    padding: 2rem 0;
    position: sticky;
    top: var(--header-height-scrolled);
    z-index: 100;
    background: rgba(253, 251, 246, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(56, 94, 60, 0.08);
}

.shop-filters__inner {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    justify-content: center;
}

.shop-filter-btn {
    background: transparent;
    border: 1.5px solid rgba(56, 94, 60, 0.18);
    color: var(--color-text-light);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: var(--font-family);
}

.shop-filter-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(56, 94, 60, 0.04);
    transform: translateY(-1px);
}

.shop-filter-btn.active {
    background: var(--color-primary);
    color: #E8F5E9;
    border-color: var(--color-primary);
    box-shadow: 0 4px 14px rgba(56, 94, 60, 0.25);
}

/* ---------- Product Grid ---------- */
.shop-products {
    padding: 3rem 0 5rem;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* ---------- Product Card ---------- */
.shop-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(56, 94, 60, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(56, 94, 60, 0.06);
}

.shop-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(56, 94, 60, 0.12);
}

/* Card Badge */
.shop-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 5;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
}

.shop-card__badge--new {
    background: #4CAF50;
    color: #fff;
}

.shop-card__badge--popular {
    background: var(--color-primary);
    color: #E8F5E9;
}

.shop-card__badge--sale {
    background: #E67E22;
    color: #fff;
}

/* Card Image */
.shop-card__img-wrap {
    position: relative;
    overflow: hidden;
    background: #F7F4EE;
    aspect-ratio: 4/3;
}

.shop-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.shop-card:hover .shop-card__img {
    transform: scale(1.04);
}

/* Quick-add overlay */
.shop-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(34, 60, 38, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(3px);
}

.shop-card:hover .shop-card__overlay {
    opacity: 1;
}

.shop-card__quick {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: var(--color-primary);
    border: none;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.7rem 1.4rem;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: var(--font-family);
    transform: translateY(8px);
    transition: all 0.3s ease;
}

.shop-card:hover .shop-card__quick {
    transform: translateY(0);
}

.shop-card__quick:hover {
    background: var(--color-primary);
    color: #E8F5E9;
}

/* Card Body */
.shop-card__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.shop-card__cat {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    display: block;
}

.shop-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.shop-card__desc {
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex: 1;
}

.shop-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: auto;
}

.shop-card__price {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.shop-card__price-old {
    font-size: 0.8rem;
    color: #aaa;
    text-decoration: line-through;
}

.shop-card__price-current {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-primary);
}

.shop-card__btn {
    font-size: 0.85rem;
    padding: 0.6rem 1.1rem;
    white-space: nowrap;
    border-radius: 10px;
}

/* Added to cart animation */
.shop-card__btn.added {
    background: #4CAF50 !important;
    transform: scale(0.97);
}

/* Empty state */
.shop-empty {
    text-align: center;
    padding: 4rem 2rem;
}

.shop-empty__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.shop-empty__text {
    color: var(--color-text-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ---------- Feature Section / Balíčky ---------- */
.shop-feature-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F0F5F0 0%, #FDFBF6 100%);
}

.shop-packages {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.shop-package {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(56, 94, 60, 0.06);
    border: 1.5px solid rgba(56, 94, 60, 0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shop-package:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(56, 94, 60, 0.1);
}

.shop-package--featured {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.04);
}

.shop-package--featured:hover {
    transform: scale(1.04) translateY(-4px);
}

.shop-package--featured h3,
.shop-package--featured p,
.shop-package--featured .shop-package__price {
    color: #E8F5E9 !important;
}

.shop-package--featured .shop-package__icon {
    filter: brightness(1.3);
}

.shop-package__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #E67E22;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.9rem;
    border-radius: 100px;
    white-space: nowrap;
}

.shop-package__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.shop-package__title {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.shop-package__desc {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.shop-package__price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    display: block;
}

.shop-package__price-old {
    font-size: 1rem;
    font-weight: 400;
    text-decoration: line-through;
    opacity: 0.6;
    margin-right: 0.4rem;
}

.shop-package--featured .btn--primary {
    background: #fff;
    color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.shop-package--featured .btn--primary:hover {
    background: #E8F5E9;
}

/* ---------- Shipping Banner ---------- */
.shop-shipping {
    background: var(--color-primary);
    padding: 2rem 0;
}

.shop-shipping__items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.shop-shipping__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #E8F5E9;
}

.shop-shipping__icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.shop-shipping__item div {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.shop-shipping__item strong {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 700;
}

.shop-shipping__item span {
    font-size: 0.8rem;
    color: rgba(232, 245, 233, 0.7);
}

/* ---------- Cart Drawer ---------- */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1990;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}

.cart-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 400px;
    max-width: 95vw;
    background: #FDFBF6;
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 40px rgba(0,0,0,0.12);
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(56, 94, 60, 0.1);
}

.cart-drawer__title {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin: 0;
}

.cart-drawer__close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-light);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.cart-drawer__close:hover {
    background: rgba(56, 94, 60, 0.08);
    color: var(--color-primary);
}

.cart-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.5rem;
}

.cart-empty {
    text-align: center;
    padding: 3rem 1rem;
}

.cart-empty__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cart-empty p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border-radius: 12px;
    padding: 0.75rem;
    border: 1px solid rgba(56, 94, 60, 0.07);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(16px); }
    to { opacity: 1; transform: translateX(0); }
}

.cart-item__img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    background: #F7F4EE;
}

.cart-item__info {
    flex: 1;
    min-width: 0;
}

.cart-item__name {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item__price {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--color-primary);
}

.cart-item__qty {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.3rem;
}

.cart-item__qty button {
    background: rgba(56, 94, 60, 0.08);
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    font-family: var(--font-family);
}

.cart-item__qty button:hover {
    background: var(--color-primary);
    color: #fff;
}

.cart-item__qty span {
    font-size: 0.875rem;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
    color: var(--color-text-main);
}

.cart-item__remove {
    background: none;
    border: none;
    cursor: pointer;
    color: #ccc;
    font-size: 1.2rem;
    padding: 0.25rem;
    border-radius: 6px;
    transition: color 0.2s;
    line-height: 1;
}

.cart-item__remove:hover {
    color: #e74c3c;
}

.cart-drawer__footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid rgba(56, 94, 60, 0.1);
    background: #fff;
}

.cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-main);
}

#cart-total-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-primary);
}

.cart-shipping-note {
    font-size: 0.8rem;
    color: #4CAF50;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
}

.cart-checkout-btn {
    width: 100%;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.cart-note {
    font-size: 0.78rem;
    color: #aaa;
    text-align: center;
    line-height: 1.5;
    margin: 0;
}

/* ---------- Cart FAB ---------- */
.cart-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1500;
    background: var(--color-primary);
    color: #E8F5E9;
    border: none;
    border-radius: 50px;
    padding: 0.85rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 8px 24px rgba(56, 94, 60, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cart-fab:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(56, 94, 60, 0.4);
}

.cart-fab__label {
    display: none;
}

.cart-fab__count {
    background: #E67E22;
    color: #fff;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    min-width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    animation: popIn 0.3s ease;
}

@keyframes popIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shop-packages {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .shop-package--featured {
        transform: scale(1);
        order: -1;
    }

    .shop-package--featured:hover {
        transform: translateY(-4px);
    }

    .shop-shipping__items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .shop-hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .shop-hero__subtitle {
        margin: 0 auto 2.5rem auto;
    }

    .shop-hero__actions {
        justify-content: center;
    }

    .shop-hero__imgs {
        width: 280px;
        height: 260px;
        margin: 0 auto;
    }

    .shop-hero__img--1 { width: 160px; }
    .shop-hero__img--2 { width: 140px; }
    .shop-hero__img--3 { width: 120px; }

    .shop-grid {
        grid-template-columns: 1fr;
    }

    .shop-shipping__items {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .cart-fab__label {
        display: inline;
    }
}

@media (max-width: 480px) {
    .shop-filters__inner {
        gap: 0.4rem;
    }

    .shop-filter-btn {
        font-size: 0.8rem;
        padding: 0.45rem 0.9rem;
    }
}
/* ---------- Product Details Modal ---------- */
.product-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2500;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    backdrop-filter: blur(4px);
}

.product-modal {
    background: #fff;
    width: 900px;
    max-width: 100%;
    border-radius: 24px;
    display: flex;
    flex-direction: row;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    max-height: 90vh;
}

.product-modal__close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
}

.product-modal__close:hover {
    transform: scale(1.1);
    background: #fff;
}

.product-modal__gallery {
    flex: 1;
    background: #F7F4EE;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    justify-content: center;
    align-items: center;
}

.product-modal__main-img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 12px;
    transition: 0.3s ease;
}

.product-modal__thumbs-container {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 1.5rem;
    position: relative;
    gap: 0.5rem;
}

.product-modal__thumbs {
    display: flex;
    gap: 0.8rem;
    overflow-x: auto;
    padding: 2px 5px;
    width: 100%;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    justify-content: center;
}

.product-modal__thumbs::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.modal-gallery-arrow {
    background: #fff;
    border: 1px solid rgba(56, 94, 60, 0.15);
    color: var(--color-primary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: all 0.2s;
    z-index: 5;
    flex-shrink: 0;
}

.modal-gallery-arrow:hover {
    background: var(--color-primary);
    color: #fff;
    transform: scale(1.1);
}

.product-modal-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.2s;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.product-modal-thumb:hover,
.product-modal-thumb.active {
    opacity: 1;
    border-color: var(--color-primary);
    transform: scale(1.05);
}

.product-modal__content {
    flex: 1;
    padding: 2.5rem 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-align: center;
    align-items: center;
}

.product-modal__title-section {
    width: 100%;
    margin-bottom: 2rem;
    flex-shrink: 0;
}

.product-modal__category {
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
    display: block;
}

.product-modal__title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-modal__desc-wrap {
    flex: 1;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.product-modal__desc {
    height: 100%;
    overflow-y: auto;
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
    padding: 0 1rem 3rem 1rem; /* Padding at bottom for scroll indicator space */
    scrollbar-width: thin;
    scrollbar-color: rgba(56, 94, 60, 0.3) transparent;
}

/* Zelený scrollbar jen u popisu */
.product-modal__desc::-webkit-scrollbar {
    width: 5px;
}
.product-modal__desc::-webkit-scrollbar-track {
    background: transparent;
}
.product-modal__desc::-webkit-scrollbar-thumb {
    background: rgba(56, 94, 60, 0.35);
    border-radius: 10px;
}

/* Náznak pokračujícího textu – jemný přechod do ztracena (jen pokud je přetékání) */
.product-modal__desc-wrap.has-overflow::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 44px;
    background: linear-gradient(to top, #fff 15%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

/* Jemná šipka dolů u scrollovatelného textu */
.product-modal__scroll-indicator {
    display: none; /* Skryto dokud JS nepotvrdí overflow */
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-primary);
    background: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid rgba(56, 94, 60, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    animation: modalBounce 2s infinite;
    pointer-events: none;
    opacity: 0.8;
}

.product-modal__scroll-indicator svg {
    width: 16px;
    height: 16px;
}

@keyframes modalBounce {
    0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
    40% {transform: translateX(-50%) translateY(4px);}
    60% {transform: translateX(-50%) translateY(2px);}
}

.product-modal__footer {
    display: flex;
    flex-direction: column;
    align-items: center; /* Zarovnání na střed */
    width: 100%;
}

.product-modal__title-section {
    text-align: center; /* Titulek na střed */
    margin-bottom: 1.5rem;
}

.product-modal__price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    width: 100%;
}

.product-modal__price {
    font-size: 1.75rem; /* O něco menší než původní 2.2rem */
    font-weight: 800;
    color: var(--color-primary);
}

.product-modal__stock-badge {
    font-size: 0.9rem;
    font-weight: 600;
    color: #718096;
    background: #f7f9f7;
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    border: 1px solid rgba(56, 94, 60, 0.1);
}

/* Odstraněno product-modal__stock ve prospěch stock-badge nahoře */

/* Gallery Badge on Card */
.shop-card__gallery-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-primary);
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    backdrop-filter: blur(4px);
}

@media (max-width: 768px) {
    .product-modal {
        flex-direction: column;
    }
    .product-modal__content {
        padding: 2rem 1.5rem;
    }
    .product-modal__gallery {
        padding: 1.5rem;
    }
    .product-modal__main-img {
        max-height: 250px;
    }
}
