/* Modern Lastik Eklentisi - Public Styles (Complete) */
:root {
    --iel-primary: #2563eb;
    --iel-primary-dark: #1d4ed8;
    --iel-secondary: #475569;
    --iel-accent: #f59e0b;
    --iel-success: #10b981;
    --iel-danger: #ef4444;
    --iel-bg-light: #f8fafc;
    --iel-border: #e2e8f0;
    --iel-text-main: #1e293b;
    --iel-text-muted: #64748b;
    --iel-radius: 12px;
    --iel-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --iel-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --iel-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Reset for our plugin containers */
.iel-hero-slider,
.iel-search-form-container,
.iel-tire-results-container,
.iel-single-tire-page-wrapper {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    box-sizing: border-box;
}

.iel-single-tire-page-wrapper * {
    box-sizing: border-box;
}

/* =========================================
   1. HERO SLIDER & SEARCH FORM (Listeleme Sayfası)
   ========================================= */

/* Hero Slider */
.iel-hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    /* Taller hero for impact */
    background: #0f172a;
    overflow: hidden;
    margin-bottom: -100px;
    /* More overlap */
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    z-index: 1;
}

.iel-hero-slider::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(1200px 600px at 20% 20%, rgba(59, 130, 246, 0.35), transparent 60%),
        radial-gradient(900px 500px at 80% 10%, rgba(14, 165, 233, 0.25), transparent 60%),
        radial-gradient(800px 400px at 50% 90%, rgba(99, 102, 241, 0.25), transparent 60%);
    z-index: 2;
    pointer-events: none;
}

.iel-slider-item {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 10s ease;
    transform: scale(1.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.iel-slider-item.active {
    opacity: 1;
    transform: scale(1);
}

.iel-slider-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.35), rgba(2, 6, 23, 0.85));
    backdrop-filter: blur(1px);
}

.iel-slider-item p {
    position: relative;
    z-index: 10;
    color: white;
    font-size: 3.6rem;
    font-weight: 800;
    letter-spacing: -2px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
    max-width: 1000px;
    text-align: center;
    padding: 20px;
    line-height: 1.1;
    transform: translateY(30px);
    opacity: 0;
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.iel-slider-item.active p {
    transform: translateY(0);
    opacity: 1;
}

.iel-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.iel-slider-nav:hover {
    background: white;
    color: #0f172a;
    transform: translateY(-50%) scale(1.1);
}

.iel-slider-nav.prev {
    left: 30px;
}

.iel-slider-nav.next {
    right: 30px;
}

/* Search Form - Premium Redesign */
.iel-search-form-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 70px;
    padding: 36px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 28px;
    box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.25);
    z-index: 30;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.iel-search-type-tabs {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.iel-search-type-tabs .iel-tab-btn {
    white-space: nowrap;
}

.iel-tire-search-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    align-items: end;
}

.iel-search-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.iel-form-group {
    position: relative;
    transition: transform 0.2s ease;
}

.iel-form-group:focus-within {
    transform: translateY(-2px);
}

