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

        .product-card {
            cursor: pointer;
        }
        
        a.author-badge {
            text-decoration: none;
            color: #667eea;
            transition: all 0.3s ease;
        }
        
        a.author-badge:hover {
            background: rgba(255, 255, 255, 1);
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(0,0,0,0.4);
        }
        
        .phone-number {
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .phone-number:hover {
            transform: scale(1.05);
        }

        /* Fulgi de zăpadă animați */
        .snowflake {
            position: fixed;
            color: white;
            font-size: 1.5em;
            opacity: 0.7;
            animation: fall 10s linear infinite;
            z-index: 1;
        }

        @keyframes fall {
            0% { transform: translateY(-100px) rotate(0deg); }
            100% { transform: translateY(100vh) rotate(360deg); }
        }

        /* Header */
        .header {
            text-align: center;
            margin-bottom: 50px;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .header h1 {
            font-size: 3em;
            margin-bottom: 10px;
            font-weight: 300;
            letter-spacing: 2px;
        }

        .header p {
            font-size: 1.2em;
            font-style: italic;
            opacity: 0.95;
        }

        .subtitle {
            text-align: center;
            color: white;
            font-size: 1.3em;
            margin: 40px 0;
            font-style: italic;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        .product-card {
            background: white;
            border-radius: 20px;
            overflow: visible;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 50px rgba(0,0,0,0.3);
        }

        .product-image {
            width: 100%;
            height: 500px;
            background: linear-gradient(135deg, #e0f7fa 0%, #b3e5fc 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            border-radius: 20px;
            overflow: hidden;
        }

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

        .product-image::before {
            content: '❄️';
            position: absolute;
            font-size: 10em;
            opacity: 0.1;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 0;
        }

        /* Decorațiune de iarnă */
        .winter-decoration {
            position: absolute;
            top: 15px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 2.5em;
            opacity: 0.4;
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
            z-index: 10;
        }

        /* Număr produs */
        .product-number {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(255, 255, 255, 0.95);
            color: #667eea;
            padding: 10px 18px;
            border-radius: 25px;
            font-weight: bold;
            font-size: 1.2em;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            z-index: 10;
        }

        /* Autor */
        .author-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255, 255, 255, 0.95);
            color: #667eea;
            padding: 10px 18px;
            border-radius: 25px;
            font-weight: 700;
            font-size: 1.2em;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            z-index: 10;
            max-width: 200px;
            text-align: center;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        /* QR Code */
        .qr-container {
            position: absolute;
            bottom: 15px;
            left: 15px;
            display: flex;
            flex-direction: column;
            align-items: center;
            z-index: 10;
        }

        .qr-code {
            width: 80px;
            height: 80px;
            background: white;
            border: 3px solid rgba(255, 255, 255, 0.95);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            margin-bottom: 8px;
            overflow: hidden;
        }

        .qr-code img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .phone-number {
            background: rgba(255, 255, 255, 0.95);
            color: #333;
            padding: 6px 12px;
            border-radius: 15px;
            font-size: 0.9em;
            font-weight: 600;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
        }

        /* Glob de Crăciun - ornament preț */
        .price-ornament {
            position: absolute;
            bottom: 15px;
            right: 15px;
            width: 90px;
            height: 90px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            box-shadow: 
                0 12px 30px rgba(0, 0, 0, 0.4),
                0 6px 12px rgba(0, 0, 0, 0.3),
                inset -8px -8px 15px rgba(0, 0, 0, 0.3),
                inset 5px 5px 15px rgba(255, 255, 255, 0.2);
            z-index: 10;
        }

        .price-ornament:hover {
            transition-duration: 0.5s;
            bottom: 30px;
            right: 30px;
            transform: scale(1.1);
            box-shadow: 
                0 16px 40px rgba(0, 0, 0, 0.5),
                0 8px 16px rgba(0, 0, 0, 0.4),
                inset -8px -8px 15px rgba(0, 0, 0, 0.4),
                inset 5px 5px 15px rgba(255, 255, 255, 0.3);
            transitioon: transform 0.9s ease-in-out, box-shadow 0.9s ease-in-out;
        }

        /* Reflecție principală pe glob */
        .price-ornament::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 15px;
            width: 28px;
            height: 28px;
            background: radial-gradient(circle, 
                rgba(255, 255, 255, 0.9) 0%, 
                rgba(255, 255, 255, 0.4) 40%,
                transparent 70%);
            border-radius: 50%;
            filter: blur(2px);
            z-index: 1;
        }

        /* Reflecție secundară */
        .price-ornament::after {
            content: '';
            position: absolute;
            bottom: 15px;
            right: 18px;
            width: 16px;
            height: 16px;
            background: radial-gradient(circle, 
                rgba(255, 255, 255, 0.4) 0%, 
                transparent 70%);
            border-radius: 50%;
            filter: blur(3px);
            z-index: 1;
        }

        /* Capac metalic */
        .ornament-cap {
            position: absolute;
            top: -6px;
            left: 50%;
            transform: translateX(-50%);
            width: 18px;
            height: 9px;
            background: linear-gradient(180deg, 
                #f4d03f 0%, 
                #d4af37 50%,
                #b8941e 100%);
            border-radius: 50% 50% 0 0 / 60% 60% 0 0;
            box-shadow: 
                0 2px 4px rgba(0, 0, 0, 0.4),
                inset 0 1px 2px rgba(255, 255, 255, 0.6),
                inset 0 -1px 2px rgba(0, 0, 0, 0.3);
            z-index: 2;
        }

        /* Agățătoare */
        .ornament-loop {
            position: absolute;
            top: -13px;
            left: 50%;
            transform: translateX(-50%);
            width: 10px;
            height: 10px;
            border: 2px solid #d4af37;
            border-radius: 50%;
            background: transparent;
            box-shadow: 
                0 2px 3px rgba(0, 0, 0, 0.3),
                inset 0 1px 1px rgba(255, 255, 255, 0.5);
            z-index: 3;
        }

        .price-number {
            font-size: 2.2em;
            font-weight: 900;
            color: white;
            line-height: 1;
            margin-bottom: 2px;
            text-shadow: 
                0 2px 4px rgba(0, 0, 0, 0.7),
                0 1px 2px rgba(0, 0, 0, 0.9),
                1px 1px 0 rgba(0, 0, 0, 0.6);
            z-index: 2;
            position: relative;
        }

        .price-currency {
            font-size: 1.2em;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1;
            letter-spacing: 1.5px;
            text-shadow: 
                0 1px 3px rgba(0, 0, 0, 0.7),
                0 1px 1px rgba(0, 0, 0, 0.9);
            z-index: 2;
            position: relative;
        }

        /* Culori ornamente */
        .ornament-red {
            background: radial-gradient(circle at 25% 25%, 
                #ff7979 0%, 
                #e74c3c 30%, 
                #c0392b 70%,
                #a93226 100%);
        }

        .ornament-blue {
            background: radial-gradient(circle at 25% 25%, 
                #74b9ff 0%, 
                #0984e3 30%, 
                #0652dd 70%,
                #05438a 100%);
        }

        .ornament-green {
            background: radial-gradient(circle at 25% 25%, 
                #81ecec 0%, 
                #00b894 30%, 
                #00875f 70%,
                #006644 100%);
        }

        .ornament-gold {
            background: radial-gradient(circle at 25% 25%, 
                #ffeaa7 0%, 
                #fdcb6e 30%, 
                #e17055 70%,
                #d63031 100%);
        }

        .ornament-purple {
            background: radial-gradient(circle at 25% 25%, 
                #a29bfe 0%, 
                #6c5ce7 30%, 
                #5843be 70%,
                #4834a8 100%);
        }

        .ornament-pink {
            background: radial-gradient(circle at 25% 25%, 
                #fd79a8 0%, 
                #e84393 30%, 
                #d6336c 70%,
                #b82e5a 100%);
        }

        .ornament-silver {
            background: radial-gradient(circle at 25% 25%, 
                #dfe6e9 0%, 
                #b2bec3 30%, 
                #636e72 70%,
                #2d3436 100%);
        }

        /* Footer */
        .footer {
            text-align: center;
            color: white;
            font-size: 1.3em;
            margin-top: 60px;
            font-style: italic;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            position: relative;
            z-index: 2;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .container {
                grid-template-columns: 1fr;
            }
            
            .header h1 {
                font-size: 2em;
            }

            .product-image {
                height: 400px;
            }

            .author-badge {
                font-size: 1em;
                max-width: 150px;
            }
        }