﻿.customization-openedmodal {
    right: 0 !important;
    animation: none !important;
}

.trust-card:hover {
    transform: none !important;
}

.premium-fixed-bottom-bar {
    animation: none !important;
}

:root {
    --gradient-accent-light: linear-gradient(135deg, rgba(184, 129, 77, 0.15) 0%, rgba(184, 129, 77, 0.25) 100%);
}

.tab-btn:hover:not(.active) {
    background: var(--gradient-accent-light) !important;
    color: var(--primary) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease !important;
}

.tab-btn {
    transition: all 0.3s ease !important;
    cursor: pointer;
}

    .tab-btn.active {
        background: var(--gradient-accent) !important;
        color: white !important;
        border: none !important;
        transform: none;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

.customize-btn {
    color: white !important;
    border: none !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 4px 15px rgba(184, 129, 77, 0.2) !important;
}

    .customize-btn:hover {
        background: var(--gradient-accent) !important;
        box-shadow: 0 6px 20px rgba(184, 129, 77, 0.3) !important;
        color: #5D1143 !important;
    }

    .customize-btn::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .customize-btn:hover::after {
        width: 300px;
        height: 300px;
    }

.pincode-icon {
    top: 40%;
}

.modal-loader {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .modal-loader.d-none {
        display: none;
    }

.dot-loader span {
    width: 20px;
    height: 20px;
    margin: 0 6px;
    background: #5D1143;
    border-radius: 50%;
    display: inline-block;
    animation: dotPulse 1.4s infinite ease-in-out both;
}

    .dot-loader span:nth-child(1) {
        animation-delay: -0.32s;
    }

    .dot-loader span:nth-child(2) {
        animation-delay: -0.16s;
    }

@keyframes dotPulse {
    0%, 80%, 100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

@media (max-width: 992px) {
    .EzfyHeaderSearch .search-input-container {
        top: 0px;
    }
}