.iel-form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--iel-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.iel-form-group label .dashicons {
    color: var(--iel-primary);
    background: rgba(37, 99, 235, 0.1);
    padding: 4px;
    border-radius: 6px;
    width: 24px;
    height: 24px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iel-form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    /* Smooth corners */
    background-color: #fff;
    font-size: 1rem;
    color: var(--iel-text-main);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.iel-form-group select:hover {
    border-color: #cbd5e1;
    background-color: #f8fafc;
}

.iel-form-group select:focus {
    background-color: white;
    border-color: var(--iel-primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1), 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    outline: none;
}

/* Search Button - Standout */
.iel-search-button {
    height: 56px;
    background: linear-gradient(135deg, var(--iel-primary) 0%, #1e40af 100%);
    color: white;
    border: none;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.iel-search-button {
    flex: 1;
    min-width: 180px;
    font-size: 1.05rem;
    letter-spacing: 0.6px;
}

.iel-search-clear {
    height: 52px;
    padding: 0 18px;
    border-radius: 14px;
    border: 2px dashed rgba(15, 23, 42, 0.2);
    background: rgba(15, 23, 42, 0.03);
    color: #0f172a;
    font-weight: 800;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.iel-search-clear:hover {
    border-style: solid;
    border-color: rgba(59, 130, 246, 0.5);
    color: #1d4ed8;
    background: rgba(59, 130, 246, 0.08);
    transform: translateY(-1px);
}

.iel-search-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.iel-search-button:hover::after {
    left: 100%;
}

.iel-search-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.5);
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.iel-search-button .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

/* Responsive Search Form */
@media (max-width: 768px) {
    .iel-hero-slider {
        height: 400px;
        clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    }

    .iel-slider-item p {
        font-size: 2.5rem;
    }

    .iel-search-form-container {
        padding: 24px;
        margin-top: -60px;
        border-radius: 20px;
        margin-left: 15px;
        margin-right: 15px;
    }

    .iel-tire-search-form {
        grid-template-columns: 1fr;
    }

    .iel-search-actions {
        flex-direction: column;
    }

    .iel-search-button,
    .iel-search-clear {
        width: 100%;
    }
}

/* =========================================
   2. PRODUCT RESULTS GRID - PREMIUM CARD DESIGN
   ========================================= */
.iel-tire-results-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}

.iel-tire-card-link {
    text-decoration: none !important;
    color: inherit !important;
    display: block;
    height: 100%;
}

.iel-tire-card {
    background: white;
    border-radius: 20px;
    border: none;
    /* Removed border */
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.iel-tire-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Badges */
.iel-card-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
}

.iel-card-badge {
    background: rgba(255, 255, 255, 0.9);
    color: var(--iel-text-main);
    padding: 6px 12px;
    border-radius: 30px;
    /* Pill shape */
    font-size: 0.7rem;
    font-weight: 800;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    text-transform: uppercase;
}

.iel-card-badge.season-yaz {
    background: #fff7ed;
    color: #c2410c;
}

.iel-card-badge.season-kis {
    background: #eff6ff;
    color: #1d4ed8;
}

.iel-card-badge.season-4mevsim {
    background: #ecfdf5;
    color: #047857;
}

.iel-card-badge.iel-badge-set {
    background: #7e22ce;
    /* Purple */
    color: #fff;
}

.iel-card-badge.iel-badge-pair {
    background: #0ea5e9;
    /* Sky Blue */
    color: #fff;
}

/* Image */
.iel-tire-image-container {
    position: relative;
    padding-top: 75%;
    background: radial-gradient(circle at center, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

.iel-tire-image {
    position: absolute;
    inset: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iel-tire-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
}

.iel-tire-card:hover .iel-tire-image img {
    transform: scale(1.12) rotate(-2deg);
}

/* Details */
.iel-tire-details {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.iel-card-brand {
    font-size: 0.75rem;
    color: var(--iel-primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 4px;
}

.iel-tire-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--iel-text-main);
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.iel-card-model {
    font-size: 0.9rem;
    color: var(--iel-text-muted);
    font-weight: 500;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Specs */
.iel-card-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.iel-spec-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--iel-secondary);
    background: #f1f5f9;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 600;
}

.iel-spec-item i {
    color: var(--iel-text-muted);
    font-size: 14px;
}

/* Footer */
.iel-card-footer {
    padding: 16px 20px;
    background: white;
    border-top: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    /* Center vertically */
    justify-content: space-between;
    gap: 12px;
}

.iel-price-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.iel-price-value {
    font-size: 1.4rem;
    /* Slightly reduced for better fit */
    font-weight: 900;
    color: var(--iel-text-main);
    line-height: 1.1;
    display: inline-flex;
    align-items: center;
    background: var(--iel-primary);
    /* Primary Brand Color */
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    margin-top: 2px;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
}

.iel-price-currency {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-left: 3px;
    margin-top: 3px;
}

/* Unit Price */
.iel-unit-price {
    font-size: 0.75rem;
    /* Smaller, cleaner */
    margin-top: 0;
    margin-bottom: 2px;
    color: #111827;
    /* Black/Dark Gray */
    font-weight: 600;
}

/* Single Not Sold Warning */
/* Single Not Sold Warning */
.iel-single-not-sold {
    font-size: 0.75rem;
    color: #ef4444 !important;
    /* Force red */
    font-weight: 700;
    margin-top: 4px;
    letter-spacing: -0.01em;
    text-align: right;
    display: block !important;
    /* Ensure visibility */
    width: 100%;
}

/* Quantity Box Container */
.iel-quantity-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.iel-quantity-badge {
    background: #f1f5f9;
    color: var(--iel-secondary);
    padding: 8px 14px;
    /* Larger padding */
    border-radius: 8px;
    font-size: 1rem;
    /* Larger font */
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    height: fit-content;
}

/* =========================================
   3. SINGLE TIRE PAGE (Detay Sayfası)
   ========================================= */

.iel-single-tire-page-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    background: white;
    padding: 0;
    border-radius: 0;
}

.iel-single-tire-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

@media (max-width: 900px) {
    .iel-single-tire-card {
        grid-template-columns: 1fr;
    }
}

/* Gallery Section */
.iel-gallery-section {
    position: relative;
}

.iel-main-image-wrapper {
    border-radius: var(--iel-radius);
    overflow: hidden;
    border: 1px solid var(--iel-border);
    margin-bottom: 15px;
    position: relative;
    cursor: zoom-in;
    background: #fff;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iel-main-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.iel-zoom-hint {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.iel-main-image-wrapper:hover .iel-zoom-hint {
    opacity: 1;
}

.iel-thumbnails-grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.iel-thumb-item {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    overflow: hidden;
    opacity: 0.7;
    transition: all 0.2s;
    background: #f1f5f9;
}

.iel-thumb-item.active,
.iel-thumb-item:hover {
    border-color: var(--iel-primary);
    opacity: 1;
}

.iel-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info Section */
.iel-info-section {
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.iel-header-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.iel-badge {
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.iel-badge-brand {
    background: var(--iel-text-main);
    color: white;
}

.iel-badge-season {
    background: #e0f2fe;
    color: #0369a1;
}

.iel-product-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 20px 0;
    color: var(--iel-text-main);
}

.iel-price-block {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--iel-primary);
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
}

.iel-currency {
    font-size: 1.2rem;
    margin-top: 8px;
    margin-right: 4px;
}

/* Specs Grid */
.iel-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.iel-spec-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--iel-bg-light);
    border-radius: 10px;
    transition: transform 0.2s;
}

.iel-spec-card:hover {
    transform: translateY(-2px);
    background: #f1f5f9;
}

.iel-spec-card .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
    color: var(--iel-text-muted);
}

