   :root { 
        --p-pink: #e670a2;
        --glass: rgba(255, 255, 255, 0.45);
    }

    @keyframes fadeInDown {
        from { opacity: 0; transform: translateY(-20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
    }

    @keyframes shimmer {
        0% { background-position: -200% 0; }
        100% { background-position: 200% 0; }
    }

    body, html { 
        height: 100%;
        margin: 0; 
        font-family: 'Montserrat', sans-serif;
        background-color: #fde9ea;
    }

    .bg-flex { 
        min-height: 100vh;
        display: flex; 
        flex-direction: column;
        align-items: center; 
        justify-content: center;
        padding: 40px 15px;
    }

    .social-links { 
        display: flex; 
        gap: 20px; 
        justify-content: center; 
        margin-bottom: 10px; 
    }
    .social-links a { 
        color: var(--p-pink); 
        font-size: 1.4rem; 
        transition: transform 0.3s, color 0.3s; 
        text-decoration: none;
    }
    .social-links a:hover { 
        color: #d1568a; 
        transform: translateY(-3px); 
    }
	
	

 #cookie-banner {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 600px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(0,0,0,0.1);
        border-radius: 20px;
        padding: 20px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        z-index: 1040;        
        display: none;
        animation: fadeInUp 0.5s ease-out;
    }
    .cookie-btns { display: flex; gap: 10px; margin-top: 15px; }
    .btn-cookie { flex: 1; padding: 10px; border-radius: 10px; border: none; font-weight: 600; font-size: 0.8rem; }
    .btn-accept { background: var(--p-pink); color: white; }
    .btn-reject { background: #eee; color: #666; }
	
	
    @media (min-width: 768px) {
        .bg-flex {
            background: url('/images/primiamori.jpg') no-repeat center center;
            background-size: cover;
            background-attachment: fixed;
        }
        .hero-logo, .mobile-jewelry { display: none; }
    }

    @media (max-width: 767px) {
        .bg-flex {
            background-image: none !important;
            justify-content: flex-start !important;
            padding-top: 20px;
        }
        
        #hero-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            width: 100%;
            height: 100%;
            min-height: 80vh;
            justify-content: space-between;
            animation: fadeInDown 1s ease-out;
        }

        .hero-logo { 
            display: block !important; 
            max-width: 130px; 
            margin-bottom: 10px;
        }

        .mobile-jewelry {
            display: block !important;
            max-width: 90%;
            height: auto;
            margin: 10px 0;
           
        }

        .btn-send-hero {
            padding: 10px 30px !important; 
            font-size: 0.9rem;
            background: linear-gradient(90deg, var(--p-pink) 0%, #f093b0 50%, var(--p-pink) 100%);
            background-size: 200% 100%;
            animation: shimmer 3s infinite linear;
            color: white !important;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255,255,255,0.4);
            border-radius: 50px !important;
            width: auto !important;
            margin-bottom: 30px;
            box-shadow: 0 4px 15px rgba(230, 112, 162, 0.4);
        }

        .glass-card { 
            padding: 25px 15px 20px 15px; 
            max-width: 95%; 
            margin-top: 10px;
        }
        
        .g-recaptcha { transform: scale(0.75); transform-origin: center; }
        footer { position: relative; margin-top: 20px; }
    }

    .glass-card { 
        position: relative;
        background: var(--glass);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-radius: 25px;
        padding: 35px; 
        width: 100%; 
        max-width: 500px;
        border: 1px solid rgba(255,255,255,0.5); 
        box-shadow: 0 15px 35px rgba(0,0,0,0.07);
        animation: fadeInUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .close-btn {
        position: absolute;
        top: 12px;
        right: 18px;
        font-size: 26px;
        font-weight: bold;
        color: var(--p-pink);
        cursor: pointer;
        line-height: 1;
        transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        z-index: 100;
    }
    .close-btn:hover {
        transform: scale(1.3) rotate(90deg);
        color: #d1568a;
    }

    .form-control { 
        border-radius: 12px;
        border: 1px solid rgba(0,0,0,0.08); 
        padding: 12px 15px; 
        background: rgba(255,255,255,0.85); 
        transition: 0.3s;
    }

    .form-control:focus {
        box-shadow: 0 0 0 3px rgba(230, 112, 162, 0.2);
        border-color: var(--p-pink);
    }

    .btn-send { 
        background: var(--p-pink);
        color: #fff; 
        border: none; 
        padding: 14px; 
        border-radius: 12px; 
        font-weight: 600; 
        width: 100%; 
        transition: 0.3s;
        box-shadow: 0 4px 10px rgba(230, 112, 162, 0.3);
    }

    .btn-send:hover {
        background: #d1568a;
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(230, 112, 162, 0.4);
    }

    .mobile-logo-form { 
        max-width: 130px; 
        margin: 0 auto 1rem auto; 
        display: block; 
    }

    footer { 
        width: 100%;
        padding: 20px 15px; 
        background: rgba(255,255,255,0.8); 
        text-align: center; 
        font-size: 0.75rem;
    }

    .privacy-link { color: var(--p-pink); cursor: pointer; text-decoration: underline; font-weight: 600; }