/**
 * Frontend Styles for Product Order by Texas Technology Group
 */

/* Recommended Badge for Products */
.woocommerce .ttg-recommended-badge {
    display: inline-block;
    background: linear-gradient(135deg, #0073aa, #005a87);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 8px;
    position: relative;
    top: -1px;
}

.woocommerce .ttg-recommended-badge::before {
    content: '★';
    margin-right: 3px;
}

/* High Priority Product Highlighting */
.woocommerce .product.ttg-priority-high {
    position: relative;
}

.woocommerce .product.ttg-priority-high::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0073aa, #00a0d2);
    z-index: 1;
}

/* Order by Dropdown Enhancement */
.woocommerce .woocommerce-ordering select {
    position: relative;
}

.woocommerce .woocommerce-ordering select option[value="recommended"] {
    font-weight: 600;
}

/* Product Grid Enhancements for Ordered Products */
.woocommerce ul.products li.product.ttg-ordered {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.woocommerce ul.products li.product.ttg-ordered:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 115, 170, 0.15);
}

/* Priority Indicators */
.ttg-priority-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    z-index: 2;
}

.ttg-priority-indicator.priority-10 {
    background: #d63638;
}

.ttg-priority-indicator.priority-9 {
    background: #f56e28;
}

.ttg-priority-indicator.priority-8 {
    background: #f6b323;
}

.ttg-priority-indicator.priority-7 {
    background: #0073aa;
}

.ttg-priority-indicator.priority-6 {
    background: #00a0d2;
}

.ttg-priority-indicator.priority-5 {
    background: #7ad03a;
}

.ttg-priority-indicator.priority-4,
.ttg-priority-indicator.priority-3,
.ttg-priority-indicator.priority-2,
.ttg-priority-indicator.priority-1 {
    background: #8c8f94;
}

/* Recommended Products Section */
.ttg-recommended-section {
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #0073aa;
}

.ttg-recommended-section h2 {
    margin-top: 0;
    color: #0073aa;
    font-size: 24px;
}

.ttg-recommended-section .products {
    margin-top: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .ttg-recommended-badge {
        font-size: 10px;
        padding: 2px 6px;
        margin-left: 4px;
    }
    
    .ttg-priority-indicator {
        width: 20px;
        height: 20px;
        font-size: 9px;
        top: 5px;
        right: 5px;
    }
    
    .ttg-recommended-section {
        margin: 20px 0;
        padding: 15px;
    }
    
    .ttg-recommended-section h2 {
        font-size: 20px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .ttg-recommended-section {
        background: #1e1e1e;
        color: #e0e0e0;
    }
    
    .ttg-recommended-badge {
        background: linear-gradient(135deg, #00a0d2, #0073aa);
    }
}

/* Print Styles */
@media print {
    .ttg-recommended-badge,
    .ttg-priority-indicator {
        display: none;
    }
}