.shop-template-showcase .shop-modern-shell {
    --shop-modern-accent: #0c8f6b;
}

.shop-template-showcase .shop-hero-modern {
    border-radius: 22px;
    border: 1px solid rgba(14, 37, 68, 0.14);
    background: linear-gradient(138deg, #f3f9ff 0%, #ffffff 42%, #f6fbff 100%);
    background:
        linear-gradient(138deg, color-mix(in srgb, var(--shop-modern-accent) 18%, #ffffff) 0%, #ffffff 42%, #f6fbff 100%);
}

.shop-template-showcase .shop-hero-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.shop-template-showcase .shop-hero-logo {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 24px rgba(18, 40, 69, 0.16);
}

.shop-template-showcase .shop-hero-content h1 {
    font-size: clamp(1.55rem, 3vw, 2.3rem);
    letter-spacing: -0.03em;
    margin-bottom: 6px;
}

.shop-template-showcase .shop-hero-content p {
    margin: 0;
}

.shop-template-showcase .shop-categories-modern {
    border-radius: 16px;
    border: 1px solid #dce7f3;
    box-shadow: none;
}

.shop-template-showcase .shop-categories-modern h2 {
    margin: 0 0 10px;
    font-size: 1.06rem;
}

.shop-template-showcase .shop-categories-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.shop-template-showcase .shop-category-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 11px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #1d3c5f;
    border: 1px solid #cbdcf1;
    background: #f2f8ff;
}

.shop-template-showcase .shop-products-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 14px;
}

.shop-template-showcase .shop-product-card-modern {
    border: 1px solid #d3e2f4;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 26px rgba(20, 42, 73, 0.12);
    overflow: hidden;
}

.shop-template-showcase .shop-product-card-modern .shop-product-media {
    position: relative;
}

.shop-template-showcase .shop-product-card-modern .shop-product-image,
.shop-template-showcase .shop-product-card-modern .shop-product-placeholder {
    height: 220px;
}

.shop-template-showcase .shop-product-badge-promo {
    position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 0.78rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(120deg, #f04d3d, #d63827);
}

.shop-template-showcase .shop-product-card-modern .shop-product-body {
    padding: 13px;
}

.shop-template-showcase .shop-product-card-modern .shop-product-body h3 {
    margin-bottom: 7px;
}

.shop-template-showcase .shop-popular-modern {
    border-radius: 16px;
}

.shop-template-showcase .shop-popular-modern h2 {
    margin: 0 0 12px;
    font-size: 1.08rem;
}

.shop-template-showcase .shop-popular-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
}

.shop-template-showcase .shop-popular-item {
    border: 1px solid #d7e4f2;
    border-radius: 14px;
    padding: 9px;
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 10px;
    align-items: center;
    background: #fff;
}

.shop-template-showcase .shop-popular-media {
    width: 78px;
    height: 78px;
    overflow: hidden;
    border-radius: 10px;
    background: #eef5ff;
}

.shop-template-showcase .shop-popular-image,
.shop-template-showcase .shop-popular-placeholder {
    width: 78px;
    height: 78px;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5f7694;
    font-size: 0.74rem;
}

.shop-template-showcase .shop-popular-content h3 {
    margin: 0 0 5px;
    font-size: 0.94rem;
}

.shop-template-showcase .shop-popular-content .shop-product-meta {
    margin: 0 0 6px;
}

.shop-template-showcase .shop-popular-content .shop-product-cta {
    width: auto;
    margin-top: 0;
    padding: 8px 11px;
    border-radius: 9px;
}

.shop-template-showcase .shop-modern-footer {
    margin-top: 10px;
    padding: 12px 0 4px;
    border-top: 1px solid #dee8f4;
    text-align: center;
    color: #526983;
    font-size: 0.9rem;
}

@media (max-width: 820px) {
    .shop-template-showcase .shop-products-grid-modern {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .shop-template-showcase .shop-hero-brand {
        align-items: flex-start;
    }

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

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