* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Force desktop navbar to be fully transparent until scrolled */
@media (min-width: 769px) {
    html, body {
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        outline: none !important;
    }
    .navbar {
        background: transparent !important;
        border: none !important;
        border-top: none !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        padding: 0 !important;
        margin: 0 !important;
        margin-top: 0 !important;
        outline: none !important;
        top: 0 !important;
    }
    /* keep internal spacing for links/logo but remove navbar padding that creates a gap */
    .nav-container {
        padding: 1.25rem 2rem !important;
        margin: 0 !important;
        border: none !important;
        outline: none !important;
    }
    .nav-links-desktop,
    .nav-links-desktop * {
        background: transparent !important;
        box-shadow: none !important;
    }
    /* remove pseudo-elements that might create a thin visible bar */
    .navbar::before,
    .navbar::after,
    .navbar::first-line,
    .navbar::first-letter,
    body::before,
    body::after,
    html::before,
    html::after {
        display: none !important;
        content: none !important;
        background: transparent !important;
        border: none !important;
    }
}

:root {
    --black: #000000;
    --text: #333333;
    --text-light: #666666;
    --bg: #ffffff;
    --bg-light: #f5f5f5;
    --white: #ffffff;
    --border: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.75rem 0;
    margin-top: 0;
    background: transparent;
    box-shadow: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
    text-decoration: none;
    flex-shrink: 0;
    display: inline-block;
}

.logo:hover {
    color: #f5f5f5;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    flex-direction: row;
}

.nav-links-mobile {
    display: none;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;               /* links ook wit boven hero */
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.25s;
    padding: 0.3rem 0;
    text-transform: uppercase;
}

.nav-links a[href="#popular"] {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.nav-links a:hover {
    color: rgba(255, 255, 255, 0.75);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 2.1rem;
    cursor: pointer;
    padding: 0.5rem 0.8rem;
    color: #ffffff;               /* hamburger wit */
    transition: color 0.25s ease;
}

/* navbar state na scroll (wit zoals Zone2) */
.navbar.navbar-scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar.navbar-scrolled .logo {
    color: var(--black);
}

.navbar.navbar-scrolled .logo:hover {
    color: var(--text);
}

.navbar.navbar-scrolled .nav-links a {
    color: var(--text);
    text-transform: uppercase;
}

.navbar.navbar-scrolled .nav-links a[href="#popular"] {
    font-weight: 600;
    color: var(--black);
}

.navbar.navbar-scrolled .nav-links a:hover {
    color: rgba(0, 0, 0, 0.5);
}

.navbar.navbar-scrolled .mobile-menu-btn {
    color: var(--black);
}

.hero {
    background: linear-gradient(180deg, #2d2d2d 0%, #161616 40%, #000000 100%);
    color: white;
    padding: 8rem 1rem 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 0;
    border: none;
    outline: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.03) 50%, rgba(255, 255, 255, 0.08) 100%);
    pointer-events: none;
}

/* Make sure the hero is directly under the fixed navbar on desktop so no white body shows */
@media (min-width: 769px) {
    html {
        padding-top: 0 !important;
        margin-top: 0 !important;
        border: none !important;
        outline: none !important;
    }
    body {
        padding-top: 0 !important;
        margin-top: 0 !important;
        border: none !important;
        outline: none !important;
    }
    /* Hero starts higher to cover white gap at top */
    .hero {
        margin-top: -100px !important;
        margin-bottom: 0 !important;
        padding-top: 100px !important;
        padding-bottom: 6rem;
        padding-left: 1rem;
        padding-right: 1rem;
        z-index: 0;
        border: none !important;
        outline: none !important;
        position: relative;
        background: linear-gradient(180deg, #2d2d2d 0%, #161616 40%, #000000 100%);
    }
    /* Position content below navbar */
    .hero-content {
        padding-top: 8rem;
        margin-top: 0;
    }
    
    .hero::after {
        height: 100px !important;
    }
    .navbar {
        z-index: 1001;
        background: transparent !important;
        padding: 0 !important;
        margin: 0 !important;
        margin-top: 0 !important;
        border: none !important;
        border-top: none !important;
        outline: none !important;
        top: 0 !important;
    }
    /* No temporary masks — keep navbar truly transparent until scrolled */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 1000px 800px at 50% 45%, rgba(70, 70, 70, 0.2) 0%, rgba(35, 35, 35, 0.12) 40%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 1.75rem;
    margin-top: 0.8rem;
    margin-bottom: 1.25rem;
    line-height: 1.4;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: none;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2.75rem;
    line-height: 1.5;
    font-weight: 400;
}

.search-box {
    max-width: 480px;
    margin: 0 auto 2rem;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 1.1rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    outline: none;
    background: white;
    color: var(--text);
    box-shadow: 0 6px 24px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.1), inset 0 1px 2px rgba(0,0,0,0.04);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.search-input::placeholder {
    color: rgba(0,0,0,0.4);
    font-weight: 400;
}

.search-input:focus {
    box-shadow: 0 12px 32px rgba(0,0,0,0.16), 0 4px 12px rgba(0,0,0,0.12), inset 0 1px 2px rgba(0,0,0,0.04), 0 0 0 4px rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.trust-elements {
    display: inline-flex;
    align-items: center;
    margin-top: 0.5rem;
    padding: 0.5rem 1.1rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.trust-badge-text {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

/* Popular Codes Section */
.section {
    padding: 3.5rem 2.5rem 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    scroll-margin-top: 80px;
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.05) 50%, transparent 100%);
}


.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.shop-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
    gap: 0.75rem;
    border: 1px solid rgba(0,0,0,0.04);
}

.shop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.08);
    border-color: rgba(0,0,0,0.06);
}

