/* ============================================
   Weddinguru Marketing Website Styles
   ============================================ */

:root {
    --orange: #FF6B35;
    --orange-dark: #E55A2B;
    --orange-light: #FF8A5B;
    --dark: #1A1A2E;
    --gray-dark: #4A4A5A;
    --gray: #6B6B7B;
    --gray-light: #F5F5F7;
    --white: #FFFFFF;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   Typography
   ============================================ */

.logo-text {
    font-family: 'Pacifico', cursive;
    font-size: 1.8rem;
    color: var(--orange);
    text-decoration: none;
}

.logo-text.small {
    font-size: 1.2rem;
}

.text-orange {
    color: var(--orange);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-orange {
    background: var(--orange);
    color: var(--white);
    border: 2px solid var(--orange);
}

.btn-orange:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-outline-orange {
    background: transparent;
    color: var(--orange);
    border: 2px solid var(--orange);
}

.btn-outline-orange:hover {
    background: var(--orange);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--orange);
    border: 2px solid var(--white);
}

.btn-white:hover {
    background: var(--gray-light);
    color: var(--orange);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--orange);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* ============================================
   Navigation
   ============================================ */

/* Beta Banner */
.beta-banner {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 0.9rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
}

.beta-banner a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

.beta-banner a:hover {
    opacity: 0.9;
}

.navbar-beta {
    top: 42px;
}

.beta-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.65rem;
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    vertical-align: middle;
}

body.has-beta-banner {
    padding-top: 42px;
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow);
}

.navbar-brand {
    padding: 0;
}

.nav-link {
    color: var(--dark);
    font-weight: 500;
    padding: 10px 20px !important;
    transition: var(--transition);
}

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

.navbar-toggler {
    border: none;
    padding: 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.nav-cta {
    display: flex;
    gap: 10px;
}

@media (max-width: 991px) {
    .nav-cta {
        margin-top: 20px;
        flex-direction: column;
    }
    
    .nav-cta .btn {
        width: 100%;
    }
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.beta-info-box {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.95rem;
    color: var(--dark);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
}

.hero-image {
    position: relative;
}

.dashboard-preview {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: var(--transition);
}

.dashboard-preview:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.preview-header {
    background: var(--dark);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.preview-dots {
    display: flex;
    gap: 8px;
}

.preview-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray);
}

.preview-dots span:first-child { background: #FF5F56; }
.preview-dots span:nth-child(2) { background: #FFBD2E; }
.preview-dots span:last-child { background: #27C93F; }

.preview-title {
    color: var(--white);
    font-size: 0.9rem;
}

.preview-content {
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.preview-card {
    background: var(--gray-light);
    padding: 25px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.preview-card:hover {
    transform: translateY(-5px);
}

.preview-card i {
    font-size: 2rem;
    color: var(--gray-dark);
}

.preview-card.accent {
    background: var(--orange);
    color: var(--white);
}

.preview-card.accent i {
    color: var(--white);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll a {
    color: var(--gray);
    font-size: 2rem;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 25px;
    }
    
    .dashboard-preview {
        transform: none;
        margin-top: 50px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-wrap: wrap;
    }
}

/* ============================================
   Section Styles
   ============================================ */

.section-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: var(--orange);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 50px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

/* ============================================
   Features Section
   ============================================ */

.features-section {
    padding: 120px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--orange);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Portal Section
   ============================================ */

.portal-section {
    padding: 120px 0;
    background: var(--gray-light);
}

.portal-preview {
    display: flex;
    justify-content: center;
}

.phone-frame {
    background: var(--dark);
    border-radius: 40px;
    padding: 15px;
    box-shadow: var(--shadow-lg);
}

.phone-screen {
    background: var(--white);
    border-radius: 28px;
    width: 320px;
    overflow: hidden;
}

.portal-header {
    background: var(--orange);
    padding: 20px;
    text-align: center;
}

.portal-header .logo-text {
    color: var(--white);
}

.portal-content {
    padding: 25px;
}

.portal-content h4 {
    margin-bottom: 20px;
}

.portal-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-light);
}

.portal-stat i {
    color: var(--orange);
    font-size: 1.2rem;
}

.portal-btn {
    width: 100%;
    padding: 14px;
    margin-top: 15px;
    border: 2px solid var(--orange);
    background: var(--orange);
    color: var(--white);
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.portal-btn.outline {
    background: transparent;
    color: var(--orange);
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 1.1rem;
}

.feature-list i {
    color: var(--orange);
    font-size: 1.3rem;
}

/* ============================================
   Portal Types Section
   ============================================ */

.portal-types-section {
    padding: 120px 0;
    background: var(--white);
}

.portal-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    margin-bottom: 50px;
}

@media (max-width: 1199px) {
    .portal-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .portal-types-grid {
        grid-template-columns: 1fr;
    }
}

.portal-type-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.portal-type-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.portal-type-card.available {
    border-color: rgba(255, 107, 53, 0.2);
}

.portal-type-card.available:hover {
    border-color: var(--orange);
}

.portal-type-card.coming-soon {
    opacity: 0.85;
}

.portal-type-card.coming-soon .portal-type-icon {
    background: var(--gray-light);
}

.portal-type-card.coming-soon .portal-type-icon i {
    color: var(--gray);
}

.portal-type-status {
    margin-bottom: 20px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.available {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.status-badge.coming-soon {
    background: rgba(108, 117, 125, 0.1);
    color: var(--gray);
}

.portal-type-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.portal-type-icon i {
    font-size: 2rem;
    color: var(--white);
}

.portal-type-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.portal-type-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.portal-type-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.portal-type-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--dark);
    border-top: 1px solid var(--gray-light);
}

.portal-type-features li:first-child {
    border-top: none;
}

.portal-type-features i {
    color: var(--orange);
    font-size: 1rem;
}

.portal-type-card.coming-soon .portal-type-features i {
    color: var(--gray);
}

.portal-types-cta {
    padding-top: 20px;
}

/* ============================================
   Automation Section
   ============================================ */

.automation-section {
    padding: 120px 0;
    background: var(--gray-light);
}

.automation-visual {
    display: flex;
    justify-content: center;
}

.automation-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.flow-item {
    background: var(--white);
    padding: 18px 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.flow-item:hover {
    transform: scale(1.05);
}

.flow-item.trigger {
    background: var(--orange);
    color: var(--white);
}

.flow-item.action {
    background: var(--white);
    border: 2px solid var(--gray-light);
}

.flow-item i {
    font-size: 1.3rem;
}

.flow-arrow {
    color: var(--gray);
    font-size: 1.5rem;
}

.automation-examples {
    margin-top: 30px;
}

.automation-example {
    padding: 20px;
    background: var(--gray-light);
    border-radius: 12px;
    margin-bottom: 15px;
    border-left: 4px solid var(--orange);
}

.automation-example strong {
    display: block;
    margin-bottom: 5px;
}

.automation-example span {
    color: var(--gray);
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
    padding: 120px 0;
    background: var(--gray-light);
}

.cta-card {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    padding: 80px;
    border-radius: 30px;
    text-align: center;
    color: var(--white);
}

.cta-card h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-card p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

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

.cta-note {
    margin-top: 30px;
    font-size: 1rem;
}

.cta-note a {
    color: var(--white);
    font-weight: 600;
}

@media (max-width: 768px) {
    .cta-card {
        padding: 50px 30px;
    }
    
    .cta-card h2 {
        font-size: 1.8rem;
    }
}

/* ============================================
   Footer
   ============================================ */

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

.footer h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--orange);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--orange);
}

/* ============================================
   Pricing Page
   ============================================ */

.pricing-section {
    padding: 120px 0;
    background: var(--gray-light);
}

.pricing-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--dark) 0%, #2A2A4E 100%);
    color: var(--white);
    text-align: center;
}

