/* ==========================================
   FOREVER FUN TIMES — STYLES
   ========================================== */

:root {
    --primary: #4a90d9;
    --primary-dark: #2e6cb5;
    --primary-light: #e3eef9;
    --accent: #5b6abf;
    --accent-light: #e8eaf6;
    --dark: #1a1a2e;
    --dark-mid: #2d2d44;
    --text: #333;
    --text-muted: #6b7280;
    --light: #fafafa;
    --warm-bg: #f5f8fc;
    --success: #10b981;
    --warning: #f59e0b;
    --amazon-orange: #ff9900;
    --amazon-dark: #232f3e;
    --etsy-orange: #f1641e;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-hover: 0 8px 40px rgba(0,0,0,0.12);
}

* { box-sizing: border-box; }

body {
    font-family: 'Nunito', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.6;
}

/* ---- TOP BANNER ---- */
.top-banner {
    background: var(--dark);
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem;
    padding: 8px 0;
    font-weight: 600;
    letter-spacing: 0.3px;
}
.top-banner i { color: var(--primary); margin-right: 4px; }

/* ---- NAVBAR ---- */
.navbar {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
    padding: 12px 0;
    z-index: 1000;
}
.navbar-brand {
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--dark) !important;
    padding: 4px 0;
}
.navbar-logo { height: 135px; width: auto; }
.navbar-brand i { color: var(--primary); margin-right: 6px; }
.nav-link {
    font-weight: 700;
    color: var(--text) !important;
    font-size: 0.9rem;
    padding: 8px 16px !important;
}
.nav-link:hover { color: var(--primary) !important; }
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow);
    border-radius: var(--radius-sm);
    padding: 8px;
}
.dropdown-item {
    border-radius: 8px;
    padding: 8px 16px;
    font-weight: 600;
    font-size: 0.88rem;
}
.dropdown-item:hover { background: var(--primary-light); color: var(--primary-dark); }
.btn-cta {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.88rem;
    transition: all 0.2s;
}
.btn-cta:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(74,144,217,0.4); }
.btn-outline-cta {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.88rem;
    transition: all 0.2s;
}
.btn-outline-cta:hover { background: var(--primary); color: #fff; transform: translateY(-1px); }

/* ---- HERO ---- */
.hero-section {
    background: linear-gradient(135deg, var(--warm-bg) 0%, #fff 50%, var(--primary-light) 100%);
    padding: 30px 0 20px;
    overflow: hidden;
}
.min-vh-75 { min-height: auto; }
.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 20px;
}
.text-accent { color: var(--primary); }
.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 480px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}
.hero-visual { position: relative; height: 350px; display: flex; align-items: center; justify-content: center; }
.hero-product-img {
    max-width: 100%;
    max-height: 340px;
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    object-fit: contain;
}