.shop-card:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
}

.shop-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.shop-logo {
    width: 72px;
    height: 72px;
    background: #f5f5f5;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-weight: 700;
    font-size: 3.5rem;
    flex-shrink: 0;
    overflow: hidden;
    padding: 8px;
}

.shop-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.shop-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
}

.shop-name {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-light);
    line-height: 1.2;
    letter-spacing: 0.01em;
}

.discount-badge {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: 0.01em;
    background: #1F5E3B;
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    display: inline-block;
    width: fit-content;
    margin-top: 0.4rem;
    text-transform: none;
}

.shop-card-footer {
    display: flex;
    justify-content: flex-end;
}

.view-code-link {
    color: rgba(0, 0, 0, 0.5);
    font-size: 0.85rem;
    font-weight: 400;
    text-decoration: none;
    display: inline-block;
    transition: color 0.2s ease;
    padding: 0.25rem 0;
}

.view-code-link:hover {
    color: rgba(0, 0, 0, 0.7);
}

.shop-card:active .view-code-link {
    color: var(--black);
}


/* Categories Section */
.categories {
    background: var(--white);
}

.category-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem;
    max-width: 900px;
    margin: 0 auto 2.5rem;
}

.category-tab {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.1rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    color: var(--text);
}

.category-tab:hover {
    border-color: #d1d5db;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.category-tab.active {
    background: var(--black);
    color: white;
    border-color: var(--black);
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.category-name {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.005em;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.category-count {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-light);
    opacity: 0.6;
    margin-left: 0.5rem;
    flex-shrink: 0;
}

.category-tab.active .category-count {
    color: white;
    opacity: 0.75;
}

.shops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.shop-item {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    padding: 0.8rem;
    gap: 0.3rem;
    border: 1px solid rgba(0,0,0,0.04);
}

.shop-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.08);
    border-color: rgba(0,0,0,0.06);
}

.shop-item:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
}

.shop-item-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.shop-item-logo {
    width: 62px;
    height: 62px;
    background: #f5f5f5;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
    overflow: hidden;
    padding: 8px;
}

.shop-item-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.shop-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.shop-item-name {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-light);
    line-height: 1.2;
    letter-spacing: 0.01em;
}

.shop-item-discount {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: 0.01em;
    background: #1F5E3B;
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    display: inline-block;
    width: fit-content;
    margin-top: 0.4rem;
    text-transform: none;
}

.shop-item-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: auto;
}

.shop-item-link {
    color: rgba(0, 0, 0, 0.5);
    font-size: 0.85rem;
    font-weight: 400;
    text-decoration: none;
    display: inline-block;
    transition: color 0.2s ease;
    padding: 0.25rem 0;
}

.shop-item-link:hover {
    color: rgba(0, 0, 0, 0.7);
}


/* Footer Newsletter */
.footer-newsletter {
    text-align: center;
    padding: 2.25rem 2.5rem 2rem;
    max-width: 560px;
    margin: 0 auto;
}

.footer-newsletter h3 {
    font-size: 1.05rem;
    margin-bottom: 0.45rem;
    font-weight: 500;
    color: white;
    text-transform: none;
    letter-spacing: 0;
}

.footer-newsletter p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.footer-newsletter-form {
    display: flex;
    gap: 0.4rem;
    max-width: 400px;
    margin: 0 auto;
}

.footer-newsletter-input {
    flex: 1;
    padding: 0.65rem 0.95rem;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 7px;
    font-size: 0.85rem;
    outline: none;
    background: rgba(255,255,255,0.04);
    color: white;
    transition: all 0.25s ease;
}

.footer-newsletter-input:focus {
    border-color: rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.06);
}

.footer-newsletter-input::placeholder {
    color: rgba(255,255,255,0.35);
}

.footer-newsletter-btn {
    padding: 0.65rem 1.4rem;
    background: white;
    color: #1a1a1a;
    border: none;
    border-radius: 7px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.footer-newsletter-btn:hover {
    background: #f5f5f5;
    transform: translateY(-1px);
}

.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    max-width: 1200px;
    margin: 0 auto 0.5rem;
}

/* Contact Section */
.contact {
    background: var(--white);
    padding: 4rem 2.5rem 6rem;
    padding-top: 7rem; /* Extra space for fixed navbar, reduced for desktop */
}

.contact-content {
    max-width: 850px;
    margin: 0 auto;
}

