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

body {
    font-family: 'Comic Sans MS', 'Comic Sans', 'Chalkboard SE', 'Marker Felt', 'Trebuchet MS', Arial, sans-serif;
    background-color: #fff8f0;
    color: #333;
    line-height: 1.6;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #a8edea 100%);
    padding: 2rem 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 3rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.2rem;
    color: #fff;
    font-style: italic;
}

/* Hero Section */
.hero {
    background-color: #ffd6e8;
    padding: 3rem 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 2.5rem;
    color: #ff6b9d;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

/* Bed Bug Gallery */
.bug-gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 2rem;
}

.floating-bug {
    width: 80px;
    height: 80px;
    object-fit: contain;
    animation: float 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.floating-bug:nth-child(1) { animation-delay: 0s; }
.floating-bug:nth-child(2) { animation-delay: 0.2s; }
.floating-bug:nth-child(3) { animation-delay: 0.4s; }
.floating-bug:nth-child(4) { animation-delay: 0.6s; }
.floating-bug:nth-child(5) { animation-delay: 0.8s; }
.floating-bug:nth-child(6) { animation-delay: 1s; }
.floating-bug:nth-child(7) { animation-delay: 1.2s; }
.floating-bug:nth-child(8) { animation-delay: 1.4s; }
.floating-bug:nth-child(9) { animation-delay: 1.6s; }
.floating-bug:nth-child(10) { animation-delay: 1.8s; }

.floating-bug:hover {
    transform: scale(1.2) rotate(5deg);
}

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

/* Products Section */
.products {
    padding: 4rem 0;
}

.products h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ff6b9d;
    margin-bottom: 3rem;
}

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

.product-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
}

.product-image {
    width: 100%;
    height: 280px;
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 15px;
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

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

.coming-soon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 107, 157, 0.95);
    color: white;
    padding: 1rem 2rem;
    border-radius: 15px;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.product-card h3 {
    font-size: 1.5rem;
    color: #ff6b9d;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.8rem;
    color: #4ecdc4;
    font-weight: bold;
    margin: 0.5rem 0;
}

.description {
    color: #666;
    font-size: 0.95rem;
}

/* Size Reference */
.size-reference {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.size-reference h3 {
    font-size: 1.8rem;
    color: #ff6b9d;
    margin-bottom: 1.5rem;
}

.size-reference img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 1rem;
}

.size-reference p {
    color: #666;
    font-size: 1rem;
}

/* Character Selection Section */
.character-selection-section {
    padding: 4rem 0;
    background-color: #fff8f0;
}

.character-selection {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.character-selection h3 {
    color: #ff6b9d;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.character-selection > p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.character-gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1rem;
}

.character-bug {
    width: 120px;
    height: 120px;
    object-fit: contain;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.character-bug:hover {
    transform: scale(1.1);
}

/* Order Form Section */
.order-form {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    padding: 4rem 0;
}

.order-form h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ff6b9d;
    margin-bottom: 1rem;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

form {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-section {
    margin-bottom: 2rem;
}

.form-section h3 {
    color: #ff6b9d;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffd6e8;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: bold;
}

.field-help {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ffd6e8;
    border-radius: 10px;
    font-family: 'Comic Sans MS', 'Comic Sans', 'Chalkboard SE', 'Marker Felt', 'Trebuchet MS', Arial, sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b9d;
}

.product-order {
    display: grid;
    gap: 1rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #fff8f0;
    border-radius: 10px;
    border: 2px solid #ffd6e8;
}

.order-item label {
    font-weight: bold;
    color: #333;
}

.order-item input[type="number"] {
    width: 80px;
    padding: 0.5rem;
    border: 2px solid #ffd6e8;
    border-radius: 8px;
    font-size: 1.1rem;
    text-align: center;
}

.hidden {
    display: none;
}

.customization-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #fff8f0;
    border-left: 4px solid #ff6b9d;
    border-radius: 8px;
}

.customization-note p {
    margin: 0.25rem 0;
    color: #666;
}

.customization-note strong {
    color: #ff6b9d;
}

.postage-note {
    background: #e8f4f8;
    border: 2px solid #4ecdc4;
    border-radius: 15px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.postage-note p {
    margin: 0;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.5;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff6b9d 0%, #4ecdc4 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-family: 'Comic Sans MS', 'Comic Sans', 'Chalkboard SE', 'Marker Felt', 'Trebuchet MS', Arial, sans-serif;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    animation: zoom 0.3s;
}

@keyframes zoom {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.lightbox-close:hover {
    color: #ff6b9d;
}

.lightbox-caption {
    color: #fff;
    text-align: center;
    padding: 1rem;
    font-size: 1.2rem;
    max-width: 80%;
}

.lightbox-trigger {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.lightbox-trigger:hover {
    opacity: 0.8;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

footer p {
    margin: 0.5rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .products h2,
    .order-form h2 {
        font-size: 2rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

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

    form {
        padding: 1.5rem;
    }

    .order-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .order-item input[type="number"] {
        width: 100%;
    }

    .bug-gallery {
        gap: 1rem;
        padding: 1rem;
    }

    .floating-bug {
        width: 60px;
        height: 60px;
    }

    .coming-soon {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }

    .character-gallery {
        gap: 1rem;
    }

    .character-bug {
        width: 80px;
        height: 80px;
    }

    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 40px;
    }

    .lightbox-content {
        max-width: 95%;
        max-height: 70%;
    }

    .lightbox-caption {
        font-size: 1rem;
        padding: 0.75rem;
    }
}