/* ---- SECTIONS ---- */
.section { padding: 70px 0; }
.section-light { background: var(--light); }
.section-accent { background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%); }
.section-dark { background: var(--dark); color: #fff; }
.section-title { font-size: 2.2rem; font-weight: 900; margin-bottom: 10px; color: var(--dark); }
.section-dark .section-title { color: #fff; }
.section-subtitle { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto 40px; }

/* ---- PAGE HEADER ---- */
.page-header {
    background: linear-gradient(135deg, var(--warm-bg), var(--primary-light));
    padding: 40px 0 30px;
}
.page-header h1 { font-weight: 900; font-size: 2rem; margin-bottom: 6px; }
.page-header p { color: var(--text-muted); margin-bottom: 0; }
.breadcrumb { font-size: 0.85rem; margin-bottom: 10px; }
.breadcrumb a { color: var(--primary); text-decoration: none; font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }

/* ---- STEP CARDS ---- */
.step-card {
    text-align: center;
    padding: 40px 24px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.2s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.95rem;
}
.step-icon { font-size: 3rem; margin-bottom: 12px; }
.step-card h3 { font-weight: 800; font-size: 1.2rem; margin-bottom: 8px; }
.step-card p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 0; }

/* ---- PRODUCT CARDS ---- */
.product-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.25s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.product-card-link { text-decoration: none; color: inherit; flex: 1; display: flex; flex-direction: column; }
.product-image {
    height: 220px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.product-card:hover .product-image img { transform: scale(1.05); }
.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
}
.product-placeholder span { font-size: 4rem; }
.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.85);
    color: #fff;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
}
.product-badge i { color: var(--warning); }
.product-info { padding: 16px 18px 8px; flex: 1; }
.product-name { font-size: 1rem; font-weight: 800; margin-bottom: 6px; color: var(--dark); line-height: 1.3; }
.product-desc { font-size: 0.83rem; color: var(--text-muted); margin-bottom: 8px; line-height: 1.5; }
.product-price { font-size: 1.05rem; font-weight: 900; color: var(--primary-dark); }
.card-color-swatches {
    display: flex;
    gap: 6px;
    padding: 4px 18px 10px;
    flex-wrap: wrap;
}
.card-swatch {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    border: 2px solid #ddd;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text-muted);
    background: #fff;
}
.card-swatch:hover { border-color: var(--primary); color: var(--primary); }
.card-swatch.active { border-color: var(--primary); background: var(--primary-light); color: var(--primary-dark); }
.product-actions { padding: 0 18px 18px; }

/* ---- COLLECTION CARDS ---- */
.collection-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: var(--radius);
    padding: 30px 24px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.25s;
    height: 100%;
}
.collection-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); color: inherit; }
.collection-icon { font-size: 3rem; margin-bottom: 12px; }
.collection-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; }
.collection-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 12px; }
.collection-link { font-size: 0.88rem; font-weight: 700; color: var(--primary); }

/* ---- TRUST BLOCKS ---- */
.trust-block { padding: 20px; }
.trust-block i { font-size: 2.2rem; color: var(--primary); margin-bottom: 12px; }
.trust-block h4 { font-size: 1.05rem; font-weight: 800; margin-bottom: 6px; }
.trust-block p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0; }

/* ---- COMPARE CARDS ---- */
.compare-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px 24px;
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}
.compare-featured {
    border: 3px solid var(--primary);
    transform: scale(1.03);
}
.compare-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 4px 18px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 800;
    white-space: nowrap;
}
.compare-icon { font-size: 2.5rem; margin-bottom: 12px; }
.compare-card h3 { font-weight: 800; font-size: 1.25rem; margin-bottom: 6px; }
.compare-price { font-size: 1.2rem; font-weight: 900; color: var(--primary-dark); margin-bottom: 20px; }
.compare-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 24px;
    flex: 1;
}
.compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.88rem;
    font-weight: 600;
}
.compare-list li i { margin-top: 3px; flex-shrink: 0; }

/* ---- PRODUCT DETAIL ---- */
.product-detail { padding-top: 30px; }
.product-gallery {
    background: var(--light);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}
.main-product-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
}
.product-placeholder-lg {
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
    border-radius: var(--radius);
}
.product-placeholder-lg span { font-size: 8rem; }
.product-title { font-size: 1.8rem; font-weight: 900; margin-bottom: 4px; }
.product-price-lg { font-size: 1.5rem; font-weight: 900; color: var(--primary-dark); }
.product-description { font-size: 1rem; color: var(--text-muted); line-height: 1.7; }

/* Features */
.product-features { display: flex; flex-direction: column; gap: 12px; }
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
}
.feature-item i { margin-top: 3px; flex-shrink: 0; font-size: 1.1rem; }

/* Variants */
.variant-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.variant-pill {
    padding: 8px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}
.variant-pill:hover { border-color: var(--primary); }
.variant-pill.active { border-color: var(--primary); background: var(--primary-light); color: var(--primary-dark); }

