/* ===================================
   Hulk Elementor Widgets CSS
   =================================== */

/* Notification Bar Styles */
.hulk-notification-bar {
    position: relative;
    text-align: center;
    padding: 0.5625rem 1rem;
    color: #FFF;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 11;
}

.hulk-notification-bar .notification-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Countdown Styles */
.klb-countdown-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

@media screen and (min-width: 992px) {
    .hulk-notification-bar .klb-countdown-wrapper {
        margin-right: 0.625rem;
        margin-top: 0;
    }
}

.klb-countdown-wrapper .klb-countdown {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.klb-countdown-wrapper .klb-countdown .count-item {
    padding: 0.25rem;
    margin-right: 0.25rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.klb-countdown-wrapper .klb-countdown .count-item .count {
    width: 1.1875rem;
    font-size: 14px;
    font-weight: bold;
}

.klb-countdown-wrapper .klb-countdown .count-item .count-label {
    font-size: 85%;
    font-weight: 400;
    opacity: 0.5;
}

/* Currency Switcher Styles */
.hulk-currency-switcher {
    position: relative;
    display: inline-block;
    font-family: 'Cairo', Arial, sans-serif;
    direction: rtl;
    z-index: 999;
}

.currency-trigger {
    color: white;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 70px;
    box-shadow: 0 4px 12px rgba(229, 62, 62, 0.3);
    transition: all 0.3s ease;
    border: none;
    font-weight: 600;
    outline: none;
    user-select: none;
}

.currency-trigger:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(229, 62, 62, 0.4);
}

.current-currency {
    font-size: 14px;
    font-weight: bold;
}

.current-symbol {
    background: rgba(255, 255, 255, 0.25);
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 13px;
}

.arrow {
    margin-left: auto;
    transition: transform 0.3s ease;
    font-size: 12px;
}

.currency-trigger.active .arrow {
    transform: rotate(180deg);
}

.currency-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
    overflow: hidden;
    margin-top: 5px;
    min-width: 140px;
}

.currency-dropdown.show {
    display: block !important;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.currency-option {
    padding: 12px 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f7fafc;
    transition: all 0.2s ease;
    font-size: 14px;
}

.currency-option:hover {
    background: #f7fafc;
    color: #e53e3e;
}

.currency-option.active {
    font-weight: 600;
}

.currency-option:last-child {
    border-bottom: none;
}

.currency-name {
    flex: 1;
    text-align: right;
    font-size: 13px;
}

.currency-symbol {
    font-weight: bold;
    color: #e53e3e;
    min-width: 30px;
    text-align: left;
}

.currency-option.active .currency-symbol {
    color: white;
}

/* Mobile Currency Circle */
.hulk-mobile-currency {
    display: none;
    position: relative;
    z-index: 999;
}

@media (max-width: 768px) {
    .hulk-currency-switcher {
        display: none !important;
    }
    
    .hulk-mobile-currency {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .mobile-currency-circle {
        width: 44px;
        height: 44px;
        background: linear-gradient(135deg, #FFEB3B 0%, #885512 100%);
        border: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(229, 62, 62, 0.3);
    }

    .mobile-currency-circle:hover {
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 6px 20px rgba(229, 62, 62, 0.4);
    }

    .currency-symbol-circle {
        color: white;
        font-size: 14px;
        font-weight: 800;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }
}
/* ========================================
   Login Modal Styles - Hulk Design
======================================== */

/* Login Trigger Icon */
.desktop-otp-trigger-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFEB3B 0%, #885512 100%);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border: none;
    padding: 0;
}

.desktop-otp-trigger-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.desktop-otp-trigger-icon svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
    transition: all 0.3s ease;
}

/* Modal Overlay */
.desktop-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.desktop-modal-overlay.active {
    display: flex !important;
    opacity: 1;
    visibility: visible;
}



@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Close Button */
.desktop-modal-close {
    position: relative;
    top: 4.2vw;
    right: 15px;
    background: #e6e8eb;
    border: none;
    font-size: 24px;
    color: #1b1f22;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    padding: 5px 18px;
    width: auto;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 6px;
    font-weight: 600;
}

.desktop-modal-close:hover {
    color: #1f2937;
    background: #d1d5db;
}

/* Body Lock */
body.desktop-modal-open {
    overflow: hidden;
}

/* ========================================
   Multi OTP Form Styles
======================================== */

.multi-otp-container {
    max-width: 500px;
	width:500px;
    margin: 0 auto;
    font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    direction: rtl;
    position: relative;
}

.multi-otp-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.multi-otp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFEB3B, #885512);
}

/* Header */
.multi-otp-header {
    text-align: center;
    margin-bottom: 32px;
}

.multi-logo {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FFEB3B, #885512);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 8px 24px rgba(255, 235, 59, 0.3);
    transition: transform 0.3s ease;
}

.multi-logo:hover {
    transform: scale(1.05);
}