/* FAQ page - wider content area */
#faq .contact-content {
    max-width: 900px;
}

#faq .contact {
    padding: 5rem 3rem 7rem;
    padding-top: 8rem;
}

/* Privacy, Terms, About pages - wider content area */
#privacy .contact-content,
#terms .contact-content,
#about .contact-content {
    max-width: 850px;
}

#privacy .contact,
#terms .contact,
#about .contact {
    padding: 5rem 3rem 7rem;
    padding-top: 8rem;
}

/* Desktop optimizations for FAQ, Privacy, Terms, About, Guide pages */
@media (min-width: 769px) {
    .contact {
        padding: 5rem 3rem 7rem;
        padding-top: 7rem;
    }
    
    #faq .contact {
        padding: 6rem 3rem 8rem;
        padding-top: 9rem;
    }
    
    #faq .contact-content {
        max-width: 850px;
    }
    
    #privacy .contact,
    #terms .contact,
    #about .contact {
        padding: 6rem 3rem 8rem;
        padding-top: 9rem;
    }
    
    #privacy .contact-content,
    #terms .contact-content,
    #about .contact-content {
        max-width: 850px;
    }
    
    #privacy .about-content,
    #terms .about-content,
    #about .about-content {
        max-width: 900px;
    }
    
    .guide-header {
        padding: 9rem 4rem 5rem;
    }
    
    .guide-header-content {
        max-width: 950px;
    }
    
    .guide-content {
        padding: 6rem 4rem 8rem;
    }
    
    .guide-content-inner {
        max-width: 900px;
    }
    
    .faq-content {
        max-width: 850px;
    }
    
    .faq-item {
        margin-bottom: 3.5rem;
        padding-bottom: 3.5rem;
    }
}

.contact h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.contact-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 400;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
}

.form-input, .form-textarea {
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: all 0.2s ease;
    background: var(--bg-light);
}

.form-input:focus, .form-textarea:focus {
    border-color: var(--black);
    background: var(--white);
}

.form-textarea {
    resize: vertical;
    min-height: 110px;
}

.submit-btn {
    padding: 1rem 2.5rem;
    background: var(--black);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    align-self: center;
    margin-top: 0.5rem;
}

.submit-btn:hover {
    background: #333333;
    transform: translateY(-1px);
}

.contact-reassurance {
    font-size: 0.75rem;
    color: var(--text-light);
    text-align: left;
    margin-top: 0.75rem;
    line-height: 1.5;
    font-weight: 400;
    opacity: 0.7;
}

.contact-email-fallback {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 2rem;
    opacity: 0.6;
    line-height: 1.5;
}

.contact-email-fallback a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-email-fallback a:hover {
    color: var(--text);
    opacity: 0.8;
}

.about-content {
    margin-top: 3.5rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* Wider about-content for privacy, terms, about pages */
#privacy .about-content,
#terms .about-content,
#about .about-content {
    max-width: 850px;
}

.about-content h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--black);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}

.about-content h3:first-child {
    margin-top: 0;
}

.about-content p {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.about-content ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.about-content li {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.about-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--black);
    font-weight: 600;
}

.faq-content {
    margin-top: 3.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    padding-left: 0;
    padding-right: 0;
    border-bottom: 1px solid #e8e8e8;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.75rem;
    letter-spacing: 0.01em;
    line-height: 1.4;
}

.faq-answer {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.7;
    font-weight: 400;
}


/* Blog Section - Authority & Trust */
.blog-preview {
    max-width: 900px;
    margin: 0 auto;
}

.section-subtitle {
    text-align: center;
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.6;
    max-width: 600px;
    margin: -1rem auto 2.5rem;
    font-weight: 400;
}

.blog-editorial-card {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 16px;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
}

.blog-editorial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.75) 100%);
    z-index: 1;
}

.blog-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.2;
    font-size: 8rem;
    filter: blur(2px);
}

.blog-editorial-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
    color: #ffffff;
}

.blog-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
}

.blog-editorial-title {
    font-size: 1.65rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    line-height: 1.3;
    max-width: 600px;
}

.blog-editorial-excerpt {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 1.75rem;
    font-size: 0.95rem;
    max-width: 550px;
}

.blog-cta-button {
    background: #ffffff;
    color: #000000;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.2s ease;
    cursor: pointer;
}

.blog-cta-button:hover {
    background: #f5f5f5;
    transform: scale(1.02);
}

/* Footer */
.footer {
    background: #0d0d0d;
    color: white;
    padding: 0;
}

.footer-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 2.5rem;
}

