/* ============================================
   POP ART STYLE - 3D LP WEBSITE
   Award-winning design inspired by CalArts Design Center
   ============================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Pop Art Color Palette */
    --yellow: #FFD700;
    --yellow-bright: #FFEB3B;
    --blue: #2196F3;
    --blue-light: #4ECDC4;
    --purple: #4B0082;
    --purple-light: #9C27B0;
    --lilac: #E8B4F0;
    --lilac-dark: #C77DFF;
    --pink: #FF6B9D;
    --pink-light: #ffbeff;
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray: #666666;
    --black: #000000;
    
    /* Typography with fallbacks */
    --font-primary: 'Fredoka', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-secondary: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Ensure fonts are applied globally */
h1, h2, h3, h4, h5, h6,
.main-title, .hero-title,
.featured-product h2,
.product-info h3,
.footer-section h3,
.modal-product-info h2 {
    font-family: var(--font-primary) !important;
}

p, .tagline, .hero-description,
.featured-product .description,
.footer-section p,
.modal-product-info .description,
.form-group label {
    font-family: var(--font-secondary) !important;
}

body {
    font-family: var(--font-secondary), -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    padding-top: 80px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

/* ============================================
   ANIMATED BACKGROUND - REMOVED
   ============================================ */

/* ============================================
   STICKY NAVIGATION MENU
   ============================================ */

.main-navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: #ffbeff;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-navigation .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: flex-end;
    width: 100%;
}

.nav-logo {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--purple);
    margin-right: auto;
    padding-right: 1.5rem;
    border-right: 2px solid var(--lilac);
}

.nav-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-link {
    padding: 0.875rem 2rem;
    background: #66BBF0;
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.nav-link:hover {
    background: #4A9FE8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-link:active {
    transform: translateY(0);
}


@media (max-width: 768px) {
    .main-navigation {
        padding: 0.75rem 1rem;
    }
    
    .nav-content {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .nav-logo {
        margin-right: 0;
        padding-right: 0;
        border-right: none;
        border-bottom: 2px solid var(--lilac);
        padding-bottom: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }
    
    body {
        padding-top: 120px;
    }
}

/* ============================================
   HEADER WITH ANIMATED LOGO
   ============================================ */

.main-header {
    background: var(--pink-light);
    color: var(--black);
    padding: 4rem 0 3rem;
    text-align: center;
    position: relative;
    z-index: 10;
    border-bottom: 8px solid var(--yellow);
}

.header-stripe {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: repeating-linear-gradient(
        90deg,
        var(--yellow) 0px,
        var(--yellow) 40px,
        var(--pink) 40px,
        var(--pink) 80px,
        var(--blue-light) 80px,
        var(--blue-light) 120px,
        var(--lilac) 120px,
        var(--lilac) 160px
    );
    animation: slideStripe 4s linear infinite;
}

@keyframes slideStripe {
    0% {
        transform: translateX(-160px);
    }
    100% {
        transform: translateX(0);
    }
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.logo-wrapper {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.animated-logo {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
}

/* Logo Animations */
.logo-circle-1 {
    animation: pulseCircle 3s ease-in-out infinite;
}

.logo-circle-2 {
    animation: pulseCircle 3s ease-in-out infinite 0.3s;
}

.logo-circle-3 {
    animation: pulseCircle 3s ease-in-out infinite 0.6s;
}

.lila-char {
    animation: bounceChar 4s ease-in-out infinite;
    transform-origin: center bottom;
}

.pip-char {
    animation: bounceChar 4s ease-in-out infinite 0.5s;
    transform-origin: center bottom;
}

.lila-head, .pip-head {
    animation: nodHead 5s ease-in-out infinite;
}

.lila-eye, .pip-eye {
    animation: blinkEye 4s ease-in-out infinite;
}

.lila-arm-left, .pip-arm-left {
    animation: waveArm 3s ease-in-out infinite;
    transform-origin: top center;
}

.lila-arm-right, .pip-arm-right {
    animation: waveArm 3s ease-in-out infinite 0.3s;
    transform-origin: top center;
}

.printer-obj, .print-obj {
    animation: rotateObj 4s ease-in-out infinite;
    transform-origin: center;
}

.logo-text {
    animation: glowText 2.5s ease-in-out infinite alternate;
}

@keyframes pulseCircle {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

@keyframes bounceChar {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes nodHead {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-4deg);
    }
    75% {
        transform: rotate(4deg);
    }
}

@keyframes blinkEye {
    0%, 90%, 100% {
        transform: scaleY(1);
    }
    95% {
        transform: scaleY(0.1);
    }
}

@keyframes waveArm {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(20deg);
    }
}

@keyframes rotateObj {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(12deg);
    }
}

@keyframes glowText {
    from {
        filter: drop-shadow(0 0 8px rgba(75, 0, 130, 0.3));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(199, 125, 255, 0.6));
    }
}

.main-title {
    font-family: var(--font-primary), -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--purple);
    text-shadow: none;
    animation: slideInDown 0.8s ease-out;
    letter-spacing: -1px;
    text-align: center;
}

