:root {
    --vlr-gold: #d4af37;
    --vlr-dark-gold: #b8860b;
    --vlr-royal-blue: #002366;
    --vlr-white: #ffffff;
    --vlr-soft-gray: #f8f9fa;
    --vlr-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.vlr-rewards-table-container {
    padding: 30px;
    background: var(--vlr-white);
    border-radius: 20px;
    box-shadow: var(--vlr-shadow);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.vlr-rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.vlr-reward-card {
    background: linear-gradient(135deg, #ffffff 0%, #fffdf5 100%);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #eee;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.vlr-reward-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
    border-color: var(--vlr-gold);
}

.vlr-reward-icon {
    font-size: 45px;
    margin-bottom: 20px;
}

.vlr-reward-icon img {
    max-width: 60px;
    height: auto;
}

.vlr-reward-info h3 {
    color: var(--vlr-royal-blue);
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.vlr-reward-info p {
    color: var(--vlr-dark-gold);
    font-size: 18px;
    font-weight: 800;
    margin: 0;
}

/* Premium Dashboard */
.vlr-dashboard {
    background: var(--vlr-soft-gray);
    padding: 40px;
    border-radius: 25px;
}

.vlr-dashboard-header {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 35px;
}

.vlr-points-card {
    background: var(--vlr-royal-blue);
    background-image: linear-gradient(135deg, #002366 0%, #001a4d 100%);
    color: white;
    padding: 25px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 35, 102, 0.2);
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Premium Modals */
.vlr-dashboard .vlr-modal {
    display: none;
    position: fixed;
    z-index: 9999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: vlrFadeIn 0.3s ease;
    align-items: center;
    justify-content: center;
}

.vlr-dashboard .vlr-modal-content {
    background: #fff;
    margin: auto;
    padding: 0;
    border-radius: 28px;
    width: 90%;
    max-width: 480px;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.6);
    color: #333;
    position: relative;
    overflow: hidden;
    animation: vlrModalPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vlr-dashboard #vlr-redemption-modal .vlr-modal-content {
    background: linear-gradient(135deg, #002366 0%, #001a4d 100%);
    color: #fff;
}

@keyframes vlrFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes vlrModalPop { 
    from { transform: scale(0.85) translateY(50px); opacity: 0; } 
    to { transform: scale(1) translateY(0); opacity: 1; } 
}

.vlr-dashboard .vlr-modal-header {
    padding: 40px 40px 10px;
    text-align: center;
}

.vlr-dashboard .vlr-modal-header h2 {
    margin: 0;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
    color: inherit;
}

.vlr-dashboard .vlr-close-modal {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 30px;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: 0.2s;
    line-height: 1;
}

.vlr-dashboard #vlr-redemption-modal .vlr-close-modal {
    color: rgba(255, 255, 255, 0.5);
}

.vlr-dashboard .vlr-close-modal:hover {
    color: #000;
}

.vlr-dashboard #vlr-redemption-modal .vlr-close-modal:hover {
    color: #fff;
}

.vlr-dashboard .vlr-modal-body {
    padding: 20px 45px 50px;
    text-align: center;
}

.vlr-dashboard .vlr-success-icon {
    font-size: 72px;
    margin-bottom: 25px;
    display: block;
}

.vlr-dashboard .vlr-modal-body p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 35px;
    opacity: 0.9;
    color: inherit;
}

.vlr-dashboard .vlr-coupon-container {
    background: rgba(255, 255, 255, 0.08);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.vlr-dashboard .vlr-coupon-code {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
}

.vlr-dashboard .vlr-copy-modal-btn {
    background: #d4af37;
    color: #002366;
    border: none;
    padding: 12px 24px;
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
}

.vlr-dashboard .vlr-copy-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.vlr-dashboard .vlr-modal-done-btn,
.vlr-dashboard .vlr-action-btn {
    width: 100%;
    padding: 16px;
    border-radius: 18px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.vlr-dashboard .vlr-modal-done-btn {
    background: white;
    color: #002366;
}

.vlr-dashboard .vlr-modal-actions {
    display: flex;
    gap: 15px;
}

.vlr-dashboard .vlr-btn-confirm {
    background: #002366;
    color: #fff;
}

.vlr-dashboard .vlr-btn-cancel {
    background: #f5f5f5;
    color: #666;
}

.vlr-dashboard .vlr-btn-confirm:hover { background: #001a4d; transform: scale(1.02); }
.vlr-dashboard .vlr-btn-cancel:hover { background: #eee; }

.vlr-dashboard .vlr-meta-info {
    font-size: 13px !important;
    opacity: 0.6 !important;
    margin-bottom: 25px !important;
    display: block;
}

.vlr-card-bg {
    position: absolute;
    right: -10px;
    bottom: -10px;
    width: 120px;
    opacity: 0.15;
    pointer-events: none;
}

.vlr-points-card h3 {
    color: var(--vlr-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    margin-bottom: 12px;
    font-weight: 600;
}

.vlr-points-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--vlr-white);
    margin-bottom: 5px;
}

.vlr-level-display {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    justify-content: space-between;
}

.vlr-level-display img {
    filter: invert(1);
}

.vlr-level-display .current-level-text {
    font-size: 30px;
    font-weight: 700;
}

.vlr-dashboard-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 40px 0 30px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 2px;
}

.vlr-tab-btn {
    font-size: 15px;
    padding: 12px 25px;
    color: #888;
    background: transparent;
    border: none;
    border-bottom: 3px solid #002379;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
    white-space: nowrap;
}

.vlr-tab-btn:hover {
    color: var(--vlr-royal-blue);
}

.vlr-tab-btn.active {
    color: var(--vlr-royal-blue);
    border-bottom-color: var(--vlr-gold);
}

@media (max-width: 768px) {
    .vlr-dashboard-tabs {
        border-bottom: none;
        gap: 5px;
    }

    .vlr-tab-btn {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #eee;
        border-radius: 8px;
        padding: 15px;
    }

    .vlr-tab-btn.active {
        background: rgba(212, 175, 55, 0.05);
        border-bottom-color: var(--vlr-gold);
    }
}

.vlr-tab-content {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.vlr-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Referral Link Redesign */
.vlr-referral-link-section {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
}

.vlr-referral-link-section h3 {
    font-size: 18px;
    color: var(--vlr-royal-blue);
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: normal;
}

.vlr-referral-link {
    display: flex;
    align-items: center;
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 6px;
    max-width: 600px;
    transition: all 0.3s;
}

.vlr-referral-link:focus-within {
    border-color: var(--vlr-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.vlr-referral-link input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 18px;
    font-size: 14px;
    color: #555;
    font-family: inherit;
    outline: none;
}

.vlr-referral-link button {
    background: var(--vlr-royal-blue);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.vlr-referral-link button:hover {
    background: #001a4d;
    transform: translateY(-1px);
}

.vlr-summary-header {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.vlr-summary-stat {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid #eee;
}

.vlr-summary-stat .vlr-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.vlr-summary-stat .vlr-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--vlr-royal-blue);
}

.vlr-redeem-section {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--vlr-shadow);
    text-align: center;
}

.vlr-redeem-form {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.vlr-redeem-form input {
    padding: 12px 20px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 16px;
    width: 250px;
    transition: border-color 0.3s;
}

.vlr-redeem-form input:focus {
    border-color: var(--vlr-gold);
    outline: none;
}

.vlr-manual-convert-btn {
    background: var(--vlr-gold);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.vlr-manual-convert-btn:hover {
    background: var(--vlr-dark-gold);
}

#vlr-manual-convert-message {
    margin-top: 15px;
    font-weight: 600;
}

/* Checkout Discount Toggle Styles */
.vlr-checkout-discount-wrapper {
    transition: all 0.3s ease;
}

.vlr-checkout-discount-wrapper:hover {
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
}

#vlr-use-discount-checkbox {
    width: 20px;
    height: 20px;
    accent-color: var(--vlr-gold);
}

/* Checkout Redemption UI */
.vlr-checkout-redemption-container {
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    overflow: hidden;
}

.vlr-redemption-toggle {
    padding: 12px 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: #333;
    background: #fcfcfc;
    border-bottom: 1px solid #eee;
}

.vlr-redemption-toggle:hover {
    background: #f9f9f9;
}

.vlr-redemption-content {
    padding: 20px 15px;
}

.vlr-redemption-input-group {
    display: flex;
    gap: 10px;
}

.vlr-redemption-input-group input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    height: 45px;
    font-size: 16px;
}

.vlr-apply-btn {
    background: #111;
    color: #fff;
    border: none;
    padding: 0 25px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    height: 45px;
    transition: background 0.3s;
}

.vlr-apply-btn:hover {
    background: #333;
}

#vlr-checkout-discount-msg {
    margin-top: 10px;
    font-size: 14px;
}

#vlr-checkout-discount-msg.error {
    color: #d9534f;
}

#vlr-checkout-discount-msg.success {
    color: #5cb85c;
}

/* Transformations Gallery */
.vlr-transformations-container.vlr-dark-theme {
    background: #121212;
    color: #fff;
    padding: 80px 40px;
    border-radius: 40px;
    margin: 50px auto;
    max-width: 1200px;
    text-align: center;
}

.vlr-transformations-header h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.vlr-transformations-header p {
    color: #888;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 60px;
}

.vlr-transformations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.vlr-transformation-card {
    background: #1e1e1e;
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid #2a2a2a;
    transition: transform 0.3s ease;
    text-align: left;
}

.vlr-transformation-card:hover {
    transform: translateY(-10px);
}

.vlr-transformation-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 250px;
    position: relative;
}

