/* Modern CSS Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.6;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

/* CSS Variables */
:root {
    --primary-color: #FFB6C1;
    --secondary-color: #FF69B4;
    --accent-color: #FFE4B5;
    --peach-color: #FFB6A3;
    --cream-color: #FFF8DC;
    --dark-color: #2c2c2c;
    --light-color: #FFF5F7;
    --white: #ffffff;
    --text-color: #333333;
    --text-light: #666666;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --nav-height: 70px;
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Navigation - STATIC (not fixed) */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: relative;
    width: 100%;
    z-index: 1000;
    border-radius: 0 0 30px 30px;
}

.nav-wrapper {
    display: grid;
    grid-template-columns: 1.2fr auto 1.2fr;
    align-items: center;
    padding: 0.8rem 0;
    gap: 2rem;
    min-height: var(--nav-height);
}

.nav-menu-left,
.nav-menu-right {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu-left {
    justify-content: flex-end;
}

.nav-menu-right {
    justify-content: flex-start;
}

.nav-menu-left a,
.nav-menu-right a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 800;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    font-family: 'Fredoka', sans-serif;
    white-space: nowrap;
}

.nav-menu-left a:hover,
.nav-menu-right a:hover {
    color: var(--secondary-color);
}

.logo {
    text-align: center;
}

.logo h1 {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 5px 20px;
    font-family: 'Fredoka', sans-serif;
    white-space: nowrap;
    line-height: 1.2;
}

.logo .tagline {
    font-size: clamp(0.45rem, 1.5vw, 0.55rem);
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-top: 2px;
}

.btn-nav {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 800;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.nav-menu {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--cream-color) 0%, var(--light-color) 50%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: clamp(2rem, 5vw, 4rem) 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    z-index: 0;
}

.hero-content-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    line-height: 1;
    letter-spacing: -2px;
    font-family: 'Fredoka', sans-serif;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: min(500px, 80vw);
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: clamp(0.9rem, 2vw, 1.2rem) clamp(2rem, 4vw, 3rem);
    border-radius: 100px;
    text-decoration: none;
    font-weight: 800;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: clamp(0.9rem, 2vw, 1rem);
    letter-spacing: 0.5px;
    font-family: 'Fredoka', sans-serif;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--dark-color);
    border: 3px solid var(--secondary-color);
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    transform: translateY(-3px);
}

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

/* Sections */
section {
    padding: clamp(3rem, 8vw, 5rem) 0;
    position: relative;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-color);
    letter-spacing: -1px;
    font-family: 'Fredoka', sans-serif;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    margin-bottom: 3rem;
    font-weight: 700;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Products Section */
.products {
    background: var(--light-color);
    position: relative;
    z-index: 1;
}

.container-full {
    max-width: 100%;
    padding: 0;
}

.product-category {
    margin-bottom: 4rem;
    position: relative;
}

.category-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 2rem;
    padding: 0 20px;
    text-align: center;
    font-family: 'Fredoka', sans-serif;
}

.products-scroll {
    display: flex;
    gap: clamp(1rem, 3vw, 2rem);
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1rem 20px 2rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.products-scroll::-webkit-scrollbar {
    display: none;
}

.product-category::before,
.product-category::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(20px, 5vw, 100px);
    z-index: 2;
    pointer-events: none;
}

.product-category::before {
    left: 0;
    background: linear-gradient(to right, var(--light-color) 0%, transparent 100%);
}

.product-category::after {
    right: 0;
    background: linear-gradient(to left, var(--light-color) 0%, transparent 100%);
}