.multi-logo.success {
    background: linear-gradient(135deg, #FFEB3B, #885512);
    box-shadow: 0 8px 24px rgba(255, 235, 59, 0.3);
}

.multi-otp-header h2 {
    margin: 0 0 8px;
    color: #1f2937;
    font-size: 26px;
    font-weight: 700;
}

.multi-otp-header p {
    color: #6b7280;
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

/* Tabs */
.multi-tabs {
    display: flex;
    background: #f8fafc;
    border-radius: 14px;
    padding: 6px;
    margin-bottom: 28px;
    border: 1px solid #e2e8f0;
    gap: 4px;
}

.multi-tab-btn {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: transparent;
    border-radius: 10px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #6b7280;
    font-family: 'Cairo', sans-serif;
}

.multi-tab-btn.active {
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    color: #FFEB3B;
    transform: translateY(-2px);
}

.multi-tab-btn:hover:not(.active) {
    color: #374151;
    background: rgba(255,255,255,0.5);
}

/* Tab Content */
.multi-tab-content {
    display: none;
}

.multi-tab-content.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Groups */
.multi-form-group {
    margin-bottom: 24px;
}

.multi-form-group label {
    display: block;
    margin-bottom: 10px;
    color: #374151;
    font-weight: 600;
    font-size: 15px;
}

/* Phone Input */
.multi-phone-input {
    display: flex;
    border: 1px solid #ced4da;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.multi-phone-input:focus-within {
    border-color: #FFEB3B;
    box-shadow: 0 0 0 4px rgba(255, 235, 59, 0.1);
    transform: translateY(-1px);
}

.multi-country-code-select {
    flex: 0 0 45%;
    padding: 16px 12px;
    border: none;
    border-left: 1px solid #e5e7eb;
    color: #374151;
    font-weight: 500;
    font-size: 14px;
    outline: none;
    cursor: pointer;
    background: white;
    font-family: 'Cairo', sans-serif;
}

.multi-input {
    flex: 1;
    padding: 16px 18px;
    border: none;
    outline: none;
    font-size: 16px;
    background: transparent;
    font-family: 'Cairo', sans-serif;
}

/* Email & OTP Input */
.multi-email-input,
.multi-otp-input {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
    background: white;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

.multi-email-input:focus,
.multi-otp-input:focus {
    border-color: #FFEB3B;
    box-shadow: 0 0 0 4px rgba(255, 235, 59, 0.1);
    transform: translateY(-1px);
}

.multi-otp-input {
    text-align: center;
    font-size: 32px;
    letter-spacing: 10px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    padding: 20px;
}

/* Form Hints */
.multi-form-hint {
    font-size: 13px;
    color: #6b7280;
    margin-top: 8px;
    display: block;
    line-height: 1.4;
}

.multi-form-hint a {
    color: #FFEB3B;
    text-decoration: none;
}

.multi-form-hint a:hover {
    text-decoration: underline;
}

/* Buttons */
.multi-btn {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
    position: relative;
    overflow: hidden;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cairo', sans-serif;
}

.multi-btn-primary {
    background: linear-gradient(135deg, #FFEB3B, #885512);
    color: #1b1f22;
    box-shadow: 0 6px 20px rgba(255, 235, 59, 0.3);
}

.multi-btn-primary:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 235, 59, 0.4);
}

.multi-btn-secondary {
    background: #e6e8eb;
    color: #1b1f22;
    border: 2px solid transparent;
}

.multi-btn-secondary:hover:not(:disabled) {
    background: #f1f5f9;
    border-color: #FFEB3B;
    transform: translateY(-1px);
}

.multi-btn-outline {
    background: #e6e8eb;
    color: #1b1f22;
    border: 2px solid transparent;
}

.multi-btn-outline:hover:not(:disabled) {
    background: #f9fafb;
    color: #374151;
    border-color: #9ca3af;
}

.multi-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Stages */
.multi-stage {
    display: none;
}

.multi-stage.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

/* Loading */
.multi-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.multi-loading.active {
    display: flex;
}

.multi-loading-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.multi-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f4f6;
    border-top: 5px solid #FFEB3B;
    border-radius: 50%;
    animation: multi-spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes multi-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Messages */
.multi-message {
    padding: 14px 18px;
    border-radius: 10px;
    margin: 18px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.multi-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.multi-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.multi-info {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #93c5fd;
}

/* Footer Links */
.multi-footer-links {
    text-align: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.multi-footer-links small {
    color: #6b7280;
    font-size: 12px;
    line-height: 1.5;
}

.multi-footer-links a {
    color: #FFEB3B;
    text-decoration: none;
}

.multi-footer-links a:hover {
    text-decoration: underline;
}

/* ========================================
   Responsive Styles
======================================== */

@media (max-width: 768px) {
    .desktop-otp-trigger-icon {
        width: 44px;
        height: 44px;
    }
    
    .desktop-otp-trigger-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .desktop-modal-overlay {
        padding: 10px;
    }
    
    .desktop-modal-content {
        padding: 15px;
        max-height: calc(100vh - 20px);
    }
    
    .desktop-modal-close {
        top: 10px;
        left: 10px;
        padding: 4px 12px;
        height: 36px;
        font-size: 20px;
    }
    
    .multi-otp-container {
        margin: 0;
    }
    
    .multi-otp-card {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .multi-otp-header h2 {
        font-size: 22px;
    }
    
    .multi-otp-header p {
        font-size: 14px;
    }
    
    .multi-logo {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .multi-tabs {
        flex-direction: column;
        gap: 2px;
    }
    
    .multi-tab-btn {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .multi-phone-input {
        flex-direction: column;
    }
    
    .multi-country-code-select {
        flex: none;
        border-left: none;
        border-bottom: 1px solid #e5e7eb;
        border-radius: 0;
        padding: 14px 16px;
    }
    
    .multi-input {
        padding: 14px 16px;
    }
    
    .multi-email-input {
        padding: 14px 16px;
        font-size: 16px;
    }
    
    .multi-otp-input {
        font-size: 28px;
        letter-spacing: 6px;
        padding: 16px;
    }
    
    .multi-btn {
        padding: 16px;
        font-size: 16px;
        min-height: 52px;
    }
    
    .multi-form-group label {
        font-size: 14px;
    }
    
    .multi-form-hint {
        font-size: 12px;
    }
    
    .multi-loading-content {
        padding: 30px 20px;
        margin: 20px;
    }
}

@media (max-width: 480px) {
    .desktop-otp-trigger-icon {
        width: 40px;
        height: 40px;
    }
    
    .desktop-otp-trigger-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .multi-otp-container {
        margin: 0;
    }
    
    .multi-otp-card {
        padding: 20px 15px;
    }
    
    .multi-otp-header {
        margin-bottom: 24px;
    }
    
    .multi-logo {
        width: 55px;
        height: 55px;
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .multi-tab-btn {
        padding: 12px 14px;
        font-size: 13px;
    }
    
    .multi-otp-input {
        font-size: 24px;
        letter-spacing: 4px;
    }
    
    .multi-btn {
        padding: 14px;
        font-size: 15px;
        min-height: 48px;
    }
    
    .multi-footer-links small {
        font-size: 11px;
    }
}

/* Landscape on Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .desktop-modal-content {
        max-height: calc(100vh - 10px);
    }
    
    .multi-otp-card {
        padding: 15px;
    }
    
    .multi-otp-header {
        margin-bottom: 15px;
    }
    
    .multi-logo {
        width: 45px;
        height: 45px;
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .multi-otp-header h2 {
        font-size: 18px;
        margin-bottom: 5px;
    }
    
    .multi-otp-header p {
        font-size: 13px;
    }
    
    .multi-form-group {
        margin-bottom: 15px;
    }
    
    .multi-btn {
        margin-top: 10px;
        padding: 12px;
        min-height: 44px;
    }
    
    .multi-footer-links {
        margin-top: 15px;
        padding-top: 15px;
    }
}

.multi-logo {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
    transition: transform 0.3s ease;
}

.multi-logo:hover {
    transform: scale(1.05);
}

.multi-logo.success {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.multi-otp-header h2 {
    margin: 0 0 8px;
    color: #1f2937;
    font-size: 26px;
    font-weight: 700;
}

.multi-otp-header p {
    color: #6b7280;
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

.multi-tabs {
    display: flex;
    background: #f8fafc;
    border-radius: 14px;
    padding: 6px;
    margin-bottom: 28px;
    border: 1px solid #e2e8f0;
    gap: 4px;
}

.multi-tab-btn {
    flex: 1;
    min-width: 120px;
    padding: 12px 16px;
    border: none;
    background: transparent;
    border-radius: 10px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #6b7280;
}

.multi-tab-btn.active {
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    color: #6366f1;
    transform: translateY(-2px);
}

.multi-tab-btn:hover:not(.active) {
    color: #374151;
    background: rgba(255,255,255,0.5);
}

.multi-tab-content {
    display: none;
}

.multi-tab-content.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.multi-form-group {
    margin-bottom: 24px;
}

.multi-form-group label {
    display: block;
    margin-bottom: 10px;
    color: #374151;
    font-weight: 600;
    font-size: 15px;
}

.multi-phone-input {
    display: flex;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.multi-phone-input:focus-within {
    border-color: #6366f1;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    transform: translateY(-1px);
}

.multi-country-code-select {
    flex: 0 0 45%;
    padding: 16px 12px;
    border: none;
    border-right: 1px solid #e5e7eb;
    color: #374151;
    font-weight: 500;
    font-size: 14px;
    outline: none;
    cursor: pointer;
}

.multi-input {
    flex: 1;
    padding: 16px 18px;
    border: none;
    outline: none;
    font-size: 16px;
    background: transparent;
}

.multi-email-input, 
.multi-otp-input {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
    background: white;
    box-sizing: border-box;
}

.multi-email-input:focus, 
.multi-otp-input:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    transform: translateY(-1px);
}

.multi-otp-input {
    text-align: center;
    font-size: 32px;
    letter-spacing: 10px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    padding: 20px;
}

.multi-form-hint {
    font-size: 13px;
    color: #6b7280;
    margin-top: 8px;
    display: block;
    line-height: 1.4;
}

.multi-form-hint a {
    color: #6366f1;
    text-decoration: none;
}

.multi-form-hint a:hover {
    text-decoration: underline;
}

.multi-btn {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
    position: relative;
    overflow: hidden;
    min-height: 56px;
}

.multi-btn-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}

.multi-btn-primary:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.multi-btn-secondary {
    background: #f8fafc;
    color: #6366f1;
    border: 2px solid #e2e8f0;
}

.multi-btn-secondary:hover:not(:disabled) {
    background: #f1f5f9;
    border-color: #6366f1;
    transform: translateY(-1px);
}

.multi-btn-outline {
    background: transparent;
    color: #6b7280;
    border: 2px solid #d1d5db;
}

.multi-btn-outline:hover:not(:disabled) {
    background: #f9fafb;
    color: #374151;
    border-color: #9ca3af;
}

.multi-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.multi-stage {
    display: none;
}

.multi-stage.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.multi-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.multi-loading.active {
    display: flex;
}

.multi-loading-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.multi-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f4f6;
    border-top: 5px solid #6366f1;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.multi-message {
    padding: 14px 18px;
    border-radius: 10px;
    margin: 18px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.multi-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.multi-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.multi-info {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #93c5fd;
}

.multi-footer-links {
    text-align: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.multi-footer-links small {
    color: #6b7280;
    font-size: 12px;
    line-height: 1.5;
}

.multi-footer-links a {
    color: #6366f1;
    text-decoration: none;
}

.multi-footer-links a:hover {
    text-decoration: underline;
}
/* ========================================
   Cart Widget Styles - Exact Design Match
======================================== */

/* Cart Button */
.hulk-cart-widget {
    position: relative;
}

.hulk-cart-widget .elementor-button {
    display: inline-flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    min-height: 44px;
        width: 50px;
    height: 50px;
    color:#ffffff;
    padding: 10px 20px;
    border-radius: 22px;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
}

.hulk-cart-widget .elementor-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.hulk-cart-widget .elementor-button-text {
    margin-left: 10px;
    white-space: nowrap;
}

.hulk-cart-widget .elementor-button-icon {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hulk-cart-widget .elementor-button-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.hulk-cart-widget .elementor-button-icon-qty {
    position: absolute;
    top: -8px;
    left: -8px;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    padding: 0 4px;
    border-radius: 50%;
    border: 2px solid;
    z-index: 1;
}

/* ========================================
   Side Cart Panel - Exact Match
======================================== */

/* Overlay */
.elementor-menu-cart__container.elementor-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 9998;
    display: none;
    transition: background-color 0.4s ease;
    overflow: hidden;
}

.elementor-menu-cart__container.elementor-lightbox[aria-hidden="false"] {
    display: block;
    background: rgba(0, 0, 0, 0.7);
}

/* Side Panel */
.elementor-menu-cart__main {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 350px;
    max-width: 100%;
    min-height: 200px;
    background: #ffffff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 20px 30px;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    line-height: 21px;
    color: #1b1f22;
    transform: translateX(350px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 9999;
    overflow: visible;
}

.elementor-menu-cart__container[aria-hidden="false"] .elementor-menu-cart__main {
    transform: translateX(0);
    opacity: 1;
}

/* Close Button */
.elementor-menu-cart__close-button {
    align-self: flex-end;
    font-family: eicons;
    font-size: 20px;
    line-height: 20px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    color: #1b1f22;
    width: 25px;
    height: 23px;
}

.elementor-menu-cart__close-button:before {
    content: "\e921";
}

.elementor-menu-cart__close-button:hover {
    color: #ff0000;
    transform: rotate(90deg);
}

/* Cart Content */
.widget_shopping_cart_content {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: visible;
}

/* Empty Message */
.woocommerce-mini-cart__empty-message {
    text-align: center;
    padding: 40px 20px;
    color: #6b7280;
    font-size: 14px;
}

/* Products List */
.elementor-menu-cart__products {
    max-height: 394px;
    overflow-y: auto;
    overflow-x: hidden;
    margin-bottom: 20px;
}

/* Custom Scrollbar */
.elementor-menu-cart__products::-webkit-scrollbar {
    width: 6px;
}

.elementor-menu-cart__products::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.elementor-menu-cart__products::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 10px;
}

.elementor-menu-cart__products::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

/* Product Item */
.elementor-menu-cart__product {
    display: grid;
    grid-template-columns: 72.7969px 187.203px;
    grid-template-rows: 45.8906px 26.9062px;
    gap: 0 10px;
    padding: 0 0 20px 30px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
}

.elementor-menu-cart__product:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

/* Product Image */
.elementor-menu-cart__product-image {
    grid-row: 1 / 3;
    width: 72.7969px;
    height: 72.7969px;
}

.elementor-menu-cart__product-image img {
    width: 72.7969px;
    height: 72.7969px;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

/* Product Name */
.elementor-menu-cart__product-name {
    grid-column: 2 / 3;
    padding-right: 20px;
    font-size: 14px;
    line-height: 21px;
}

.elementor-menu-cart__product-name a {
    color: #8d6d03;
    text-decoration: none;
    transition: color 0.3s ease;
}

.elementor-menu-cart__product-name a:hover {
    color: #FFEB3B;
}

/* Product Price */
.elementor-menu-cart__product-price {
    grid-column: 2 / 3;
    align-self: end;
    padding-right: 20px;
    font-size: 14px;
    font-weight: 300;
    color: #d5d8dc;
}

.elementor-menu-cart__product-price .quantity {
    display: inline-flex;
    align-items: center;
    padding: 0 32px;
    height: 23px;
    background: transparent;
    border: 1px solid #dfe2e6;
    border-radius: 6px;
    box-shadow: rgba(27, 31, 34, 0.043) 0px 1px 2px 0px;
    font-size: 14px;
    font-weight: 300;
    line-height: 21px;
}

.elementor-menu-cart__product-price .product-quantity {
    display: block;
}

.elementor-menu-cart__product-price .woocommerce-Price-amount {
    font-weight: 300;
    color: #d5d8dc;
}

/* Remove Button */
.elementor-menu-cart__product-remove {
    position: absolute;
    top: 0;
    right: 0;
    width: 22px;
    height: 22px;
    border: 1px solid #d5d8dc;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    text-align: center;
    color: #69727d;
}

.elementor-menu-cart__product-remove:hover {
    border-color: #ff0000;
    background: #fee2e2;
}

.elementor-menu-cart__product-remove a {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #69727d;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.elementor-menu-cart__product-remove:hover a {
    color: #ff0000;
}

.elementor-menu-cart__product-remove a:before {
    content: "×";
}

.elementor-menu-cart__product-remove .elementor_remove_from_cart_button {
    z-index: 2;
    opacity: 0;
}

.elementor-menu-cart__product-remove .remove_from_cart_button {
    z-index: 1;
    opacity: 0;
}

/* Subtotal */
.elementor-menu-cart__subtotal {
    padding: 20px 0;
    border-top: 1px solid #d5d8dc;
    border-bottom: 1px solid #d5d8dc;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    color: #1b1f22;
    margin: 0;
}

.elementor-menu-cart__subtotal strong {
    font-weight: 900;
    margin-left: 10px;
}

/* Footer Buttons */
.elementor-menu-cart__footer-buttons {
    display: grid;
    grid-template-columns: 140px 140px;
    grid-template-rows: 46px;
    gap: 10px;
    padding-top: 20px;
    margin: 0;
}

.elementor-menu-cart__footer-buttons .elementor-button {
    width: 140px;
    height: 46px;
    padding: 15px;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    border-radius: 0;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    border: none;
    font-family: 'Cairo', sans-serif;
}

.elementor-button--view-cart {
    background: #69727d;
    color: #ffffff;
}

.elementor-button--view-cart:hover {
    background: #5a6370;
    color: #ffffff;
}

.elementor-button--checkout {
    background: #69727d;
    color: #ffffff;
}

.elementor-button--checkout:hover {
    background: #5a6370;
    color: #ffffff;
}

/* ========================================
   Responsive
======================================== */

@media (max-width: 768px) {
    .elementor-menu-cart__main {
        width: 100%;
        max-width: 350px;
        padding: 15px 20px;
    }
    
    .elementor-menu-cart__product {
        grid-template-columns: 60px 1fr;
        padding: 0 0 15px 25px;
    }
    
    .elementor-menu-cart__product-image,
    .elementor-menu-cart__product-image img {
        width: 60px;
        height: 60px;
    }
    
    .elementor-menu-cart__subtotal {
        font-size: 18px;
    }
    
    .elementor-menu-cart__footer-buttons {
        grid-template-columns: 1fr;
    }
    
    .elementor-menu-cart__footer-buttons .elementor-button {
        width: 100%;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .multi-otp-container {
        margin: 10px;
        max-width: none;
    }

    .multi-otp-card {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .multi-otp-header h2 {
        font-size: 22px;
    }

    .multi-otp-header p {
        font-size: 14px;
    }

    .multi-logo {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .multi-tabs {
        flex-direction: column;
        gap: 2px;
    }

    .multi-tab-btn {
        min-width: auto;
        padding: 14px 16px;
        font-size: 14px;
    }

    .multi-phone-input {
        flex-direction: column;
    }

    .multi-country-code-select {
        flex: none;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        padding: 14px 16px;
    }

    .multi-input {
        padding: 14px 16px;
    }

    .multi-email-input {
        padding: 14px 16px;
        font-size: 16px;
    }

    .multi-otp-input {
        font-size: 28px;
        letter-spacing: 6px;
        padding: 16px;
    }

    .multi-btn {
        padding: 16px;
        font-size: 16px;
        min-height: 52px;
    }
}

@media (max-width: 480px) {
    .mobile-currency-circle {
        width: 40px;
        height: 40px;
    }

    .currency-symbol-circle {
        font-size: 12px;
    }

    .multi-otp-card {
        padding: 20px 15px;
    }

    .multi-logo {
        width: 55px;
        height: 55px;
        font-size: 18px;
    }

    .multi-otp-input {
        font-size: 24px;
        letter-spacing: 4px;
    }

    .multi-btn {
        padding: 14px;
        font-size: 15px;
        min-height: 48px;
    }
}


/* Aura Chat Info Widget Styles */
.aura-chat-info-wrapper {
    display: flex;
    width: 100%;
    justify-content: center;
}

.aura-chat-info {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    gap: 14px;
    border: 1px solid rgba(255, 213, 79, 0.35);
    border-radius: 16px;
    box-shadow: rgba(0, 0, 0, 0.45) 0px 10px 22px 0px;
    box-sizing: border-box;
    font-family: 'Cairo', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    direction: rtl;
    width: 100%;
}

.aura-chat-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    background-color: #F4C542;
    border-radius: 50%;
    flex-shrink: 0;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.aura-chat-icon svg {
    width: 1em;
    height: 1em;
}

.aura-chat-icon.aura-chat-pulse {
    animation: aura-chat-pulse 2.2s ease infinite;
}

@keyframes aura-chat-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(244, 197, 66, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(244, 197, 66, 0);
    }
}

.aura-chat-text {
    flex: 1;
}

.aura-chat-text h3 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 4px;
}

.aura-chat-text h3 .emoji {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
}

.aura-chat-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #FFFFFF;
}

.aura-chat-text p strong {
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .aura-chat-info {
        flex-direction: row;
        padding: 15px;
        gap: 12px;
    }
    
    .aura-chat-icon {
        width: 40px;
        height: 40px;
    }
    
    .aura-chat-text h3 {
        font-size: 14px;
    }
    
    .aura-chat-text p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .aura-chat-info {
        padding: 12px;
        gap: 10px;
    }
    
    .aura-chat-icon {
        width: 36px;
        height: 36px;
    }
    
    .aura-chat-text h3 {
        font-size: 13px;
    }
    
    .aura-chat-text p {
        font-size: 12px;
    }
}


/* Logo Widget Styles */
.hulk-logo-wrapper {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.hulk-logo-link {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hulk-logo-link:hover {
    text-decoration: none;
}

.hulk-logo-image {
    display: inline-block;
    line-height: 0;
}

.hulk-logo-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

.hulk-logo-text {
    display: inline-block;
    font-family: 'Cairo', Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    transition: all 0.3s ease;
}

/* Aura Chat Info Widget Styles */
.aura-chat-info-wrapper {
    display: flex;
    width: 100%;
    justify-content: center;
}

.aura-chat-info {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    gap: 14px;
    border: 1px solid rgba(255, 213, 79, 0.35);
    border-radius: 16px;
    box-shadow: rgba(0, 0, 0, 0.45) 0px 10px 22px 0px;
    box-sizing: border-box;
    font-family: 'Cairo', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    direction: rtl;
    width: 100%;
}

.aura-chat-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    background-color: #F4C542;
    border-radius: 50%;
    flex-shrink: 0;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.aura-chat-icon svg {
    width: 1em;
    height: 1em;
}

.aura-chat-icon.aura-chat-pulse {
    animation: aura-chat-pulse 2.2s ease infinite;
}

@keyframes aura-chat-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(244, 197, 66, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(244, 197, 66, 0);
    }
}

.aura-chat-text {
    flex: 1;
}

.aura-chat-text h3 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 4px;
}

.aura-chat-text h3 .emoji {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
}

.aura-chat-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #FFFFFF;
}

.aura-chat-text p strong {
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .aura-chat-info {
        flex-direction: row;
        padding: 15px;
        gap: 12px;
    }
    
    .aura-chat-icon {
        width: 40px;
        height: 40px;
    }
    
    .aura-chat-text h3 {
        font-size: 14px;
    }
    
    .aura-chat-text p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .aura-chat-info {
        padding: 12px;
        gap: 10px;
    }
    
    .aura-chat-icon {
        width: 36px;
        height: 36px;
    }
    
    .aura-chat-text h3 {
        font-size: 13px;
    }
    
    .aura-chat-text p {
        font-size: 12px;
    }
}


/* ========================================
   Coupon Banner Styles
======================================== */

:root {
    --hulk-shadow: rgba(184, 134, 11, 0.3);
    --hulk-glow: rgba(255, 215, 0, 0.4);
}

/* Banner Container */
.hulk-coupon-banner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    height: 120px;
    margin: 30px auto;
    padding: 0 50px;
    border-radius: 60px;
    background-size: 300% 300%;
    box-shadow: 0 25px 60px var(--hulk-shadow),
                inset 0 2px 15px rgba(255, 255, 255, 0.3),
                0 0 50px var(--hulk-glow);
    overflow: hidden;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    animation: bannerShimmer 8s ease-in-out infinite;
    font-family: 'Cairo', 'Tajawal', Arial, sans-serif;
}

.hulk-coupon-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 70px var(--hulk-shadow),
                inset 0 2px 20px rgba(255, 255, 255, 0.4),
                0 0 60px var(--hulk-glow);
}

/* Left & Right Text */
.coupon-text-left,
.coupon-text-right {
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 3;
    font-family: 'Cairo', sans-serif;
}

.coupon-text-left {
    align-items: flex-start;
}

.coupon-text-right {
    align-items: flex-end;
}

.coupon-text-left .main-text,
.coupon-text-right .main-text {
    font-size: 25.6px;
    font-weight: 900;
    line-height: 38.4px;
    color: #000000;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8),
                 0 0 10px rgba(255, 215, 0, 0.4);
}

.coupon-text-right .main-text {
    animation: textGlow 3s ease-in-out infinite alternate;
}

.coupon-text-left .sub-text,
.coupon-text-right .sub-text {
    font-size: 17.6px;
    font-weight: 700;
    line-height: 26.4px;
    color: #000000;
    opacity: 0.9;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8),
                 0 0 10px rgba(255, 215, 0, 0.4);
}

/* Coupon Code Container */
.coupon-code-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 140px;
    height: 98px;
    background: linear-gradient(145deg, #000000, #1a1a1a);
    border: 2px solid #ffd700;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5),
                inset 0 2px 10px rgba(255, 215, 0, 0.2),
                0 0 20px rgba(255, 215, 0, 0.4);
    cursor: pointer;
    z-index: 5;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    animation: couponPulse 2s ease-in-out infinite;
}

.coupon-code-container:hover {
    transform: scale(1.1) rotateY(10deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7),
                inset 0 2px 15px rgba(255, 215, 0, 0.4),
                0 0 40px var(--hulk-glow);
}

.coupon-code-container:active {
    transform: scale(0.95);
    animation: copySuccess 0.6s ease;
}

/* Coupon Icon */
.coupon-icon {
    font-size: 32px;
    line-height: 48px;
    color: #ffd700;
    animation: iconSpin 3s linear infinite;
    transform-origin: center;
}

/* Coupon Code Text */
.coupon-code {
    font-family: 'Courier New', monospace;
    font-size: 20.8px;
    font-weight: 900;
    line-height: 31.2px;
    letter-spacing: 2px;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

/* Copy Message */
.copy-message {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 16px;
    background: #ffd700;
    color: #000000;
    font-size: 14.4px;
    font-weight: 700;
    line-height: 21.6px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 10;
    pointer-events: none;
}

/* ========================================
   Animations
======================================== */

@keyframes bannerShimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes couponPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes iconSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes textGlow {
    0% {
        text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8),
                     0 0 10px rgba(255, 215, 0, 0.4);
    }
    100% {
        text-shadow: 2px 2px 7.4px rgba(255, 255, 255, 0.97),
                     0 0 18.5px rgba(255, 215, 0, 0.4);
    }
}

@keyframes copySuccess {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}


/* ========================================
   Coupon Notification Popup
======================================== */

.coupon-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 391px;
    max-width: calc(100vw - 40px);
    padding: 20px 30px;
    background: linear-gradient(45deg, #ffd700, #b8860b);
    border: 2px solid #000000;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    font-family: 'Cairo', sans-serif;
    font-size: 19.2px;
    font-weight: 700;
    line-height: 28.8px;
    text-align: center;
    color: #000000;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
}

.coupon-notification.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    animation: notificationPop 0.5s ease;
}

.coupon-notification small {
    font-size: 16.8px;
    font-weight: 700;
    line-height: 25.2px;
    display: block;
    margin-top: 5px;
}

.coupon-notification br {
    display: block;
    margin: 5px 0;
}

/* Animation */
@keyframes notificationPop {
    0% {
        transform: translate(-50%, -50%) scale(0) rotate(-10deg);
        opacity: 0;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1) rotate(5deg);
    }
    100% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 480px) {
    .coupon-notification {
        width: calc(100vw - 40px);
        padding: 15px 20px;
        font-size: 16px;
        line-height: 24px;
    }
    
    .coupon-notification small {
        font-size: 14px;
        line-height: 21px;
    }
}

/* ========================================
   Responsive
======================================== */

@media (max-width: 1024px) {
    .hulk-coupon-banner {
        padding: 0 30px;
        height: 100px;
    }
    
    .coupon-text-left .main-text,
    .coupon-text-right .main-text {
        font-size: 20px;
        line-height: 30px;
    }
    
    .coupon-text-left .sub-text,
    .coupon-text-right .sub-text {
        font-size: 14px;
        line-height: 21px;
    }
    
    .coupon-code-container {
        width: 120px;
        height: 85px;
    }
    
    .coupon-code {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .hulk-coupon-banner {
        flex-direction: column;
        height: auto;
        padding: 30px 20px;
        gap: 20px;
        border-radius: 30px;
    }
    
    .coupon-text-left,
    .coupon-text-right {
        align-items: center;
        text-align: center;
    }
    
    .coupon-text-left .main-text,
    .coupon-text-right .main-text {
        font-size: 18px;
        line-height: 27px;
    }
    
    .coupon-text-left .sub-text,
    .coupon-text-right .sub-text {
        font-size: 13px;
        line-height: 19.5px;
    }
    
    .coupon-code-container {
        width: 150px;
        height: 90px;
    }
}

@media (max-width: 480px) {
    .hulk-coupon-banner {
        margin: 20px auto;
        padding: 25px 15px;
    }
    
    .coupon-text-left .main-text,
    .coupon-text-right .main-text {
        font-size: 16px;
        line-height: 24px;
    }
    
    .coupon-text-left .sub-text,
    .coupon-text-right .sub-text {
        font-size: 12px;
        line-height: 18px;
    }
    
    .coupon-code-container {
        width: 130px;
        height: 80px;
    }
    
    .coupon-code {
        font-size: 16px;
    }
    
    .coupon-icon {
        font-size: 28px;
    }
}


/* ========================================
   Movies Section Styles
======================================== */

.movies-section {
    display: flex;
    align-items: center;
    min-height: 644px;
    padding: 50px 20px 50px 10px;
    overflow: hidden;
    position: relative;
    font-family: 'Cairo', sans-serif;
}

.movies-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.movies-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    align-items: center;
}

.movies-text {
    max-width: 600px;
}

/* Title */
.movies-title {
    font-size: 80px;
    font-weight: 900;
    line-height: 88px;
    letter-spacing: -0.8px;
    margin: 0 0 30px;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Subtitle */
.movies-subtitle {
    font-size: 32px;
    font-weight: 700;
    line-height: 38.4px;
    letter-spacing: -0.32px;
    color: #ffd700;
    margin: 0 0 20px;
}

/* Description */
.movies-description {
    font-size: 20.8px;
    font-weight: 400;
    line-height: 37.44px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 40px;
}

.movies-highlight {
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* Buttons */
.movies-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.movies-btn {
    display: inline-block;
    min-width: 200px;
    padding: 18px 40px;
    font-size: 19.2px;
    font-weight: 700;
    line-height: 28.8px;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.btn-primary {
    background: linear-gradient(45deg, #ffd700, #ffa500);
    color: #000000;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 45px rgba(255, 215, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #ffd700;
    border: 3px solid #ffd700;
}

.btn-secondary:hover {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(45deg, #ffd700, #ffa500);
    color: #000000;
}

/* ========================================
   Responsive
======================================== */

@media (max-width: 1024px) {
    .movies-title {
        font-size: 60px;
        line-height: 66px;
    }
    
    .movies-subtitle {
        font-size: 28px;
        line-height: 34px;
    }
    
    .movies-description {
        font-size: 18px;
        line-height: 32px;
    }
}

@media (max-width: 768px) {
    .movies-section {
        padding: 40px 15px;
    }
    
    .movies-container {
        padding: 0 20px;
    }
    
    .movies-text {
        max-width: 100%;
    }
    
    .movies-title {
        font-size: 48px;
        line-height: 54px;
        margin-bottom: 20px;
    }
    
    .movies-subtitle {
        font-size: 24px;
        line-height: 30px;
    }
    
    .movies-description {
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 30px;
    }
    
    .movies-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .movies-btn {
        width: 100%;
        padding: 16px 30px;
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .movies-section {
        min-height: 500px;
        padding: 30px 10px;
    }
    
    .movies-title {
        font-size: 36px;
        line-height: 42px;
    }
    
    .movies-subtitle {
        font-size: 20px;
        line-height: 26px;
    }
    
    .movies-description {
        font-size: 15px;
        line-height: 26px;
    }
    
    .movies-btn {
        padding: 14px 25px;
        font-size: 16px;
    }
}


/* ========================================
   Apps Section Styles
======================================== */

.apps-section {
    display: flex;
    align-items: center;
    min-height: 644px;
    padding: 50px 25px 50px 15px;
    overflow: hidden;
    font-family: 'Cairo', sans-serif;
}

.apps-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.apps-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 100px;
    align-items: center;
}

.apps-text h2 {
    font-size: 80px;
    font-weight: 900;
    line-height: 96px;
    letter-spacing: -0.8px;
    color: #ffffff;
    margin: 0 0 30px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.apps-description {
    font-size: 19.2px;
    font-weight: 400;
    line-height: 34.56px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 50px;
}

/* Platform Icons */
.apps-platforms {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.platform-icon {
    padding: 20px;
    text-align: center;
    font-size: 32px;
    line-height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.platform-icon:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #ffd700;
    transform: translateY(-5px);
}

/* Buttons */
.apps-btn {
    display: inline-block;
    padding: 18px 40px;
    font-size: 19.2px;
    font-weight: 700;
    line-height: 28.8px;
    text-align: right;
    color: #000000;
    background: linear-gradient(45deg, #ffd700, #ffa500);
    border-radius: 50px;
    text-decoration: none;
    margin: 0 0 10px;
    transition: all 0.4s ease;
}

.apps-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 45px rgba(255, 215, 0, 0.6);
}

/* Phone Mockup */
.apps-phone {
    width: 300px;
    height: 600px;
    position: relative;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    padding: 30px;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5),
                inset 0 0 0 8px rgba(255, 215, 0, 0.1);
    position: relative;
    animation: phone-float 6s ease-in-out infinite;
}

@keyframes phone-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(1deg);
    }
    50% {
        transform: translateY(-10px) rotate(-1deg);
    }
    75% {
        transform: translateY(-15px) rotate(0.5deg);
    }
}

.phone-screen {
    width: 240px;
    height: 540px;
    background: linear-gradient(135deg, #ffd700, #ffa500);
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 64px;
    font-weight: 900;
    line-height: 96px;
    color: #000000;
    position: relative;
    overflow: hidden;
}

.app-icons {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px 30px;
    background: rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    font-size: 24px;
    font-weight: 900;
    line-height: 36px;
}

/* ========================================
   Responsive
======================================== */

@media (max-width: 1200px) {
    .apps-content {
        grid-template-columns: 1fr 250px;
        gap: 60px;
    }
    
    .apps-text h2 {
        font-size: 60px;
        line-height: 72px;
    }
    
    .apps-platforms {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
        padding: 25px;
    }
    
    .phone-screen {
        width: 200px;
        height: 450px;
        font-size: 48px;
    }
}

@media (max-width: 1024px) {
    .apps-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .apps-phone {
        margin: 0 auto;
    }
    
    .apps-text h2 {
        font-size: 50px;
        line-height: 60px;
    }
    
    .apps-description {
        font-size: 17px;
        line-height: 30px;
    }
}

@media (max-width: 768px) {
    .apps-section {
        padding: 40px 15px;
    }
    
    .apps-container {
        padding: 0 20px;
    }
    
    .apps-text h2 {
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 20px;
    }
    
    .apps-description {
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 30px;
    }
    
    .apps-platforms {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin: 30px 0;
    }
    
    .platform-icon {
        padding: 15px;
        font-size: 28px;
    }
    
    .apps-btn {
        width: 100%;
        text-align: center;
        padding: 16px 30px;
        font-size: 17px;
    }
    
    .phone-mockup {
        width: 220px;
        height: 440px;
        padding: 20px;
    }
    
    .phone-screen {
        width: 180px;
        height: 400px;
        font-size: 40px;
    }
    
    .app-icons {
        font-size: 20px;
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    .apps-section {
        min-height: 500px;
        padding: 30px 10px;
    }
    
    .apps-text h2 {
        font-size: 32px;
        line-height: 40px;
    }
    
    .apps-description {
        font-size: 15px;
        line-height: 26px;
    }
    
    .apps-platforms {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .platform-icon {
        padding: 12px;
        font-size: 24px;
        border-radius: 10px;
    }
    
    .apps-btn {
        padding: 14px 25px;
        font-size: 16px;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
        padding: 18px;
    }
    
    .phone-screen {
        width: 164px;
        height: 364px;
        font-size: 32px;
    }
    
    .app-icons {
        font-size: 18px;
        padding: 10px 20px;
        bottom: 30px;
    }
}


/* ========================================
   Sports Section Styles
======================================== */

.sports-section {
    display: flex;
    align-items: center;
    min-height: 644px;
    padding: 50px 20px 35px 10px;
    overflow: hidden;
    font-family: 'Cairo', sans-serif;
    text-align: center;
}

.sports-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.sports-content {
    text-align: center;
}

/* Title */
.sports-title {
    font-size: 67.9px;
    font-weight: 900;
    line-height: 81.48px;
    letter-spacing: -0.679px;
    color: #ffffff;
    margin: 0 0 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

/* Sports Icons */
.sports-icons {
    font-size: 64px;
    line-height: 96px;
    margin: 20px 0;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Description */
.sports-description {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 19.2px;
    font-weight: 400;
    line-height: 34.56px;
    color: rgba(255, 255, 255, 0.9);
}

/* Feature Cards */
.sports-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.feature-card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.8);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #ffd700, #ffa500);
    border-radius: 50%;
    font-size: 40px;
    line-height: 60px;
    box-shadow: 0 10.78px 26.56px rgba(255, 215, 0, 0.333),
                inset 0 0 0 3px rgba(68, 57, 0, 0.118);
    animation: icon-pulse 3s ease-in-out infinite;
}

@keyframes icon-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.feature-title {
    font-size: 22.4px;
    font-weight: 800;
    line-height: 26.88px;
    letter-spacing: -0.224px;
    color: #ffd700;
    margin: 0 0 15px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.feature-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 25.6px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Button */
.sports-btn {
    display: inline-block;
    max-width: 300px;
    padding: 18px 40px;
    font-size: 19.2px;
    font-weight: 700;
    line-height: 28.8px;
    text-align: center;
    color: #000000;
    background: linear-gradient(45deg, #ffd700, #ffa500);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    margin-top: 20px;
}

.sports-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 45px rgba(255, 215, 0, 0.6);
}

/* ========================================
   Responsive
======================================== */

@media (max-width: 1024px) {
    .sports-title {
        font-size: 50px;
        line-height: 60px;
    }
    
    .sports-icons {
        font-size: 48px;
    }
    
    .sports-description {
        font-size: 17px;
        line-height: 30px;
    }
    
    .sports-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .sports-section {
        padding: 40px 15px 30px;
    }
    
    .sports-container {
        padding: 0 20px;
    }
    
    .sports-title {
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 15px;
    }
    
    .sports-icons {
        font-size: 40px;
        margin: 15px 0;
    }
    
    .sports-description {
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 40px;
    }
    
    .sports-features {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px 0;
    }
    
    .feature-card {
        padding: 25px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 35px;
        margin-bottom: 15px;
    }
    
    .feature-title {
        font-size: 20px;
        line-height: 24px;
    }
    
    .feature-text {
        font-size: 15px;
        line-height: 24px;
    }
    
    .sports-btn {
        width: 100%;
        max-width: 100%;
        padding: 16px 30px;
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .sports-section {
        min-height: 500px;
        padding: 30px 10px 25px;
    }
    
    .sports-title {
        font-size: 32px;
        line-height: 40px;
    }
    
    .sports-icons {
        font-size: 32px;
        margin: 10px 0;
    }
    
    .sports-description {
        font-size: 15px;
        line-height: 26px;
        margin-bottom: 30px;
    }
    
    .sports-features {
        margin: 30px 0;
        gap: 15px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
    
    .feature-title {
        font-size: 18px;
        line-height: 22px;
    }
    
    .feature-text {
        font-size: 14px;
        line-height: 22px;
    }
    
    .sports-btn {
        padding: 14px 25px;
        font-size: 16px;
    }
}


/* ========================================
   Support Section Styles
======================================== */

.hulk-support-section {
    display: flex;
    align-items: center;
    min-height: 500px;
    padding: 80px 20px;
    overflow: hidden;
    font-family: 'Cairo', sans-serif;
}

.hulk-support-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 440px 200px 440px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* ========================================
   Support Content (Left Side)
======================================== */

.support-content {
    text-align: center;
}

.support-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 76.8px;
    letter-spacing: -0.64px;
    margin: 0 0 20px;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.support-subtitle {
    font-size: 22.4px;
    font-weight: 600;
    line-height: 26.88px;
    letter-spacing: -0.224px;
    color: #ffd700;
    opacity: 0.9;
    margin: 0 0 30px;
}

.support-description {
    max-width: 500px;
    font-size: 17.6px;
    font-weight: 400;
    line-height: 31.68px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 40px;
}

/* Support Stats */
.support-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-5px);
}

/* Counter Animation Enhancement */
.stat-number {
    display: block;
    font-size: 40px;
    font-weight: 900;
    line-height: 60px;
    color: #ffd700;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.stat-label {
    font-size: 15.2px;
    font-weight: 400;
    line-height: 22.8px;
    color: rgba(255, 255, 255, 0.8);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

/* ========================================
   Center Icon
======================================== */

.support-icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 200px;
}

.support-main-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #ffd700, #ffa500);
    border-radius: 30px;
    font-size: 80px;
    line-height: 120px;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3),
                inset 0 0 0 4px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.support-main-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.4),
                inset 0 0 0 4px rgba(0, 0, 0, 0.2);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(1deg);
    }
    50% {
        transform: translateY(-5px) rotate(-1deg);
    }
    75% {
        transform: translateY(-7px) rotate(0.5deg);
    }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 300px;
    height: 300px;
    top: 38%;
    left: -96%;
}

.floating-element {
    position: absolute;
    font-size: 20px;
    line-height: 30px;
    opacity: 0.6;
    animation: orbit 10s linear infinite;
}

.floating-element:nth-child(1) { animation-delay: 0s; }
.floating-element:nth-child(2) { animation-delay: -2s; }
.floating-element:nth-child(3) { animation-delay: -4s; }
.floating-element:nth-child(4) { animation-delay: -6s; }
.floating-element:nth-child(5) { animation-delay: -8s; }

@keyframes orbit {
    0% {
        transform: rotate(0deg) translateX(150px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(150px) rotate(-360deg);
    }
}

/* ========================================
   Support Actions (Right Side)
======================================== */

.support-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.support-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    min-width: 250px;
    padding: 18px 35px;
    font-size: 17.6px;
    font-weight: 700;
    line-height: 26.4px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.whatsapp-btn {
    color: #ffffff;
    background: linear-gradient(45deg, #25d366, #128c7e);
    border: 2px solid transparent;
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.support-general-btn {
    color: #ffd700;
    background: transparent;
    border: 2px solid #ffd700;
}

.support-general-btn:hover {
    background: linear-gradient(45deg, #ffd700, #ffa500);
    color: #000000;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

.support-btn svg {
    width: 24px;
    height: 24px;
}



.stat-item:not([data-counted]) .stat-number {
    opacity: 0.3;
    transform: scale(0.8);
}

.stat-item[data-counted] .stat-number {
    opacity: 1;
    transform: scale(1);
}

/* ========================================
   Responsive
======================================== */

@media (max-width: 1200px) {
    .hulk-support-container {
        grid-template-columns: 1fr 180px 1fr;
        gap: 40px;
    }
    
    .support-title {
        font-size: 50px;
        line-height: 60px;
    }
    
    .support-main-icon {
        width: 180px;
        height: 180px;
        font-size: 70px;
    }
}

@media (max-width: 1024px) {
    .hulk-support-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .support-content,
    .support-actions {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .support-main-icon {
        width: 150px;
        height: 150px;
        font-size: 60px;
        margin: 0 auto;
    }
    
    .support-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hulk-support-section {
        padding: 60px 15px;
    }
    
    .support-title {
        font-size: 40px;
        line-height: 50px;
    }
    
    .support-subtitle {
        font-size: 20px;
        line-height: 24px;
    }
    
    .support-description {
        font-size: 16px;
        line-height: 28px;
    }
    
    .support-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }
    
    .stat-number {
        font-size: 32px;
        line-height: 48px;
    }
    
    .support-main-icon {
        width: 120px;
        height: 120px;
        font-size: 50px;
    }
    
    .floating-elements {
        width: 200px;
        height: 200px;
        top: -40px;
        left: -40px;
    }
    
    .floating-element {
        font-size: 16px;
    }
    
    @keyframes orbit {
        0% {
            transform: rotate(0deg) translateX(100px) rotate(0deg);
        }
        100% {
            transform: rotate(360deg) translateX(100px) rotate(-360deg);
        }
    }
    
    .support-btn {
        width: 100%;
        max-width: 300px;
        padding: 16px 30px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hulk-support-section {
        min-height: 400px;
        padding: 40px 10px;
    }
    
    .support-title {
        font-size: 32px;
        line-height: 40px;
    }
    
    .support-subtitle {
        font-size: 18px;
        line-height: 22px;
    }
    
    .support-description {
        font-size: 15px;
        line-height: 26px;
        margin-bottom: 30px;
    }
    
    .stat-number {
        font-size: 28px;
        line-height: 42px;
    }
    
    .stat-label {
        font-size: 14px;
        line-height: 21px;
    }
    
    .support-btn {
        padding: 14px 25px;
        font-size: 15px;
    }
}



/* ========================================
   Trial Section Styles
======================================== */

.trial-section {
    display: flex;
    align-items: center;
    min-height: 644px;
    padding: 50px 20px 30px 5px;
    overflow: hidden;
    font-family: 'Cairo', sans-serif;
}

.trial-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.trial-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: center;
}

/* ========================================
   Logo Section
======================================== */

.trial-logo {
    position: relative;
    width: 400px;
    height: 400px;
}

.hulk-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #ffd700, #ffa500);
    border-radius: 30px;
    font-size: 128px;
    font-weight: 900;
    line-height: 192px;
    color: #000000;
    box-shadow: 0 40px 80px rgba(255, 215, 0, 0.6),
                inset 0 0 0 8px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 40px 80px rgba(255, 215, 0, 0.6),
                    inset 0 0 0 8px rgba(0, 0, 0, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 50px 100px rgba(255, 215, 0, 0.8),
                    inset 0 0 0 8px rgba(0, 0, 0, 0.3);
        transform: scale(1.02);
    }
}

/* Free Badge */
.free-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    padding: 15px 25px;
    background: linear-gradient(45deg, #ff4444, #cc2222);
    border-radius: 15px;
    font-size: 19.2px;
    font-weight: 700;
    line-height: 28.8px;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(255, 68, 68, 0.4);
    transform: rotate(15deg);
    animation: wiggle 3s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% {
        transform: rotate(15deg);
    }
    25% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(20deg);
    }
    75% {
        transform: rotate(12deg);
    }
}

/* ========================================
   Text Section
======================================== */

.trial-text h2 {
    font-size: 64px;
    font-weight: 900;
    line-height: 76.8px;
    letter-spacing: -0.64px;
    color: #ffffff;
    margin: 0 0 30px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.trial-emoji {
    color: #ffd700;
    margin-left: 15px;
}

.trial-description {
    font-size: 20.8px;
    font-weight: 400;
    line-height: 37.44px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 40px;
}

/* Button */
.trial-btn {
    display: inline-block;
    padding: 20px 50px;
    font-size: 20.8px;
    font-weight: 900;
    line-height: 31.2px;
    text-align: center;
    color: #000000;
    background: linear-gradient(45deg, #ffd700, #ffa500);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    margin-top: 20px;
}

.trial-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.6);
}

/* ========================================
   Responsive
======================================== */

@media (max-width: 1200px) {
    .trial-content {
        grid-template-columns: 350px 1fr;
        gap: 60px;
    }
    
    .trial-logo,
    .hulk-logo {
        width: 350px;
        height: 350px;
    }
    
    .hulk-logo {
        font-size: 110px;
        line-height: 165px;
    }
    
    .trial-text h2 {
        font-size: 50px;
        line-height: 60px;
    }
    
    .trial-description {
        font-size: 18px;
        line-height: 32px;
    }
}

@media (max-width: 1024px) {
    .trial-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .trial-logo,
    .hulk-logo {
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }
    
    .hulk-logo {
        font-size: 90px;
        line-height: 135px;
    }
    
    .free-badge {
        font-size: 16px;
        padding: 12px 20px;
    }
    
    .trial-text h2 {
        font-size: 45px;
        line-height: 55px;
    }
    
    .trial-description {
        font-size: 17px;
        line-height: 30px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .trial-section {
        padding: 40px 15px 30px;
        min-height: 500px;
    }
    
    .trial-container {
        padding: 0 20px;
    }
    
    .trial-logo,
    .hulk-logo {
        width: 250px;
        height: 250px;
    }
    
    .hulk-logo {
        font-size: 75px;
        line-height: 112px;
        border-radius: 25px;
    }
    
    .free-badge {
        font-size: 14px;
        padding: 10px 15px;
        top: -15px;
        right: -15px;
    }
    
    .trial-text h2 {
        font-size: 36px;
        line-height: 45px;
        margin-bottom: 20px;
    }
    
    .trial-emoji {
        font-size: 36px;
    }
    
    .trial-description {
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 30px;
    }
    
    .trial-btn {
        width: 100%;
        max-width: 350px;
        padding: 18px 40px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .trial-section {
        padding: 30px 10px 25px;
        min-height: 450px;
    }
    
    .trial-logo,
    .hulk-logo {
        width: 200px;
        height: 200px;
    }
    
    .hulk-logo {
        font-size: 60px;
        line-height: 90px;
        border-radius: 20px;
    }
    
    .free-badge {
        font-size: 12px;
        padding: 8px 12px;
        top: -10px;
        right: -10px;
    }
    
    .trial-text h2 {
        font-size: 28px;
        line-height: 36px;
    }
    
    .trial-emoji {
        font-size: 28px;
        display: block;
        margin-top: 10px;
        margin-left: 0;
    }
    
    .trial-description {
        font-size: 15px;
        line-height: 26px;
        margin-bottom: 25px;
    }
    
    .trial-btn {
        padding: 16px 35px;
        font-size: 17px;
    }
}


/* ========================================
   Features Bar Styles
======================================== */

.features-bar-section {
    position: relative;
    padding: 60px 20px;
    overflow: hidden;
    font-family: 'Cairo', sans-serif;
}

/* ========================================
   Floating Shapes
======================================== */

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 50%;
    animation: float-around 15s linear infinite;
}

.floating-shape:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-shape:nth-child(2) {
    top: 60%;
    left: 70%;
    animation-delay: -5s;
}

.floating-shape:nth-child(3) {
    top: 80%;
    left: 20%;
    animation-delay: -10s;
}

.floating-shape:nth-child(4) {
    top: 30%;
    left: 80%;
    animation-delay: -2s;
}

.floating-shape:nth-child(5) {
    top: 50%;
    left: 40%;
    animation-delay: -7s;
}

@keyframes float-around {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg);
    }
    50% {
        transform: translate(0, -60px) rotate(180deg);
    }
    75% {
        transform: translate(-30px, -30px) rotate(270deg);
    }
}

/* ========================================
   Container
======================================== */

.features-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
}

/* ========================================
   Feature Item
======================================== */

.feature-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 180px;
    padding: 30px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s ease;
}

.feature-item:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2),
                inset 0 0 0 1px rgba(255, 215, 0, 0.1);
}

/* ========================================
   Badges
======================================== */

.discount-badge,
.quality-badge {
    position: absolute;
    top: 0;
    right: 0;
    padding: 8px 15px;
    font-size: 14.4px;
    font-weight: 700;
    line-height: 21.6px;
    color: #ffffff;
    border-radius: 20px;
    z-index: 3;
    transform: rotate(15deg);
    animation: badge-wiggle 3s ease-in-out infinite;
}

.discount-badge {
    background: linear-gradient(45deg, #ff4444, #cc2222);
    box-shadow: 0 5px 15px rgba(255, 68, 68, 0.4);
}

.quality-badge {
    background: linear-gradient(45deg, #25d366, #128c7e);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    animation-delay: -1s;
}

@keyframes badge-wiggle {
    0%, 100% {
        transform: rotate(15deg);
    }
    25% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(20deg);
    }
    75% {
        transform: rotate(12deg);
    }
}

/* ========================================
   Icon
======================================== */

.feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700, #ffa500);
    border-radius: 50%;
    font-size: 40px;
    line-height: 60px;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3),
                inset 0 0 0 3px rgba(3, 2, 0, 0.1);
    transition: all 0.3s ease;
    animation: icon-pulse 3s ease-in-out infinite;
}

.feature-item:nth-child(2) .feature-icon {
    animation-delay: -1s;
}

.feature-item:nth-child(3) .feature-icon {
    animation-delay: -2s;
}

.feature-item:nth-child(4) .feature-icon {
    animation-delay: -1.5s;
}

.feature-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.5),
                inset 0 0 0 3px rgba(0, 0, 0, 0.2);
}

@keyframes icon-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ========================================
   Text
======================================== */

.feature-title {
    font-size: 22.4px;
    font-weight: 800;
    line-height: 26.88px;
    letter-spacing: -0.224px;
    color: #ffd700;
    margin: 0 0 15px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.feature-description {
    font-size: 16px;
    font-weight: 500;
    line-height: 25.6px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* ========================================
   Responsive
======================================== */

@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .features-bar-section {
        padding: 40px 15px;
    }
    
    .features-container {
        padding: 0 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-item {
        min-height: 160px;
        padding: 25px 20px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 35px;
        margin-bottom: 15px;
    }
    
    .feature-title {
        font-size: 20px;
        line-height: 24px;
    }
    
    .feature-description {
        font-size: 15px;
        line-height: 24px;
    }
    
    .discount-badge,
    .quality-badge {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .floating-shape {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .features-bar-section {
        padding: 30px 10px;
    }
    
    .feature-item {
        min-height: 140px;
        padding: 20px 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
    
    .feature-title {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 10px;
    }
    
    .feature-description {
        font-size: 14px;
        line-height: 22px;
    }
    
    .floating-shape {
        width: 50px;
        height: 50px;
    }
}


/* ========================================
   Footer Info Styles - Updated with Exact Original Spacing
======================================== */

.hulk-footer-info {
    padding: 60px 0 30px;
    margin-top: 30px;
    font-family: 'Cairo', sans-serif;
}

.footer-info-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
}

/* ========================================
   Footer Columns
======================================== */

.footer-column {
    flex: 0 1 auto;
    padding: 10px;
    width: 270px;
}

.footer-logo-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-links-column {
    /* Inherits from .footer-column */
}

.footer-apps-column {
    /* Inherits from .footer-column */
}

/* ========================================
   Logo Section
======================================== */

.footer-logo {
    text-align: center;
    width: 250px;
    height: auto;
}

.footer-logo img {
    width: 152.5px;
    height: auto;
    max-width: 100%;
    display: inline-block;
}

/* ========================================
   Description
======================================== */

.footer-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.16px;
    color: #ffffff;
    text-align: start;
    width: 250px;
}

.footer-description p {
    margin: 0 0 16px;
    color: #ffffff;
    font-weight: 400;
}

.footer-description strong,
.footer-description b {
    font-weight: 700;
}

/* ========================================
   Links Columns
======================================== */

.footer-column-title {
    font-size: 21px;
    font-weight: 700;
    line-height: 31.5px;
    letter-spacing: -0.16px;
    color: #ffffff;
    margin: 0 0 22px;
    text-align: start;
}

.footer-links-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links-list li {
    margin: 0;
    line-height: 16px;
}

.footer-links-list li:first-child {
    margin-top: 0;
}

.footer-links-list li:not(:first-child) {
    margin-top: 8px;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    padding: 4px 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: -0.16px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffd700;
}

/* ========================================
   Apps Section
======================================== */

.footer-apps-title {
    font-family: 'Cairo';
    font-size: 32px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: -0.32px;
    color: #ffffff;
    margin: 0;
    text-align: start;
}

.footer-app-buttons {
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 10px;
    margin-top: 20px;
}

.app-download-btn {
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-download-btn img {
    width: 105px;
    height: auto;
    max-width: 100%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    display: inline-block;
}

.app-download-btn:hover {
    transform: translateY(-3px);
}

.app-download-btn:hover img {
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.6);
}

/* ========================================
   Responsive
======================================== */

@media (max-width: 1200px) {
    .footer-info-container {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .footer-column {
        width: calc(50% - 10px);
    }
    
    .footer-logo-column,
    .footer-links-column,
    .footer-apps-column {
        width: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .hulk-footer-info {
        padding: 40px 15px 25px;
    }
    
    .footer-info-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-column {
        width: 100%;
        text-align: center;
    }
    
    .footer-logo-column,
    .footer-links-column,
    .footer-apps-column {
        width: 100%;
    }
    
    .footer-logo {
        width: 100%;
    }
    
    .footer-logo img {
        max-width: 120px;
    }
    
    .footer-description {
        text-align: center;
        width: 100%;
    }
    
    .footer-column-title {
        text-align: center;
        font-size: 24px;
    }
    
    .footer-links-list {
        text-align: center;
    }
    
    .footer-link {
        justify-content: center;
    }
    
    .footer-apps-title {
        text-align: center;
        font-size: 28px;
    }
    
    .footer-app-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hulk-footer-info {
        padding: 30px 10px 20px;
    }
    
    .footer-info-container {
        gap: 25px;
    }
    
    .footer-logo img {
        max-width: 100px;
    }
    
    .footer-description {
        font-size: 14px;
        line-height: 22px;
    }
    
    .footer-column-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .footer-link {
        font-size: 15px;
    }
    
    .footer-apps-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .footer-app-buttons {
        gap: 15px;
    }
    
    .app-download-btn img {
        width: 90px;
    }
}


/* ========================================
   Gradient Title Box Styles
======================================== */

.gradient-title-container {
    display: block;
    max-width: 1140px;
    margin: 0 auto;
    padding: 14px 14px 22px;
    text-align: center;
    background: linear-gradient(180deg, #8d6d03 0%, #524108 100%);
    border-radius: 0 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.gradient-title-text {
    display: block;
    margin: 0;
    padding: 0;
    font-family: 'Cairo', sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: -0.4px;
    text-align: center;
    color: #ffffff;
}

.gradient-title-container:hover {
    transform: scale(1.02);
}

/* ========================================
   Responsive
======================================== */

@media (max-width: 1024px) {
    .gradient-title-container {
        padding: 12px 12px 20px;
    }
    
    .gradient-title-text {
        font-size: 36px;
        line-height: 36px;
    }
}

@media (max-width: 768px) {
    .gradient-title-container {
        padding: 10px 10px 18px;
        border-radius: 0 30px;
    }
    
    .gradient-title-text {
        font-size: 28px;
        line-height: 28px;
    }
}

@media (max-width: 480px) {
    .gradient-title-container {
        padding: 8px 8px 16px;
        border-radius: 0 20px;
    }
    
    .gradient-title-text {
        font-size: 22px;
        line-height: 22px;
        letter-spacing: -0.2px;
    }
}


/* ========================================
   Products Grid Styles
======================================== */

.products-grid {
    display: grid;
    grid-template-columns: repeat(var(--columns, 4), 1fr);
    gap: 20px;
    width: 100%;
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(var(--columns-tablet, 2), 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(var(--columns-mobile, 1), 1fr);
    }
}

/* Product Card Styles (نفس الستايل السابق) */
.product-wrapper.style-9 {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 20, 20, 0.98) 50%, rgba(0, 0, 0, 0.95) 100%);
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-wrapper.style-9:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
}

.product-inner {
    width: 100%;
}

/* Thumbnail Styles */
.thumbnail-wrapper.entry-media {
    position: relative;
    margin-bottom: 12px;
    border: 1px solid #eceef0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-thumbnail {
    display: block;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.product-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.product-thumbnail:hover img {
    transform: scale(1.05);
}

/* Wishlist Button */
.thumbnail-buttons {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 10;
}

.wishlist-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background: #ffffff;
    border: 1px solid #e6e8eb;
    border-radius: 50%;
    box-shadow: 0 1px 3px 0 rgba(27, 31, 34, 0.02), 0 1px 2px 0 rgba(27, 31, 34, 0.04);
    transition: all 0.25s ease;
}

.wishlist-button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px 0 rgba(27, 31, 34, 0.1);
}

.wishlist-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #1b1f22;
    transition: color 0.25s ease;
}

.wishlist-button a:hover {
    color: #d18700;
}

.wishlist-button svg {
    width: 18px;
    height: 18px;
}

/* Content Wrapper Styles */
.content-wrapper {
    width: 100%;
}

/* Product Title */
.product-title {
    margin: 0 0 8px;
    padding: 0;
    font-family: 'Cairo', sans-serif;
    font-size: 17.6px;
    font-weight: 700;
    line-height: 22.88px;
    letter-spacing: -0.176px;
    text-align: center;
    color: #d18700;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.1s ease;
}

.product-title a:hover {
    text-decoration: underline;
}

/* Product Rating */
.product-rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 7px;
    gap: 6px;
}

.star-rating {
    position: relative;
    width: 65.6875px;
    height: 18px;
    font-size: 12px;
    line-height: 18px;
    overflow: hidden;
}

.star-rating::before {
    content: "★★★★★";
    color: #e0e0e0;
    position: absolute;
    top: 0;
    left: 0;
}

.star-rating span {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
    color: #ffd700;
}

.star-rating span::before {
    content: "★★★★★";
}

.star-rating strong {
    font-size: 0;
}

.rating-count {
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    color: #1b1f22;
}

/* Product Price */
.price {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 8px;
    margin-bottom: 10px;
    font-family: 'Cairo', sans-serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 25.5px;
    color: #ffffff;
}

.woocommerce-Price-amount {
    display: block;
}

.woocommerce-Price-currencySymbol {
    margin-left: 4px;
}
/* ========================================
   Button Styles - Updated
======================================== */

.product-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 7px;
}

/* Add to Cart Button */
.add-to-cart-button {
    display: flex;
    position: relative;
    flex: 1 0 0%;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 0 10px;
    height: 35px;
    font-family: 'Cairo', sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 35px;
    letter-spacing: -0.13px;
    color: #ffffff;
    background-color: #d18700;
    border: 0;
    border-radius: 6px;
    text-decoration: none;
    transition: color 0.15s cubic-bezier(0.25, 0.1, 0.25, 1), 
                background-color 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
    cursor: pointer;
}

.add-to-cart-button:hover {
    background-color: #facc15;
    transform: translateY(-2px);
}

.add-to-cart-button.loading {
    pointer-events: none;
    opacity: 0.6;
}

.add-to-cart-button.added {
    background-color: #d18700;
}

.add-to-cart-button .cart-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-style: italic;
    line-height: 35px;
}

.add-to-cart-button svg {
    width: 20px;
    height: 20px;
}

/* View Cart Button (يظهر بعد الإضافة) */
.added_to_cart {
    display: flex;
    position: static;
    flex: 1 0 100%;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    height: 36px;
    font-family: 'Cairo', sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 13px;
    letter-spacing: -0.13px;
    color: #ffffff;
    background-color: #8d6d03;
    border: 1px solid rgba(64, 192, 87, 0.2);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.15s ease;
    cursor: pointer;
    animation: slideDown 0.3s ease;
}

.added_to_cart:hover {
    background-color: #a08304;
    transform: translateY(-2px);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button Container when both buttons exist */
.product-buttons.only-icon {
    flex-direction: row;
    flex-wrap: wrap;
}

/* When "added" state - both buttons visible */
.product-buttons.only-icon .add-to-cart-button.added {
    flex: 1 0 0%;
}

.product-buttons.only-icon .added_to_cart {
    flex: 1 0 100%;
}

/* Loading State */
.add-to-cart-button.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Icon Styles */
.klb-icon-shopping-cart-extra {
    font-style: italic;
    font-size: 20px;
    line-height: 35px;
}


/* ========================================
   Button States - Enhanced
======================================== */

a.button.add-to-cart-button.ajax_add_to_cart {
    display: flex;
}

/* Success State (بعد الإضافة) */
.add-to-cart-button.added::before {
    content: '✓';
    position: absolute;
    right: 10px;
    font-size: 16px;
    animation: checkmark 0.3s ease;
}

@keyframes checkmark {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Button Styles */
@media (max-width: 768px) {
    .add-to-cart-button,
    .added_to_cart {
        font-size: 12px;
        height: 32px;
        line-height: 32px;
    }
    
    .add-to-cart-button .cart-icon {
        font-size: 18px;
        line-height: 32px;
    }
    
    .add-to-cart-button svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .product-buttons {
        gap: 8px;
    }
    
    .add-to-cart-button,
    .added_to_cart {
        font-size: 11px;
        height: 30px;
        line-height: 30px;
        padding: 0 8px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .product-wrapper.style-9 {
        padding: 8px;
    }
    
    .product-title {
        font-size: 16px;
        line-height: 20px;
    }
    
    .price {
        font-size: 15px;
    }
  
}




/* ========================================
   Download Cards Widget
======================================== */

.hulk-download-cards-wrapper {
    width: 100%;
}

.hulk-download-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px 6px;
    justify-content: center;
    align-items: center;
}

.hulk-download-card {
    display: flex;
    flex-direction: column;
    padding: 10px;
    border: 3px solid #8e6d04;
    border-radius: 7px;
    gap: 20px;
    transition: background 0.3s, border 0.3s, box-shadow 0.3s, transform 0.4s;
}

/* Module Icon Box */
.module-iconbox {
    display: block;
}

.module-body {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

/* Icon Styles */
.iconbox-icon {
    display: flex;
    width: 62px;
    height: 62px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin-left: 15px;
    border-radius: 8px;
}

.iconbox-icon i {
    font-size: 62px;
    line-height: 1;
}

.iconbox-icon svg {
    width: 62px;
    height: auto;
    overflow: hidden;
}

/* Content Styles */
.iconbox-content {
    flex: 1;
}

.iconbox-content .entry-title {
    margin: 0 0 2px;
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: -0.15px;
    color: #1b1f22;
}

.iconbox-content p {
    margin: 0;
    font-family: 'Cairo', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 19.5px;
    letter-spacing: -0.16px;
    color: #1b1f22;
    opacity: 0.6;
}

/* Download Button */
.download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 18px;
    margin-top: 20px;
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 15px;
    letter-spacing: -0.15px;
    color: #ffffff;
    background-color: #8e6d04;
    border: 1px solid transparent;
    border-radius: 6px;
    text-decoration: none;
    transition: color 0.15s cubic-bezier(0.25, 0.1, 0.25, 1), 
                background-color 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
    cursor: pointer;
}

.download-button:hover {
    color: #ffffff;
    background-color: #5e4701;
}

.download-button i,
.download-button svg {
    margin-right: 7px;
    font-size: 16px;
    font-style: italic;
    line-height: 16px;
}

.download-button svg {
    width: 16px;
    height: 16px;
}

/* ========================================
   Responsive Design
======================================== */

@media (max-width: 1024px) {
    .hulk-download-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .iconbox-icon {
        width: 50px;
        height: 50px;
        margin-left: 12px;
    }
    
    .iconbox-icon i {
        font-size: 50px;
    }
    
    .iconbox-icon svg {
        width: 50px;
    }
}

@media (max-width: 768px) {
    .hulk-download-cards-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .hulk-download-card {
        padding: 15px;
    }
    
    .iconbox-content .entry-title {
        font-size: 14px;
    }
    
    .iconbox-content p {
        font-size: 12px;
    }
    
    .download-button {
        width: 100%;
        font-size: 14px;
        padding: 10px 18px;
    }
}

@media (max-width: 480px) {
    .module-body {
        flex-direction: column;
        text-align: center;
    }
    
    .iconbox-icon {
        margin: 0 0 10px 0;
    }
    
    .iconbox-content {
        text-align: center;
    }
}


/* ========================================
   Animated Heading Box Widget
======================================== */

/* Box Container */
.hulk-animated-heading-box {
    position: relative;
    padding: 20px 40px;
    background: linear-gradient(135deg, #111111 0%, #000000 100%);
    border: 2px solid #ffd700;
    border-radius: 8px;
    box-shadow: 0 0 26.5465px rgba(255, 215, 0, 0.71);
    overflow: visible;
}

/* Pulse Glow Animation */
.hulk-animated-heading-box.pulse-glow-active {
    animation: pulse-glow 2s ease infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 var(--pulse-blur, 26.5465px) var(--pulse-color, rgba(255, 215, 0, 0.71));
    }
    50% {
        box-shadow: 0 0 calc(var(--pulse-blur, 26.5465px) * 1.5) var(--pulse-color, rgba(255, 215, 0, 0.71)),
                    0 0 calc(var(--pulse-blur, 26.5465px) * 0.5) var(--pulse-color, rgba(255, 215, 0, 0.9)) inset;
    }
}

/* Inner Container */
.hulk-heading-inner {
    padding: 67px;
    background-color: #000000;
}

/* Heading Text */
.hulk-animated-heading {
    margin: 0;
    font-family: 'Cairo', sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: -0.4px;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
}

/* ========================================
   Responsive Design
======================================== */

@media (max-width: 1024px) {
    .hulk-animated-heading-box {
        padding: 15px 30px;
    }
    
    .hulk-heading-inner {
        padding: 50px;
    }
    
    .hulk-animated-heading {
        font-size: 35px;
        line-height: 35px;
    }
}

@media (max-width: 768px) {
    .hulk-animated-heading-box {
        padding: 12px 20px;
    }
    
    .hulk-heading-inner {
        padding: 40px 30px;
    }
    
    .hulk-animated-heading {
        font-size: 28px;
        line-height: 32px;
        letter-spacing: -0.2px;
    }
}

@media (max-width: 480px) {
    .hulk-animated-heading-box {
        padding: 10px 15px;
        border-width: 1px;
    }
    
    .hulk-heading-inner {
        padding: 30px 20px;
    }
    
    .hulk-animated-heading {
        font-size: 22px;
        line-height: 28px;
        letter-spacing: 0px;
    }
}

/* ========================================
   Additional Hover Effect (Optional)
======================================== */

.hulk-animated-heading-box:hover {
    border-color: #ffbf00;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.9);
}

.hulk-animated-heading-box.pulse-glow-active:hover {
    animation-duration: 1s;
}


/* ========================================
   Matches Schedule Widget
======================================== */

/* Container */
.matches-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 25px;
    font-family: 'Cairo', sans-serif;
    text-align: center;
    color: #ffffff;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Title */
.matches-container .title {
    margin: 0 0 25px;
    font-family: 'Cairo', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.28px;
    text-align: center;
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.matches-container .title .emoji {
    display: inline;
    margin: 0 2px;
}

/* Date Slider */
.date-slider {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
}

/* Arrow Buttons */
.date-slider button {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 36px;
    width: 36px;
    height: 36px;
    padding: 8px 10px;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    background: linear-gradient(145deg, #ffd700, #ffed4e);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s;
}

.date-slider button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
}

.date-slider button:focus {
    outline: none;
}

.date-slider button .emoji {
    display: block;
    width: 16px;
    height: 16px;
}

/* Dates Wrapper */
.dates-wrapper {
    display: flex;
    flex-direction: row;
    gap: 8px;
    max-width: calc(100% - 80px);
    padding: 5px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
}

.dates-wrapper::-webkit-scrollbar {
    display: none;
}

/* Date Button */
.date-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
    padding: 8px 12px;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.1;
    white-space: nowrap;
    color: #ffffff;
    background: linear-gradient(145deg, #333333, #444444);
    border: 2px solid transparent;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s;
}

.date-button:hover {
    background: linear-gradient(145deg, #555555, #666666);
    transform: translateY(-1px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3);
}

/* Active Date Button */
.date-button.active {
    color: #000000;
    background: linear-gradient(145deg, #ffd700, #ffed4e);
    border-color: #ffd700;
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

/* Date Day */
.date-day {
    margin-bottom: 2px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;
}

.date-button.active .date-day {
    font-size: 20px;
}

/* Date Month */
.date-month {
    font-size: 11px;
    font-weight: 400;
    line-height: 1.1;
    opacity: 0.8;
}

.date-button.active .date-month {
    font-weight: 500;
    opacity: 1;
}

/* Matches List */
.matches-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* League Group */
.league-group {
    margin-bottom: 30px;
}

/* League Title */
.league-title {
    margin-bottom: 20px;
    padding: 15px 20px;
    font-family: 'Cairo', sans-serif;
    font-size: 20.8px;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    color: #ffffff;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

/* Match Card */
.match-card {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    padding: 18px;
    text-align: left;
    color: #ffffff;
    background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.match-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Team */
.team {
    flex: 1;
    display: flex;
    align-items: center;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
}

.team img {
    width: 35px;
    height: 35px;
    margin: 0 8px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Match Info */
.match-info {
    flex: 2;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    color: #ffffff;
}

.match-info small {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    color: #888888;
}

/* ========================================
   Responsive Design
======================================== */

@media (max-width: 1024px) {
    .matches-container {
        max-width: 100%;
        padding: 20px;
    }
    
    .matches-container .title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .league-title {
        font-size: 18px;
        padding: 12px 16px;
    }
    
    .match-card {
        padding: 15px;
        gap: 12px;
    }
    
    .team {
        font-size: 14px;
    }
    
    .team img {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 768px) {
    .matches-container {
        padding: 15px;
        margin: 15px auto;
        border-radius: 12px;
    }
    
    .matches-container .title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .date-slider {
        gap: 10px;
        padding: 8px;
    }
    
    .date-slider button {
        min-width: 32px;
        width: 32px;
        height: 32px;
    }
    
    .dates-wrapper {
        gap: 6px;
    }
    
    .date-button {
        min-width: 50px;
        padding: 6px 10px;
    }
    
    .date-day {
        font-size: 16px;
    }
    
    .date-button.active .date-day {
        font-size: 18px;
    }
    
    .date-month {
        font-size: 10px;
    }
    
    .league-title {
        font-size: 16px;
        padding: 10px 15px;
        margin-bottom: 15px;
    }
    
    .league-group {
        margin-bottom: 20px;
    }
    
    .match-card {
        flex-direction: column;
        padding: 12px;
        gap: 10px;
    }
    
    .team,
    .match-info {
        flex: none;
        width: 100%;
    }
    
    .team {
        font-size: 13px;
        justify-content: center;
    }
    
    .team img {
        width: 28px;
        height: 28px;
        margin: 0 6px;
    }
    
    .match-info {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .matches-container {
        padding: 12px;
        margin: 10px auto;
    }
    
    .matches-container .title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .date-slider {
        gap: 8px;
        padding: 6px;
        margin-bottom: 15px;
    }
    
    .date-slider button {
        min-width: 28px;
        width: 28px;
        height: 28px;
        padding: 6px;
    }
    
    .date-button {
        min-width: 45px;
        padding: 5px 8px;
    }
    
    .date-day {
        font-size: 14px;
    }
    
    .date-button.active .date-day {
        font-size: 16px;
    }
    
    .date-month {
        font-size: 9px;
    }
    
    .league-title {
        font-size: 14px;
        padding: 8px 12px;
        margin-bottom: 12px;
    }
    
    .match-card {
        padding: 10px;
        border-radius: 12px;
    }
    
    .team {
        font-size: 12px;
    }
    
    .team img {
        width: 25px;
        height: 25px;
        margin: 0 5px;
    }
    
    .match-info {
        font-size: 13px;
    }
    
    .match-info small {
        font-size: 11px;
    }
}

/* Loading State */
.matches-list.loading {
    opacity: 0.5;
    pointer-events: none;
}

.matches-list.loading::after {
    content: 'جاري التحميل...';
    display: block;
    margin-top: 20px;
    font-size: 16px;
    color: #ffd700;
    text-align: center;
}
