/* ============================================
   MyBundles.store — Redesigned Theme
   Inspired by hug.to: light→dark, indigo/purple
   ============================================ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Light Section */
    --bg-light: #f0f2f8;
    --bg-light-2: #e8ebf4;
    --text-dark: #0f172a;
    --text-dark-2: #475569;
    --text-dark-3: #64748b;

    /* Dark Section */
    --bg-dark: #0f172a;
    --bg-dark-2: #1e293b;
    --bg-dark-card: #1a2332;
    --text-light: #f1f5f9;
    --text-light-2: #94a3b8;
    --text-light-3: #64748b;

    /* Accents */
    --indigo: #6366f1;
    --violet: #8b5cf6;
    --purple: #a855f7;
    --gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    --gradient-text: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    --glow: 0 0 40px rgba(99, 102, 241, 0.2);
    --glow-btn: 0 8px 30px rgba(99, 102, 241, 0.35);

    /* Common */
    --border-light: rgba(0, 0, 0, 0.06);
    --border-dark: rgba(255, 255, 255, 0.08);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    background: var(--bg-light);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ---- Header ---- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 14px 0;
    background: rgba(240, 242, 248, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--text-dark);
}

.logo-icon {
    font-size: 1.4rem;
}

.logo-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-icon-img {
    height: 52px !important;
    max-height: 52px;
    width: auto !important;
    object-fit: contain;
    mix-blend-mode: multiply;
    border-radius: 4px;
    flex-shrink: 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-icon-img {
    height: 38px !important;
    max-height: 38px;
    width: auto !important;
    object-fit: contain;
    filter: brightness(1.2) saturate(1.1);
    flex-shrink: 0;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark-2);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--indigo);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font);
    font-weight: 600;
    cursor: pointer;
    border: none;
    border-radius: var(--radius);
    transition: var(--transition);
}

.btn-header {
    padding: 10px 24px;
    background: var(--gradient);
    color: #fff;
    font-size: 0.9rem;
    border-radius: 50px;
    box-shadow: var(--glow-btn);
}

.btn-header:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 35px rgba(99, 102, 241, 0.45);
}

.btn-primary {
    padding: 14px 32px;
    background: var(--gradient);
    color: #fff;
    font-size: 1rem;
    border-radius: 50px;
    box-shadow: var(--glow-btn);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.5);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.05rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ---- Hero (Light) ---- */
.hero {
    padding: 160px 0 100px;
    text-align: center;
    background:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(99, 102, 241, 0.08) 0%, transparent 60%),
        linear-gradient(180deg, var(--bg-light) 0%, #e2e5f0 100%);
}

.hero-content {
    max-width: 760px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-dark-2);
    letter-spacing: 0.06em;
    margin-bottom: 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    animation: fadeInUp 0.5s ease-out;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.035em;
    color: var(--text-dark);
    margin-bottom: 24px;
    animation: fadeInUp 0.5s ease-out 0.1s both;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-dark-2);
    line-height: 1.75;
    margin-bottom: 36px;
    animation: fadeInUp 0.5s ease-out 0.2s both;
}

.hero-subtitle strong {
    color: var(--text-dark);
}

.hero-ctas {
    margin-bottom: 40px;
    animation: fadeInUp 0.5s ease-out 0.3s both;
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-dark-3);
    animation: fadeInUp 0.5s ease-out 0.4s both;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ---- Dark Sections ---- */
.section-dark {
    padding: 100px 0;
    background: var(--bg-dark);
    color: var(--text-light);
}

.section-label {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--text-light-3);
    margin-bottom: 12px;
}

.section-title-light {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-light);
    margin-bottom: 12px;
}

.section-desc-light {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-light-2);
    margin-bottom: 48px;
}

/* ---- Light Sections ---- */
.section-light {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-label-dark {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--text-dark-3);
    margin-bottom: 12px;
}

.section-title-dark {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    margin-bottom: 48px;
}

/* ---- Filter Bar ---- */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 48px;
}

.filter-btn {
    padding: 8px 22px;
    background: var(--bg-dark-2);
    border: 1px solid var(--border-dark);
    border-radius: 50px;
    color: var(--text-light-2);
    font-family: var(--font);
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
    color: var(--text-light);
}

.filter-btn.active {
    background: var(--gradient);
    border-color: transparent;
    color: #fff;
}

/* ---- Guide Cards ---- */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.guide-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.5s ease-out both;
}

.guide-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.15);
}

.guide-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--bg-dark-2);
}

.guide-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.guide-card:hover .guide-card-image img {
    transform: scale(1.05);
}

