.hero {
    position: relative;
    overflow: hidden;
    padding: 62px 0 54px;
    background:
        radial-gradient(circle at 85% 10%, rgba(216,137,53,.22), transparent 32%),
        radial-gradient(circle at 8% 90%, rgba(140,59,19,.11), transparent 35%),
        linear-gradient(180deg, #fffaf4 0%, #fff4e6 100%);
}
.hero-inner { max-width: 760px; text-align: center; }
.eyebrow {
    margin: 0 0 10px;
    color: var(--brand);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .15em;
    text-transform: uppercase;
}
.hero h1 {
    margin: 0;
    font-size: clamp(34px, 7vw, 62px);
    line-height: 1.13;
    letter-spacing: -.035em;
}
.hero h1 span { color: var(--brand); font-family: Georgia, "Times New Roman", serif; font-style: italic; }
.hero p:not(.eyebrow) { max-width: 660px; margin: 18px auto 0; color: var(--muted); font-size: clamp(16px, 2vw, 18px); }
.primary-cta, .secondary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    margin-top: 24px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.primary-cta { background: var(--brand); color: #fff; box-shadow: 0 12px 28px rgba(140,59,19,.22); }
.primary-cta:hover, .secondary-cta:hover { transform: translateY(-2px); }

.products-section { padding: 58px 0 50px; }
.section-heading { max-width: 670px; margin: 0 auto 30px; text-align: center; }
.section-heading h2 { margin: 0; font-size: clamp(28px, 5vw, 42px); line-height: 1.2; }
.section-heading p:last-child { margin: 10px 0 0; color: var(--muted); }

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}
.product-card {
    scroll-margin-top: 95px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.product-image-wrap { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: #f4e8da; }
.product-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.product-card:hover .product-image-wrap img { transform: scale(1.02); }
.price-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-grid;
    place-items: center;
    min-width: 82px;
    height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.94);
    color: var(--brand-dark);
    font-weight: 950;
    font-size: 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,.11);
    backdrop-filter: blur(8px);
}
.product-body { padding: 22px; }
.product-code {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--brand);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .1em;
}
.product-body h3 { margin: 0; font-size: 25px; line-height: 1.25; }
.product-body > p { margin: 10px 0 18px; color: var(--muted); }
.product-meta {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}
.product-meta strong { color: var(--brand-dark); font-size: 25px; }
.product-meta span { color: var(--muted); font-size: 13px; text-align: right; }
.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    margin-top: 18px;
    padding: 0 18px;
    border-radius: 14px;
    background: #18864b;
    color: #fff;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(24,134,75,.18);
    transition: transform .18s ease, filter .18s ease;
}
.whatsapp-btn:hover { transform: translateY(-2px); filter: brightness(.96); }
.wa-icon { width: 27px; height: 27px; display: grid; place-items: center; border: 2px solid rgba(255,255,255,.85); border-radius: 50%; font-size: 14px; }

.trust-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    margin-top: 28px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--line);
}
.trust-strip div { padding: 18px; background: rgba(255,255,255,.65); text-align: center; }
.trust-strip strong, .trust-strip span { display: block; }
.trust-strip strong { color: var(--brand-dark); }
.trust-strip span { margin-top: 3px; color: var(--muted); font-size: 13px; }

.custom-order { padding: 10px 0 66px; }
.custom-order-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    padding: 30px;
    border-radius: var(--radius);
    background: var(--brand-dark);
    color: #fff;
    box-shadow: var(--shadow);
}
.custom-order-card .eyebrow { color: #f7c58d; }
.custom-order-card h2 { margin: 0; font-size: clamp(25px, 4vw, 36px); }
.custom-order-card p:not(.eyebrow) { margin: 9px 0 0; color: rgba(255,255,255,.78); }
.secondary-cta { flex: 0 0 auto; margin: 0; background: #fff; color: var(--brand-dark); }

@media (max-width: 760px) {
    .hero { padding: 44px 0 40px; }
    .products-section { padding-top: 42px; }
    .product-grid { grid-template-columns: 1fr; gap: 20px; }
    .product-body { padding: 18px; }
    .trust-strip { grid-template-columns: 1fr; }
    .custom-order-card { align-items: stretch; flex-direction: column; }
    .secondary-cta { width: 100%; }
}

@media (max-width: 420px) {
    .wrap { width: min(100% - 22px, 1120px); }
    .header-inner { min-height: 66px; }
    .brand small { display: none; }
    .header-order { padding: 9px 13px; font-size: 13px; }
    .hero h1 { font-size: 36px; }
    .product-card { border-radius: 20px; }
}
