/* Meal Plan Form V2 - Additional Styles */

/* Choice Buttons Section - COMPACT VERSION */
.customization-section {
    margin-bottom: 0.7rem;
}

.choice-header {
    margin-bottom: 0.6rem;
}
#toggle-advanced{
    padding-left:0px;
}
.choice-header label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--foreground, #1a1a1a);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
#meal-plan-form-v2 .form-content{
    padding-bottom: 80px;
    padding-top: 80px;
}

/* ═══════════════════════════════════════════════════════════
 *  MOBILE: Tighten spacing on step 0 (method selection)
 * ═══════════════════════════════════════════════════════════ */

/* Hide progress bar when empty (before method is chosen) */
#meal-plan-form-v2 .form-progress:empty {
    display: none;
    margin: 0;
}

@media (max-width: 768px) {
    #meal-plan-form-v2 .form-content {
        padding-top: 24px;
        padding-bottom: 40px;
        gap: 1rem;
    }

    #meal-plan-form-v2 .form-intro {
        gap: 0.5rem;
    }

    #meal-plan-form-v2 .form-intro h2 {
        font-size: 1.5rem;
    }

    #meal-plan-form-v2 .form-intro .form-badge {
        padding: 0.35rem 0.75rem;
        font-size: 0.8rem;
    }

    #meal-plan-form-v2 .form-steps {
        min-height: auto;
    }

    #meal-plan-form-v2 .form-step {
        gap: 1rem;
    }

    #meal-plan-form-v2 .step-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.2rem;
    }

    #meal-plan-form-v2 .step-content h3 {
        font-size: 1.1rem;
    }

    #meal-plan-form-v2 .method-options {
        margin-top: 0.5rem;
        gap: 0.75rem;
    }

    #meal-plan-form-v2 .method-option-btn {
        padding: 1rem;
        gap: 0.5rem;
    }
}

.choice-header label i {
    font-size: 0.9rem;
}

.choice-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
}

@media (max-width: 640px) {
    .choice-buttons {
        grid-template-columns: 1fr;
    }
}

