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

body {
    font-family: 'Space Grotesk', 'Arial Black', sans-serif;
    line-height: 1.5;
    color: #1a1a1a;
    background-color: #fffef7;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,182,193,.03) 35px, rgba(255,182,193,.03) 70px);
}

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

/* Header */
header {
    background: #ff6b9d;
    color: #1a1a1a;
    padding: 2.5rem 0;
    text-align: center;
    border-bottom: 6px solid #1a1a1a;
    position: relative;
}

header::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    right: 0;
    height: 6px;
    background: #ffd93d;
}

header h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    text-transform: uppercase;
    text-shadow: 4px 4px 0 #1a1a1a;
}

.tagline {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 3rem 0 2rem;
    background: #6bcf7f;
    margin: 2rem 0;
    border: 5px solid #1a1a1a;
    box-shadow: 8px 8px 0 #1a1a1a;
    transform: rotate(-1deg);
}

.hero h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.2rem;
    color: #1a1a1a;
    font-weight: 600;
}

/* Gallery Grid */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 2rem 0;
}

.cake-card {
    background: white;
    border: 5px solid #1a1a1a;
    overflow: visible;
    box-shadow: 6px 6px 0 #1a1a1a;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
    position: relative;
}

.cake-card:hover {
    transform: translate(-4px, -4px) rotate(1deg);
    box-shadow: 10px 10px 0 #1a1a1a;
}

.cake-card:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 #1a1a1a;
}

.cake-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: #ffd93d;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 4rem;
    border-bottom: 5px solid #1a1a1a;
    position: relative;
}

.cake-card:nth-child(2n) .cake-image {
    background: #a8e6cf;
}

.cake-card:nth-child(3n) .cake-image {
    background: #ff8b94;
}

.cake-card:nth-child(4n) .cake-image {
    background: #c7ceea;
}

.cake-card:nth-child(5n) .cake-image {
    background: #ffaaa5;
}

.cake-info {
    padding: 1.5rem;
    background: white;
}

.cake-info h3 {
    font-size: 1.6rem;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.cake-info p {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 500;
    line-height: 1.6;
}

.cake-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 4px solid #1a1a1a;
}

.price {
    font-size: 1.8rem;
    font-weight: 900;
    color: #1a1a1a;
    background: #ffd93d;
    padding: 0.3rem 0.8rem;
    border: 3px solid #1a1a1a;
    transform: rotate(-2deg);
}

.serves {
    font-size: 0.95rem;
    color: #1a1a1a;
    font-weight: 700;
    background: #ff6b9d;
    padding: 0.3rem 0.6rem;
    border: 3px solid #1a1a1a;
}

/* Cake Detail Page */
.back-link {
    display: inline-block;
    margin: 2rem 0 1rem;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.2rem;
    background: #6bcf7f;
    padding: 0.8rem 1.5rem;
    border: 4px solid #1a1a1a;
    box-shadow: 4px 4px 0 #1a1a1a;
    transition: all 0.2s;
}

.back-link:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 #1a1a1a;
}

.back-link:active {
    transform: translate(1px, 1px);
    box-shadow: 2px 2px 0 #1a1a1a;
}

.cake-detail {
    background: white;
    border: 6px solid #1a1a1a;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 10px 10px 0 #1a1a1a;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.detail-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    background: #ff8b94;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 6rem;
    border: 6px solid #1a1a1a;
    box-shadow: 8px 8px 0 #1a1a1a;
}

.detail-content h2 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.1;
}

.detail-content .price {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.detail-content .description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-weight: 500;
    padding: 1.5rem;
    background: #fffef7;
    border: 4px solid #1a1a1a;
    border-left: 8px solid #ff6b9d;
}

.detail-section {
    margin-bottom: 2rem;
    background: #a8e6cf;
    padding: 1.5rem;
    border: 4px solid #1a1a1a;
    box-shadow: 4px 4px 0 #1a1a1a;
}

.detail-section:nth-child(odd) {
    background: #ffd93d;
}

.detail-section h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.detail-section ul {
    list-style: none;
    padding-left: 0;
}

.detail-section li {
    padding: 0.5rem 0;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1.05rem;
}

