:root {
    --brand: #807DDB;
    --brand-dark: #5f5cb8;
    --brand-light: #a8a6e8;
    --brand-pale: #f0effc;
    --text-dark: #2D2A4A;
    --text-muted: #6B6885;
    --white: #ffffff;
    --gray-bg: #F8F8FC;
    --radius: 12px;
    --muted: #6b6a8a;
}

html { scroll-behavior: smooth; }

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}
h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    letter-spacing: -0.5px;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.text-center {
    text-align: center;
}

/* Sticky Bar */
.sticky-bar {
    /*background-color: var(--brand-dark);*/
    background-color: #FFD000;
    color: #2D2A4A;
    font-weight: 700;
    /*color: var(--white);*/
    text-align: center;
    padding: 10px 20px;
    font-size: 0.9rem;
    /*font-weight: 500;*/
    position: sticky;
    top: 0;
    z-index: 1000;
}

.bar-link {
    color: #5f5cb8;
    text-decoration: underline;
    margin-left: 10px;
}

/* Navigáció */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--brand-pale);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.logo span, .footer-logo a {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--brand);
    letter-spacing: -0.5px;
    text-decoration: none;
    transform: scaleX(0.8) scaleY(1.1);
    transform-origin: left center;
    display: inline-block;
}
.logo span {
    font-size: 1.5rem;
}

.logo img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--brand);
}

/* Gombok */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--brand);
    color: var(--white);
    font-size: 1rem;
    padding: 12px 32px 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 8px 30px rgba(128,125,219,0.25);
}
.btn-primary:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(128,125,219,0.25);
}
.btn-primary svg {
    width: 20px;
    height: 20px;
    padding: 5px;
    background: white;
    border-radius: 15px;
    box-sizing: content-box;
}

.btn-secondary {
    background-color: var(--brand-pale);
    color: var(--brand-dark);
}

.btn-secondary:hover {
    background-color: var(--brand-light);
    color: var(--white);
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Hero Szekció */
.hero {
    background: linear-gradient(135deg, var(--white) 0%, var(--brand-pale) 100%);
    padding: 80px 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.badge {
    background-color: var(--brand-light);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.search-box {
    display: flex;
    background: var(--white);
    padding: 6px;
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(128, 125, 219, 0.15);
    margin-bottom: 15px;
}

.search-box input {
    flex: 1;
    border: none;
    padding: 12px 15px;
    font-size: 1rem;
    outline: none;
    border-radius: var(--radius);
}

.quick-tags {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.quick-tags a {
    color: var(--brand-dark);
    text-decoration: none;
    margin-left: 8px;
    font-weight: 500;
}

/* Hero Vizuális CSS elem */
.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.mock-app-screen {
    width: 280px;
    height: 400px;
    background-color: var(--brand);
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(95, 92, 184, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    border: 8px solid var(--text-dark);
}

.mock-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    text-align: center;
    width: 80%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.mock-cart-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.mock-badge-save {
    position: absolute;
    bottom: -20px;
    right: -30px;
    background: #FF6B6B;
    color: var(--white);
    padding: 10px 15px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    transform: rotate(5deg);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
    text-align: right;
    max-width: 240px;
}

/* Szekció címek */
.section-title {
    margin-bottom: 40px;
    text-align: center;
}

.section-title h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-muted);
}


.platform-facts {
    padding: 80px 20px 0 20px;
}

.facts-wrapper {
    background-color: var(--brand-pale);
    border: 1px solid var(--brand-light);
    border-radius: var(--radius);
    padding: 25px;
}

.facts-title {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-align: center;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.fact-card {
    background: var(--white);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(45, 42, 74, 0.02);
}

.fact-icon {
    font-size: 1.5rem;
    display: block;
}

.fact-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 5px 0;
}

.fact-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--brand-dark);
    margin: 5px 0;
    line-height: 1.6;
}


/* Boltok Rácsa */
.stores-section {
    padding: 80px 20px;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 20px;
    grid-auto-rows: 1fr
}
.inner-grid {
    padding-top: 20px;
}

.store-card {
    background: var(--store-bg, var(--gray-bg));
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius);
    padding: 25px 15px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.store-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 5px 0;
    transition: color 0.2s ease;
}

.store-logo-placeholder {
    width: 100%;
    height: auto;
    aspect-ratio: 5 / 3;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    transition: transform 0.25s ease;
    margin: auto 0;
}

.store-logo-placeholder img {
    width: 100%;
    height: 100%;
    max-width: 85%;
    max-height: 70%;
    object-fit: contain;
}

.store-logo-placeholder .logo-inverse {
    display: none;
}

.store-card:hover {
    transform: translateY(-2px) !important;
    background: var(--store-color);
    box-shadow: 0 12px 24px color-mix(in srgb, var(--store-color) 18%, black 10%);
}