.pricing-header .section-title {
    color: var(--white);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 3px solid var(--orange);
    position: relative;
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--orange);
}

.pricing-card .price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray);
}

.pricing-card .price .beta-from {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray);
    display: block;
    margin-bottom: -5px;
}

.pricing-card .description {
    color: var(--gray);
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
}

.pricing-features i {
    color: var(--orange);
    font-size: 1.2rem;
    margin-top: 2px;
}

.pricing-features .disabled {
    color: #ccc;
}

.pricing-features .disabled i {
    color: #ccc;
}

@media (max-width: 991px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: -100px auto 0;
    }
}

/* ============================================
   Contact / Demo Page
   ============================================ */

.form-section {
    padding: 120px 0;
}

.form-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--dark) 0%, #2A2A4E 100%);
    color: var(--white);
    text-align: center;
}

.form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow);
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.form-control, .form-select {
    padding: 14px 18px;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-info {
    background: var(--gray-light);
    border-radius: 16px;
    padding: 40px;
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--orange);
    margin-top: 5px;
}

.contact-item h5 {
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--gray);
    margin: 0;
}

/* ============================================
   Utilities
   ============================================ */

.mb-6 {
    margin-bottom: 80px;
}

.py-6 {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* ============================================
   Animations
   ============================================ */

[data-aos] {
    pointer-events: auto !important;
}

@media (prefers-reduced-motion: reduce) {
    [data-aos] {
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

/* ============================================
   Cookie Banner
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 30px;
}

.cookie-text h5 {
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 1.1rem;
}

.cookie-text p {
    margin: 0;
    color: var(--gray);
    font-size: 0.9rem;
}

.cookie-text a {
    color: var(--orange);
    text-decoration: none;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
    padding: 20px;
    background: var(--gray-light);
    border-radius: 12px;
}

.cookie-option {
    padding: 0;
}

.cookie-option .form-check-label {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.cookie-option .form-check-label strong {
    font-size: 0.95rem;
    color: var(--dark);
}

.cookie-option .form-check-label span {
    font-size: 0.8rem;
    color: var(--gray);
}

.cookie-option .form-check-input {
    width: 48px;
    height: 24px;
    margin-right: 12px;
    cursor: pointer;
}

.cookie-option .form-check-input:checked {
    background-color: var(--orange);
    border-color: var(--orange);
}

.cookie-option .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.25);
}

.cookie-option .form-check-input:disabled {
    opacity: 0.7;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.cookie-actions .btn {
    padding: 10px 20px;
}

.cookie-settings-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--orange);
    color: white;
    border: none;
    box-shadow: var(--shadow);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    z-index: 9998;
    transition: var(--transition);
}

.cookie-settings-btn:hover {
    background: var(--orange-dark);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .cookie-content {
        padding: 20px;
    }
    
    .cookie-options {
        grid-template-columns: 1fr;
    }
    
    .cookie-actions {
        flex-direction: column;
    }
    
    .cookie-actions .btn {
        width: 100%;
    }
}
