/* Gift / Kindle guide pages */

.gift-guide-hero {
    position: relative;
    padding: 1.5rem 1rem 2rem;
    margin-bottom: 1.5rem;
    border-radius: 1.25rem;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(155, 93, 229, 0.12), transparent 55%),
        radial-gradient(ellipse at 90% 20%, rgba(74, 86, 185, 0.1), transparent 50%),
        linear-gradient(180deg, var(--brand-bg-light) 0%, #fff 100%);
    border: 1px solid var(--brand-border);
}

.gift-guide-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--brand-border);
    font-family: 'Crimson Pro', serif;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(44, 57, 153, 0.06);
}

.gift-guide-intro {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.15rem;
    line-height: 1.55;
    color: #444;
}

.gift-jump-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 0.5rem;
    margin: 0 -0.25rem 1.75rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--brand-border);
}

.gift-jump-link {
    background-color: #fff;
    color: var(--brand-heading);
    border: 1px solid var(--brand-border);
    font-family: 'Crimson Pro', serif;
    transition: all 0.2s ease;
}

.gift-jump-link:hover,
.gift-jump-link.is-active {
    background: linear-gradient(90deg, #652ABF 0%, #9B5DE5 100%);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
}

.gift-tag-chip {
    background: var(--brand-bg-light);
    color: var(--brand-purple-deep);
    border: 1px solid var(--brand-border);
    font-family: 'Crimson Pro', serif;
    transition: all 0.2s ease;
}

.gift-tag-chip:hover,
.gift-tag-chip.is-active {
    background: var(--brand-purple);
    color: #fff;
    border-style: solid;
    border-color: var(--brand-purple);
}

.gift-section {
    scroll-margin-top: 5rem;
    margin-bottom: 2.5rem;
}

.gift-section-lead {
    max-width: 560px;
    margin: 0 auto 1.25rem;
    text-align: center;
    font-family: 'Crimson Pro', serif;
    color: #666;
    font-size: 1.05rem;
}

.gift-product-card {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(44, 57, 153, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    background: #fff;
}

.gift-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(44, 57, 153, 0.14);
}

.gift-product-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    padding: 1.25rem 1rem 0.5rem;
    background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
}

.gift-product-img {
    max-height: 160px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.gift-product-title {
    font-size: 1.1rem;
    color: var(--brand-heading);
    font-family: 'Playfair Display', serif;
}

.gift-product-desc {
    font-family: 'Crimson Pro', serif;
    font-size: 0.95rem;
    line-height: 1.45;
}

.gift-filter-browse {
    margin: -0.75rem 0 1.5rem;
    padding: 0.35rem 0.5rem 0.75rem;
}

.gift-browse-more {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: 'Crimson Pro', serif;
    font-weight: 700;
    color: var(--brand-purple-deep);
    text-decoration: none;
}

.gift-browse-more:hover {
    color: var(--brand-heading);
    text-decoration: underline;
}

.gift-crosslink {
    display: block;
    text-align: center;
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    border-radius: 1rem;
    background: linear-gradient(105deg, rgba(101, 42, 191, 0.08), rgba(74, 86, 185, 0.1));
    border: 1px solid var(--brand-border);
    text-decoration: none;
    color: var(--brand-heading);
    font-family: 'Crimson Pro', serif;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gift-crosslink:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 57, 153, 0.1);
    color: var(--brand-heading);
}

.gift-crosslink strong {
    font-family: 'Playfair Display', serif;
}

.gift-product-col.is-dimmed {
    opacity: 0.28;
    filter: grayscale(0.4);
    pointer-events: none;
}

.gift-section.is-filter-empty {
    display: none;
}

.gift-faq {
    font-family: 'Crimson Pro', serif;
    margin-bottom: 60px;
}

.gift-disclosure {
    font-family: 'Crimson Pro', serif;
    font-size: 0.85rem;
    max-width: 600px;
}

@media (min-width: 992px) {
    .gift-product-img-wrap {
        min-height: 200px;
    }
    .gift-product-img {
        max-height: 180px;
    }
}
