/* ============================================================
   PUICIK.MD - DELIVERY-PAGE.CSS
   DELIVERY-PAGE.CSS - stiluri specifice paginii conditii livrare
   (hero-card livrare, reguli, note)
   Se incarca DUPA shared.css (suprascrie unele reguli generice).
   ============================================================ */

/* ===== ДОПОЛНИТЕЛЬНЫЕ СТИЛИ ДЛЯ СТРАНИЦЫ УСЛОВИЙ ===== */

.hero-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 48px;
}

.hero-copy h1 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 16px;
}

.hero-copy p {
    color: var(--text-body);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--peach-light);
    color: var(--coral-deep);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
}

.hero-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--cream);
    border-radius: var(--radius-md);
}

.hero-side img {
    height: 60px;
    width: auto;
}

.hero-side a {
    color: var(--coral);
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
}

.hero-side a:hover {
    text-decoration: underline;
}

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

.section-lead {
    color: var(--text-body);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 800px;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.rule {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 24px;
    border-left: 4px solid var(--coral);
}

.rule h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.rule p, .rule ul {
    color: var(--text-body);
    line-height: 1.7;
    font-size: 15px;
}

.rule ul {
    margin-top: 12px;
    padding-left: 20px;
}

.rule li {
    margin-bottom: 8px;
}

.note {
    margin-top: 32px;
    padding: 20px 24px;
    background: var(--sky-light);
    border-radius: var(--radius-md);
    color: var(--text-body);
    font-size: 15px;
    line-height: 1.7;
    border-left: 4px solid var(--sky);
}

.link-inline {
    color: var(--coral);
    text-decoration: none;
    font-weight: 700;
}

.link-inline:hover {
    text-decoration: underline;
}

@media (max-width: 860px) {
    .hero-card {
        grid-template-columns: 1fr;
        padding: 32px;
    }
    
    .hero-side {
        margin-top: 24px;
    }
    
    .section-card {
        padding: 32px;
    }
    
    .rules-grid {
        grid-template-columns: 1fr;
    }
}
