/* =====================================================
   Wish Boutique — Shared Landing Page Styles
   Used by all SEO collection pages in /collections/
   ===================================================== */

/* ---------- Design Tokens ---------- */
:root {
    --bg-light: #F4F1ED;
    --bg-mid: #DDE3E8;
    --bg-dark: #5A7380;
    --bg-darker: #3D5260;
    --text-dark: #1C2B3A;
    --text-mid: #4A5A68;
    --rose: #C68E8E;
    --font-serif: 'Lora', serif;
    --font-sans: 'Inter', sans-serif;
    --transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* ---------- Base ---------- */
body {
    font-family: var(--font-sans);
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.7;
}

/* ---------- Navigation ---------- */
nav {
    position: sticky;
    top: 0;
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
}
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
    text-decoration: none;
    color: var(--text-mid);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}
.nav-links a.shop-link { color: var(--rose); font-weight: 600; }
@media (max-width: 600px) { .nav-links { display: none; } }

/* ---------- Layout ---------- */
.section { padding: 6rem 1.5rem; position: relative; }
.section-inner { max-width: 1100px; margin: 0 auto; z-index: 2; position: relative; }

/* ---------- Typography ---------- */
.eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.25rem;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 1rem;
    display: block;
}
h1, h2, h3 { font-family: var(--font-serif); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 6vw, 4rem); margin-bottom: 1.5rem; }
h2 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1.5rem; }
p  { font-size: 1.1rem; color: var(--text-mid); margin-bottom: 2rem; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid var(--text-dark);
    cursor: pointer;
}
.btn-filled  { background: var(--text-dark); color: white; }
.btn-outline { background: transparent; color: var(--text-dark); opacity: 0.8; }

/* ---------- Grids ---------- */
.grid-3  { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2rem; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
@media (max-width: 850px) { .two-col { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ---------- Product Cards ---------- */
.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}
.product-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.product-info { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--bg-light);
    color: var(--text-dark);
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
    align-self: flex-start;
}
.product-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: var(--font-sans);
    letter-spacing: -0.02em;
}
.product-subtitle { font-size: 0.95rem; color: var(--text-mid); margin-bottom: 1.5rem; flex-grow: 1; }

/* ---------- FAQ ---------- */
.faq-item { margin-bottom: 1rem; background: white; border-radius: 12px; border: 1px solid rgba(0,0,0,0.05); }
.faq-item summary {
    padding: 1.5rem;
    cursor: pointer;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    list-style: none;
    display: flex;
    justify-content: space-between;
}
.faq-content { padding: 0 1.5rem 1.5rem; color: var(--text-mid); }

/* ---------- Testimonials Marquee ---------- */
.testimonial-marquee-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 3rem;
    padding: 1rem 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.testimonial-grid {
    display: flex;
    gap: 1.75rem;
    width: max-content;
    animation: scroll-marquee 40s linear infinite;
    margin-top: 0 !important;
}
.testimonial-grid:hover {
    animation-play-state: paused;
}
@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 0.875rem)); }
}
.testimonial-card {
    width: 350px;
    flex-shrink: 0;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.09);
}
@media (max-width: 600px) { .testimonial-card { width: 300px; padding: 1.5rem; } }

/* ---------- SVG Icons ---------- */
.svg-icon {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ---------- List Items ---------- */
.list-item { display: flex; align-items: flex-start; gap: 1rem; font-size: 1.1rem; color: var(--text-mid); margin-bottom: 1rem; }
.list-icon  { color: var(--rose); width: 24px; height: 24px; flex-shrink: 0; }

/* ---------- Footer ---------- */
footer { background: var(--bg-darker); color: white; padding: 6rem 1.5rem 3rem; position: relative; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
    text-align: left;
}
.footer-col h4 {
    color: white;
    margin-bottom: 2.5rem;
    font-family: var(--font-sans);
    font-weight: 600;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    font-size: 1.1rem;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 1.5rem; }
.footer-links a { color: rgba(255,255,255,0.7); transition: color 0.3s; font-size: 1.25rem; }
.footer-links a:hover { color: white; }
.footer-col p { color: rgba(255,255,255,0.7); line-height: 1.8; font-size: 1.25rem; }
.footer-social { display: flex; gap: 2rem; margin-top: 2.5rem; }
.social-icon-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.15);
}
.social-icon-btn:hover { background: white; color: var(--bg-darker); transform: translateY(-5px); }
.social-icon-btn svg { width: 28px; height: 28px; }
.footer-bottom {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; gap: 3rem; } }
@media (max-width: 600px) { .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; } }
