/* ========================================
   home.css – GiftLabs Landing Page
   Minimal, clean, whitespace-first
   ======================================== */

/* ── Hero ── */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10vh 5vw;
    width: 100%;
}

.hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.hero-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.12;
    max-width: 700px;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.hero-section h1 em {
    font-style: italic;
    color: var(--accent-gold);
}

.hero-sub {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 420px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ── Section Headings ── */
.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
}

.section-heading em {
    font-style: italic;
    color: var(--accent-gold);
}

/* ── Featured Section ── */
.featured-section {
    width: 100%;
    margin-bottom: 10vh;
}

.featured-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4vh;
}

.view-all {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-decoration: none;
    transition: opacity 0.2s;
}

.view-all:hover { opacity: 0.6; }

.featured-footer {
    display: flex;
    justify-content: center;
    margin-top: 8vh;
}

.intriguing-btn {
    padding: 1.2rem 3.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: var(--glass-bg);
    border: 1px solid var(--accent-gold);
    color: var(--text-main);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.intriguing-btn:hover {
    background: var(--accent-gold);
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 10px 30px var(--accent-gold-glow);
}

.intriguing-btn i {
    transition: transform 0.4s ease;
}

.intriguing-btn:hover i {
    transform: translateX(6px);
}

/* ── Product Cards (Home) ── */
.home-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: 3vw;
    width: 100%;
    justify-content: center;
}

.product-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 2vw;
    padding: 2.5vh 2vw;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}

.product-ribbon {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    background: var(--accent-gold);
    color: #000;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.22rem 0.6rem;
    border-radius: 50px;
}

.product-cat-tag {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.product-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5vh;
}

.product-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--accent-gold);
}

.product-price {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--text-main);
}

.product-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 2vh;
    white-space: pre-line;
}

.product-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5vh;
    margin-bottom: 2.5vh;
}

.product-features li {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-features li::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent-gold);
    flex-shrink: 0;
}

.product-actions {
    display: flex;
    gap: 0.6rem;
    margin-top: auto;
}

.btn-outline {
    flex: 1;
    padding: 0.6rem;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    background: transparent;
    color: var(--text-main);
    font-size: 0.76rem;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
}

.btn-outline:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.btn-primary-sm {
    flex: 2;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    background: var(--accent-gold);
    color: #000;
    border: none;
    font-size: 0.76rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
    font-family: 'Outfit', sans-serif;
}

.btn-primary-sm:hover { opacity: 0.8; }

/* ── CTA Banner ── */
.cta-banner {
    width: 100%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 4vw;
    padding: 8vh 5vw;
    text-align: center;
    margin-bottom: 8vh;
    backdrop-filter: blur(12px);
}

.cta-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.cta-banner h2 em {
    font-style: italic;
    color: var(--accent-gold);
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Footer ── */
.site-footer {
    width: 100%;
    border-top: 1px solid var(--glass-border);
    padding: 6vh 5vw 3vh;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 5vw;
    margin-bottom: 4vh;
}

.footer-brand-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 0.8rem;
    max-width: 200px;
}

.footer-col h5 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
    font-size: 0.85rem;
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--accent-gold); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.footer-socials {
    display: flex;
    gap: 1.2rem;
    font-size: 1rem;
}

.footer-socials a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-socials a:hover { color: var(--accent-gold); }

/* ── Responsive ── */
@media (max-width: 600px) {
    .footer-top { grid-template-columns: 1fr; gap: 4vh; }
    .cta-banner { padding: 5vh 4vw; }
}