.iel-spec-card .label {
    display: block;
    font-size: 11px;
    color: var(--iel-text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.iel-spec-card .value {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--iel-text-main);
}

/* Notes */
.iel-notes-box {
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--iel-border);
    border-radius: 10px;
}

.iel-notes-box h3 {
    margin-top: 0;
    font-size: 16px;
    margin-bottom: 10px;
}

.iel-notes-box p {
    color: var(--iel-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Minimalist Action Area */
.iel-action-area {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--iel-border);
}

.iel-whatsapp-icon-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 6px rgba(37, 211, 102, 0.3);
}

.iel-whatsapp-icon-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 15px rgba(37, 211, 102, 0.4);
}

.iel-whatsapp-icon-btn svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.iel-whatsapp-label {
    font-weight: 600;
    color: var(--iel-text-main);
    font-size: 14px;
}


/* Lightbox */
.iel-lightbox {
    display: none;
    position: fixed;
    z-index: 99999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.iel-lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    animation: iel-zoom 0.3s;
}

@keyframes iel-zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.iel-close-lightbox {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.iel-close-lightbox:hover,
.iel-close-lightbox:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* =========================================
   4. PRODUCT LIST TABLE (Shortcode)
   ========================================= */
.iel-table-responsive {
    overflow-x: auto;
    margin: 20px 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.iel-product-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-size: 0.9rem;
}

.iel-product-table th,
.iel-product-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.iel-product-table th {
    background: #f8fafc;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.iel-product-table tr:last-child td {
    border-bottom: none;
}

.iel-product-table tr:hover {
    background: #f1f5f9;
}

.iel-product-table a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

/* Loading State */
.iel-loading {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px;
    color: var(--iel-text-muted);
    font-weight: 600;
    font-size: 1.1rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.iel-loading .dashicons {
    font-size: 40px;
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
    color: var(--iel-primary);
    animation: iel-spin 1s linear infinite;
}

@keyframes iel-spin {
    100% {
        transform: rotate(360deg);
    }
}

.iel-no-results-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px;
    background: white;
    border-radius: 20px;
    color: var(--iel-text-muted);
    font-size: 1.1rem;
    border: 1px dashed #e2e8f0;
}

/* Unit Price & Single Sold Label */
.iel-unit-price {
    font-size: 0.85rem;
    color: var(--iel-text-muted);
    font-weight: 600;
    margin-top: 4px;
}

.iel-single-not-sold {
    font-size: 0.75rem;
    font-weight: 700;
    color: #b91c1c;
    /* darker red */
    background: #fef2f2;
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid #fca5a5;
    margin-left: auto;
    /* Push to right if flex */
    white-space: nowrap;
    display: none;
    /* Hidden by default in new design, logic handled via image badges */
}
