/**
 * TTBMOnSale Plugin Styles
 * Version: 1.0.0
 */

/* Base badge styles */
.ttbm-sale-badge {
    display: inline-block;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    color: #ffffff;
    background-color: #ff0000;
    border-radius: 3px;
    position: relative;
    z-index: 10;
    line-height: 1.2;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.3s ease-in;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Simple badge style */
.ttbm-sale-badge-simple {
    background-color: #e74c3c;
}

/* Percentage badge style */
.ttbm-sale-badge-percentage {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    font-size: 14px;
    padding: 6px 14px;
}

/* Custom badge style */
.ttbm-sale-badge-custom {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Badge container for content area */
.ttbm-sale-badge-container {
    margin-bottom: 15px;
    display: inline-block;
}

.ttbm-sale-badge-content {
    margin-bottom: 20px;
}

/* Badge displayed after title */
.ttbm-sale-badge-after-title {
    display: block;
    margin-top: 10px;
    margin-bottom: 15px;
}

.ttbm-sale-badge-after-title .ttbm-sale-badge {
    display: inline-block;
}

/* Ensure badge appears below title in single tour pages */
.single-ttbm_tour h1.entry-title + .ttbm-sale-badge-after-title,
.single-ttbm_tour h1.tour-title + .ttbm-sale-badge-after-title,
.single-ttbm_tour .ttbm-sale-badge-after-title {
    clear: both;
}

/* Badge wrapper for thumbnails */
.ttbm-sale-badge-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.ttbm-sale-badge-wrapper .ttbm-sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 20;
}

/* Alternative positioning - top right */
.ttbm-sale-badge-wrapper.badge-top-right .ttbm-sale-badge {
    left: auto;
    right: 10px;
}

/* Alternative positioning - bottom left */
.ttbm-sale-badge-wrapper.badge-bottom-left .ttbm-sale-badge {
    top: auto;
    bottom: 10px;
    left: 10px;
}

/* Alternative positioning - bottom right */
.ttbm-sale-badge-wrapper.badge-bottom-right .ttbm-sale-badge {
    top: auto;
    bottom: 10px;
    left: auto;
    right: 10px;
}

/* Badge styles for listing/archive pages */
.ttbm-tour-list .ttbm-sale-badge,
.archive .ttbm-sale-badge {
    font-size: 11px;
    padding: 4px 10px;
}

/* Badge styles for single tour pages */
.single-ttbm_tour .ttbm-sale-badge {
    font-size: 14px;
    padding: 7px 16px;
    margin-bottom: 10px;
}

/* Circular badge variation */
.ttbm-sale-badge.badge-circle {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    line-height: 1;
}

.ttbm-sale-badge.badge-circle span {
    display: block;
}

/* Ribbon style badge */
.ttbm-sale-badge.badge-ribbon {
    position: absolute;
    top: 20px;
    right: -30px;
    transform: rotate(45deg);
    width: 100px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Hover effects */
.ttbm-sale-badge:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease;
    cursor: default;
}

.ttbm-sale-badge-wrapper .ttbm-sale-badge:hover {
    transform: none;
}

/* Pulse animation for special offers */
.ttbm-sale-badge.badge-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .ttbm-sale-badge {
        font-size: 11px;
        padding: 4px 10px;
    }
    
    .ttbm-sale-badge-percentage {
        font-size: 12px;
        padding: 5px 12px;
    }
    
    .single-ttbm_tour .ttbm-sale-badge {
        font-size: 12px;
        padding: 6px 14px;
    }
    
    .ttbm-sale-badge-wrapper .ttbm-sale-badge {
        top: 5px;
        left: 5px;
    }
    
    .ttbm-sale-badge.badge-circle {
        width: 50px;
        height: 50px;
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .ttbm-sale-badge {
        font-size: 10px;
        padding: 3px 8px;
    }
    
    .ttbm-sale-badge-percentage {
        font-size: 11px;
        padding: 4px 10px;
    }
}

/* Print styles */
@media print {
    .ttbm-sale-badge {
        background-color: #000000 !important;
        color: #ffffff !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}

/* Accessibility improvements */
.ttbm-sale-badge {
    speak: always;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .ttbm-sale-badge {
        border: 2px solid currentColor;
        font-weight: 900;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .ttbm-sale-badge {
        background-color: #ff4444;
        color: #ffffff;
    }
    
    .ttbm-sale-badge-percentage {
        background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    }
}

/* RTL support */
.rtl .ttbm-sale-badge-wrapper .ttbm-sale-badge {
    left: auto;
    right: 10px;
}

.rtl .ttbm-sale-badge-wrapper.badge-top-right .ttbm-sale-badge {
    right: auto;
    left: 10px;
}

.rtl .ttbm-sale-badge.badge-ribbon {
    right: auto;
    left: -30px;
    transform: rotate(-45deg);
}

/* Integration with popular themes */

/* WooCommerce compatibility */
.woocommerce .ttbm-sale-badge-wrapper img,
.woocommerce-page .ttbm-sale-badge-wrapper img {
    width: 100%;
    height: auto;
}

/* Elementor compatibility */
.elementor-widget .ttbm-sale-badge {
    position: relative !important;
    z-index: 100;
}

/* Gutenberg blocks compatibility */
.wp-block-image .ttbm-sale-badge-wrapper {
    display: block;
}

/* Custom color schemes */
.ttbm-sale-badge.badge-green {
    background-color: #27ae60;
}

.ttbm-sale-badge.badge-blue {
    background-color: #3498db;
}

.ttbm-sale-badge.badge-orange {
    background-color: #e67e22;
}

.ttbm-sale-badge.badge-purple {
    background-color: #9b59b6;
}

.ttbm-sale-badge.badge-black {
    background-color: #2c3e50;
}

.ttbm-sale-badge.badge-gold {
    background: linear-gradient(135deg, #f9ca24 0%, #f0932b 100%);
    color: #2c3e50;
}
