/* ===== Landing wrapper (volitelné) ===== */
.custom-category-landing {
    padding-bottom: 10px;
}

/* ===== Sekční nadpisy + popisky ===== */
.category-heading {
    text-align: center;
    margin: 34px 0 18px;
    position: relative;
    padding: 0 16px;
}

.category-heading h2 {
    font-size: 2.1rem;
    font-weight: 750;
    display: inline-block;
    position: relative;
    line-height: 1.15;
    letter-spacing: -0.3px;
}

.category-heading h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #0056b3;
    margin: 10px auto 0;
    border-radius: 2px;
}

.category-subtitle {
    font-size: 1rem;
    color: #666;
    margin-top: 10px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.55;
}

/* ===== Grid a karty (moderní jednoduchý vzhled) ===== */
.custom-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
    padding: 12px 20px 26px;
}

.custom-product-grid .product-item {
    border: 1px solid rgba(0,0,0,0.06);
    padding: 14px;
    background: #fff;
    text-align: left;
    box-sizing: border-box;

    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.04);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.custom-product-grid .product-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(0,0,0,0.08);
    border-color: rgba(0,0,0,0.10);
}

.custom-product-grid .product-item-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-image-container {
    border-radius: 12px;
    overflow: hidden;
    background: #f7f7f8;
    padding: 10px;
}

.custom-product-grid img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    transform: scale(1);
    transition: transform 0.18s ease;
}

.custom-product-grid .product-item:hover img {
    transform: scale(1.03);
}

.product-details {
    padding-top: 12px;
}

.custom-product-grid h3,
.custom-product-grid .product-name {
    font-size: 1.05rem;
    font-weight: 650;
    margin: 0;
    line-height: 1.25;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== Responzivita ===== */
@media (max-width: 900px) {
    .category-heading {
        margin: 26px 0 14px;
    }
    .category-heading h2 {
        font-size: 1.75rem;
    }
    .custom-product-grid {
        padding: 10px 16px 22px;
        gap: 14px;
    }
    .category-subtitle {
        font-size: 0.98rem;
    }
}

@media (max-width: 600px) {
    .custom-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .custom-product-grid .product-item {
        border-radius: 12px;
        padding: 12px;
    }
}

@media (max-width: 420px) {
    .custom-product-grid {
        grid-template-columns: 1fr;
    }
}

/* ====== styly pro ceny (nechávám, jak jsi poslal) ====== */
.product-prices {
    margin-top: .7rem;
    font-size: 1.2rem;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: .6rem;
    justify-self: center;
}

.product-prices .old-price {
    font-size: 1.1rem;
    color: #999;
    text-decoration: line-through;
    text-decoration-thickness: 1px;
}

.product-prices .new-price {
    font-size: 1.3rem;
    color: #d00;
    font-weight: 700;
}

/* ====== badge (NEUPRAVENO – přesně jak jsi poslal) ====== */
.product-item {
    position: relative; /* nutné pro absolutní pozici badge */
    overflow: hidden;   /* aby badge nevyčuhovala mimo kartu */
}

/* základní badge */
.product-badge {
    position: absolute;
    top: 0;
    right: 0;

    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    background-color: #cd9900; /* default */
    padding: 6px 18px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.35);
    border-radius: 0 0 0 12px;
    z-index: 2;
}

/* ohnutý roh */
.product-badge::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    border-width: 0 16px 16px 0;
    border-style: solid;
    border-color: transparent #bb8c00 transparent transparent;
    z-index: 1;
    box-shadow: -2px 2px 3px rgba(0,0,0,0.2);
}

/* varianty */
.product-badge.badge--sleva {
    background-color: #c0392b;
}
.product-badge.badge--sleva::before {
    border-color: transparent #962d22 transparent transparent;
}

.product-badge.badge--oblibene {
    background-color: #8e44ad;
}
.product-badge.badge--oblibene::before {
    border-color: transparent #6d3386 transparent transparent;
}

.product-badge.badge--nejprodavanejsi {
    background-color: #d35400;
}
.product-badge.badge--nejprodavanejsi::before {
    border-color: transparent #a84300 transparent transparent;
}

.product-badge.badge--novinka {
    background-color: #27ae60;
}
.product-badge.badge--novinka::before {
    border-color: transparent #1e8449 transparent transparent;
}

/* tvoje další checkout barvy */
.cart-summary .checkout-methods-items .action.primary.checkout {
    background-color: #89BC23;
}
.action.checkout.amasty {
    background-color: #89BC23;
}