.vlr-transformation-images::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: rgba(212, 175, 55, 0.3);
    z-index: 2;
}

.vlr-img-wrapper {
    position: relative;
    overflow: hidden;
}

.vlr-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.vlr-img-label {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 3;
}

.vlr-transformation-info {
    padding: 25px;
}

.vlr-user-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

/* Premium Modals */
.vlr-dashboard .vlr-modal {
    display: none;
    position: fixed;
    z-index: 9999999; /* Force above everything */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: vlrFadeIn 0.3s ease;
}

.vlr-dashboard .vlr-modal-content {
    background: #fff;
    margin: 5% auto;
    padding: 0;
    border-radius: 28px;
    width: 90%;
    max-width: 480px;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.6);
    color: #333;
    position: relative;
    overflow: hidden;
    animation: vlrModalPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Success Modal Background */
.vlr-dashboard #vlr-redemption-modal .vlr-modal-content {
    background: linear-gradient(135deg, #002366 0%, #001a4d 100%);
    color: #fff;
}

@keyframes vlrFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes vlrModalPop { 
    from { transform: scale(0.85) translateY(50px); opacity: 0; } 
    to { transform: scale(1) translateY(0); opacity: 1; } 
}

.vlr-dashboard .vlr-modal-header {
    padding: 40px 40px 10px;
    text-align: center;
}

