.zirenza-btn{
    position: relative;
    overflow: hidden;
    padding: 15px 38px;
    border: 1px solid #D4AF37;
    border-radius: 50px;
    background: #0a0a0a;
    color: #D4AF37;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .4s ease;
    box-shadow: 0 5px 20px rgba(212,175,55,.15);
}

.zirenza-btn i{
    margin-right: 10px;
    position: relative;
    z-index: 2;
}

.zirenza-btn span{
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );
    transition: .8s;
}

.zirenza-btn:hover span{
    left: 120%;
}

.zirenza-btn:hover{
    background: linear-gradient(
        135deg,
        #FFD700,
        #D4AF37,
        #B8860B
    );
    color: #000;
    border-color: #FFD700;
    transform: translateY(-4px);
    box-shadow:
        0 10px 30px rgba(255,215,0,.35),
        0 0 40px rgba(212,175,55,.25);
}

.zirenza-btn:active{
    transform: scale(.98);
}
span.zirenza-btn::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255,255,255,.5);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    animation: ripple 0.6s linear;
    text-align: center;
}


.brand-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}
 /* Footer Styles */
        .site-footer {
            position: relative;
            background: linear-gradient(180deg, #111 0%, #050505 100%);
            border-top: 1px solid rgba(212, 175, 55, 0.18);
            overflow: hidden;
            margin-top: 60px;
            padding: 0;
            color: #fff;
        }

        .site-footer .footer-wave {
            position: absolute;
            inset: 0 0 auto;
            height: 90px;
            pointer-events: none;
        }

        .site-footer .footer-wave svg {
            width: 100%;
            height: 100%;
        }

        .site-footer .footer-container {
            position: relative;
            max-width: 1280px;
            margin: 0 auto;
            padding: 76px 32px 28px;
        }

        .site-footer .footer-grid {
            display: grid;
            grid-template-columns: 1.35fr 0.85fr 0.95fr 1.1fr 1.2fr;
            gap: 28px;
            align-items: start;
        }

        .site-footer .brand-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .site-footer .logo-mark {
            width: 42px;
            height: 42px;
            display: grid;
            place-items: center;
            border-radius: 8px;
            background: #d4af37;
            color: #000;
        }

        .site-footer .footer-brand h3 {
            color: #d4af37;
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            margin: 0;
        }

        .site-footer .brand-desc {
            color: #bdbdbd;
            line-height: 26px;
            font-size: 14px;
            margin: 0 0 16px;
            max-width: 420px;
        }

        .site-footer .brand-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .site-footer .badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: #d4af37;
            background: rgba(212, 175, 55, 0.09);
            border: 1px solid rgba(212, 175, 55, 0.22);
            border-radius: 999px;
            padding: 7px 10px;
            font-size: 12px;
            font-weight: 700;
        }

        .site-footer .footer-col h4 {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #fff;
            margin: 0 0 16px;
            font-size: 16px;
        }

        .site-footer .footer-col h4 i {
            color: #d4af37;
        }

        .site-footer .footer-links,
        .site-footer .contact-info {
            display: grid;
            gap: 11px;
        }

        .site-footer .footer-links a,
        .site-footer .contact-info a {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #bdbdbd;
            font-size: 14px;
            line-height: 22px;
            transition: 0.3s;
            width: fit-content;
            text-decoration: none;
        }

        .site-footer .footer-links a i,
        .site-footer .contact-info a i {
            width: 18px;
            color: #d4af37;
        }

        .site-footer .footer-links a:hover,
        .site-footer .contact-info a:hover {
            color: #d4af37;
            transform: translateX(4px);
        }

        .site-footer .social-section {
            margin-top: 18px;
        }

        .site-footer .social-section h5 {
            color: #fff;
            font-size: 14px;
            margin: 0 0 12px;
        }

        .site-footer .social-icons {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .site-footer .social-icon {
            width: 38px;
            height: 38px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: #fff;
            transition: 0.3s;
            text-decoration: none;
        }

        .site-footer .social-icon:hover {
            background: #d4af37;
            color: #000;
            transform: translateY(-3px);
        }

        .site-footer .newsletter-box {
            padding: 18px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 8px;
        }

        .site-footer .newsletter-text {
            color: #bdbdbd;
            font-size: 13px;
            line-height: 21px;
            margin: 0 0 14px;
        }

        .site-footer .highlight {
            color: #d4af37;
            font-weight: 800;
        }

        .site-footer .newsletter-input-group {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 10px;
            margin-bottom: 12px;
        }

        .site-footer .newsletter-input-group input {
            min-width: 0;
            height: 44px;
            padding: 0 12px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: #0d0d0d;
            color: #fff;
            outline: none;
            font-family: inherit;
        }

        .site-footer .newsletter-input-group input:focus {
            border-color: #d4af37;
        }

        /* ============================================= */
        /* LUXURY GOLD SUBSCRIBE BUTTON - PREMIUM DESIGN */
        /* FIXED: Text stays centered, no disappearance on hover */
        /* ============================================= */
        .site-footer .newsletter-input-group button.zirenza-btn {
            border: none;
            border-radius: 8px;
            padding: 0 20px;
            height: 44px;
            background: linear-gradient(135deg, #D4AF37 0%, #C5A028 25%, #E6C24A 50%, #D6B12E 75%, #C9A225 100%);
            background-size: 200% auto;
            color: #1A1508;
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 0.8px;
            cursor: pointer;
            transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            font-family: 'Inter', sans-serif;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(180, 130, 30, 0.3), inset 0 1px 0 rgba(255, 245, 180, 0.7);
            text-transform: uppercase;
            z-index: 1;
            /* FIX: Ensure text and icon are always visible */
            opacity: 1;
            visibility: visible;
        }

        /* Animated gradient shine effect */
        .site-footer .newsletter-input-group button.zirenza-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 80%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(255, 248, 190, 0.6), 
                transparent);
            transform: skewX(-20deg);
            transition: left 0.65s ease;
            pointer-events: none;
            z-index: -1;
        }

        .site-footer .newsletter-input-group button.zirenza-btn:hover::before {
            left: 150%;
        }

        /* Hover state - richer gold + lift */
        .site-footer .newsletter-input-group button.zirenza-btn:hover {
            background: linear-gradient(135deg, #E6C34A 0%, #D9B338 30%, #F0D464 60%, #E0BA3E 100%);
            background-size: 200% auto;
            transform: translateY(-2px);
            box-shadow: 0 10px 22px -5px rgba(212, 175, 55, 0.5), 0 4px 10px rgba(0, 0, 0, 0.2);
            letter-spacing: 1px;
            /* FIX: Keep text fully visible on hover */
            color: #1A1508;
        }

        /* Active press effect */
        .site-footer .newsletter-input-group button.zirenza-btn:active {
            transform: translateY(1px);
            box-shadow: 0 4px 12px rgba(180, 130, 30, 0.4);
            transition: 0.05s linear;
        }

        /* Icon animation on hover - ONLY icon moves, text stays perfectly */
        .site-footer .newsletter-input-group button.zirenza-btn:hover i {
            animation: paperPlaneFloat 0.5s ease-in-out;
        }

        @keyframes paperPlaneFloat {
            0% {
                transform: translateX(0) translateY(0);
            }
            25% {
                transform: translateX(3px) translateY(-2px);
            }
            50% {
                transform: translateX(6px) translateY(-1px);
            }
            75% {
                transform: translateX(3px) translateY(1px);
            }
            100% {
                transform: translateX(0) translateY(0);
            }
        }

        /* Focus ring for accessibility */
        .site-footer .newsletter-input-group button.zirenza-btn:focus-visible {
            outline: 3px solid #F5C842;
            outline-offset: 2px;
            border-radius: 8px;
        }

        /* Button text styling - FIX: Text never disappears */
        .site-footer .newsletter-input-group button.zirenza-btn span {
            display: inline-block;
            transition: none;
            /* No transform or opacity changes on hover */
        }

        .site-footer .newsletter-input-group button.zirenza-btn i {
            font-size: 1rem;
            transition: transform 0.2s ease;
            color: #1A1508;
            filter: drop-shadow(0 1px 1px rgba(0,0,0,0.1));
        }

        /* FIX: Ensure button contents never shift or hide */
        .site-footer .newsletter-input-group button.zirenza-btn:hover span {
            transform: none;
            opacity: 1;
        }

        .site-footer .checkbox-label {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #888;
            font-size: 12px;
            margin-bottom: 14px;
        }

        .site-footer .payment-methods p {
            color: #888;
            font-size: 12px;
            margin: 0 0 8px;
        }

        .site-footer .payment-icons {
            display: flex;
            gap: 10px;
            color: #bdbdbd;
            font-size: 22px;
        }

        .site-footer .footer-bottom {
            margin-top: 34px;
            padding-top: 22px;
            border-top: 1px solid rgba(212, 175, 55, 0.18);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 18px;
            flex-wrap: wrap;
        }

        .site-footer .footer-bottom-left {
            display: flex;
            align-items: center;
            gap: 18px;
            flex-wrap: wrap;
            color: #888;
            font-size: 13px;
        }

        .site-footer .legal-links {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .site-footer .legal-links a {
            color: #888;
            transition: 0.3s;
            text-decoration: none;
        }

        .site-footer .legal-links a:hover {
            color: #d4af37;
        }

        .site-footer .separator {
            color: #444;
        }

        .site-footer .back-to-top {
            display: flex;
            align-items: center;
            gap: 8px;
            border: 1px solid rgba(212, 175, 55, 0.28);
            border-radius: 999px;
            background: rgba(212, 175, 55, 0.1);
            color: #d4af37;
            padding: 10px 16px;
            cursor: pointer;
            transition: 0.3s;
            font-family: inherit;
        }

        .site-footer .back-to-top:hover {
            background: #d4af37;
            color: #000;
            transform: translateY(-2px);
        }

        /* Toast Notification */
        .toast-notification {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #d4af37;
            color: #000;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            z-index: 1000;
            animation: slideIn 0.3s ease;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        }

        @keyframes slideIn {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @media (max-width: 1100px) {
            .site-footer .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 720px) {
            .site-footer .footer-container {
                padding: 58px 20px 24px;
            }
            .site-footer .footer-grid {
                grid-template-columns: 1fr;
            }
            .site-footer .footer-bottom {
                align-items: flex-start;
            }
            .site-footer .newsletter-input-group {
                grid-template-columns: 1fr;
            }
            .site-footer .footer-bottom-left {
                align-items: flex-start;
                flex-direction: column;
                gap: 12px;
            }
            /* Keep button full width on mobile but maintain luxury look */
            .site-footer .newsletter-input-group button.zirenza-btn {
                width: 100%;
            }
        }
      .site-footer .brand-logo-img{
    height:120px;
    width:auto;
}