/* ========================================
   QUOTE CONFIGURATOR - CSS COMPLETO
   File unico per tutto il preventivatore
   ======================================== */

/* === RESET BASE === */
*, *::before, *::after {
    box-sizing: border-box;
}

/* === VARIABLES === */
:root {
    --color-primary: #dc2626;
    --color-primary-dark: #b91c1c;
    --color-primary-light: #fef2f2;
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;
    --color-blue-50: #eff6ff;
    --color-blue-100: #dbeafe;
    --color-blue-200: #bfdbfe;
    --color-blue-500: #3b82f6;
    --color-blue-600: #2563eb;
    --color-blue-800: #1e40af;
    --color-green-50: #f0fdf4;
    --color-green-100: #dcfce7;
    --color-green-200: #bbf7d0;
    --color-green-600: #059669;
    --color-green-800: #166534;
    --color-yellow-50: #fefce8;
    --color-yellow-100: #fef9c3;
    --color-yellow-400: #facc15;
    --color-yellow-600: #ca8a04;
    --color-yellow-700: #a16207;
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}

/* ========================================
   LAYOUT UTILITIES
   ======================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.max-w-7xl { max-width: 80rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; }
.h-full { height: 100%; }

/* Flexbox */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-stretch { align-items: stretch; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

/* Grid */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: 1fr; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* ========================================
   SPACING UTILITIES
   ======================================== */
.m-0 { margin: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-auto { margin-top: auto; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.mr-2 { margin-right: 0.5rem; }

.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-12 { padding: 3rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }

/* ========================================
   TYPOGRAPHY
   ======================================== */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.leading-relaxed { line-height: 1.625; }

/* Text colors */
.text-white { color: #fff; }
.text-gray-400 { color: var(--color-gray-400); }
.text-gray-500 { color: var(--color-gray-500); }
.text-gray-600 { color: var(--color-gray-600); }
.text-gray-700 { color: var(--color-gray-700); }
.text-gray-800 { color: var(--color-gray-800); }
.text-gray-900 { color: var(--color-gray-900); }
.text-red-600 { color: var(--color-primary); }
.text-blue-600 { color: var(--color-blue-600); }
.text-blue-800 { color: var(--color-blue-800); }
.text-green-600 { color: var(--color-green-600); }
.text-green-800 { color: var(--color-green-800); }
.text-yellow-400 { color: var(--color-yellow-400); }
.text-yellow-600 { color: var(--color-yellow-600); }
.text-yellow-700 { color: var(--color-yellow-700); }

/* ========================================
   BACKGROUNDS
   ======================================== */
.bg-white { background-color: #fff; }
.bg-gray-50 { background-color: var(--color-gray-50); }
.bg-gray-100 { background-color: var(--color-gray-100); }
.bg-gray-200 { background-color: var(--color-gray-200); }
.bg-red-50 { background-color: var(--color-primary-light); }
.bg-red-600 { background-color: var(--color-primary); }
.bg-blue-50 { background-color: var(--color-blue-50); }
.bg-blue-100 { background-color: var(--color-blue-100); }
.bg-green-50 { background-color: var(--color-green-50); }
.bg-green-100 { background-color: var(--color-green-100); }
.bg-yellow-50 { background-color: var(--color-yellow-50); }
.bg-yellow-100 { background-color: var(--color-yellow-100); }

/* ========================================
   BORDERS
   ======================================== */
.border { border: 1px solid var(--color-gray-200); }
.border-2 { border-width: 2px; }
.border-t { border-top: 1px solid var(--color-gray-200); }
.border-b { border-bottom: 1px solid var(--color-gray-200); }
.border-l { border-left: 1px solid var(--color-gray-200); }

.border-gray-100 { border-color: var(--color-gray-100); }
.border-gray-200 { border-color: var(--color-gray-200); }
.border-gray-300 { border-color: var(--color-gray-300); }
.border-red-300 { border-color: #fca5a5; }
.border-red-600 { border-color: var(--color-primary); }
.border-blue-200 { border-color: var(--color-blue-200); }
.border-blue-500 { border-color: var(--color-blue-500); }
.border-green-200 { border-color: var(--color-green-200); }
.border-yellow-200 { border-color: #fef08a; }

.rounded { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }

/* ========================================
   SHADOWS
   ======================================== */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

/* ========================================
   DISPLAY & VISIBILITY
   ======================================== */
.block { display: block; }
.inline-block { display: inline-block; }
.hidden { display: none; }
.overflow-hidden { overflow: hidden; }

/* ========================================
   POSITIONING
   ======================================== */
.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.top-1 { top: 0.25rem; }
.top-4 { top: 1rem; }
.right-0 { right: 0; }

/* ========================================
   INTERACTIONS
   ======================================== */
.cursor-pointer { cursor: pointer; }
.select-none { user-select: none; }
.transition-all { transition: all 0.2s ease; }

/* ========================================
   HERO SECTION
   ======================================== */
.product-hero {
    background: #fff;
    border-bottom: 1px solid var(--color-gray-200);
    box-shadow: var(--shadow-sm);
}

.product-hero .hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 1.5rem 1rem;
}

@media (min-width: 1024px) {
    .product-hero .hero-content {
        flex-direction: row;
    }

    .product-hero .hero-image {
        width: 40%;
    }

    .product-hero .hero-info {
        width: 60%;
    }
}

.product-hero .hero-image img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.product-hero .hero-image-placeholder {
    background: var(--color-gray-100);
    border-radius: var(--radius-xl);
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-hero .hero-image-placeholder svg {
    width: 6rem;
    height: 6rem;
    color: var(--color-gray-400);
}

.product-hero h1 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 0.75rem;
}

.product-hero .rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.product-hero .rating .stars {
    display: flex;
    color: var(--color-yellow-400);
}

.product-hero .rating .stars svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: currentColor;
}

.product-hero .description {
    color: var(--color-gray-700);
    line-height: 1.625;
    margin-bottom: 0.75rem;
}

.product-hero .features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: auto;
}

.product-hero .feature-badge {
    background: var(--color-green-100);
    color: var(--color-green-800);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: var(--color-gray-500);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--color-gray-700);
}

.breadcrumb .separator {
    margin: 0 0.5rem;
    color: var(--color-gray-400);
}

.breadcrumb .current {
    color: var(--color-gray-900);
    font-weight: 500;
}

/* ========================================
   MODE SELECTOR (Classico/Facilitato)
   ======================================== */
.quote-mode-selector {
    margin-bottom: 1rem;
}

.mode-toggle-compact {
    display: flex;
    gap: 0.5rem;
    width: 100%;
}

.mode-btn {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: #fff;
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    font-family: inherit;
    font-size: 1rem;
}

.mode-btn:hover {
    background: var(--color-gray-50);
    border-color: var(--color-blue-200);
}

.mode-btn.selected {
    background: var(--color-blue-50);
    border: 2px solid var(--color-blue-500);
}

.mode-btn .mode-icon {
    font-size: 1.125rem;
    flex-shrink: 0;
}

.mode-btn .mode-label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-gray-700);
}

.mode-btn.selected .mode-label {
    color: var(--color-blue-600);
}

.mode-btn .mode-desc {
    font-size: 0.75rem;
    color: var(--color-gray-400);
    margin-left: auto;
}

.mode-btn.selected .mode-desc {
    color: var(--color-blue-500);
}

/* ========================================
   CONFIGURATOR SECTIONS
   ======================================== */
.configurator-section,
.quote-module {
    background: #fff;
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.configurator-section-header {
    background: var(--color-gray-200);
    border-bottom: 1px solid var(--color-gray-200);
    padding: 0.75rem 1.5rem;
}

.configurator-section-header h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-gray-800);
}