.tagline {
    font-family: var(--font-secondary), -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    color: var(--gray);
    font-weight: 500;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ============================================
   HERO SECTION WITH ILLUSTRATION
   ============================================ */

.hero-section {
    padding: 6rem 0;
    position: relative;
    z-index: 5;
    background: var(--gray-light);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hero-illustration {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.lila-pip-illustration {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.15));
}

/* Illustration Animations */
.lila-large {
    animation: floatUpDown 5s ease-in-out infinite;
    transform-origin: center bottom;
}

.pip-large {
    animation: floatUpDown 5s ease-in-out infinite 0.6s;
    transform-origin: center bottom;
}

.lila-head-lg, .pip-head-lg {
    animation: nodHeadLarge 4s ease-in-out infinite;
}

.lila-arm-left-lg, .pip-arm-left-lg {
    animation: waveArmLarge 3.5s ease-in-out infinite;
    transform-origin: top center;
}

.lila-arm-right-lg, .pip-arm-right-lg {
    animation: waveArmLarge 3.5s ease-in-out infinite 0.4s;
    transform-origin: top center;
}

.printer-lg, .print-lg {
    animation: rotateObjLarge 4s ease-in-out infinite;
    transform-origin: center;
}

.star {
    animation: twinkleStar 3s ease-in-out infinite;
    transform-origin: center;
}

.star-1 {
    animation-delay: 0s;
}

.star-2 {
    animation-delay: 1s;
}

.star-3 {
    animation-delay: 2s;
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes nodHeadLarge {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(5deg);
    }
}

@keyframes waveArmLarge {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(25deg);
    }
}

@keyframes rotateObjLarge {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(15deg);
    }
}

@keyframes twinkleStar {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.3) rotate(180deg);
    }
}

.hero-text {
    padding: 2rem 0;
}

.hero-title {
    font-family: var(--font-primary), -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 3.5rem;
    color: var(--purple);
    margin-bottom: 2rem;
    text-shadow: none;
    animation: fadeInLeft 1s ease-out;
    line-height: 1.2;
    text-align: center;
}

.hero-description {
    font-family: var(--font-secondary), -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.4rem;
    color: var(--gray);
    line-height: 1.8;
    animation: fadeInRight 1s ease-out 0.3s both;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */

.products-main {
    padding: 4rem 0 3rem 0;
    position: relative;
    z-index: 5;
    background: var(--yellow);
}

.product-section {
    margin-bottom: 6rem;
    animation: fadeInUp 0.8s ease-out;
    /* Ensure proper stacking context */
    position: relative;
    z-index: 0;
}

/* Featured Product */
.featured-product {
    background: var(--pink-light);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    margin-bottom: 5rem;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.3s ease;
    cursor: pointer;
    position: relative;
    border: 6px solid var(--purple);
    z-index: 1;
    will-change: transform;
}

.featured-product::before {
    content: '⭐ UITGELICHT ⭐';
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--purple);
    color: var(--yellow);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-primary), -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    z-index: 10;
    animation: pulseBadge 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@keyframes pulseBadge {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.featured-product:hover {
    transform: translateY(-8px) rotate(1deg) scale(1.01);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    border-color: var(--yellow);
    z-index: 100;
    /* Ensure hover state is stable */
    pointer-events: auto;
}

.featured-product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem;
}

/* Wrapper for featured product images to keep border visible during zoom */
.featured-image-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 25px;
    overflow: hidden;
    border: 5px solid #4B0082;
    background: var(--lilac);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: border-color 0.3s ease;
}

.featured-product:hover .featured-image-wrapper {
    border-color: #FFD700;
}

.featured-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.featured-product:hover .featured-product-image {
    transform: scale(1.08) rotate(-2deg);
}

.featured-product:hover .featured-slideshow-image {
    transform: scale(1.08) rotate(-2deg);
}

/* Slideshow wrapper - same as single image wrapper */
.featured-product-slideshow {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 25px;
    overflow: hidden;
    border: 5px solid #4B0082;
    background: var(--lilac);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: border-color 0.3s ease;
}

.featured-product:hover .featured-product-slideshow {
    border-color: #FFD700;
}