/* Desktop Footer Layout */
@media (min-width: 769px) {
    /* Desktop Navigation - NO background or padding until scroll */
    .navbar {
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .nav-container {
        background: transparent !important;
        padding: 1.25rem 2.5rem !important;
        margin: 0 auto !important;
        justify-content: space-between !important;
        width: 100% !important;
        max-width: 1200px !important;
        box-sizing: border-box !important;
        position: relative !important;
    }
    
    .logo {
        margin-left: 0 !important;
        margin-right: auto !important;
        flex-shrink: 0 !important;
    }
    
    .nav-links-desktop {
        margin-left: auto !important;
        margin-right: 0 !important;
        padding-right: 0 !important;
        flex-shrink: 0 !important;
    }
    
    /* Ensure no white gap between navbar and hero */
    body {
        padding-top: 0 !important;
    }
    
    /* White navbar with padding ONLY after scroll */
    .navbar.navbar-scrolled {
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04) !important;
        border-bottom: none !important;
        padding: 0.15rem 0 !important;
        left: 1rem !important;
        right: 1rem !important;
        width: auto !important;
        margin-top: 0.75rem !important;
        border-radius: 12px !important;
        max-width: calc(1200px + 5rem) !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .navbar.navbar-scrolled .nav-container {
        padding: 0.15rem 2.5rem !important;
    }
    
    .nav-links {
        display: flex !important;
        position: static !important;
        flex-direction: row !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        padding: 0 !important;
        box-shadow: none !important;
        transform: none !important;
        border-radius: 0 !important;
        gap: 2rem;
    }
    
    .nav-links a {
        color: #ffffff !important;
        padding: 0.3rem 0 !important;
        font-size: 0.95rem !important;
        border-bottom: none !important;
        font-weight: 500 !important;
        text-transform: uppercase !important;
        letter-spacing: normal !important;
    }
    
    .nav-links a:hover {
        background: transparent !important;
        color: rgba(255, 255, 255, 0.75) !important;
    }
    
    .navbar.navbar-scrolled .nav-links a {
        color: var(--text) !important;
        text-transform: uppercase !important;
    }
    
    .navbar.navbar-scrolled .nav-links a[href="#popular"] {
        font-weight: 600 !important;
        color: var(--black) !important;
    }
    
    .navbar.navbar-scrolled .nav-links a:hover {
        color: rgba(0, 0, 0, 0.5) !important;
    }
    
    .mobile-menu-btn {
        display: none !important;
    }
    
    .footer-container {
        max-width: 1200px;
        padding: 4rem 2rem 3rem;
    }
    
    .footer-header {
        margin-bottom: 3.5rem;
    }
    
    .footer-accordion {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
        margin-bottom: 3.5rem;
    }
    
    .accordion-item {
        border-bottom: none;
    }
    
    .accordion-header {
        padding: 0 0 1.25rem 0;
        cursor: default;
        pointer-events: none;
        font-size: 0.95rem;
        letter-spacing: 0.08em;
        justify-content: flex-start;
    }
    
    .accordion-icon {
        display: none !important;
    }
    
    .accordion-icon::before,
    .accordion-icon::after {
        display: none !important;
    }
    
    .accordion-content {
        max-height: none;
        overflow: visible;
        padding-bottom: 0;
    }
    
    .accordion-content a {
        padding: 0.45rem 0;
        font-size: 0.8rem;
    }
    
    .newsletter-subtitle {
        font-size: 0.78rem;
        margin-bottom: 1rem;
    }
}

/* Footer Header */
.footer-header {
    margin-bottom: 2.5rem;
}

.footer-header-label {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.footer-header-email {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
}

.footer-header-email:hover {
    color: white;
}

.footer-partnership {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    margin-top: 0.85rem;
    line-height: 1.5;
}

.footer-partnership a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    transition: all 0.2s ease;
}

.footer-partnership a:hover {
    color: rgba(255,255,255,0.9);
    border-bottom-color: rgba(255,255,255,0.4);
}

.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin: 2rem 0;
}

/* Accordion */
.footer-accordion {
    margin-bottom: 2.5rem;
}

.accordion-item {
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 0;
    background: none;
    border: none;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
    text-transform: uppercase;
}

.accordion-header:hover {
    color: rgba(255,255,255,0.8);
}

.accordion-icon {
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1;
    display: inline-block;
    position: relative;
    width: 16px;
    height: 16px;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background: currentColor;
    transition: transform 0.25s ease;
}