.store-card.card-white:hover {
    border-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 12px 24px rgba(45, 42, 74, 0.08);
}

.store-card:hover h3 {
    color: var(--white);
}

.store-card.card-white:hover h3 {
    color: var(--text-dark);
}

.store-card:hover .store-logo-placeholder {
    transform: scale(1.05);
}

.store-card:hover .logo-default {
    display: none;
}

.store-card:hover .logo-inverse {
    display: block;
}



@media (min-width: 576px) {
    .stores-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
}



/*!* --- A CSS Animációs és Logikai Motorja --- *!*/
.toggle-trigger {
    display: none;
}

.group-2, .group-3 {
    display: none;
}

.btn-show-more {
    grid-column: 1 / -1;
    justify-self: center;
    order: 999;
    align-self: center;
    display: block;
    margin: 30px auto 0 auto;
    padding: 12px 35px;
    background: var(--white);
    border: 1px solid var(--brand);
    color: var(--brand);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-show-more:hover {
    background: var(--brand-pale);
    transform: translateY(-1px);
}

.id-btn-2 {
    display: none;
}

#show-more-1:checked ~ .id-btn-1 {
    display: none;
}
#show-more-1:checked ~ .id-btn-2 {
    display: block;
}
#show-more-1:checked ~ .stores-grid .group-2 {
    display: flex;
    animation: storesFadeInUp 0.4s ease-out forwards;
}

#show-more-2:checked ~ .id-btn-2 {
    display: none;
}
#show-more-2:checked ~ .stores-grid .group-3 {
    display: flex;
    animation: storesFadeInUp 0.4s ease-out forwards;
}


@keyframes storesFadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.latest-section {
    padding: 80px 20px;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.catalog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid color-mix(in srgb, var(--brand-light) 45%, transparent);
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    max-width: 400px;
    justify-self: center;
}

.catalog-thumb {
    height: 350px;
    background: #E2E1F3;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.catalog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.catalog-overlay {
    position: absolute;
    inset: 0;
    background: rgba(128, 125, 219, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    gap: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 18px;
}

.catalog-overlay::after {
    content: "→";
    font-size: 18px;
    padding-bottom: 2px;
    width: 40px;
    height: 40px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 2px;
    box-sizing: border-box;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}


.catalog-card:hover .catalog-overlay {
    opacity: 1;
}

.catalog-info {
    padding: 25px 20px 20px;
    background: linear-gradient(
            to bottom,
            var(--brand-pale) 0%,
            var(--white) 100%
    );
}
.catalog-info h3 {
    font-size: 16px;
}
.catalog-info h4 {
    font-size: 13.28px;
    font-weight: 600;
    line-height: 21px;
    margin: 0;
    letter-spacing: 0;
}
.catalog-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.features-section {
    background-color: var(--gray-bg);
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-item {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    border-bottom: 4px solid var(--brand-light);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-item h3 {
    margin-bottom: 10px;
}

.feature-item p {
    color: var(--text-muted);
}

/* Details */
.details-section {
    padding: 40px 20px;
    border-top: 1px solid var(--brand-pale);
}
.details-block {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--brand-pale);
}
.details-block h2 {
    margin: 0 0 15px;
}
.details-subtitle {
    margin-top: 20px;
    font-size: 1.2rem;
}
.details-muted-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.download-footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 80px 0 40px 0;
    position: relative;
}

.download-footer::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(128,125,219,0.25) 0%, transparent 70%);
    pointer-events: none;
}

.download-footer h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.download-footer p {
    color: var(--brand-pale);
    margin-bottom: 40px;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.download-buttons a {
    border-radius: 40px;
}

.app-show-link {
    margin: 15px 0 60px;
}

.copyright {
    font-size: 0.85rem;
    opacity: 0.5;
}


footer {
    background: var(--text-dark);
}
footer .container {
    padding: 40px;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-top: 1px solid rgba(128,125,219,0.12);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.footer-links a, .app-show-link a {
    font-size: 0.85rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover, .app-show-link a:hover { color: var(--brand); }

.footer-main {
    padding: 60px 40px 40px;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.footer-brand .footer-logo a {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--brand);
    text-decoration: none;
}

.footer-about {
    font-size: 0.88rem;
    color: var(--muted);
    margin: 14px 0 20px;
    line-height: 1.6;
    max-width: 260px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(128,125,219,0.15);
    color: var(--brand-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}
.footer-socials a:hover {
    background: var(--brand);
    color: var(--white);
}

.footer-col-title {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    font-size: 0.88rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-col a:hover {
    color: var(--brand-light);
}

.footer-bottom {
    border-top: 1px solid rgba(128,125,219,0.12);
}

footer .footer-bottom-inner {
    display: block;
    text-align: center;
    border-top: none;
}

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


/* Modal Popup stílusok */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    inset: 0;
    background-color: rgba(45, 42, 74, 0.6);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 24px;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-muted);
}

.modal-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.modal-body h2 {
    margin-bottom: 15px;
}

.modal-body p {
    color: var(--text-muted);
    margin-bottom: 25px;
}


.faq-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--gray-bg);
    border: 1px solid var(--brand-pale);
    border-radius: var(--radius);
    padding: 25px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background-color: var(--white);
    border-color: var(--brand-light);
    box-shadow: 0 10px 25px rgba(128, 125, 219, 0.08);
    transform: translateY(-2px);
}

.faq-item h4 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.faq-item h4::before {
    content: "✦";
    color: var(--brand);
    font-size: 1rem;
}

.faq-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.how-it-works {
    padding: 80px 0;
    background-color: var(--brand-pale);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.step-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius);
    text-align: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--brand);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 20px auto;
    font-size: 1.1rem;
}