.configurator-section-content {
    padding: 1.5rem;
}

/* Help trigger */
.help-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.help-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    background: var(--color-gray-100);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-gray-600);
    cursor: pointer;
    transition: all 0.2s;
}

.help-icon:hover {
    background: var(--color-blue-100);
    color: var(--color-blue-600);
}

/* Help section */
.help-section {
    display: none;
    background: #fff;
    padding: 1rem;
    border-top: 1px solid var(--color-gray-200);
    position: relative;
}

.help-section.is-open {
    display: block;
}

.help-close {
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
    font-size: 1.5rem;
    color: var(--color-gray-400);
    cursor: pointer;
    line-height: 1;
}

.help-close:hover {
    color: var(--color-gray-600);
}

/* ========================================
   FORM ELEMENTS
   ======================================== */
label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-gray-700);
    margin-bottom: 0.25rem;
}

select,
input[type="text"],
input[type="number"],
input[type="email"],
textarea {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-gray-700);
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-gray-300);
    border-radius: var(--radius-lg);
    background-color: #fff;
    width: 100%;
    transition: border-color 0.2s, box-shadow 0.2s;
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.25rem;
    padding-right: 2.5rem;
}

select:hover,
input:hover,
textarea:hover {
    border-color: var(--color-gray-400);
}

select:focus,
input:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-blue-500);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Remove number input arrows */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance: textfield;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--color-primary-dark);
}

.btn-secondary {
    background: #fff;
    color: var(--color-gray-700);
    border: 1px solid var(--color-gray-300);
}

.btn-secondary:hover {
    background: var(--color-gray-50);
}

.btn-info {
    background: var(--color-blue-500);
    color: #fff;
}