.featured-product-slideshow .featured-slideshow-image {
    border: none;
    transition: opacity 0.6s ease-in-out, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.featured-product-info {
    padding: 2rem;
    background: var(--pink-light);
}

.featured-product h2 {
    color: var(--purple);
    font-family: var(--font-primary), -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: none;
}

.featured-product .price {
    font-size: 3rem;
    color: var(--purple);
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: none;
    background: var(--yellow);
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 20px;
    animation: pricePulse 2.5s ease-in-out infinite;
    font-family: var(--font-primary);
}

@keyframes pricePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

.featured-product .description {
    font-family: var(--font-secondary), -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.4rem;
    color: var(--purple);
    line-height: 1.9;
    text-shadow: none;
    font-weight: 500;
}

/* Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 5rem;
    /* Ensure proper stacking context */
    position: relative;
    z-index: 0;
}

.product-card {
    background: var(--pink-light);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
    animation: fadeInUp 0.8s ease-out;
    border: 4px solid transparent;
    position: relative;
    z-index: 1;
    /* Prevent hover flickering by ensuring pointer events work correctly */
    will-change: transform;
}

.product-card:nth-child(1) { 
    animation-delay: 0.1s;
    border-color: var(--yellow);
}
.product-card:nth-child(2) { 
    animation-delay: 0.2s;
    border-color: var(--pink);
}
.product-card:nth-child(3) { 
    animation-delay: 0.3s;
    border-color: var(--blue-light);
}

.product-card:hover {
    transform: translateY(-15px) rotate(2deg) scale(1.03);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    border-color: var(--purple);
    z-index: 100;
    /* Ensure hover state is stable */
    pointer-events: auto;
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--lilac) 0%, var(--pink-light) 100%);
    transition: transform 0.4s ease;
}

.product-card:hover .product-image {
    transform: scale(1.15) rotate(-3deg);
}

.product-info {
    padding: 2rem;
    background: var(--pink-light);
}

.product-info h3 {
    color: var(--purple);
    font-family: var(--font-primary), -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.product-info .price {
    font-size: 2.2rem;
    color: var(--purple);
    font-weight: 700;
    background: var(--yellow);
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 15px;
    margin-top: 0.5rem;
    font-family: var(--font-primary), -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

/* ============================================
   FOOTER
   ============================================ */

.main-footer {
    background: #66BBF0;
    padding: 3rem 0;
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-text {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 700;
}

.footer-email-button {
    padding: 0.875rem 2rem;
    background: #66BBF0;
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.footer-email-button:hover {
    background: #4A9FE8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-email-button:active {
    transform: translateY(0);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-text {
        font-size: 1rem;
    }
    
    .footer-email-button {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
}


/* ============================================
   MODAL
   ============================================ */

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    animation: fadeIn 0.3s ease-out;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    border-radius: 30px;
    padding: 2.5rem;
    max-width: 950px;
    width: 92%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: slideUpModal 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
    border: 6px solid var(--purple);
}

.close {
    position: absolute;
    right: 2.5rem;
    top: 2.5rem;
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--purple);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--yellow);
    border-radius: 50%;
    border: 4px solid var(--purple);
    line-height: 1;
}

.close:hover {
    transform: rotate(90deg) scale(1.15);
    background: var(--pink);
}

#modal-product-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
}

.modal-product-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    background: var(--lilac);
    border: 4px solid var(--purple);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.modal-product-info h2 {
    color: var(--purple);
    font-family: var(--font-primary);
    font-size: 3rem;
    margin-bottom: 2rem;
}

.modal-product-info .price {
    font-size: 3rem;
    color: var(--white);
    font-weight: 700;
    background: var(--purple);
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    font-family: var(--font-primary);
}

.modal-product-info .description {
    font-family: var(--font-secondary), -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.3rem;
    color: var(--gray);
    line-height: 1.9;
}

/* Form */
.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--purple);
    font-weight: 600;
    font-size: 1.2rem;
    font-family: var(--font-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.25rem;
    border: 4px solid var(--lilac);
    border-radius: 15px;
    font-size: 1.1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 6px rgba(75, 0, 130, 0.1);
    transform: scale(1.02);
}

/* Frontend buttons - no gradients */
.btn-primary {
    background: var(--yellow);
    color: var(--purple);
    border: none;
    padding: 1.5rem 3rem;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: var(--font-primary);
    border-radius: 25px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 4px solid var(--purple);
}

.btn-primary:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.5);
    background: #FFEB3B;
}

/* Cart checkout button - blue */
#cart-checkout-btn {
    background: #2d8659;
    color: var(--white);
    border: none;
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 1.5rem 3rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 30px rgba(45, 134, 89, 0.4);
}

#cart-checkout-btn:hover {
    background: #1f5d3f;
    box-shadow: 0 20px 50px rgba(45, 134, 89, 0.5);
    transform: translateY(-8px) scale(1.05);
}

/* Add to cart button - yellow */
#add-to-cart-btn {
    background: var(--yellow);
    color: var(--purple);
    border: none;
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 1.5rem 3rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    width: 100%;
}

#add-to-cart-btn:hover {
    background: #FFEB3B;
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.5);
    transform: translateY(-8px) scale(1.05);
}

