/* ===== PRODUCT PAGE ===== */
.prod-page { background: #F0F4F7; min-height: 80vh; }

/* ── Breadcrumb bar ── */
.prod-topbar {
    background: var(--color-navy);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.prod-topbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.prod-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    flex-wrap: wrap;
}
.prod-breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; }
.prod-breadcrumb a:hover { color: var(--color-teal); }
.prod-breadcrumb svg { width: 10px; height: 10px; opacity: 0.5; }
.topbar-price {
    font-size: 18px;
    color: #fff;
    white-space: nowrap;
}
.topbar-price small { display: block; font-size: 10px; color: rgba(255,255,255,0.5); text-align: right; }

/* ── Centered wrapper ── */
.prod-center {
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px 20px 64px;
}

/* ── Back link ── */
.prod-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--color-text);
    text-decoration: none;
    margin-bottom: 24px;
    transition: color 0.2s;
}
.prod-back:hover { color: var(--color-teal); }
.prod-back svg { width: 16px; height: 16px; transform: rotate(180deg); }

/* ── Visual Kit display ── */
.prod-vk {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 48px rgba(0,0,0,0.10);
    margin-bottom: 28px;
}
.prod-vk img {
    width: 100%;
    display: block;
}

/* ── No visual kit: cover + description ── */
.prod-nokit {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 48px rgba(0,0,0,0.08);
    margin-bottom: 28px;
}
.prod-nokit-cover {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}
.prod-nokit-body { padding: 36px 40px; }
.prod-nokit-cat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,181,134,0.1);
    color: var(--color-teal);
    border: 1px solid rgba(0,181,134,0.25);
    padding: 3px 12px;
    border-radius: 30px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}
.prod-nokit-title {
    font-size: 36px;
    color: var(--color-navy);
    line-height: 1.1;
    margin: 0 0 10px;
}
.prod-nokit-subtitle {
    font-size: 16px;
    color: var(--color-text);
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #eef0f2;
}
.prod-nokit-desc {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.75;
}
.prod-nokit-desc p { margin-bottom: 14px; }

/* ── Buy panel (below visual kit) ── */
.prod-buy-panel {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}
.buy-info { flex: 1; min-width: 200px; }
.buy-info-name {
    font-size: 18px;
    color: var(--color-navy);
    margin-bottom: 4px;
}
.buy-info-cat {
    font-size: 12px;
    color: var(--color-teal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.buy-price-block { flex-shrink: 0; text-align: center; }
.buy-price-label { font-size: 11px; color: var(--color-text); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.buy-price-value {
    font-size: 40px;
    color: var(--color-navy);
    line-height: 1;
}
.buy-price-value sup { font-size: 16px; vertical-align: super; }
.buy-price-value small { font-size: 20px; }
.buy-price-consult { font-size: 16px; color: var(--color-text); }

.buy-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    min-width: 200px;
}
.btn-buy-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--color-teal);
    color: #fff;
    padding: 13px 24px;
    border-radius: 12px;
    font-size: 15px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    font-family: 'Nunito', sans-serif;
    white-space: nowrap;
}
.btn-buy-cart:hover { background: #009e74; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,181,134,0.35); }
.btn-buy-cart svg { width: 18px; height: 18px; }

.btn-buy-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #fff;
    color: var(--color-navy);
    padding: 11px 24px;
    border-radius: 12px;
    font-size: 14px;
    border: 1.5px solid #e2e8ef;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    font-family: 'Nunito', sans-serif;
    white-space: nowrap;
}
.btn-buy-wa:hover { border-color: #25D366; color: #128C7E; }
.btn-buy-wa svg { width: 17px; height: 17px; color: #25D366; }

.buy-trust {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid #f0f2f4;
    width: 100%;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--color-text);
}
.trust-item svg { width: 13px; height: 13px; color: var(--color-teal); }

/* ── Responsive ── */
@media (max-width: 768px) {
    .prod-buy-panel { flex-direction: column; gap: 20px; }
    .buy-info, .buy-actions { min-width: unset; width: 100%; }
    .buy-price-block { width: 100%; text-align: left; }
    .prod-nokit-body { padding: 24px 20px; }
    .prod-nokit-title { font-size: 26px; }
    .topbar-price { display: none; }
}
