        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Comic Sans MS', cursive, sans-serif;
            background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
            min-height: 100vh;
            padding: 20px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        header {
            text-align: center;
            margin-bottom: 40px;
            animation: bounceIn 1s;
        }

        h1 {
            font-size: 4em;
            color: #fff;
            text-shadow: 4px 4px 0 #ff6b6b, 8px 8px 0 #4ecdc4;
            transform: rotate(-2deg);
            margin-bottom: 10px;
        }

        .subtitle {
            font-size: 1.5em;
            color: #fff;
            background: #ff6b6b;
            display: inline-block;
            padding: 10px 20px;
            border-radius: 20px;
            transform: rotate(1deg);
            box-shadow: 3px 3px 10px rgba(0,0,0,0.3);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .product-card {
            background: #fff;
            border-radius: 20px;
            padding: 20px;
            box-shadow: 5px 5px 0 rgba(0,0,0,0.2);
            transform: rotate(-1deg);
            transition: all 0.3s ease;
            border: 4px solid #333;
            position: relative;
        }

        .product-card:nth-child(even) {
            transform: rotate(1deg);
        }

        .product-card:hover {
            transform: rotate(0deg) scale(1.05);
            box-shadow: 8px 8px 0 rgba(0,0,0,0.3);
        }

        .product-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(45deg, #ffeaa7, #dfe6e9);
            border-radius: 15px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4em;
            border: 3px dashed #b2bec3;
        }

        .handmade-badge {
            position: absolute;
            top: -10px;
            right: -10px;
            background: #ff6b6b;
            color: #fff;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9em;
            font-weight: bold;
            transform: rotate(15deg);
            box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
            border: 2px solid #fff;
        }

        .product-title {
            font-size: 1.5em;
            color: #2d3436;
            margin-bottom: 10px;
            text-align: center;
        }

        .product-description {
            color: #636e72;
            margin-bottom: 15px;
            text-align: center;
            line-height: 1.4;
        }

        .product-price {
            font-size: 1.8em;
            color: #4ecdc4;
            text-align: center;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .buy-button {
            width: 100%;
            padding: 15px;
            background: #ffd93d;
            border: 4px solid #333;
            border-radius: 15px;
            font-size: 1.2em;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.2s;
            font-family: 'Comic Sans MS', cursive;
            box-shadow: 3px 3px 0 rgba(0,0,0,0.2);
        }

        .buy-button:hover {
            background: #ffed4e;
            transform: translateY(-2px);
            box-shadow: 5px 5px 0 rgba(0,0,0,0.3);
        }

        .buy-button:active {
            transform: translateY(0);
            box-shadow: 2px 2px 0 rgba(0,0,0,0.2);
        }

        .stars {
            position: absolute;
            pointer-events: none;
        }

        .star {
            position: absolute;
            font-size: 1.5em;
            animation: twinkle 2s infinite;
        }

        @keyframes bounceIn {
            0% {
                transform: scale(0.5);
                opacity: 0;
            }
            60% {
                transform: scale(1.1);
                opacity: 1;
            }
            100% {
                transform: scale(1);
            }
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

        .doodle {
            position: fixed;
            pointer-events: none;
            opacity: 0.1;
            font-size: 3em;
        }

        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background: #fff;
            padding: 40px;
            border-radius: 20px;
            border: 5px solid #333;
            text-align: center;
            max-width: 400px;
            animation: bounceIn 0.5s;
        }

        .modal-content h2 {
            color: #ff6b6b;
            margin-bottom: 20px;
            font-size: 2em;
        }

        .modal-content p {
            margin-bottom: 20px;
            font-size: 1.2em;
        }

        .close-button {
            padding: 15px 30px;
            background: #4ecdc4;
            border: 4px solid #333;
            border-radius: 15px;
            font-size: 1.2em;
            font-weight: bold;
            cursor: pointer;
            font-family: 'Comic Sans MS', cursive;
        }
