/* Modal Base Styles */
.ovp-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    padding: 20px;
    animation: ovpFadeIn 0.3s ease;
}

.ovp-modal-container {
    background: white;
    border-radius: 16px;
    max-width: 95%;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: ovpSlideUp 0.4s ease;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .ovp-modal-container {
        max-width: 600px;
    }
}

@media (min-width: 1024px) {
    .ovp-modal-container {
        max-width: 700px;
    }
}

/* Header */
.ovp-modal-header {
    background: linear-gradient(135deg, #8B0000 0%, #B22222 100%);
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
}

.ovp-modal-header h2 {
    margin: 0;
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 700;
    line-height: 1.3;
}

.ovp-modal-header .ovp-event-badge {
    display: inline-block;
    background: #FFD700;
    color: #8B0000;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Content */
.ovp-modal-content {
    padding: 25px;
    overflow-y: auto;
    flex: 1;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
}

.ovp-modal-content::-webkit-scrollbar {
    width: 6px;
}

.ovp-modal-content::-webkit-scrollbar-track {
    background: transparent;
}

.ovp-modal-content::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

/* Offer Details */
.ovp-offer-highlight {
    background: linear-gradient(135deg, #FFF8E1 0%, #FFECB3 100%);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    border-left: 5px solid #FF9800;
}

.ovp-offer-highlight h3 {
    color: #D32F2F;
    margin: 0 0 10px 0;
    font-size: clamp(18px, 3vw, 22px);
}

.ovp-offer-highlight p {
    margin: 0;
    font-size: clamp(14px, 2.5vw, 16px);
    line-height: 1.5;
}

/* Coupon Section */
.ovp-coupon-section {
    background: #F5F5F5;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    text-align: center;
}

.ovp-coupon-code {
    font-size: clamp(24px, 5vw, 32px);
    font-weight: 800;
    letter-spacing: 2px;
    color: #8B0000;
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    border: 2px dashed #8B0000;
    margin: 15px 0;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: all;
}

.ovp-coupon-code:hover {
    background: #FFF8E1;
    transform: scale(1.02);
}

.ovp-coupon-code.copied {
    background: #E8F5E9;
    border-color: #4CAF50;
    color: #2E7D32;
}

.ovp-coupon-hint {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

/* Products Grid */
.ovp-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

@media (max-width: 480px) {
    .ovp-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 12px;
    }
}

.ovp-product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.ovp-product-card:hover {
    transform: translateY(-5px);
}

.ovp-product-image {
    height: 120px;
    overflow: hidden;
}

.ovp-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ovp-product-info {
    padding: 12px;
    text-align: center;
}

.ovp-product-name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 1.3;
    height: 36px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ovp-product-price {
    color: #8B0000;
    font-weight: 700;
    font-size: 16px;
}

.ovp-product-price del {
    color: #999;
    font-size: 13px;
    margin-right: 5px;
}

/* 4+2 Offer Badge */
.ovp-4plus2-badge {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    margin: 10px 0;
    font-size: clamp(14px, 2.5vw, 16px);
}

.ovp-4plus2-badge i {
    font-size: 18px;
}

/* Action Buttons */
.ovp-modal-actions {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #F9F9F9;
    border-top: 1px solid #eee;
}

.ovp-modal-actions button {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: clamp(15px, 3vw, 17px);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
}

.ovp-btn-order {
    background: linear-gradient(135deg, #8B0000 0%, #D32F2F 100%);
    color: white;
}

.ovp-btn-order:hover {
    background: linear-gradient(135deg, #6B0000 0%, #B22222 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
}

.ovp-btn-close {
    background: #F5F5F5;
    color: #666;
    border: 2px solid #ddd;
}

.ovp-btn-close:hover {
    background: #EAEAEA;
    border-color: #ccc;
}

/* Timer */
.ovp-timer {
    background: #FFF3E0;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    margin: 20px 0;
    border: 1px solid #FFCC80;
}

.ovp-timer h4 {
    margin: 0 0 10px 0;
    color: #E65100;
    font-size: clamp(16px, 3vw, 18px);
}

.ovp-timer-display {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 700;
    color: #D32F2F;
}

.ovp-timer-unit {
    background: white;
    padding: 8px 12px;
    border-radius: 8px;
    min-width: 50px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.ovp-timer-label {
    font-size: 11px;
    color: #666;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animations */
@keyframes ovpFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

.ovp-pulse {
    animation: ovpPulse 2s infinite;
}

/* Landscape Optimization */
@media (orientation: landscape) and (max-height: 600px) {
    .ovp-modal-container {
        max-height: 85vh;
        max-width: 90%;
    }
    
    .ovp-modal-content {
        padding: 15px;
    }
    
    .ovp-modal-actions {
        padding: 15px;
    }
    
    .ovp-modal-actions button {
        padding: 12px 20px;
        min-height: 48px;
    }
}

/* iPhone Notch Safe Area */
@supports (padding: max(0px)) {
    .ovp-modal-container {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
        padding-bottom: max(20px, env(safe-area-inset-bottom));
    }
}

/* Loading State */
.ovp-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.ovp-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #8B0000;
    border-radius: 50%;
    animation: ovpSpin 1s linear infinite;
}

@keyframes ovpSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* ============================================
   TIMER STYLES
   ============================================ */

.ovp-timer-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    padding: 20px;
    color: white;
    margin-bottom: 25px;
}

.ovp-timer-countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.ovp-timer-unit {
    text-align: center;
    min-width: 60px;
}

.ovp-timer-value {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.ovp-timer-label {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 5px;
}

.ovp-timer-separator {
    font-size: 1.8rem;
    font-weight: bold;
    margin-top: -10px;
    opacity: 0.7;
}

.ovp-timer-expired {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 10px;
}

/* ============================================
   MODAL CLOSE IMPROVEMENTS
   ============================================ */

.ovp-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    border: none;
    background: #f8f9fa;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.ovp-modal-close:hover {
    background: #e9ecef;
    transform: rotate(90deg);
}

/* ============================================
   QUANTITY VALIDATION STYLES
   ============================================ */

.ovp-quantity-error {
    color: #e53e3e;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.ovp-invalid {
    border-color: #e53e3e !important;
    background-color: #fff5f5 !important;
}

/* ============================================
   LOADING SPINNER
   ============================================ */

.ovp-loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: ovp-spin 0.8s linear infinite;
    margin-right: 10px;
}

@keyframes ovp-spin {
    to { transform: rotate(360deg); }
}
/* Numërimi Mbrapsht - Stilet e përmirësuara */
.ovp-offer-countdown {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ovp-offer-countdown h3 {
    margin: 0 0 15px 0;
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ovp-countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.time-unit {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 15px;
    border-radius: 8px;
    min-width: 70px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.time-unit .number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.time-unit .label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    margin-top: 5px;
    opacity: 0.9;
    letter-spacing: 1px;
}

.countdown-note {
    margin: 10px 0 0 0;
    font-size: 14px;
    opacity: 0.9;
    font-style: italic;
}

/* Animacion për ndryshimin e numrave */
@keyframes countdownPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.time-unit.changing .number {
    animation: countdownPulse 0.5s ease;
}

/* Kur oferta ka skaduar */
.ovp-countdown-timer .expired {
    color: #ff6b6b;
    font-weight: bold;
    font-size: 18px;
    padding: 15px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 8px;
    display: inline-block;
}

/* Për mobile */
@media (max-width: 768px) {
    .time-unit {
        min-width: 60px;
        padding: 8px 10px;
    }
    
    .time-unit .number {
        font-size: 24px;
    }
    
    .ovp-countdown-timer {
        gap: 10px;
    }
}
/* ============================================
   RESPONSIVE TIMER
   ============================================ */

@media (max-width: 768px) {
    .ovp-timer-countdown {
        gap: 10px;
    }
    
    .ovp-timer-unit {
        min-width: 50px;
    }
    
    .ovp-timer-value {
        font-size: 1.8rem;
    }
    
    .ovp-timer-separator {
        font-size: 1.5rem;
        margin-top: -8px;
    }
}
/* ============================================
 * FIX PËR MOBILE - MENU & SHPORTË
 * ============================================ */

@media (max-width: 768px) {
    /* Sigurohu që modal-i nuk mbulon elementet e rëndësishme */
    .ovp-modal-overlay {
        z-index: 9998 !important; /* Më i ulët se menu dhe shporta */
    }
    
    .ovp-modal-container {
        z-index: 9999 !important;
        max-height: 85vh !important;
        overflow-y: auto !important;
        margin-top: 50px !important; /* Lë vend për menunë */
    }
    
    /* Nëse keni një banner/offer të lartë në mobile */
    .ovp-mobile-offer-banner {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 100 !important; /* Më i ulët se menu */
        max-height: 60px !important;
        overflow: hidden !important;
    }
    
    /* Rregullo pozicionimin e butonave në modal */
    .ovp-modal-actions {
        position: sticky !important;
        bottom: 0 !important;
        background: white !important;
        padding: 15px !important;
        border-top: 1px solid #ddd !important;
        z-index: 1000 !important;
    }
    
    /* Sigurohu që header-i (menu) është gjithmonë sipër */
    .site-header,
    .header-wrapper,
    .main-header,
    .mobile-header,
    nav.navigation,
    .woocommerce .cart-contents,
    .header-cart {
        z-index: 10000 !important;
        position: relative !important;
    }
    
    /* Për menu të fiksuar (sticky header) */
    .sticky-header,
    .fixed-header,
    .is-sticky {
        z-index: 10001 !important !important;
    }
    
    /* Nëse keni shportë në mobile */
    .mobile-cart,
    .cart-icon-mobile,
    .header-cart {
        z-index: 10002 !important;
    }
}

/* ============================================
 * FIX PËR MODAL NË MOBILE - BUTONAT E DUKEJ
 * ============================================ */

@media (max-width: 480px) {
    .ovp-modal-container {
        width: 95% !important;
        margin: 10px auto !important;
        padding-bottom: 80px !important; /* Lë vend për butonat në fund */
    }
    
    .ovp-modal-body {
        max-height: 60vh !important;
        overflow-y: auto !important;
        padding-bottom: 20px !important;
    }
    
    /* Sigurohu që butonat janë gjithmonë të dukshëm */
    .ovp-add-to-cart,
    .ovp-add-offer-to-cart,
    .ovp-modal-close-btn {
        min-height: 44px !important; /* Madhësi e mirë për touch */
        font-size: 16px !important; /* Madhësi e lexueshme */
        padding: 12px 20px !important;
        margin: 5px !important;
    }
    
    /* Krijo një container të veçantë për butonat e fundit */
    .ovp-mobile-sticky-buttons {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important;
        background: white !important;
        padding: 10px !important;
        border-top: 2px solid #f0f0f0 !important;
        display: flex !important;
        gap: 10px !important;
        z-index: 10003 !important;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1) !important;
    }
}

/* ============================================
 * PREVENT BODY SCROLLING KUR MODAL ËSHTË HAPUR
 * ============================================ */

body.ovp-modal-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
}

/* Në mobile, më mirë përdor padding për të shmangur kërcim */
@media (max-width: 768px) {
    body.ovp-modal-open {
        position: relative !important;
        height: 100vh !important;
    }
}
/* 
 * Modal CSS për Ofertë Verë Pro
 * Version: 1.1.4
 */

/* Overlay */
#ovp-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9998; /* Nën menu por mbi content */
    display: none;
    backdrop-filter: blur(3px);
}

/* Admin bar fix */
.admin-bar #ovp-modal-overlay {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar #ovp-modal-overlay {
        top: 46px;
    }
}

/* Modal Container */
#ovp-modal-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999; /* Mbi overlay por nën menu */
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none; /* Lër klikimet të kalojnë në overlay */
}