.vlr-dashboard .vlr-modal-header h2 {
    margin: 0;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
}

.vlr-dashboard #vlr-redemption-modal .vlr-modal-header h2 {
    color: #fff;
}

.vlr-dashboard .vlr-close-modal {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 30px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: 0.2s;
}

.vlr-dashboard #vlr-confirm-modal .vlr-close-modal {
    color: #888;
}

.vlr-dashboard .vlr-modal-body {
    padding: 20px 45px 50px;
    text-align: center;
}

.vlr-dashboard .vlr-success-icon {
    font-size: 72px;
    margin-bottom: 25px;
    display: block;
}

.vlr-dashboard .vlr-modal-body p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 35px;
    opacity: 0.9;
}

/* Coupon Box */
.vlr-dashboard .vlr-coupon-container {
    background: rgba(255, 255, 255, 0.08);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.vlr-dashboard .vlr-coupon-code {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
}

.vlr-dashboard .vlr-copy-modal-btn {
    background: #d4af37;
    color: #002366;
    border: none;
    padding: 12px 24px;
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
}

.vlr-dashboard .vlr-copy-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Modal Buttons */
.vlr-dashboard .vlr-modal-done-btn,
.vlr-dashboard .vlr-action-btn {
    width: 100%;
    padding: 16px;
    border-radius: 18px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.vlr-dashboard .vlr-modal-done-btn {
    background: white;
    color: #002366;
}

.vlr-dashboard .vlr-modal-actions {
    display: flex;
    gap: 15px;
}

.vlr-dashboard .vlr-btn-confirm {
    background: #002366;
    color: #fff;
}

.vlr-dashboard .vlr-btn-cancel {
    background: #f5f5f5;
    color: #666;
}

.vlr-dashboard .vlr-btn-confirm:hover { background: #001a4d; transform: scale(1.02); }
.vlr-dashboard .vlr-btn-cancel:hover { background: #eee; }

/* Confirm Modal Body Text */
.vlr-dashboard #vlr-confirm-modal .vlr-modal-body p {
    color: #555;
    margin-bottom: 40px;
}

.vlr-dashboard .vlr-meta-info {
    font-size: 13px !important;
    opacity: 0.6 !important;
    margin-bottom: 25px !important;
}
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.vlr-user-name {
    font-size: 18px;
    font-weight: 600;
    color: #eee;
}

.vlr-time-ago {
    font-size: 12px;
    color: #666;
}

.vlr-rating {
    margin-bottom: 15px;
    color: #d4af37;
    font-size: 14px;
}

.vlr-star {
    margin-right: 2px;
    opacity: 0.3;
}

.vlr-star-filled {
    opacity: 1;
}

.vlr-comment {
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

/* Refined Transformations Gallery */
.vlr-refined-card {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.015);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.vlr-refined-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.025);
    border-color: rgba(212, 175, 55, 0.2);
}

.vlr-card-images {
    display: flex;
    height: 144px;
    /* h-36 */
}

.vlr-refined-img-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.vlr-refined-before {
    background: linear-gradient(to bottom right, rgba(255, 255, 240, 0.05), rgba(255, 255, 240, 0.02));
}

.vlr-refined-after {
    background: linear-gradient(to bottom right, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.02));
}

.vlr-divider {
    width: 1px;
    background: rgba(212, 175, 55, 0.2);
}

.vlr-refined-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.7;
}