.detail-section li:before {
    content: "→ ";
    color: #1a1a1a;
    font-weight: 900;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.contact-cta {
    background: #ff6b9d;
    color: #1a1a1a;
    padding: 2rem;
    border: 6px solid #1a1a1a;
    text-align: center;
    margin-top: 2rem;
    box-shadow: 8px 8px 0 #1a1a1a;
    transform: rotate(-1deg);
}

.contact-cta h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-cta p {
    font-size: 1.2rem;
    font-weight: 700;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #fffef7;
    text-align: center;
    padding: 2.5rem 0;
    margin-top: 4rem;
    border-top: 6px solid #ffd93d;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 6px;
    background: #ff6b9d;
}

footer p {
    margin: 0.8rem 0;
    font-weight: 600;
    font-size: 1.05rem;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    header h1 {
        font-size: 2.5rem;
    }
    
    .hero {
        transform: rotate(0deg);
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .cake-card {
        box-shadow: 4px 4px 0 #1a1a1a;
    }
}

/* Design Switcher */
.design-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.switch-link {
    display: inline-block;
    padding: 12px 20px;
    background: white;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    border: 3px solid #1a1a1a;
    box-shadow: 4px 4px 0 #1a1a1a;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.switch-link:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 #1a1a1a;
}

.switch-link:active {
    transform: translate(1px, 1px);
    box-shadow: 2px 2px 0 #1a1a1a;
}


/* Promo Banner */
.promo-banner {
    background: #ffd93d;
    border-bottom: 6px solid #1a1a1a;
    padding: 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.promo-badge {
    background: #ff6b9d;
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    border: 3px solid #1a1a1a;
    font-weight: 900;
    font-size: 0.9rem;
    transform: rotate(-3deg);
}

.promo-banner p {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
}

/* Hero Updates */
.hero {
    background: #6bcf7f;
    margin: 2rem 0;
    border: 5px solid #1a1a1a;
    box-shadow: 8px 8px 0 #1a1a1a;
    transform: rotate(-1deg);
    padding: 3rem 2rem;
}

.hero-content {
    max-width: 700px;
    margin-bottom: 2rem;
}

.hero h2 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.2rem;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 2rem;
}

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

.btn-primary {
    background: #ff6b9d;
    color: #1a1a1a;
    padding: 1rem 2rem;
    border: 4px solid #1a1a1a;
    box-shadow: 4px 4px 0 #1a1a1a;
    font-weight: 900;
    font-size: 1.1rem;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.2s;
}

.btn-primary:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 #1a1a1a;
}

.btn-primary:active {
    transform: translate(1px, 1px);
    box-shadow: 2px 2px 0 #1a1a1a;
}

.btn-secondary {
    background: white;
    color: #1a1a1a;
    padding: 1rem 2rem;
    border: 4px solid #1a1a1a;
    box-shadow: 4px 4px 0 #1a1a1a;
    font-weight: 900;
    font-size: 1.1rem;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.2s;
}

.btn-secondary:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 #1a1a1a;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-box {
    background: white;
    border: 4px solid #1a1a1a;
    padding: 1.5rem;
    box-shadow: 4px 4px 0 #1a1a1a;
    min-width: 150px;
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff6b9d;
    line-height: 1;
}

.stat-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: white;
    border: 5px solid #1a1a1a;
    padding: 2rem;
    box-shadow: 6px 6px 0 #1a1a1a;
    text-align: center;
}

.feature-card:nth-child(1) {
    background: #a8e6cf;
}

.feature-card:nth-child(2) {
    background: #ffd93d;
}

.feature-card:nth-child(3) {
    background: #ffaaa5;
}

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

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.feature-card p {
    font-weight: 600;
    color: #1a1a1a;
}

/* Gallery Section */
.gallery-section {
    margin: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 2rem;
    color: #1a1a1a;
    letter-spacing: -1px;
}

/* Testimonials */
.testimonials {
    margin: 4rem 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: white;
    border: 5px solid #1a1a1a;
    padding: 2rem;
    box-shadow: 6px 6px 0 #1a1a1a;
}

.testimonial-card:nth-child(1) {
    background: #c7ceea;
}

.testimonial-card:nth-child(2) {
    background: #ffd93d;
}

.testimonial-card:nth-child(3) {
    background: #a8e6cf;
}

.stars {
    color: #ff6b9d;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #1a1a1a;
}

.testimonial-card strong {
    font-weight: 900;
    color: #1a1a1a;
}

/* CTA Section */
.cta-section {
    margin: 4rem 0;
}

.cta-box {
    background: #ff6b9d;
    border: 6px solid #1a1a1a;
    padding: 3rem;
    box-shadow: 10px 10px 0 #1a1a1a;
    text-align: center;
    transform: rotate(-1deg);
}

.cta-box h2 {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-box > p {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.contact-info {
    display: flex;
    gap: 2rem;
    justify-content: center;
    padding-top: 2rem;
    border-top: 4px solid #1a1a1a;
    flex-wrap: wrap;
}

.contact-info p {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1.1rem;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .features {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
    }
}