.accordion-icon::before {
    width: 12px;
    height: 1.5px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.accordion-icon::after {
    width: 1.5px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.accordion-header.active .accordion-icon::after {
    transform: translate(-50%, -50%) scaleY(0);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content.active {
    max-height: 500px;
    padding-bottom: 1.25rem;
}

.accordion-content a {
    display: block;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
    text-transform: uppercase;
}

.accordion-content a:hover {
    color: white;
}

/* Newsletter in Accordion */
.newsletter-subtitle {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 0.85rem;
    line-height: 1.4;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: flex-start;
}

.newsletter-input {
    width: 100%;
    padding: 0.7rem 0.95rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    color: white;
    font-size: 0.85rem;
    outline: none;
    transition: all 0.2s ease;
}

.newsletter-input:focus {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.15);
}

.newsletter-input::placeholder {
    color: rgba(255,255,255,0.3);
}

.newsletter-btn {
    width: auto;
    padding: 0.65rem 1.5rem;
    background: white;
    color: #000000;
    border: none;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.02em;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.newsletter-btn:hover {
    background: #f5f5f5;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.newsletter-btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 0.5rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-link {
    color: rgba(255,255,255,0.45);
    transition: color 0.2s ease;
}

.social-link:hover {
    color: rgba(255,255,255,0.9);
}

.social-link svg {
    width: 22px;
    height: 22px;
    display: block;
}

.footer-copyright {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.6;
}

/* Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.25s ease;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    max-width: 420px;
    width: 100%;
    position: relative;
    animation: modalScaleIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 8px 24px rgba(0,0,0,0.1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalScaleIn {
    from { 
        transform: scale(0.9); 
        opacity: 0; 
    }
    to { 
        transform: scale(1); 
        opacity: 1; 
    }
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--bg-light);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: var(--border);
    transform: scale(1.05);
}

.modal-header {
    text-align: center;
    margin-bottom: 1.75rem;
}

.modal-logo {
    width: 64px;
    height: 64px;
    background: #f5f5f5;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-weight: 700;
    font-size: 1.6rem;
    margin: 0 auto 0.85rem;
    overflow: hidden;
    padding: 8px;
}

.modal-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-shop-name {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--text);
}

.code-container {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.code-label {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.code-value {
    font-family: 'Courier New', Consolas, monospace;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
    letter-spacing: 0.15em;
    word-break: break-all;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.copy-btn {
    width: 100%;
    background: var(--black);
    color: white;
    border: none;
    padding: 0.95rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    margin-bottom: 0.75rem;
    transition: all 0.25s ease;
    position: relative;
}

.copy-btn:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.copy-btn:active {
    transform: translateY(0);
}

.copy-btn.copied {
    background: #10b981;
    transform: scale(0.98);
}

.copy-btn.copied::before {
    content: '✓ ';
    margin-right: 0.3rem;
}

.visit-btn {
    width: 100%;
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
    padding: 0.95rem;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: all 0.2s ease;
}

.visit-btn:hover {
    background: var(--bg-light);
    border-color: var(--text-light);
    color: var(--black);
}

.no-results {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-light);
}

/* Load More Button */
.load-more-container {
    display: flex;
    justify-content: center;
    margin: 2rem 1.5rem 2.5rem;
}

.load-more-btn {
    width: 100%;
    max-width: 600px;
    background: transparent;
    border: 1px solid #e5e7eb;
    color: rgba(0, 0, 0, 0.65);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
}

.load-more-btn:hover {
    background: #fafafa;
    border-color: #d1d5db;
    color: rgba(0, 0, 0, 0.8);
}

.load-more-btn:active {
    transform: scale(0.98);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* MOBIEL NAV */
    /* Mobile menu overlay */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.65);
        z-index: 998;
        opacity: 0;
        transition: opacity 0.4s ease;
        backdrop-filter: blur(2px);
    }
    
    .menu-overlay.active {
        display: block;
        opacity: 1;
    }
    
    /* Blur navbar when menu is open */
    .navbar.menu-open,
    body.blog-page .navbar.menu-open {
        filter: blur(2px);
        opacity: 0.7;
        pointer-events: none;
        z-index: 997;
    }
    
    /* Hide desktop nav on mobile */
    .nav-links-desktop {
        display: none !important;
    }
    
    /* Off-canvas menu */
    .nav-links-mobile {
        display: none;
        position: fixed;
        top: 0 !important;
        right: 0 !important;
        width: min(80vw, 300px);
        height: 100dvh;
        background: white;
        flex-direction: column;
        padding: 5rem 0 0 0;
        box-shadow: -3px 0 40px rgba(0,0,0,0.15), -10px 0 20px rgba(0,0,0,0.08);
        z-index: 99999;
        transform: translateX(calc(100% + 1px));
        transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        margin: 0 !important;
        left: auto !important;
        border-radius: 24px 0 0 24px;
    }
    
    .nav-links-mobile.active {
        display: flex;
        transform: translateX(0);
    }
    
    /* Close button */
    .nav-links::after {
        content: '×';
        position: absolute;
        top: 1rem;
        right: 1.3rem;
        font-size: 1.8rem;
        font-weight: 300;
        color: rgba(0,0,0,0.4);
        cursor: pointer;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.25s ease;
        line-height: 1;
    }
    
    .nav-links::after:active {
        background: rgba(0,0,0,0.08);
        color: rgba(0,0,0,0.75);
        transform: scale(0.95);
    }

    /* Menu items with enhanced click targets */
    .nav-links a {
        color: #1a1a1a !important;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        font-weight: 500;
        border-bottom: 1px solid rgba(0,0,0,0.04);
        transition: all 0.25s ease;
        position: relative;
        text-transform: uppercase;
        letter-spacing: 0.02em;
    }
    
    /* Primary item (Populair) - prominent */
    .nav-links a:first-child {
        font-weight: 600;
        font-size: 1rem;
        padding: 1.1rem 1.5rem;
    }
    
    /* Middle items (Categorieën, Blog) */
    .nav-links a:nth-child(3),
    .nav-links a:nth-child(4) {
        padding: 0.95rem 1.5rem;
    }
    
    /* Contact item - subtle at bottom */
    .nav-links a:last-child {
        border-bottom: none;
        margin-top: auto;
        padding: 1.2rem 1.5rem 1.5rem;
        font-size: 0.88rem;
        font-weight: 500;
        color: rgba(0,0,0,0.55) !important;
    }
    
    /* Hover and active states */
    .nav-links a:hover {
        background: rgba(0,0,0,0.04);
        color: #000000 !important;
    }
    
    .nav-links a:active {
        background: rgba(0,0,0,0.08);
        transform: scale(0.98);
    }
    
    .nav-links a:last-child:hover {
        color: rgba(0,0,0,0.85) !important;
    }



    .mobile-menu-btn {
        display: block;
    }
    
    /* Reset navbar to mobile defaults */
    .navbar {
        left: 0.5rem;
        right: 0.5rem;
        padding: 0.2rem 0;
        margin-top: 0.5rem;
        width: auto;
    }
    
    .navbar.navbar-scrolled {
        border-radius: 7px;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo {
        font-size: 1.6rem;
    }
    
    .hero {
        padding: 3.5rem 1rem 3.5rem;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: 1.5rem;
        margin-top: 3rem;
        margin-bottom: 1.25rem;
        line-height: 1.25;
        letter-spacing: -0.01em;
        font-weight: 700;
    }
    
    .hero p {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.55);
        margin-bottom: 2rem;
        line-height: 1.35;
    }
    
    .search-box {
        max-width: 90%;
        padding: 0 1rem;
    }
    
    .search-input {
        padding: 0.9rem 1.25rem;
        font-size: 0.75rem;
    }
    
    .trust-elements {
        margin-top: 0.5rem;
        padding: 0.45rem 0.9rem;
    }
    
    .trust-badge-text {
        font-size: 0.65rem;
        white-space: normal;
        line-height: 1.4;
    }
    
    .footer-container {
        padding: 2rem 1.25rem 2rem;
    }
    
    .footer-header {
        margin-bottom: 2rem;
    }
    
    .footer-header-label {
        font-size: 0.65rem;
    }
    
    .footer-header-email {
        font-size: 0.85rem;
    }
    
    .accordion-header {
        padding: 1.2rem 0;
        font-size: 0.9rem;
    }
    
    .footer-accordion {
        margin-bottom: 2rem;
    }
    
    .accordion-content a {
        font-size: 0.8rem;
    }
    
    .newsletter-subtitle {
        font-size: 0.75rem;
    }
    
    .newsletter-input,
    .newsletter-btn {
        font-size: 0.85rem;
    }
    
    .footer-social {
        gap: 1.75rem;
        margin-bottom: 1.75rem;
    }
    
    .social-link svg {
        width: 21px;
        height: 21px;
    }
    
    .footer-copyright {
        font-size: 0.7rem;
    }
    
    .category-tabs {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
        max-width: 100%;
    }
    
    .category-tab {
        padding: 0.7rem 0.6rem;
        font-size: 0.75rem;
        min-height: 44px;
    }
    
    .category-name {
        font-size: 0.75rem;
        line-height: 1.3;
        white-space: normal;
        word-break: break-word;
        overflow: visible;
        text-overflow: clip;
    }
    
    .category-count {
        font-size: 0.65rem;
        margin-left: 0.3rem;
        flex-shrink: 0;
    }
    
    .load-more-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.75rem;
    }
    
    .load-more-container {
        margin: 1.5rem 1rem 2rem;
    }
    
    .section {
        padding: 2rem 1.5rem;
    }
    
    .section::before {
        margin-bottom: 1.25rem;
    }
    
    .popular-grid {
        grid-template-columns: 1fr;
    }
    
    .shop-card {
        padding: 1.1rem;
        gap: 0.6rem;
    }
    
    .discount-badge {
        font-size: 0.85rem;
        padding: 0.18rem 0.45rem;
        margin-top: 0.35rem;
    }
    
    .blog-editorial-card {
        min-height: 280px;
    }
    
    .blog-editorial-content {
        padding: 2rem 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.88rem;
        margin: -0.75rem auto 2rem;
        padding: 0 1rem;
    }
    
    .blog-editorial-title {
        font-size: 1.4rem;
        line-height: 1.35;
    }
    
    .blog-editorial-excerpt {
        font-size: 0.88rem;
        margin-bottom: 1.5rem;
    }
    
    .blog-cta-button {
        font-size: 0.8rem;
        padding: 0.55rem 1.3rem;
    }
    
    .contact {
        padding: 3rem 1.5rem 3rem;
        padding-top: 8rem; /* Extra space for fixed navbar on mobile, same as blog-hero */
    }
    
    .contact h2 {
        font-size: 1.65rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-intro {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .contact-email-fallback {
        font-size: 0.75rem;
        margin-top: 1.5rem;
    }
    
    .about-content {
        margin-top: 2rem;
    }
    
    .about-content h3 {
        font-size: 1.2rem;
        margin-top: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .about-content p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    
    .about-content li {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
        padding-left: 1.25rem;
    }
    
    .faq-content {
        margin-top: 2rem;
    }
    
    .faq-item {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }
    
    .faq-question {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .faq-answer {
        font-size: 0.95rem;
    }
    
    .contact-form {
        gap: 0.75rem;
    }
    
    .contact-reassurance {
        font-size: 0.8rem;
        margin-top: 0.75rem;
    }
    
    
    .form-group {
        gap: 0.35rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
    }
    
    .form-input,
    .form-textarea {
        padding: 0.7rem 0.9rem;
        font-size: 0.9rem;
    }
    
    .form-textarea {
        min-height: 100px;
    }
    
    .submit-btn {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
        margin-top: 0.4rem;
    }
}

/* Blog Page Styles - Premium, Clean Design */
/* Navbar styling for blog page - same sticky design as index page */
/* Blog page navbar - exact same as index.html navbar-scrolled on desktop, only colors differ */
body.blog-page .navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    /* No padding by default, same as index.html navbar-scrolled base */
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    margin-top: 0;
    border-radius: 0px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body.blog-page .navbar .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

body.blog-page .navbar .logo {
    position: absolute;
    left: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
    text-decoration: none;
}

body.blog-page .navbar .logo:hover {
    color: var(--text);
}

body.blog-page .navbar .nav-links {
    /* Same as index.html */
    display: flex;
    gap: 2rem;
    list-style: none;
    flex-direction: row;
}

body.blog-page .navbar .nav-links a {
    /* Same font size, weight, padding as index.html */
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.25s;
    padding: 0.3rem 0;
    /* Only color differs */
    color: var(--text);
}

body.blog-page .navbar .nav-links a:hover {
    color: rgba(0, 0, 0, 0.7);
}

body.blog-page .navbar .mobile-menu-btn {
    /* Same as index.html, only color differs */
    display: none;
    background: none;
    border: none;
    font-size: 2.1rem;
    cursor: pointer;
    padding: 0.5rem 0.8rem;
    transition: color 0.25s ease;
    color: var(--black);
}

body.blog-page .navbar.navbar-scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    /* No padding by default, same as index.html navbar-scrolled base */
    padding: 0;
}

body.blog-page .navbar.navbar-scrolled .nav-container {
    padding: 0 2rem;
}

/* Desktop - match exact styling from index.html with !important */
@media (min-width: 769px) {
    body.blog-page .navbar,
    body.blog-page .navbar.navbar-scrolled {
        padding: 0.75rem 0 !important;
    }
    
    body.blog-page .navbar .nav-container,
    body.blog-page .navbar.navbar-scrolled .nav-container {
        padding: 0 2rem !important;
    }
}

.blog-hero {
    background: var(--white);
    padding: 8rem 2.5rem 4rem;
    text-align: center;
    margin-top: 0;
    padding-top: 6rem; /* Extra space for fixed navbar, reduced for desktop */
}

.blog-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-hero-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
    line-height: 1.45;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.blog-hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

.blog-intro {
    background: var(--white);
    padding: 0 2.5rem 4rem;
}

.blog-intro-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.blog-intro-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 400;
}

.blog-featured {
    background: var(--white);
    padding: 0 2.5rem 6rem;
}

.blog-featured-container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-featured-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 24px;
    padding: 4rem 3rem;
    color: white;
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.blog-featured-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.blog-featured-card:hover .blog-featured-cta {
    background: #f5f5f5;
    transform: translateY(-1px);
}

.blog-featured-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    margin-bottom: 1.5rem;
    display: block;
}

.blog-featured-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.45;
    letter-spacing: 0.01em;
}