/* Order now button - green (darker) */
#order-now-btn {
    background: #2d8659;
    color: var(--white);
    border: none;
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 1.5rem 3rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 30px rgba(45, 134, 89, 0.4);
    width: 100%;
}

#order-now-btn:hover {
    background: #1f5d3f;
    box-shadow: 0 20px 50px rgba(45, 134, 89, 0.5);
    transform: translateY(-8px) scale(1.05);
}

/* Checkout submit button - same as order-now-btn (green) */
#checkout-submit-btn {
    background: #2d8659;
    color: var(--white);
    border: none;
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 1.5rem 3rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 30px rgba(45, 134, 89, 0.4);
    width: 100%;
}

#checkout-submit-btn:hover {
    background: #1f5d3f;
    box-shadow: 0 20px 50px rgba(45, 134, 89, 0.5);
    transform: translateY(-8px) scale(1.05);
}

/* Order form submit button - same as order-now-btn */
#order-form-submit-btn {
    background: #2d8659;
    color: var(--white);
    border: none;
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 1.5rem 3rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 30px rgba(45, 134, 89, 0.4);
    width: 100%;
}

#order-form-submit-btn:hover {
    background: #1f5d3f;
    box-shadow: 0 20px 50px rgba(45, 134, 89, 0.5);
    transform: translateY(-8px) scale(1.05);
}

.btn-primary:active {
    transform: translateY(-4px) scale(1.02);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUpModal {
    from {
        opacity: 0;
        transform: translateY(100px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ============================================
   CUSTOM ORDER SECTION
   ============================================ */

.custom-order-section {
    padding: 0 0 4rem 0;
    background: var(--yellow);
    position: relative;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 700;
    color: #3399FF;
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: none;
}

.custom-order-content {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    text-align: center;
    background: #3399FF;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.custom-order-text {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    line-height: 1.6;
    color: var(--yellow);
    margin-bottom: 2.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.contact-info {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.contact-button-large {
    padding: 2rem 4rem;
    background: #66BBF0;
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-button-large:hover {
    background: #4A9FE8;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}


.contact-info .footer-email-button {
    margin-top: 0.5rem;
}

/* ============================================
   TEAM SECTION
   ============================================ */

.team-section {
    padding: 6rem 0;
    background: #ffbeff;
    position: relative;
}

.team-title {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 700;
    color: var(--purple);
    text-align: center;
    margin-bottom: 4rem;
    text-shadow: none;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 4px solid transparent;
}

/* Team cards are not clickable, so no hover effect */

.team-image-wrapper {
    width: 100%;
    padding-top: 100%; /* Square aspect ratio */
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.team-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-image-placeholder svg {
    width: 80%;
    height: 80%;
}

.team-info {
    padding: 2rem;
    text-align: center;
}

.team-name {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: 1rem;
}

.team-skills {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--gray);
    margin: 0;
}

/* Responsive Team */
@media (max-width: 768px) {
    .team-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .team-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-name {
        font-size: 1.6rem;
    }
    
    .team-skills {
        font-size: 1rem;
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: 6rem 0;
    background: #2196F3;
    position: relative;
}

.faq-title {
    font-family: var(--font-primary);
    font-size: 4rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 4rem;
    text-shadow: none;
}

.faq-container {
    max-width: 1125px;
    margin: 0 auto;
}

.faq-item {
    background: #66BBF0;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 4px solid transparent;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--white);
    box-shadow: 0 6px 20px rgba(75, 0, 130, 0.2);
}

.faq-item.active {
    border-color: var(--yellow);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.faq-question {
    width: 100%;
    padding: 2rem 2.5rem;
    background: #66BBF0;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: #66BBF0;
    transform: translateX(5px);
}

.faq-question-text {
    flex: 1;
    padding-right: 2rem;
    line-height: 1.4;
}

.faq-toggle-icon {
    font-size: 1.2rem;
    color: var(--white);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #66BBF0;
}

.faq-item.active .faq-answer {
    padding: 2rem 2.5rem;
    max-height: 1000px;
}

.faq-answer p {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--white);
    margin: 0;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-question {
        font-size: 1.4rem;
        padding: 1.5rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1.5rem;
    }
}

/* ============================================
   PARALLAX EFFECTS - REMOVED
   ============================================ */

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .featured-product-content {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
    
    .featured-product-image {
        height: 350px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    #modal-product-details {
        grid-template-columns: 1fr;
    }
    
    .main-title {
        font-size: 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    .main-title {
        font-size: 2.5rem;
        text-shadow: none;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-product h2 {
        font-size: 2.5rem;
    }
    
    .featured-product .price {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .logo-wrapper {
        max-width: 350px;
    }
    
    .hero-illustration {
        max-width: 100%;
    }
    
    .container {
        padding: 0 20px;
    }
}