/* Modal */
#ovp-modal {
    position: relative;
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    pointer-events: auto; /* Aktivizo klikimet brenda modalit */
    margin: 20px;
    animation: ovpModalSlideIn 0.3s ease-out;
}

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

/* Modal Header */
.ovp-modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ovp-modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ovp-modal-header .ovp-icon {
    font-size: 1.8rem;
}

.ovp-close-modal {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    line-height: 1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.ovp-close-modal:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Modal Body */
.ovp-modal-body {
    padding: 25px;
}

/* Offers Slider */
.ovp-offers-slider {
    position: relative;
    min-height: 300px;
}

.ovp-offer-slide {
    display: none;
}

.ovp-offer-slide.active {
    display: block;
    animation: ovpSlideFade 0.5s ease;
}

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

.ovp-offer-content h4 {
    margin-top: 0;
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.ovp-offer-image {
    margin: 15px 0;
    text-align: center;
}

.ovp-offer-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ovp-offer-description {
    color: #666;
    line-height: 1.6;
    margin: 15px 0;
    font-size: 1rem;
}

/* Countdown */
.ovp-countdown {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    text-align: center;
    border: 2px solid #e9ecef;
}

.ovp-countdown-title {
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.ovp-countdown-timer {
    font-family: 'Courier New', monospace;
    font-size: 1.8rem;
    font-weight: bold;
    color: #dc3545;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.ovp-countdown-timer span {
    background: white;
    padding: 5px 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    min-width: 45px;
    display: inline-block;
    text-align: center;
}

/* Coupon Section */
.ovp-coupon-section {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 10px;
    padding: 20px;
    color: white;
    margin: 20px 0;
    text-align: center;
}

.ovp-coupon-label {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.ovp-coupon-code {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.ovp-coupon-code code {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 1px;
    flex: 1;
    min-width: 200px;
}

.ovp-copy-coupon,
.ovp-apply-coupon {
    background: white;
    color: #28a745;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.ovp-copy-coupon:hover,
.ovp-apply-coupon:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ovp-apply-coupon {
    width: 100%;
    margin-top: 10px;
}

/* Offer Actions */
.ovp-offer-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.ovp-view-offer-btn,
.ovp-shop-btn {
    flex: 1;
    min-width: 150px;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.ovp-view-offer-btn {
    background: #007bff;
    color: white;
}

.ovp-view-offer-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.ovp-shop-btn {
    background: #6c757d;
    color: white;
}

.ovp-shop-btn:hover {
    background: #545b62;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 117, 125, 0.3);
}

/* Slider Controls */
.ovp-slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.ovp-prev-slide,
.ovp-next-slide {
    background: #667eea;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.ovp-prev-slide:hover,
.ovp-next-slide:hover {
    background: #764ba2;
    transform: scale(1.1);
}

.ovp-slider-dots {
    display: flex;
    gap: 10px;
}

.ovp-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.ovp-slider-dot.active {
    background: #667eea;
    transform: scale(1.2);
}

/* Modal Footer */
.ovp-modal-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

.ovp-dont-show-again {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    color: #666;
}

.ovp-dont-show-again input {
    width: 18px;
    height: 18px;
}

/* Modal Button (Shortcode) */
.ovp-modal-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.ovp-modal-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    #ovp-modal {
        width: 95%;
        margin: 10px;
        max-height: 90vh;
    }
    
    .ovp-modal-header h3 {
        font-size: 1.2rem;
    }
    
    .ovp-offer-content h4 {
        font-size: 1.1rem;
    }
    
    .ovp-countdown-timer {
        font-size: 1.4rem;
    }
    
    .ovp-countdown-timer span {
        min-width: 35px;
        padding: 3px 6px;
    }
    
    .ovp-coupon-code {
        flex-direction: column;
    }
    
    .ovp-coupon-code code {
        min-width: auto;
        width: 100%;
    }
    
    .ovp-offer-actions {
        flex-direction: column;
    }
    
    .ovp-view-offer-btn,
    .ovp-shop-btn {
        width: 100%;
    }
    
    .ovp-close-modal {
        width: 35px;
        height: 35px;
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .ovp-modal-body,
    .ovp-modal-footer {
        padding: 15px;
    }
    
    .ovp-countdown-timer {
        font-size: 1.2rem;
    }
    
    .ovp-coupon-section {
        padding: 15px;
    }
    
    .ovp-coupon-code code {
        font-size: 1rem;
        padding: 10px;
    }
}

/* Print Styles */
@media print {
    #ovp-modal-overlay,
    #ovp-modal-container {
        display: none !important;
    }
}
/* ============================================
 * FIX PËR HEADER DHE MENU SPECIFIKE
 * ============================================ */

/* Nëse keni një header me lartësi të madhe në mobile */
@media (max-width: 768px) {
    /* Rregullo padding-in e trupit kur header-i është sticky */
    body {
        padding-top: env(safe-area-inset-top, 0px) !important;
    }
    
    /* Për header të zakonshëm */
    #masthead,
    #header,
    .site-header {
        position: fixed !important;
        top: 0 !important;
        width: 100% !important;
        z-index: 10000 !important;
    }
    
    /* Rregullo content-in kryesor */
    #main,
    .site-content,
    .content-area {
        padding-top: 80px !important; /* Lartësia e header-it */
    }
    
    /* Modal duhet të jetë nën header */
    .ovp-modal-overlay {
        top: 0 !important;
        padding-top: 80px !important; /* Lë vend për header */
    }
}