.product-card {
    background: var(--white);
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: min(300px, 85vw);
    max-width: min(350px, 85vw);
    flex-shrink: 0;
    scroll-snap-align: start;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: clamp(200px, 40vw, 250px);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.95), rgba(255, 105, 180, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.product-info {
    padding: 1.5rem;
}

.product-info h4 {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 900;
    letter-spacing: 0.5px;
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
}

.price {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 900;
    color: var(--secondary-color);
}

/* About Section */
.about {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 700;
}

.feature p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.about-image {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Order Section */
.order-section {
    background: var(--light-color);
}

.order-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.order-form {
    background: var(--white);
    padding: clamp(1.5rem, 4vw, 3rem);
    box-shadow: var(--shadow);
    border-radius: 40px;
}

.order-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 30px;
    box-shadow: var(--shadow);
    text-align: center;
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-box h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 700;
}

.info-box p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0.25rem 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-note {
    background: rgba(255, 182, 193, 0.1);
    padding: 1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

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

.btn-large {
    width: 100%;
    padding: 1.2rem 3rem;
}

/* Contact Section */
.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 700;
}

.contact-item p {
    color: var(--text-light);
    margin: 0.25rem 0;
}

.contact-form {
    background: var(--light-color);
    padding: clamp(1.5rem, 4vw, 3rem);
    box-shadow: var(--shadow);
    border-radius: 40px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea,
.order-form input,
.order-form select,
.order-form textarea {
    width: 100%;
    padding: clamp(0.85rem, 2vw, 1rem);
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    font-size: max(16px, 1rem);
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group textarea {
    border-radius: 20px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 3rem 0 1rem;
    border-radius: 30px 30px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-family: 'Fredoka', sans-serif;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section p {
    color: #b0b0b0;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.social-link {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b0b0b0;
}

/* Mobile Styles */
@media (max-width: 968px) {
    .nav-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .nav-menu-left,
    .nav-menu-right {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: flex;
        position: absolute;
        left: -100%;
        top: 100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 1.5rem;
        list-style: none;
        border-radius: 0 0 30px 30px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        text-decoration: none;
        color: var(--text-color);
        font-weight: 800;
        font-size: 1.1rem;
        font-family: 'Fredoka', sans-serif;
        padding: 0.5rem 0;
        transition: color 0.3s ease;
    }

    .btn-nav-mobile {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: var(--white) !important;
        padding: 1rem 2.5rem;
        border-radius: 30px;
        font-weight: 800;
        display: inline-block;
        margin: 1rem auto;
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-image {
        order: -1;
    }

    .hero-buttons {
        justify-content: center;
    }

    .product-card {
        min-width: min(250px, 70vw);
        max-width: min(280px, 75vw);
    }

    .about-content,
    .order-form-wrapper,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    :root {
        --nav-height: 60px;
    }

    .product-card {
        min-width: min(280px, 85vw);
        max-width: min(300px, 90vw);
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .nav-menu a,
    .mobile-menu-toggle {
        min-height: 44px;
        min-width: 44px;
    }

    .product-card:hover {
        transform: none;
    }

    .product-card:active {
        transform: scale(0.98);
    }

    .contact-item:hover {
        transform: none;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Special Features Cards */
.special-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto 0;
    padding: 0 20px;
}

.feature-card {
    background: var(--white);
    border-radius: 30px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-color);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

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

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-card-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-family: 'Fredoka', sans-serif;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.feature-arrow {
    font-size: 2rem;
    color: var(--secondary-color);
    font-weight: bold;
    position: relative;
    z-index: 1;
}

/* Breakfast Section */
.breakfast-section {
    background: var(--white);
}

.breakfast-combos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.combo-card {
    background: var(--light-color);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.combo-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.combo-image {
    height: 200px;
    overflow: hidden;
}

.combo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.combo-card:hover .combo-image img {
    transform: scale(1.1);
}

.combo-info {
    padding: 2rem;
}

.combo-info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-family: 'Fredoka', sans-serif;
}

.combo-items {
    list-style: none;
    margin-bottom: 1.5rem;
}

.combo-items li {
    padding: 0.5rem 0;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.combo-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 20px;
}

.price-label {
    font-weight: 700;
    color: var(--text-light);
}

.combo-price .price {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--secondary-color);
}

.breakfast-note {
    background: rgba(255, 182, 193, 0.1);
    padding: 2rem;
    border-radius: 30px;
    text-align: center;
}

.breakfast-note p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin: 0;
}

/* Birthday Cakes Section */
.birthday-cakes-section {
    background: var(--light-color);
}

.birthday-cakes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.birthday-cake-card {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.birthday-cake-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.cake-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.cake-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.birthday-cake-card:hover .cake-image img {
    transform: scale(1.05);
}

.cake-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: var(--shadow);
}

.cake-details {
    padding: 2rem;
}

.cake-details h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-family: 'Fredoka', sans-serif;
}

.cake-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cake-specs {
    list-style: none;
    margin-bottom: 1.5rem;
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 20px;
}

.cake-specs li {
    padding: 0.5rem 0;
    color: var(--text-color);
    font-size: 0.95rem;
}

.cake-specs strong {
    color: var(--dark-color);
    font-weight: 800;
}

.cake-pricing {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-option {
    flex: 1;
    background: var(--light-color);
    padding: 1rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.price-option:hover {
    border-color: var(--secondary-color);
    background: var(--white);
}

.price-option.single {
    flex: none;
    width: 100%;
}

.price-option span:first-child {
    display: block;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.price-option .price {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--secondary-color);
}

.custom-cake-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 4rem 2rem;
    border-radius: 40px;
    text-align: center;
    color: var(--white);
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Fredoka', sans-serif;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.custom-cake-cta .btn-outline {
    border-color: var(--white);
    color: var(--white);
    background: transparent;
}

.custom-cake-cta .btn-outline:hover {
    background: var(--white);
    color: var(--secondary-color);
}

/* Responsive Styles for New Sections */
@media (max-width: 768px) {
    .special-features {
        grid-template-columns: 1fr;
    }

    .breakfast-combos {
        grid-template-columns: 1fr;
    }

    .birthday-cakes-grid {
        grid-template-columns: 1fr;
    }

    .cake-pricing {
        flex-direction: column;
    }

    .price-option {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .feature-card {
        padding: 2rem 1.5rem;
    }

    .combo-info {
        padding: 1.5rem;
    }

    .cake-details {
        padding: 1.5rem;
    }

    .custom-cake-cta {
        padding: 3rem 1.5rem;
    }

    .cta-content h3 {
        font-size: 1.5rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}
