/* ============================================================
   PUICIK.MD - PRODUCT-PAGE.CSS
   PRODUCT-PAGE.CSS - stiluri specifice paginilor de produs
   (hero-card, galerie foto, pret, specificatii, CTA)
   Se incarca DUPA shared.css (suprascrie unele reguli generice).
   ============================================================ */

/* ===== PRODUCT PAGE - RESTAURARE DESIGN ORIGINAL (hero-card, galerie, pret) ===== */
.hero { padding: 130px 0 32px; position: static; overflow: visible; }

@media (max-width: 768px) { .hero { padding: 108px 0 24px; } }

.hero-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: start;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.hero-media {
    background: linear-gradient(135deg, var(--cream) 0%, var(--peach-light) 100%);
    padding: 20px;
    border-radius: 0;
    box-shadow: none;
    min-height: 0;
}

.hero-main-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4/4.2;
    object-fit: cover;
    object-position: center top;
    border-radius: 24px;
    display: block;
}

.thumb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 12px;
}

.gallery-thumb {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: none;
}

.gallery-thumb img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.gallery-thumb.is-active {
    outline: 3px solid rgba(255, 107, 107, 0.35);
    outline-offset: 2px;
}

.hero-copy { padding: 34px 34px 34px 0; text-align: left; max-width: none; }

.hero-copy .badge {
    display: inline-flex;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--peach-light);
    color: var(--coral-deep);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 14px;
}

.hero-copy h1 {
    font-size: clamp(40px, 5vw, 62px);
    margin-bottom: 12px;
    animation: none;
}

.hero-copy .subtitle {
    color: var(--text-body);
    font-size: 18px;
    margin-bottom: 20px;
}

.price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 18px; flex-wrap: wrap; }

.price-row .price-old { font-size: 22px; font-weight: 800; color: var(--text-muted); text-decoration: line-through; }

.price-row .price-current { display: inline-flex; align-items: baseline; gap: 10px; }

.price-row .price-label {
    font-size: 11px; font-weight: 800; color: #fff;
    background: var(--coral); border-radius: 999px; padding: 4px 9px;
    text-transform: uppercase; letter-spacing: 0.6px;
}

.price-row .price { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 700; }

.price-row .currency { color: var(--text-muted); font-weight: 800; }

.shipping-partner {
    display: inline-flex; align-items: center; gap: 10px;
    margin-bottom: 16px; color: var(--text-body); font-size: 14px; font-weight: 700;
}

.shipping-partner img { height: 20px; width: auto; display: block; }

.hero-copy .cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }

.hero-copy .btn {
    padding: 15px 26px;
    font-size: 15px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--coral-deep), var(--coral));
    color: #fff;
    box-shadow: var(--shadow-coral);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,107,107,0.35); }

.btn-secondary {
    background: var(--messenger);
    color: #fff;
    box-shadow: var(--shadow-messenger);
}

.btn-secondary:hover { background: var(--messenger-dark); transform: translateY(-2px); }

main .section { padding: 28px 0 0; }

.section-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 30px;
}

.section-card .section-title { font-size: 34px; margin-bottom: 12px; text-align: left; }

.detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 18px; }

.detail { background: var(--sky-light); border-radius: 18px; padding: 18px; }

.detail strong { display: block; margin-bottom: 6px; }

main + footer.footer,
footer.footer {
    padding: 36px 0 48px;
    text-align: center;
    color: var(--text-muted);
}

footer.footer a { color: var(--coral); text-decoration: none; font-weight: 800; }

@media (max-width: 860px) {
    .hero-card { grid-template-columns: 1fr; }
    .hero-copy { padding: 0 22px 28px; }
    .detail-grid { grid-template-columns: 1fr; }
}

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

/* ===== GIFT PROMO (pernute cadou 380 MDL) ===== */
.gift-promo {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #FFF3D6 0%, #FFE7B3 100%);
    border: 1.5px solid #FFD966;
    border-radius: var(--radius-md);
    padding: 14px 18px;
    margin-bottom: 16px;
}
.gift-promo-icon {
    font-size: 28px;
    flex-shrink: 0;
    line-height: 1;
}
.gift-promo-text {
    font-size: 14px;
    color: #6B4E00;
    line-height: 1.4;
}
.gift-promo-text strong {
    color: #7A2E00;
    display: block;
    font-size: 14.5px;
    margin-bottom: 2px;
}