.vlr-refined-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: sans-serif;
    z-index: 2;
    pointer-events: none;
}

.vlr-refined-before .vlr-refined-label {
    color: rgba(255, 255, 240, 0.2);
}

.vlr-refined-after .vlr-refined-label {
    color: rgba(212, 175, 55, 0.4);
}

.vlr-card-content {
    padding: 16px;
}

.vlr-content-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.vlr-refined-name {
    font-size: 12px;
    color: rgba(255, 255, 240, 0.7);
    font-family: sans-serif;
    margin: 0;
}

.vlr-refined-stars {
    display: flex;
    gap: 2px;
}

.vlr-star-icon {
    width: 12px;
    height: 12px;
}

.vlr-refined-meta {
    font-size: 10px;
    color: rgba(255, 255, 240, 0.3);
    font-family: sans-serif;
    margin: 0 0 8px 0;
}

.vlr-refined-comment {
    font-size: 13px;
    color: rgba(255, 255, 240, 0.5);
    line-height: 1.5;
    margin: 0;
}

/* Transformations Gallery Footer */
.vlr-transformation-footer {
    display: flex;
    justify-content: center;
}

.vlr-share-cta {
    display: flex;
    align-items: center;
    gap: 15px;
    background: transparent;
    border: 1px solid #d4af37;
    color: #d4af37;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.vlr-share-cta:hover {
    background: #d4af37;
    color: #121212;
}