.blog-featured-excerpt {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.blog-featured-cta {
    display: inline-block;
    background: white;
    color: var(--black);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}


.blog-articles {
    background: var(--white);
    padding: 0 2.5rem 8rem;
}

.blog-articles-container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-articles-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.blog-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.blog-article-card {
    background: var(--white);
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
}

.blog-article-card:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.blog-article-category {
    font-size: 0.875rem;
    color: #4a9b5f;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
    margin-bottom: 1rem;
    display: block;
}

.blog-article-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1rem;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.blog-article-excerpt {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 400;
    flex: 1;
}

.blog-article-link {
    color: var(--black);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.2s ease;
    margin-top: auto;
}

.blog-article-link:hover {
    opacity: 0.7;
}

/* Mobile Responsive for Blog */
@media (max-width: 768px) {
    /* Navbar styling for blog page on mobile - same as index */
    body.blog-page .navbar {
        left: 0.5rem;
        right: 0.5rem;
        padding: 0.2rem 0;
        margin-top: 0.5rem;
        width: auto;
        border-radius: 7px;
    }
    
    body.blog-page .navbar.navbar-scrolled {
        border-radius: 7px;
    }
    
    /* Blur navbar when menu is open - same as index.html */
    body.blog-page .navbar.menu-open {
        filter: blur(2px);
        opacity: 0.7;
        pointer-events: none;
        z-index: 997;
    }
    
    body.blog-page .navbar .nav-container {
        padding: 0 1rem;
    }
    
    body.blog-page .navbar .logo {
        left: 1rem;
        font-size: 1.6rem;
    }
    
    body.blog-page .navbar .mobile-menu-btn {
        display: block;
    }
    
    .blog-hero {
        padding: 8rem 1.5rem 3rem;
        padding-top: 8rem; /* More space above title on mobile */
    }
    
    .blog-hero-title {
        font-size: 1.65rem;
        margin-bottom: 1rem;
    }
    
    .blog-hero-subtitle {
        font-size: 1rem;
    }
    
    .blog-intro {
        padding: 0 1.5rem 3rem;
    }
    
    .blog-intro-text {
        font-size: 0.95rem;
    }
    
    .blog-featured {
        padding: 0 1.5rem 4rem;
    }
    
    .blog-featured-card {
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
    }
    
    .blog-featured-title {
        font-size: 1.65rem;
        margin-bottom: 1rem;
    }
    
    .blog-featured-excerpt {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .blog-featured-cta {
        font-size: 0.95rem;
        padding: 0.55rem 1rem;
    }
    
    .blog-articles {
        padding: 0 1.5rem 5rem;
    }
    
    .blog-articles-heading {
        font-size: 1.65rem;
        margin-bottom: 2rem;
    }
    
    .blog-articles-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-article-card {
        padding: 2rem 1.5rem;
    }
    
    .blog-article-title {
        font-size: 1.35rem;
    }
    
    .blog-article-excerpt {
        font-size: 0.95rem;
    }
}

/* Guide Article Page Styles */
.guide-page {
    background: var(--white);
}

.guide-article {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.guide-header {
    background: var(--white);
    padding: 8rem 3rem 4rem;
    text-align: center;
    border-bottom: 1px solid #e8e8e8;
}

.guide-header-content {
    max-width: 900px;
    margin: 0 auto;
}

.guide-back-link {
    display: inline-block;
    color: var(--text-light);
    font-size: 0.9rem;
    text-decoration: none;
    margin-bottom: 2rem;
    transition: color 0.2s ease;
    font-weight: 500;
}

.guide-back-link:hover {
    color: var(--black);
}

.guide-category {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
    margin-bottom: 1rem;
    display: inline-block;
}

.guide-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.guide-excerpt {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 400;
}

.guide-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.guide-date,
.guide-read-time {
    font-weight: 400;
}

.guide-content {
    background: var(--white);
    padding: 5rem 3rem 7rem;
}

.guide-content-inner {
    max-width: 850px;
    margin: 0 auto;
}

.guide-content-inner p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.guide-content-inner p.guide-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 3rem;
    font-weight: 400;
}

.guide-content-inner h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--black);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.guide-content-inner h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.guide-content-inner ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.guide-content-inner li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.guide-related {
    background: var(--bg-light);
    padding: 5rem 1.5rem;
    border-top: 1px solid #e8e8e8;
}

.guide-related-container {
    max-width: 1200px;
    margin: 0 auto;
}

.guide-related-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -0.01em;
}

