/* Aurelielle custom homepage — home-specific layout (featured-product grid).
   Section styles (hero, pillars, testimonials, FAQ, CTA banner) live in
   aur-sections.css and apply here via the .aur-section classes. */

.aur-home {
    /* Home inherits the cream body background from .aur-page but the hero is
       full-bleed dark — covered by .aur-hero below. */
}

/* FEATURED PRODUCT — image on the left, pricing/tiers on the right.
   The image column used to be 1fr 1fr (50/50) which made the product
   photo feel oversized vs the copy. New ratio: ~38/62 — image gets
   enough room to be the focal point without dominating the section. */
.aur-featured-grid {
    display: grid;
    grid-template-columns: minmax(260px, 38fr) 62fr;
    gap: 56px;
    align-items: center;
}
@media (max-width: 900px) {
    .aur-featured-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 480px;
        margin: 0 auto;
    }
}

.aur-featured__media {
    position: relative;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.05);
    /* Capped height so the image stops eating the page on big viewports. */
    max-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
@media (max-width: 900px) {
    .aur-featured__media {
        max-height: 360px;
        padding: 20px;
    }
}
.aur-featured__img {
    width: 100%;
    height: auto;
    max-height: 100%;
    border-radius: 10px;
    display: block;
    object-fit: contain;
}
.aur-featured__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #c9a96e;
    color: #fff;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 4px;
    font-size: 13px;
    letter-spacing: 0.05em;
}
.aur-featured__info { padding: 8px 0; }
.aur-featured__desc {
    color: #555;
    line-height: 1.7;
    margin: 16px 0 28px;
    font-size: 16px;
}
.aur-featured__pricing {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #ececec;
}
.aur-featured__was {
    color: #888;
    text-decoration: line-through;
    font-size: 18px;
}
.aur-featured__now {
    color: #1a1a1a;
    font-size: 36px;
    font-weight: 700;
    font-family: var(--global-heading-font-family, inherit);
    line-height: 1;
}
.aur-featured__save {
    color: #c9a96e;
    font-weight: 600;
    font-size: 13px;
    background: rgba(201, 169, 110, 0.12);
    padding: 6px 10px;
    border-radius: 4px;
}
.aur-featured__tiers {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}
.aur-tier {
    display: grid;
    grid-template-columns: 56px 1fr auto auto;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 8px;
    text-decoration: none;
    color: #1a1a1a;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.aur-tier:hover {
    border-color: #c9a96e;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(201, 169, 110, 0.15);
}
.aur-tier--featured {
    border-color: #c9a96e;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.08), rgba(201, 169, 110, 0.02));
}
.aur-tier__qty {
    font-weight: 700;
    color: #c9a96e;
    font-size: 15px;
}
.aur-tier__label {
    font-weight: 600;
    color: #1a1a1a;
}
.aur-tier__price {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 16px;
}
.aur-tier__save {
    background: #c9a96e;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.aur-featured__bullets {
    list-style: none;
    padding: 16px 0 0;
    margin: 24px 0 0;
    border-top: 1px solid #ececec;
    color: #555;
    font-size: 14px;
    line-height: 2;
}