.vlr-reward-badge {
    background: rgba(212, 175, 55, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
}

/* Dark Theme Leaderboard */
.vlr-leaderboard-container.vlr-dark-theme {
    background: #121212;
    color: #e0e0e0;
    padding: 60px 20px;
    border-radius: 30px;
    max-width: 800px;
    margin: 40px auto;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.vlr-leaderboard-header {
    text-align: center;
    margin-bottom: 40px;
}

.vlr-leaderboard-header h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.vlr-leaderboard-header p {
    color: #888;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.vlr-leaderboard-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vlr-leaderboard-item {
    background: #1e1e1e;
    border: 1px solid #2a2a2a;
    border-radius: 50px;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.vlr-leaderboard-item:hover {
    background: #252525;
    transform: scale(1.01);
    border-color: #444;
}

.vlr-leaderboard-item.vlr-current-user {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
}

.vlr-rank {
    width: 40px;
    font-size: 16px;
    font-weight: 700;
    color: #888;
}

.vlr-leaderboard-item:first-child .vlr-rank {
    color: #d4af37;
}

.vlr-user-avatar {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-weight: 700;
    font-size: 14px;
    color: #aaa;
}

.vlr-user-name {
    flex-grow: 1;
    font-size: 16px;
    font-weight: 500;
    color: #eee;
}

.vlr-you-label {
    color: #d4af37;
    font-size: 12px;
    margin-left: 5px;
    opacity: 0.7;
}

.vlr-user-points {
    display: flex;
    align-items: center;
    gap: 15px;
}

.vlr-level-icon {
    display: flex;
    align-items: center;
    filter: invert(1);
}

.vlr-level-icon img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.vlr-points-text {
    font-size: 18px;
    font-weight: 700;
    color: #ddd;
    min-width: 80px;
    text-align: right;
}

@media (max-width: 600px) {
    .vlr-referral-link {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
        gap: 10px;
    }

    .vlr-referral-link input {
        background: #fdfdfd;
        border: 1px solid #eee;
        border-radius: 12px;
        width: 100%;
    }

    .vlr-referral-link button {
        width: 100%;
    }
}

/* Summary Tab */
.vlr-summary-header {
    display: flex;
    gap: 30px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.vlr-summary-stat {
    display: flex;
    flex-direction: column;
}

.vlr-summary-stat .vlr-label {
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.vlr-summary-stat .vlr-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--vlr-royal-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Referral Link */
.vlr-referral-link-section {
    background: white;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.vlr-referral-link-section h3 {
    font-size: 18px;
    color: var(--vlr-royal-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.vlr-referral-link {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 5px;
    max-width: 600px;
}

.vlr-referral-link input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 15px;
    font-size: 15px;
    color: #555;
    outline: none;
}

.vlr-referral-link button {
    background: var(--vlr-royal-blue);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.vlr-referral-link button:hover {
    background: #001a4d;
    transform: scale(1.02);
}

/* Summary & History Table */
.vlr-history-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
    margin-top: 20px;
}

.vlr-history-table th {
    padding: 15px;
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #eee;
    font-weight: 600;
}

.vlr-history-table td {
    padding: 15px;
    background: white;
    font-size: 15px;
}

.vlr-history-table tr td:first-child {
    border-radius: 10px 0 0 10px;
}

.vlr-history-table tr td:last-child {
    border-radius: 0 10px 10px 0;
}

.vlr-points-col {
    font-weight: 700;
    font-size: 18px;
}

.vlr-action-label {
    font-weight: 600;
    color: var(--vlr-royal-blue);
    font-size: 16px;
}

.vlr-action-desc {
    font-size: 13px;
    color: #666;
    margin-top: 2px;
}

/* Pagination */
.vlr-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    padding: 20px;
}

.vlr-pag-btn {
    padding: 10px 25px;
    border-radius: 30px;
    border: 1px solid var(--vlr-royal-blue);
    background: white;
    color: var(--vlr-royal-blue);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.vlr-pag-btn:hover:not(:disabled) {
    background: var(--vlr-royal-blue);
    color: white;
}

.vlr-pag-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: #ccc;
    color: #999;
}

.vlr-page-info {
    font-weight: 600;
    color: #555;
}

/* Redemption */
.vlr-redemption-notice {
    background: #fffdf0 !important;
    border-left: 5px solid var(--vlr-gold) !important;
    padding: 20px !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vlr-redeem-btn {
    background: linear-gradient(to right, var(--vlr-gold), var(--vlr-dark-gold)) !important;
    color: white !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 10px 25px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3) !important;
}

.woocommerce-cart main .woocommerce {
    max-width: 100%;
    display: flex;
    justify-content: space-between;
}

.woocommerce-cart .woocommerce .woocommerce-cart-form {
    width: 58%;
}

.woocommerce-cart .woocommerce .cart-collaterals {
    width: 38%;
}

.woocommerce-cart .woocommerce .cart-collaterals .cart_totals {
    width: 100%;
}

/* Premium Form & Section Headers */
.vlr-section-header {
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.vlr-section-header h3 {
    color: var(--vlr-royal-blue);
    font-size: 22px;
    margin-bottom: 5px;
    font-weight: 700;
}

.vlr-section-header p {
    color: #888;
    font-size: 14px;
    margin: 0;
}

.vlr-premium-form {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    border: 1px solid #eee;
}

.vlr-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.vlr-form-group {
    margin-bottom: 20px;
}

.vlr-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #444;
    font-size: 14px;
}

.vlr-form-group input[type="text"],
.vlr-form-group input[type="email"],
.vlr-form-group textarea,
.vlr-form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.2s;
}

.vlr-form-group input:focus,
.vlr-form-group textarea:focus,
.vlr-form-group select:focus {
    border-color: var(--vlr-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    outline: none;
}

.vlr-file-input {
    position: relative;
    height: 48px;
}

.vlr-file-input input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.vlr-file-label {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    border: 1px dashed #ccc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #666;
    transition: all 0.2s;
}

.vlr-file-input:hover .vlr-file-label {
    border-color: var(--vlr-gold);
    background: #fffdf5;
}

.vlr-submit-btn {
    background: var(--vlr-royal-blue);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 35, 102, 0.2);
}

.vlr-submit-btn:hover {
    background: #001a4d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 35, 102, 0.3);
}

/* Status Badges */
.vlr-status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
}

.vlr-status-pending {
    background: #fff4e5;
    color: #ff9800;
}

.vlr-status-approved {
    background: #e8f5e9;
    color: #4caf50;
}

.vlr-status-rejected {
    background: #ffebee;
    color: #f44336;
}

@media (max-width: 768px) {
    .vlr-form-grid {
        grid-template-columns: 1fr;
    }

    .vlr-dashboard {
        padding: 20px;
    }
}

/* New Tiered Rewards Redemption Styles */
.vlr-redeem-header {
    margin-bottom: 30px;
    text-align: left;
}

.vlr-redeem-header h3 {
    margin-bottom: 8px;
    color: var(--vlr-royal-blue);
    font-size: 24px;
}

.vlr-rewards-redemption-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.vlr-redemption-card {
    background: #001a4d;
    background-image: linear-gradient(145deg, #002366 0%, #001433 100%);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.vlr-redemption-card:hover:not(.vlr-locked) {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--vlr-gold);
}

.vlr-redemption-card.vlr-locked {
    opacity: 0.8;
    filter: grayscale(0.5);
}

.vlr-reward-cost {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 8px 15px;
    border-radius: 50px;
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.vlr-reward-cost .points-val {
    font-size: 24px;
    font-weight: 800;
    color: var(--vlr-gold);
}

.vlr-reward-cost .points-label {
    font-size: 12px;
    color: var(--vlr-gold);
    font-weight: 600;
}

.vlr-reward-main h4 {
    color: white;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.vlr-reward-main p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.4;
    min-height: 40px;
}

.vlr-redeem-btn {
    width: 100%;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vlr-redeem-btn.active {
    background: var(--vlr-gold);
    color: white;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.vlr-redeem-btn.active:hover {
    background: var(--vlr-dark-gold);
    transform: scale(1.02);
}

.vlr-redeem-btn.locked {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.3);
    cursor: not_allowed;
}

.vlr-lock-icon {
    margin-right: 5px;
}

/* Active Coupons List */
.vlr-active-coupons-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #eee;
    text-align: left;
}

.vlr-active-coupons-section h4 {
    font-size: 18px;
    color: var(--vlr-royal-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.vlr-coupon-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vlr-coupon-item {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px dashed #d4af37;
    padding: 15px 25px;
    border-radius: 12px;
    gap: 20px;
    transition: all 0.2s;
}

.vlr-coupon-item:hover {
    background: rgba(212, 175, 55, 0.02);
}

.vlr-coupon-code {
    font-family: monospace;
    font-size: 18px;
    font-weight: 800;
    color: var(--vlr-royal-blue);
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 6px;
    letter-spacing: 1px;
    min-width: 160px;
    text-align: center;
}

.vlr-coupon-info {
    flex: 1;
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.vlr-copy-coupon-btn {
    background: var(--vlr-royal-blue);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.vlr-copy-coupon-btn:hover {
    background: #001a4d;
}

@media (max-width: 768px) {
    .vlr-coupon-item {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 10px;
    }
    
    .vlr-coupon-code {
        width: 100%;
    }
}\ 
 / *   R e d e m p t i o n   M o d a l   * / 
 . v l r - m o d a l   { 
         d i s p l a y :   n o n e ; 
         p o s i t i o n :   f i x e d ; 
         z - i n d e x :   9 9 9 9 9 1 ; 
         l e f t :   0 ; 
         t o p :   0 ; 
         w i d t h :   1 0 0 % ; 
         h e i g h t :   1 0 0 % ; 
         o v e r f l o w :   a u t o ; 
         b a c k g r o u n d - c o l o r :   r g b a ( 0 , 0 , 0 , 0 . 6 ) ; 
         b a c k d r o p - f i l t e r :   b l u r ( 8 p x ) ; 
         - w e b k i t - b a c k d r o p - f i l t e r :   b l u r ( 8 p x ) ; 
         a n i m a t i o n :   v l r F a d e I n   0 . 3 s   e a s e - o u t ; 
 } 
 
 @ k e y f r a m e s   v l r F a d e I n   { 
         f r o m   {   o p a c i t y :   0 ;   } 
         t o   {   o p a c i t y :   1 ;   } 
 } 
 
 . v l r - m o d a l - c o n t e n t   { 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 1 a 2 a 6 c   0 % ,   # b 2 1 f 1 f   5 0 % ,   # f d b b 2 d   1 0 0 % ) ; 
         m a r g i n :   1 0 %   a u t o ; 
         p a d d i n g :   0 ; 
         b o r d e r - r a d i u s :   2 4 p x ; 
         w i d t h :   9 0 % ; 
         m a x - w i d t h :   5 0 0 p x ; 
         b o x - s h a d o w :   0   2 5 p x   5 0 p x   - 1 2 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 5 ) ; 
         c o l o r :   w h i t e ; 
         p o s i t i o n :   r e l a t i v e ; 
         o v e r f l o w :   h i d d e n ; 
         a n i m a t i o n :   v l r S l i d e U p   0 . 4 s   c u b i c - b e z i e r ( 0 . 1 7 5 ,   0 . 8 8 5 ,   0 . 3 2 ,   1 . 2 7 5 ) ; 
 } 
 
 @ k e y f r a m e s   v l r S l i d e U p   { 
         f r o m   {   t r a n s f o r m :   t r a n s l a t e Y ( 5 0 p x ) ;   o p a c i t y :   0 ;   } 
         t o   {   t r a n s f o r m :   t r a n s l a t e Y ( 0 ) ;   o p a c i t y :   1 ;   } 
 } 
 
 . v l r - m o d a l - h e a d e r   { 
         p a d d i n g :   3 0 p x   3 0 p x   1 0 p x ; 
         t e x t - a l i g n :   c e n t e r ; 
 } 
 
 . v l r - m o d a l - h e a d e r   h 2   { 
         m a r g i n :   0 ; 
         f o n t - s i z e :   2 8 p x ; 
         f o n t - w e i g h t :   8 0 0 ; 
         l e t t e r - s p a c i n g :   - 0 . 5 p x ; 
         c o l o r :   w h i t e ; 
 } 
 
 . v l r - c l o s e - m o d a l   { 
         c o l o r :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 7 ) ; 
         f l o a t :   r i g h t ; 
         f o n t - s i z e :   3 2 p x ; 
         f o n t - w e i g h t :   b o l d ; 
         c u r s o r :   p o i n t e r ; 
         p o s i t i o n :   a b s o l u t e ; 
         r i g h t :   2 5 p x ; 
         t o p :   2 0 p x ; 
         t r a n s i t i o n :   c o l o r   0 . 2 s ; 
 } 
 
 . v l r - c l o s e - m o d a l : h o v e r   { 
         c o l o r :   w h i t e ; 
 } 
 
 . v l r - m o d a l - b o d y   { 
         p a d d i n g :   1 0 p x   4 0 p x   4 0 p x ; 
         t e x t - a l i g n :   c e n t e r ; 
 } 
 
 . v l r - s u c c e s s - i c o n   { 
         f o n t - s i z e :   6 4 p x ; 
         m a r g i n - b o t t o m :   2 0 p x ; 
         f i l t e r :   d r o p - s h a d o w ( 0   0   1 0 p x   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 3 ) ) ; 
 } 
 
 . v l r - m o d a l - b o d y   p   { 
         f o n t - s i z e :   1 6 p x ; 
         o p a c i t y :   0 . 9 ; 
         m a r g i n - b o t t o m :   3 0 p x ; 
 } 
 
 . v l r - c o u p o n - c o n t a i n e r   { 
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 1 ) ; 
         b o r d e r :   2 p x   d a s h e d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 4 ) ; 
         b o r d e r - r a d i u s :   1 6 p x ; 
         p a d d i n g :   2 0 p x ; 
         d i s p l a y :   f l e x ; 
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
         a l i g n - i t e m s :   c e n t e r ; 
         m a r g i n - b o t t o m :   2 5 p x ; 
 } 
 
 . v l r - c o u p o n - c o d e   { 
         f o n t - f a m i l y :   ' C o u r i e r   N e w ' ,   C o u r i e r ,   m o n o s p a c e ; 
         f o n t - s i z e :   2 4 p x ; 
         f o n t - w e i g h t :   8 0 0 ; 
         l e t t e r - s p a c i n g :   2 p x ; 
 } 
 
 . v l r - c o p y - m o d a l - b t n   { 
         b a c k g r o u n d :   w h i t e ; 
         c o l o r :   # b 2 1 f 1 f ; 
         b o r d e r :   n o n e ; 
         p a d d i n g :   1 0 p x   2 0 p x ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         f o n t - w e i g h t :   7 0 0 ; 
         c u r s o r :   p o i n t e r ; 
         t r a n s i t i o n :   a l l   0 . 2 s ; 
 } 
 
 . v l r - c o p y - m o d a l - b t n : h o v e r   { 
         t r a n s f o r m :   s c a l e ( 1 . 0 5 ) ; 
         b o x - s h a d o w :   0   5 p x   1 5 p x   r g b a ( 0 , 0 , 0 , 0 . 2 ) ; 
 } 
 
 . v l r - m e t a - i n f o   { 
         f o n t - s i z e :   1 2 p x   ! i m p o r t a n t ; 
         o p a c i t y :   0 . 7   ! i m p o r t a n t ; 
         m a r g i n - b o t t o m :   2 5 p x   ! i m p o r t a n t ; 
 } 
 
 . v l r - m o d a l - d o n e - b t n   { 
         w i d t h :   1 0 0 % ; 
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 2 ) ; 
         b o r d e r :   2 p x   s o l i d   w h i t e ; 
         c o l o r :   w h i t e ; 
         p a d d i n g :   1 5 p x ; 
         b o r d e r - r a d i u s :   1 6 p x ; 
         f o n t - s i z e :   1 8 p x ; 
         f o n t - w e i g h t :   7 0 0 ; 
         c u r s o r :   p o i n t e r ; 
         t r a n s i t i o n :   a l l   0 . 2 s ; 
 } 
 
 . v l r - m o d a l - d o n e - b t n : h o v e r   { 
         b a c k g r o u n d :   w h i t e ; 
         c o l o r :   # 1 a 2 a 6 c ; 
 } 
 \  
 