:root {
    --qr-purple: #6b46c1;
    --qr-purple-hover: #553c9a;
    --qr-light-purple: #e8e5ff;
    --qr-pink: #ec4899;
    --qr-gradient: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    --qr-gray: #374151;
    --qr-light-gray: #f9fafb;
    --qr-border: #d1d5db;
    --toogle-bg: hsl(240 4.8% 95.9%)
}

.qr-header {
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.qr-logo {
    font-weight: 600;
    color: var(--qr-gray);
}



/* Button Styles */
.btn-qr-primary {
    background: var(--qr-purple);
    border: none;
    color: white;
    border-radius: 8px;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    transition: all 0.2s ease;
}

.btn-qr-primary:hover {
    background: var(--qr-purple-hover);
    color: white;
    transform: translateY(-1px);
}

.btn-qr-outline {
    background: white;
    border: 2px solid var(--qr-border);
    color: var(--qr-gray);
    border-radius: 8px;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    transition: all 0.2s ease;
}

.btn-qr-outline:hover {
    background: var(--qr-light-purple);
    border-color: var(--qr-purple);
    color: var(--qr-purple);
}

.btn-qr-gradient {
    background: var(--qr-pink);
    border: none;
    color: white;
    border-radius: 8px;
    font-weight: 500;
    padding: 0.75rem 2rem;
    transition: all 0.2s ease;
}

.btn-qr-signup {
    background: var(--qr-purple);
    border: none;
    color: white;
    border-radius: 8px;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    transition: all 0.2s ease;
}

.btn-qr-signup:hover {
    color: white
}

.btn-qr-gradient-card {
    background: var(--qr-purple);
    border: none;
    color: white;
    border-radius: 8px;
    font-weight: 500;

    transition: all 0.2s ease;
    width: 100%;
}

.btn-qr-gradient:hover {
    background: linear-gradient(135deg, #db2777 0%, #7c3aed 100%);
    color: white;
    transform: translateY(-1px);
}

.my-account-btn {
    background-color: var(--qr-pink);
    border: none;
    color: white;
    border-radius: 8px;
    font-weight: 500;
    padding: 0.55rem 1.5rem;
    transition: all 0.2s ease;
}

.btn-qr-dark {
    background: var(--qr-gray);
    border: none;
    color: white;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
    width: 100%;
}

.btn-qr-dark:hover {
    background: #1f2937;
    color: white;
    transform: translateY(-1px);
}

/* Input Styles */
.qr-input {
    width: 100%;
    height: 2rem;
    border: 1px solid var(--toogle-bg);
    outline: none;
}

.qr-input:focus {
    background-color: white;
    border-color: var(--qr-purple);
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.1);
    outline: none;
}

.qr-input-group {
    width: 7rem;
    display: flex;
    /* max-width: 140px; */
}

.qr-input-btn {
    width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--toogle-bg);
    outline: none;
    padding: 10px;
    background-color: var(--toogle-bg);

}

.qr-input-btn:hover {
    background-color: #ddd6fe;
    border-color: var(--qr-purple);
}

.qr-input-btn:first-child {
    border-radius: 8px 0 0 8px;
}

.qr-input-btn:last-child {
    border-radius: 0 8px 8px 0;
}

/* Card Styles */
.qr-card {
    border: 2px solid #f3f4f6;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.qr-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.qr-card-featured {
    border-color: var(--qr-purple);
    box-shadow: 0 4px 6px rgba(107, 70, 193, 0.1);
}

.qr-badge {
    background: var(--qr-purple);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    position: absolute;
    top: -1.1rem;
    right: 20px;
}

/* Toggle Styles */
.qr-toggle {
    display: flex;
    background: var(--toogle-bg);
    border-radius: 8px;
    padding: 5px;
    overflow: hidden;
    width: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.qr-toggle-btn {
    background: white;
    border: none;
    color: var(--qr-gray);
    padding: 0.4rem 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 50%;
    border-radius: 0;
    outline: none;
    opacity: 0.8;
    background-color: var(--toogle-bg);
;
}

.qr-toggle-btn.active {
    background: white;
    outline: none;
    border: none;
    color: black;
    opacity: 1;
    box-shadow: none !important;
}

.qr-toggle-btn:first-child {
    border-radius: 8px 0 0 8px;

}

.qr-toggle-btn:last-child {
    border-radius: 0 8px 8px 0;

}


/* Accordion */
.qr-accordion .card {
    border: 2px solid #f3f4f6;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.qr-accordion .card-header {
    background: white;
    border: none;
    padding: 0;
    outline: none;
}

.qr-accordion .btn-link {
    color: var(--qr-gray);
    text-decoration: none;
    font-weight: 500;
    padding: 1.5rem;
    width: 100%;
    text-align: left;
}

.qr-accordion .btn-link {
    box-shadow: none !important;
}



.qr-icon-circle {
    width: 32px;
    height: 32px;
    background: var(--qr-light-purple);
    color: var(--qr-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

/* Utility Classes */
.text-qr-primary {
    color: var(--qr-purple) !important;
}

.bg-qr-light {
    background-color: var(--qr-light-gray) !important;
}

.font-weight-medium {
    font-weight: 500;
}

/* Brand Logos */
.qr-brand-logo {
    height: 40px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    margin: 0 1rem 1rem 1rem;
    cursor: pointer;
}

.qr-brand-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

.qr-feature-header {
    position: sticky;
    top: 8.5%;
    z-index: 999;
    background-color: transparent;
    padding: 0rem 1rem;
    background-color: var(--qr-light-gray);
}

/* Responsive */
@media (max-width: 768px) {
    .qr-brand-logo {
        height: 30px;
        margin: 0.5rem;
    }

    .qr-toggle {
        width: 100%;
    }

    .qr-toggle-btn {
        padding: 0rem 0.9rem;
    }
}

.list-unstyled li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.switch-card-wrapper {
    background: linear-gradient(to bottom right, #8B5CF6, #DB2777, #4F46E5);
    border-radius: 15px;
    margin: auto;
    padding: 0;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.switch-card {
    background: white;
    border: 2px solid #e8e5ff;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 5px solid transparent;
    border-radius: 15px;
    padding: 8px;
}




.switch-card-wrapper:hover {
    border-color: var(--qr-purple);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.15);
}

.feature-box {
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid;
}

.feature-box:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 12px;
    transition: transform 0.3s ease;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1);
}

@keyframes pulse {
    50% {
        opacity: 0.5;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(-25%);
    }

    50% {
        transform: none;
    }
}

.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.bounce {
    animation: bounce 1s infinite;
}

.text-gradient {
    background: linear-gradient(135deg, var(--qr-purple) 0%, var(--qr-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.qrsrtuff-features {
    font-size: 12px;
    font-weight: bold;
}

.full-pricing-btn {
    background-image: linear-gradient(to right, #DB2777, #8B5CF6);
    padding: 0.5rem 1rem;
    width: 100%;
}

.ping-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) scale(1);
    border: 2px solid #8b5cf6;
    border-radius: 0.5rem;
    opacity: 1;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
    pointer-events: none;
}

@keyframes ping {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    75% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.price-detail-section {
    transition-property: all;
    transition-duration: 300ms;
    transition-timing-function: ease-in-out;
}

.price-detail-section:hover {
    background-image: linear-gradient(to right, #E9D5FF, #FBCFE8);
}

.subtitle-contain {
    min-height: 155px;
}

/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.popover-btn {
    padding: .25rem 1rem;
    font-size: .875rem;
}