.dc-page {
    background: #fff;
    color: #0f172a;
    min-height: 100vh;
    padding: 40px 0 80px;
}

.dc-hero,
.dc-products {
    width: min(1360px, calc(100% - 32px));
    margin: 0 auto;
}

.dc-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
    gap: 48px;
    align-items: start;
}

.dc-gallery {
    position: sticky;
    top: 96px;
}

.dc-gallery-main {
    aspect-ratio: 1 / 1;
    border-radius: 28px;
    background: #f6f7f9;
    overflow: hidden;
    border: 1px solid #edf0f4;
}

.dc-gallery-main img,
.dc-thumb img,
.dc-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.dc-no-image {
    height: 100%;
    display: grid;
    place-items: center;
    color: #64748b;
    font-weight: 700;
}

.dc-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.dc-thumb {
    width: 86px;
    height: 86px;
    border: 2px solid transparent;
    border-radius: 18px;
    background: #f8fafc;
    cursor: pointer;
    overflow: hidden;
}

.dc-thumb.active {
    border-color: #fecf0c;
}

.dc-info {
    border: 1px solid #edf0f4;
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 18px 60px rgba(15, 23, 42, .07);
}

.dc-kicker {
    display: inline-flex;
    color: #7c6a00;
    background: #fff6c7;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
}

.dc-info h1 {
    margin: 22px 0 18px;
    font-size: clamp(38px, 5vw, 72px);
    line-height: .95;
    letter-spacing: 0;
}

.dc-description {
    color: #64748b;
    font-size: 16px;
    line-height: 1.8;
}

.dc-price {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin: 28px 0;
}

.dc-price strong {
    font-size: 40px;
    color: #000;
}

.dc-price span {
    color: #94a3b8;
    font-weight: 800;
    text-decoration: line-through;
}

.dc-price-muted {
    color: #334155;
    font-weight: 900;
}

.dc-stock {
    margin-bottom: 24px;
    font-weight: 900;
}

.dc-stock.is-in {
    color: #047857;
}

.dc-stock.is-out {
    color: #dc2626;
}

.dc-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.dc-qty {
    display: inline-grid;
    grid-template-columns: 44px 64px 44px;
    height: 54px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
}

.dc-qty button,
.dc-qty input {
    border: 0;
    background: #fff;
    text-align: center;
    font-weight: 900;
}

.dc-add,
.dc-whatsapp {
    min-height: 54px;
    border: 0;
    border-radius: 16px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 900;
    cursor: pointer;
}

.dc-add {
    background: #000;
    color: #fff;
}

.dc-whatsapp {
    background: #ecfdf5;
    color: #047857;
}

.dc-products {
    margin-top: 72px;
}

.dc-section-head span {
    color: #7c6a00;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .08em;
}

.dc-section-head h2 {
    margin: 10px 0 24px;
    font-size: 34px;
}

.dc-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.dc-product-card {
    border: 1px solid #edf0f4;
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
}

.dc-product-image {
    display: block;
    aspect-ratio: 1 / .82;
    background: #f8fafc;
}

.dc-product-info {
    display: grid;
    gap: 8px;
    padding: 18px;
}

.dc-product-info small,
.dc-product-info span,
.dc-product-info em {
    color: #64748b;
    font-style: normal;
}

.dc-product-attrs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.dc-product-attrs span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 9px;
    border-radius: 8px;
    background: #f8fafc;
    color: #334155;
    font-size: 12px;
    font-weight: 800;
}

@media (max-width: 900px) {
    .dc-hero {
        grid-template-columns: 1fr;
    }

    .dc-gallery {
        position: static;
    }

    .dc-info {
        padding: 26px;
    }
}