.guide-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
}

.guide-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 14px;
    background: rgba(99, 102, 241, 0.9);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    backdrop-filter: blur(8px);
}

.guide-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.guide-card-category {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--violet);
    margin-bottom: 8px;
}

.guide-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
    color: var(--text-light);
}

.guide-card-desc {
    font-size: 0.88rem;
    color: var(--text-light-2);
    line-height: 1.65;
    margin-bottom: 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.guide-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.guide-card-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-current {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-light);
}

.price-original {
    font-size: 0.88rem;
    color: var(--text-light-3);
    text-decoration: line-through;
}

.guide-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    background: var(--gradient);
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 50px;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.25);
}

.guide-card-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(99, 102, 241, 0.4);
}

/* ---- Steps Grid ---- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.step-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.08);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-dark-2);
    line-height: 1.65;
}

/* ---- Features Grid ---- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--bg-dark-2);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: rgba(99, 102, 241, 0.2);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-light);
}

.feature-card p {
    font-size: 0.88rem;
    color: var(--text-light-2);
    line-height: 1.65;
}

/* ---- FAQ ---- */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    background: none;
    border: none;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq-q:hover {
    color: var(--indigo);
}

.faq-icon {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--text-dark-3);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    font-size: 0.92rem;
    color: var(--text-dark-2);
    line-height: 1.7;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

/* ---- CTA Banner ---- */
.cta-banner {
    padding: 80px 0;
    background: var(--gradient);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.cta-banner .btn-primary {
    background: #fff;
    color: var(--indigo);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta-banner .btn-primary:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* ---- Footer ---- */
.footer {
    padding: 60px 0 30px;
    background: var(--bg-dark);
    color: var(--text-light-2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 0.88rem;
    color: var(--text-light-3);
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 0.88rem;
    color: var(--text-light-3);
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--text-light);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--border-dark);
    font-size: 0.82rem;
    color: var(--text-light-3);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-light-3);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--text-light);
}

/* ---- Empty & Loading ---- */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon {
    font-size: 3.5rem;
    margin-bottom: 16px;
}

.empty-state h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-light);
}

.empty-state p {
    color: var(--text-light-2);
}

.loading-state {
    text-align: center;
    padding: 60px 20px;
}

.loader {
    width: 36px;
    height: 36px;
    border: 3px solid var(--border-dark);
    border-top-color: var(--indigo);
    border-radius: 50%;
    margin: 0 auto 16px;
    animation: spin 0.8s linear infinite;
}

.loading-state p {
    color: var(--text-light-3);
    font-size: 0.88rem;
}

/* ---- Animations ---- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .btn-header {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(240, 242, 248, 0.98);
        backdrop-filter: blur(20px);
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border-light);
    }

    .hero {
        padding: 130px 0 60px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-trust {
        flex-direction: column;
        gap: 12px;
    }

    .section-dark,
    .section-light {
        padding: 60px 0;
    }

    .section-title-light,
    .section-title-dark {
        font-size: 1.8rem;
    }

    .guides-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ---- Legal pages (shared) ---- */
.legal-page {
    padding: 120px 0 80px;
    background: var(--bg-light);
    min-height: 100vh;
}

.legal-content {
    max-width: 760px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.legal-content .last-updated {
    font-size: 0.85rem;
    color: var(--text-dark-3);
    margin-bottom: 36px;
}

.legal-content h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 36px;
    margin-bottom: 12px;
}

.legal-content p,
.legal-content li {
    font-size: 0.95rem;
    color: var(--text-dark-2);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-content ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-content a {
    color: var(--indigo);
    text-decoration: underline;
}

/* ---- Contact Form ---- */
.contact-form {
    max-width: 560px;
    margin: 0 auto;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark-2);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    color: var(--text-dark);
    font-family: var(--font);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--indigo);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form .btn-primary {
    width: 100%;
}

.form-success {
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.form-success h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-success p {
    color: var(--text-dark-2);
}

/* ---- Cookie Consent Banner ---- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 20px 24px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-text {
    flex: 1;
}

.cookie-text p {
    font-size: 0.88rem;
    color: var(--text-light-2);
    line-height: 1.6;
    margin: 0;
}

.cookie-text a {
    color: var(--indigo);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-text a:hover {
    color: var(--violet);
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px;
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
}

.cookie-btn-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(99, 102, 241, 0.45);
}

.cookie-btn-reject {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-light-2);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.14);
    color: var(--text-light);
}

@media (max-width: 640px) {
    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }
}