.choice-btn {
    padding: 0.6rem 1rem;
    border: 2px solid var(--border, #e5e7eb);
    background: white;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    color: var(--muted-foreground, #6b7280);
}

.choice-btn:hover {
    border-color: var(--primary, #ff6b6b);
    background: var(--primary-light, #fff5f5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.choice-btn.active {
    border-color: var(--primary, #ff6b6b);
    background: var(--primary, #ff6b6b);
    color: white;
}

.choice-btn i {
    font-size: 1rem;
}

.choice-options-container {
    margin-top: 0.6rem;
    padding: 0.8rem;
    background: var(--background-secondary, #f9fafb);
    border-radius: 8px;
    border: 1px solid var(--border, #e5e7eb);
}

.choice-hint {
    margin-bottom: 0.8rem;
    color: var(--muted-foreground, #6b7280);
    font-size: 0.85rem;
}

/* Constraint Grid - COMPACT */
.constraint-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

@media (max-width: 768px) {
    .constraint-grid {
        grid-template-columns: 1fr;
    }
}

.constraint-item {
    background: white;
    border: 1px solid var(--border, #e5e7eb);
    border-radius: 6px;
    padding: 0.6rem;
    transition: all 0.3s ease;
}

.constraint-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.constraint-label {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--foreground, #1a1a1a);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.constraint-label i {
    color: var(--primary, #ff6b6b);
    font-size: 0.85rem;
}

.constraint-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
}

.constraint-btn {
    padding: 0.4rem 0.7rem;
    border: 2px solid var(--border, #e5e7eb);
    background: white;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.constraint-btn i {
    font-size: 0.75rem;
}

.constraint-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.constraint-btn.add-btn {
    border-color: var(--success, #10b981);
    color: var(--success, #10b981);
}

.constraint-btn.add-btn:hover {
    background: var(--success-light, #d1fae5);
}

.constraint-btn.add-btn.active {
    background: var(--success, #10b981);
    color: white;
    border-color: var(--success, #10b981);
}

.constraint-btn.avoid-btn {
    border-color: var(--danger, #ef4444);
    color: var(--danger, #ef4444);
}

.constraint-btn.avoid-btn:hover {
    background: var(--danger-light, #fee2e2);
}

.constraint-btn.avoid-btn.active {
    background: var(--danger, #ef4444);
    color: white;
    border-color: var(--danger, #ef4444);
}

/* Ingredient Reuse Options */
.ingredient-reuse-options {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.radio-option {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.7rem;
    border: 2px solid var(--border, #e5e7eb);
    border-radius: 6px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-option:hover {
    border-color: var(--primary, #ff6b6b);
    background: var(--primary-light, #fff5f5);
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.radio-option input[type="radio"] {
    margin-top: 0.25rem;
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
    accent-color: var(--primary, #ff6b6b);
}

.radio-option input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
    accent-color: var(--primary, #ff6b6b);
    flex-shrink: 0;
}

.radio-option input[type="radio"]:checked ~ .radio-label,
.radio-option input[type="checkbox"]:checked ~ .radio-label {
    color: var(--primary, #ff6b6b);
    font-weight: 600;
}

.radio-label {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.radio-label i {
    margin-right: 0.5rem;
    color: var(--primary, #ff6b6b);
}

.radio-hint {
    font-size: 0.875rem;
    color: var(--muted-foreground, #6b7280);
    margin-top: 0.25rem;
}

/* Price Variation Slider */
.price-variation-slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(to right, 
        var(--success, #10b981) 0%, 
        var(--primary, #ff6b6b) 50%, 
        var(--accent, #8b5cf6) 100%);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.price-variation-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--primary, #ff6b6b);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: all 0.2s ease;
}

.price-variation-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.price-variation-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--primary, #ff6b6b);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: all 0.2s ease;
}

.price-variation-slider::-moz-range-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .constraint-grid {
        grid-template-columns: 1fr;
    }
    
    .constraint-buttons {
        grid-template-columns: 1fr 1fr;
    }
    
    .choice-buttons {
        grid-template-columns: 1fr;
    }
}

/* Animation for sliding containers */
.choice-options-container {
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Enhanced advanced settings for V2 */
.advanced-option {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border, #e5e7eb);
}

.advanced-option:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.option-header label {
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.option-hint {
    font-size: 0.875rem;
    color: var(--muted-foreground, #6b7280);
}

/* Checkbox option styling */
.checkbox-option {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
}

.checkbox-option input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
    accent-color: var(--primary, #ff6b6b);
}

.checkbox-label {
    flex: 1;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-hint {
    display: block;
    font-size: 0.875rem;
    color: var(--muted-foreground, #6b7280);
    margin-top: 0.25rem;
}

/* Loading state */
.loading-shimmer {
    background: linear-gradient(90deg, 
        var(--primary, #ff6b6b) 0%, 
        var(--primary-light, #ff8787) 50%, 
        var(--primary, #ff6b6b) 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Time Slider Styling */
.time-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--border, #e5e7eb);
    outline: none;
    margin: 1rem 0 0.5rem 0;
}

.time-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent, #ff6b6b);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.time-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent, #ff6b6b);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.slider-endpoints {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--muted-foreground, #6b7280);
    margin-top: 0.25rem;
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.option-header label {
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.option-value {
    font-size: 0.875rem;
    color: var(--primary, #ff6b6b);
    font-weight: 600;
}

/* Budget input */
.budget-input {
    width: 100%;
    max-width: 200px;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border, #e5e7eb);
    border-radius: 0.5rem;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

.budget-input:focus {
    border-color: var(--primary, #ff6b6b);
    box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.15);
}

/* ═══════════════════════════════════════════════════════════
 *  METHOD SELECTION — "Hvordan vil du lave din madplan?"
 * ═══════════════════════════════════════════════════════════ */

.method-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

@media (max-width: 640px) {
    .method-options {
        grid-template-columns: 1fr;
    }
}

.method-option-btn {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem;
    border: 2px solid var(--border, #e5e7eb);
    background: white;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.method-option-btn:hover {
    border-color: var(--primary, #31814c);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.method-option-btn.active {
    border-color: var(--primary, #31814c);
    border-width: 2px;
    background: #f0fdf4;
    box-shadow: 0 4px 16px rgba(49, 129, 76, 0.15);
}

.method-icon {
    font-size: 1.75rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #f9fafb;
}

.method-option-btn.active .method-icon {
    background: #dcfce7;
}

.method-content {
    flex: 1;
}

.method-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--foreground, #1a1a1a);
    margin-bottom: 0.25rem;
}

.method-description {
    font-size: 0.85rem;
    color: var(--muted-foreground, #6b7280);
    line-height: 1.4;
}

.method-badge {
    position: absolute;
    top: -10px;
    right: 16px;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.method-badge.popular {
    background: #d97706;
    color: white;
}

/* ═══════════════════════════════════════════════════════════
 *  FRIDGE INPUT — "Hvad har du i køleskabet?"
 * ═══════════════════════════════════════════════════════════ */

.fridge-input-section {
    margin-top: 0.5rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

/* --- Search input --- */
.fridge-search-container {
    margin-bottom: 1.25rem;
}

.fridge-search-wrapper {
    position: relative;
}

.fridge-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted-foreground, #9ca3af);
    font-size: 0.9rem;
    pointer-events: none;
    z-index: 1;
}

.fridge-search-input,
input[type="text"].fridge-search-input,
input[type="search"].fridge-search-input {
    width: 100%;
    padding: 1rem 1.25rem 1rem 2.85rem;
    border: 2px solid var(--border, #e5e7eb);
    border-radius: 999px;
    font-size: 1rem;
    height: auto;
    margin-bottom:0px !important;
    outline: none;
    transition: var(--transition-smooth, all 0.3s ease);
    background: var(--muted, #f5f5f5);
    color: var(--foreground, #1a1a1a);
    box-sizing: border-box;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
}

.fridge-search-input::placeholder {
    color: var(--muted-foreground, #9ca3af);
}

.fridge-search-input:focus,
input[type="text"].fridge-search-input:focus,
input[type="search"].fridge-search-input:focus {
    border-color: var(--primary, #31814c);
    background: white;
    box-shadow: 0 0 0 3px hsla(140, 45%, 35%, 0.1);
}

/* --- Search results dropdown --- */
.fridge-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid var(--border, #e5e7eb);
    border-top: none;
    border-radius: 0 0 var(--radius-lg, 0.75rem) var(--radius-lg, 0.75rem);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.05);
    z-index: 100;
    max-height: 260px;
    overflow-y: auto;
}

.fridge-search-wrapper.results-open .fridge-search-results {
    border-radius: 0 0 var(--radius-lg, 0.75rem) var(--radius-lg, 0.75rem);
}

/* Thumbnail image in search result rows */
.fridge-result-img {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    object-fit: contain;
    flex-shrink: 0;
    background: var(--muted, #f5f5f5);
}
.fridge-result-img--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-foreground, #9ca3af);
    font-size: 0.85rem;
}

.fridge-search-result-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1rem;
    cursor: pointer;
    transition: background 0.15s ease;
    border-bottom: 1px solid var(--muted, #f3f4f6);
}

.fridge-search-result-item:last-child {
    border-bottom: none;
}

.fridge-search-result-item:hover {
    background: var(--muted, #f5f5f5);
}

.fridge-search-result-item.already-added {
    opacity: 0.5;
    cursor: default;
}

.fridge-result-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.fridge-result-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--foreground, #1a1a1a);
}

.fridge-result-category {
    font-size: 0.75rem;
    color: var(--muted-foreground, #9ca3af);
}

.fridge-result-action {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary, #31814c);
    white-space: nowrap;
    flex-shrink: 0;
}

.fridge-result-added {
    font-size: 0.75rem;
    color: var(--muted-foreground, #9ca3af);
    font-style: italic;
    flex-shrink: 0;
}

.fridge-search-empty {
    padding: 1.25rem 1rem;
    text-align: center;
    color: var(--muted-foreground, #9ca3af);
    font-size: 0.875rem;
}

/* --- Items area (list + empty state) --- */
.fridge-items-area {
    min-height: 60px;
}

/* --- Fridge items list --- */
.fridge-items-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Thumbnail image in fridge item rows */
.fridge-item-img {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    object-fit: contain;
    flex-shrink: 0;
    background: var(--muted, #f5f5f5);
}
.fridge-item-img--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-foreground, #9ca3af);
    font-size: 0.8rem;
}

.fridge-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.5rem 0.65rem 0.85rem;
    background: white;
    border: 1px solid var(--border, #e5e7eb);
    border-radius: var(--radius-lg, 0.75rem);
    transition: var(--transition-smooth, all 0.3s ease);
    animation: fridgeItemIn 0.25s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fridgeItemIn {
    from {
        opacity: 0;
        transform: translateY(-6px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.fridge-item:hover {
    border-color: var(--primary, #31814c);
    box-shadow: 0 2px 8px hsla(140, 45%, 35%, 0.08);
}

.fridge-item-name {
    flex: 1;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--foreground, #1a1a1a);
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fridge-item-qty-group {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
    font-size: 0.82rem;
    color: var(--muted-foreground, #6b7280);
    font-weight: 500;
}

.fridge-item-qty-prefix {
    white-space: nowrap;
}

.fridge-item-qty,
input[type="number"].fridge-item-qty {
    width: 48px;
    padding: 0.15rem 0.1rem;
    border: none;
    border-bottom: 1.5px solid var(--border, #d1d5db);
    border-radius: 0;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: center;
    height: auto;
    outline: none;
    transition: border-color 0.2s ease;
    background: transparent;
    color: var(--foreground, #1a1a1a);
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: textfield;
    appearance: textfield;
    margin: 0 2px;
    vertical-align: baseline;
}

.fridge-item-qty::-webkit-inner-spin-button,
.fridge-item-qty::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

.fridge-item-qty:focus,
input[type="number"].fridge-item-qty:focus {
    border-bottom-color: var(--primary, #31814c);
    box-shadow: none;
}

.fridge-item-unit {
    white-space: nowrap;
}

.fridge-item-remove {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: var(--muted-foreground, #9ca3af);
    cursor: pointer;
    border-radius: var(--radius, 0.5rem);
    transition: all 0.15s ease;
    flex-shrink: 0;
    font-size: 0.8rem;
}

.fridge-item-remove:hover {
    background: #fee2e2;
    color: #ef4444;
}

/* --- Empty state --- */
.fridge-empty-state {
    padding: 1.75rem 1rem;
}

.fridge-empty-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    border: 2px dashed var(--border, #e5e7eb);
    border-radius: var(--radius-lg, 0.75rem);
    text-align: center;
}

.fridge-empty-plus {
    color: var(--muted-foreground, #9ca3af);
    font-size: 1.25rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--muted, #f5f5f5);
    border-radius: 50%;
}

.fridge-empty-text p {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--foreground, #374151);
    margin: 0 0 0.15rem 0;
}

.fridge-empty-hint {
    font-size: 0.8rem;
    color: var(--muted-foreground, #9ca3af);
    line-height: 1.4;
}

/* --- Counter badge --- */
.fridge-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--primary, #31814c);
    font-weight: 500;
}

.fridge-counter i {
    font-size: 0.85rem;
}

/* --- Tip box --- */
.fridge-tip {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-top: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--muted, #f5f5f5);
    border: 1px solid var(--border, #e5e7eb);
    border-radius: var(--radius-lg, 0.75rem);
    font-size: 0.8rem;
    color: var(--muted-foreground, #6b7280);
    line-height: 1.5;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.fridge-tip i {
    color: var(--primary, #31814c);
    margin-top: 2px;
    flex-shrink: 0;
    font-size: 0.85rem;
}

/* --- Responsive --- */
@media (max-width: 480px) {
    .fridge-input-section {
        max-width: 100%;
    }

    .fridge-tip {
        max-width: 100%;
    }

    .fridge-item {
        gap: 0.5rem;
        padding: 0.55rem 0.4rem 0.55rem 0.7rem;
    }

    .fridge-item-name {
        font-size: 0.85rem;
    }

    .fridge-item-qty {
        width: 46px;
    }

    .fridge-search-input {
        font-size: 1rem;
        padding: 0.75rem 1rem 0.75rem 2.5rem;
    }
}