.step-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.smart-app-banner {
    display: flex;
    align-items: center;
    background-color: #151326;
    color: var(--white);
    padding: 10px 15px;
    height: 70px;
    border-bottom: 1px solid rgba(128, 125, 219, 0.2);
    position: relative;
    z-index: 10001;
    font-family: 'Inter', sans-serif;
}

.smart-banner-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    margin-right: 12px;
    line-height: 1;
}

.smart-banner-close:hover {
    color: var(--white);
}

.smart-banner-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    object-fit: cover;
    margin-right: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.smart-banner-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.smart-banner-info h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
    line-height: 1.2;
}

.smart-banner-info p {
    font-size: 0.75rem;
    color: var(--brand-pale);
    margin: 0;
    line-height: 1.2;
}

.smart-banner-store {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 2px;
}

.smart-banner-button {
    background-color: var(--brand);
    color: var(--white);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    transition: background 0.2s;
    letter-spacing: 0.5px;
}

.smart-banner-button:hover {
    background-color: var(--brand-dark);
}


/* Breadcrumb Navigation */
.container.breadcrumb-container {
    padding-top: 20px;
}

.breadcrumb {
    list-style: none;
    display: flex;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumb li a {
    color: var(--brand-dark);
    text-decoration: none;
}

.breadcrumb li:not(:last-child)::after {
    content: "/";
    margin-left: 8px;
    color: var(--text-muted);
}

section.recommendations {
    background-color: var(--gray-bg);
    padding: 60px 0;
    border-top: 1px solid var(--brand-pale);
}

.section-subtitle {
    color: var(--text-muted);
    margin-top: -15px;
    margin-bottom: 35px;
    font-size: 0.95rem;
}

.recommendations .stores-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}
@media (max-width: 576px) {
    .recommendations .stores-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}
.recommendations .store-card {
    border: 1px solid rgba(255, 255, 255, 0.9);
    max-height: 200px;
    padding-bottom: 20px;
}
.recommendations .store-logo-placeholder, .stores-list .store-logo-placeholder {
    flex: 1;
    min-height: 0;
}
.recommendations .store-logo-placeholder img, .stores-list .store-logo-placeholder img {
    max-height: none;
    max-width: 120px;
}
.recommendations .store-card h3, .stores-list .store-card h3 {
    height: 40px;
    display: flex;
    align-items: flex-end;
}

.store-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}
.rec-link {
    font-size: 0.9rem;
    color: var(--brand);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    bottom: -7px;
}
.store-card:not(.card-white):hover p {
    color: #d5d5d5;
}
.store-card:not(.card-white):hover .rec-link {
    color: var(--brand-pale);
}
.rec-category-title {
    max-width: 900px;
    margin: 0 auto 15px auto;
    font-size: 1.2rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rec-category-title:not(:first-of-type) {
    margin-top: 50px;
}

.stores-list {
    padding: 40px 0 80px;
}
.stores-list .stores-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.stores-list .store-card {
    max-height: 240px;
    padding-bottom: 20px;
}
.stores-list .store-logo-placeholder {
    max-height: 64px;
}

.cc-revoke, .cc-window {
    max-width: 100vw !important;
}
.cc-floating.cc-theme-classic {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-visual {
        margin-bottom: 50px;
    }
    .hero h1 { font-size: 2.2rem; }
    .search-box { flex-direction: column; gap: 10px; background: transparent; box-shadow: none; padding: 0; }
    .search-box input { border-radius: var(--radius); box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
    .download-buttons { flex-direction: column; }
    .main-nav { display: none; }
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .faq-item {
        padding: 20px;
    }

    .faq-item h4 {
        font-size: 1.05rem;
    }

    .download-footer::before {
        max-width: 90vw;
    }

    footer .footer-col {
        padding-right: 30px;
    }
}

@media (max-width: 576px) {
    .recommendations .stores-grid, .stores-list .stores-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    footer .footer-main {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .footer-col-title {
        margin-top: 40px;
    }
}