.btn-info:hover {
    background: var(--color-blue-600);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full,
.w-full {
    width: 100%;
}

/* ========================================
   OPTION CARDS
   ======================================== */
.option-card {
    position: relative;
    padding: 1rem;
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    background: #fff;
    cursor: pointer;
    transition: all 0.2s;
}

.option-card:hover {
    border-color: #fca5a5;
    background: var(--color-primary-light);
}

.option-card.selected,
.option-card input:checked + div {
    border-color: var(--color-primary);
    background: var(--color-primary-light);
}

.option-card input[type="radio"],
.option-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* ========================================
   INFO BOXES
   ======================================== */
.info-box {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
}

.info-box-blue {
    background: var(--color-blue-50);
    border: 1px solid var(--color-blue-200);
    color: var(--color-blue-800);
}

.info-box-green {
    background: var(--color-green-50);
    border: 1px solid var(--color-green-200);
    color: var(--color-green-800);
}

.info-box-yellow {
    background: var(--color-yellow-50);
    border: 1px solid #fef08a;
    color: var(--color-yellow-700);
}

/* ========================================
   PRICING GRID
   ======================================== */
.pricing-grid-wrapper {
    background: #fff;
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.pricing-grid-header {
    background: var(--color-gray-50);
    border-bottom: 1px solid var(--color-gray-200);
    padding: 1rem;
}

.price-grid-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    padding: 0.5rem;
}

.price-grid-cell {
    padding: 0.75rem;
    text-align: center;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-gray-200);
    cursor: pointer;
    transition: all 0.15s;
}

.price-grid-cell:hover {
    border-color: #fca5a5;
    background: rgba(254, 242, 242, 0.5);
}

.price-grid-cell.selected {
    border-color: var(--color-primary);
    background: var(--color-primary-light);
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.2);
}

.price-grid-cell .price-amount {
    display: block;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--color-gray-900);
}

.price-grid-cell.selected .price-amount {
    color: var(--color-primary);
}

.price-grid-cell .price-unit {
    display: block;
    font-size: 0.75rem;
    color: var(--color-gray-500);
    margin-top: 0.25rem;
}

/* ========================================
   SUMMARY SIDEBAR
   ======================================== */
.quote-summary {
    background: #fff;
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.summary-header {
    background: var(--color-gray-50);
    border-bottom: 1px solid var(--color-gray-200);
    padding: 1rem 1.5rem;
}

.summary-header h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

/* Timing cards */
.timing-card {
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 0.5rem;
}

.timing-card:hover {
    border-color: #fca5a5;
}

.timing-card.selected {
    border-color: var(--color-primary);
    background: var(--color-primary-light);
}

.timing-card .timing-label {
    font-weight: 600;
    color: var(--color-gray-700);
}

.timing-card .timing-date {
    font-size: 0.875rem;
    color: var(--color-gray-500);
}

.timing-card .timing-price {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-gray-900);
}

.timing-card.selected .timing-price {
    color: var(--color-primary);
}

/* Price display */
.price-main {
    background: var(--color-primary);
    color: #fff;
    padding: 1.5rem;
    text-align: center;
}

.price-main .price-value {
    font-size: 2.5rem;
    font-weight: 700;
}

.price-main .price-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

.price-details {
    padding: 1rem 1.5rem;
    background: var(--color-primary-light);
}

.price-details .price-row {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0;
    font-size: 0.875rem;
}

/* ========================================
   BADGES
   ======================================== */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
}

.badge-blue {
    background: var(--color-blue-100);
    color: var(--color-blue-800);
}

.badge-green {
    background: var(--color-green-100);
    color: var(--color-green-800);
}

.badge-yellow {
    background: var(--color-yellow-100);
    color: var(--color-yellow-700);
}

/* ========================================
   LOADING & ANIMATIONS
   ======================================== */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.loading .price-amount {
    animation: pulse 1.5s ease-in-out infinite;
}

.spinner {
    width: 1rem;
    height: 1rem;
    border: 2px solid var(--color-gray-200);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* ========================================
   RESPONSIVE
   ======================================== */
@media (min-width: 640px) {
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .sm\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .md\:flex-row { flex-direction: row; }
}

@media (min-width: 1024px) {
    .lg\:flex-row { flex-direction: row; }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
    .lg\:w-2\/5 { width: 40%; }
    .lg\:w-3\/5 { width: 60%; }
}

@media (max-width: 640px) {
    .mode-toggle-compact {
        flex-direction: column;
    }

    .price-grid-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   OBJECT FIT & SVG
   ======================================== */
.object-cover { object-fit: cover; }
.fill-current { fill: currentColor; }
.min-h-\[280px\] { min-height: 280px; }