.guide-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.guide-related-card {
    background: var(--white);
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.guide-related-card:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.guide-related-category {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
    margin-bottom: 0.75rem;
    display: block;
}

.guide-related-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1.4;
    letter-spacing: -0.01em;
}

/* Mobile Responsive for Guide Pages */
@media (max-width: 768px) {
    .guide-header {
        padding: 8rem 1.5rem 3rem;
    }
    
    .guide-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .guide-excerpt {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .guide-meta {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.85rem;
    }
    
    .guide-content {
        padding: 3rem 1.5rem 4rem;
    }
    
    .guide-content-inner p {
        font-size: 1rem;
    }
    
    .guide-content-inner p.guide-intro {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .guide-content-inner h2 {
        font-size: 1.5rem;
        margin-top: 2.5rem;
        margin-bottom: 1.25rem;
    }
    
    .guide-content-inner h3 {
        font-size: 1.35rem;
        margin-top: 2rem;
    }
    
    .guide-related {
        padding: 3rem 1rem;
    }
    
    .guide-related-heading {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .guide-related-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .guide-related-card {
        padding: 1.5rem;
    }
}

/* Success Popup */
.success-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.25s ease;
}

.success-popup-overlay.active {
    display: flex;
}

.success-popup {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    max-width: 400px;
    width: 100%;
    position: relative;
    animation: modalScaleIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.success-popup-icon {
    width: 64px;
    height: 64px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1.25rem;
    animation: successIconBounce 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes successIconBounce {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.success-popup-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.success-popup-message {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

.success-popup-btn {
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.success-popup-btn:hover {
    background: #333;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.success-popup-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .success-popup {
        padding: 2rem 1.5rem;
        max-width: 90%;
    }
    
    .success-popup-icon {
        width: 56px;
        height: 56px;
        font-size: 1.75rem;
    }
    
    .success-popup-title {
        font-size: 1.25rem;
    }
}