/* Buy Buttons */
.buy-buttons { padding-top: 4px; }
.btn-amazon {
    background: var(--amazon-orange);
    color: var(--amazon-dark);
    border: none;
    font-weight: 800;
    font-size: 1.05rem;
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
}
.btn-amazon:hover { background: #e68a00; color: var(--amazon-dark); transform: translateY(-2px); box-shadow: 0 4px 20px rgba(255,153,0,0.4); }
.btn-etsy {
    background: var(--etsy-orange);
    color: #fff;
    border: none;
    font-weight: 800;
    font-size: 1.05rem;
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
}
.btn-etsy:hover { background: #d9561a; color: #fff; transform: translateY(-2px); box-shadow: 0 4px 20px rgba(241,100,30,0.4); }

/* Trust Signals */
.trust-signals { display: flex; flex-wrap: wrap; gap: 16px; }
.trust-signal {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
}
.trust-signal i { color: var(--success); }

/* How it works */
.how-it-works-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 40px;
}
.how-it-works-card h2 { font-weight: 900; }
.steps-list { display: flex; flex-direction: column; gap: 16px; }
.step-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.step-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.9rem;
}
.step-item p { margin-bottom: 0; font-size: 0.95rem; padding-top: 6px; }

/* Rating */
.rating-display { font-size: 1.1rem; }

/* ---- CONTACT ---- */
.contact-form {
    background: #fff;
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}
.contact-form .form-control,
.contact-form .form-select {
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    font-weight: 600;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(74,144,217,0.15);
}

/* ---- BLOG ---- */
.blog-empty {
    text-align: center;
    padding: 60px 20px;
}
.blog-empty-icon { font-size: 4rem; margin-bottom: 16px; }

.blog-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    height: 100%;
    transition: all 0.25s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.blog-card-body { padding: 24px; }
.blog-card-date { font-size: 0.82rem; color: var(--text-muted); font-weight: 600; margin-bottom: 8px; }
.blog-card-title { font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; line-height: 1.3; }
.blog-card-title a { color: var(--dark); text-decoration: none; }
.blog-card-title a:hover { color: var(--primary); }
.blog-card-excerpt { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.blog-card-link { font-size: 0.88rem; font-weight: 700; color: var(--primary); text-decoration: none; }
.blog-card-link:hover { text-decoration: underline; }

.blog-article h2, .blog-article h3 { font-weight: 800; margin-top: 28px; margin-bottom: 12px; }
.blog-article h2 { font-size: 1.4rem; }
.blog-article h3 { font-size: 1.2rem; }
.blog-article p { font-size: 0.98rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.blog-article ul, .blog-article ol { color: var(--text-muted); font-size: 0.98rem; line-height: 1.8; padding-left: 24px; margin-bottom: 16px; }
.blog-article li { margin-bottom: 8px; }

/* ---- POLICY ---- */
.policy-content { max-width: 800px; margin: 0 auto; }
.policy-content h2 { font-weight: 800; font-size: 1.4rem; margin-top: 30px; margin-bottom: 12px; }
.policy-content p, .policy-content ul { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; }

/* ---- FOOTER ---- */
.site-footer {
    background: var(--dark);
    color: #fff;
    padding: 50px 0 30px;
}
.site-footer h5 { font-weight: 900; margin-bottom: 12px; }
.site-footer h5 i { color: var(--primary); }
.footer-logo { height: 120px; width: auto; }
.footer-desc { color: rgba(255,255,255,0.85) !important; }
.site-footer h6 { font-weight: 800; margin-bottom: 12px; font-size: 0.95rem; }
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li { margin-bottom: 6px; }
.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.social-links { display: flex; gap: 12px; margin-top: 12px; }
.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background 0.2s;
}
.social-links a:hover { background: var(--primary); }

/* ---- 404 ---- */
.error-page { text-align: center; padding: 80px 20px; }
.error-icon { font-size: 5rem; margin-bottom: 20px; }
.error-page h1 { font-weight: 900; font-size: 2.5rem; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .hero-visual { height: 250px; }
    .section-title { font-size: 1.7rem; }
    .compare-featured { transform: none; }
    .how-it-works-card { padding: 24px; }
    .hero-section { padding: 20px 0 15px; }
    .min-vh-75 { min-height: auto; }
    .navbar-toggler { border: none; }
    .navbar-toggler:focus { box-shadow: none; }
}
