/* Zmienne kolorów dla spójności */
:root {
    --primary-color: #1a3c1e; /* Główny zielony */
    --primary-light: #f8fdf8; /* Jasny zielony tło */
    --text-dark: #2c3e50; /* Ciemny tekst */
    --text-light: #7f8c8d; /* Jasny tekst/opisy */
    --border-color: #e0e0e0; /* Kolor ramek */
    --bg-light: #f8f9fa; /* Jasne tło */
    --bg-white: #fff; /* Białe tło */
    --shadow: rgba(0, 0, 0, 0.1); /* Cień */
    --shadow-hover: rgba(0, 0, 0, 0.15); /* Cień hover */
}

/* Reset i podstawowe style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #fff;
    padding: 20px 0 40px 0;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 20px;
}

.logo {
    max-height: 60px;
    width: auto;
}

header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Grid produktów */
.produkty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Karta produktu */
.produkt-karta {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.produkt-karta:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.produkt-zdjecie {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #f8f9fa;
}

.produkt-zdjecie img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.produkt-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.produkt-info h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.produkt-info .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* Sauna Configurator Styles */
.konfigurator-main {
    padding: 40px 0;
}

.konfigurator-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.konfigurator-grid img {
    max-width: 100%;
    height: auto;
}

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

.options-column,
.summary-column {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    min-width: 0;
    overflow: hidden;
}

.option-section {
    margin-bottom: 30px;
}

.option-section h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

.size-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.size-option {
    position: relative;
}

.size-option input[type="radio"] {
    display: none;
}

.size-option label {
    display: block;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.size-option input[type="radio"]:checked + label {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: white;
}

.size-option input[type="radio"]:checked + label .size-capacity {
    color: rgba(255, 255, 255, 0.9);
}

.size-dimensions {
    display: block;
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.size-capacity {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 5px;
}

.oven-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.oven-option {
    position: relative;
}

.oven-option input[type="radio"] {
    display: none;
}

.oven-option label {
    display: block;
    padding: 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.oven-option input[type="radio"]:checked + label {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: white;
}

.oven-option input[type="radio"]:checked + label .option-description {
    color: rgba(255, 255, 255, 0.9);
}

.oven-option-tile .option-name {
    display: block;
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.oven-option-tile .option-description {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
}


.oven-model-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.oven-model-option {
    position: relative;
}

.oven-model-option input[type="radio"] {
    display: none;
}

.oven-model-option label {
    display: block;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.oven-model-option input[type="radio"]:checked + label {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: white;
}

.oven-model-option input[type="radio"]:checked + label .model-description {
    color: rgba(255, 255, 255, 0.9);
}

.model-name {
    display: block;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.model-description {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
}


/* Accordion - clean styles without duplicates */
.equipment-accordion .accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 10px;
    background-color: var(--bg-white);
}

.accordion-header {
    background-color: var(--bg-light);
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    border-radius: 8px 8px 0 0;
    min-height: 50px;
}

.accordion-header:hover {
    background-color: #e9ecef;
}

.accordion-header.active {
    background-color: var(--primary-color);
    color: white;
    border-radius: 8px 8px 0 0;
}

.accordion-header h4 {
    margin: 0;
    font-size: 1.1rem;
    color: inherit;
    font-weight: 600;
    flex: 1;
    padding-right: 10px;
    word-wrap: break-word;
}

.accordion-toggle {
    font-weight: bold;
    font-size: 1.2rem;
    color: inherit;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.accordion-header.active .accordion-toggle {
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
    padding: 20px;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
}

.accordion-content.active {
    display: block;
}

/* Equipment - clean styles */
.equipment-item {
    display: flex;
    align-items: flex-start;
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

.equipment-item:last-child {
    border-bottom: none;
}

.equipment-item:hover {
    background-color: rgba(26, 60, 30, 0.05);
}

.equipment-item input[type="checkbox"] {
    margin-right: 12px;
    margin-top: 2px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.equipment-item label {
    cursor: pointer;
    flex: 1;
}

.equipment-name {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.equipment-description {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
}

.equipment-item.disabled {
    opacity: 0.5;
    pointer-events: none;
    background-color: #f8f8f8;
    position: relative;
    cursor: not-allowed;
}

/* Enhanced disabled states with visual indicators */
.equipment-item.disabled.model-incompatible {
    border-left: 4px solid #ff6b6b;
    background-color: #fff5f5;
}

.equipment-item.disabled.stove-incompatible {
    border-left: 4px solid #ffa726;
    background-color: #fff8e1;
}

/* Add icon overlay for disabled items */
.equipment-item.disabled::after {
    content: '🚫';
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 1.2rem;
    opacity: 0.7;
}

/* Disabled input styling */
.equipment-item.disabled input[type="checkbox"] {
    cursor: not-allowed;
}

.equipment-item.disabled label {
    cursor: not-allowed;
    color: #999;
}

/* Tooltip styling for disabled items */
.equipment-item.disabled[title] {
    position: relative;
}

.equipment-item.disabled[title]:hover::before {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    white-space: nowrap;
    z-index: 1000;
    margin-bottom: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.equipment-item.disabled[title]:hover::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #333;
    z-index: 1000;
}

.equipment-item input[type="checkbox"]:checked ~ label .equipment-name {
    color: var(--primary-color);
}

/* Equipment options container */
.equipment-options {
    padding: 0;
}

/* Equipment categories - for non-accordion display */
.equipment-category {
    margin-bottom: 25px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    background: #fafafa;
}

.equipment-category .category-header {
    color: #333;
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #4CAF50;
}

.equipment-category .category-options {
    display: block;
}

.equipment-category .equipment-item {
    margin-bottom: 10px;
}

/* Color and material option styles for future use */
.color-option,
.material-option,
.housing-color-option {
    display: inline-block;
    margin: 5px;
    padding: 10px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.color-tile,
.material-tile,
.housing-color-tile {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    border: 1px solid #ddd;
    display: inline-block;
}

.material-info {
    padding: 5px;
}

.material-name {
    font-size: 0.9rem;
    font-weight: 600;
}

.gallery-section {
    margin-bottom: 30px;
}

.main-gallery {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    background-color: #f8f9fa;
}

.main-gallery img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
}

.thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
    object-fit: contain;
    flex-shrink: 0;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #1a3c1e;
}

.summary-section h3 {
    font-size: 1.5rem;
    color: #1a3c1e;
    margin-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
}

.summary-list {
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item-name {
    font-weight: bold;
    color: #2c3e50;
}

.summary-item-value {
    color: #7f8c8d;
}

.summary-item-right {
    text-align: right;
}

.no-pricing-info {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.no-pricing-info p {
    margin: 0;
    color: #856404;
    font-weight: 500;
}

.contact-form h3 {
    font-size: 1.5rem;
    color: #1a3c1e;
    margin-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #2c3e50;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: var(--bg-white);
    box-shadow: none;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 60, 30, 0.1);
}

.form-control:invalid.touched {
    border-color: #dc3545;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.legal-consents {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.checkbox-container:last-child {
    margin-bottom: 0;
}

.checkbox-container input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 3px;
    transform: scale(1.2);
}

.checkbox-container label {
    font-size: 0.9rem;
    color: #495057;
    line-height: 1.4;
    cursor: pointer;
}

.checkbox-container a {
    color: #1a3c1e;
    text-decoration: underline;
}

/* Checkbox error state */
.checkbox-container.checkbox-error {
    background-color: #fff5f5;
    border: 2px solid #dc3545;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.checkbox-container.checkbox-error label {
    color: #dc3545;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #1a3c1e;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
    text-align: center;
}

.btn:hover {
    background-color: #145219;
}

.btn-duzy {
    width: 100%;
    padding: 15px 24px;
    font-size: 1.1rem;
}

.btn-powrot {
    display: inline-block;
    padding: 10px 20px;
    background-color: #6c757d;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

.btn-powrot:hover {
    background-color: #545b62;
}

.produkt-opis {
    color: #7f8c8d;
    margin-bottom: 20px;
}

.produkt-specyfikacja {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.produkt-specyfikacja span {
    font-size: 0.9rem;
    color: #5a6c7d;
}

.produkt-cena {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
}

.produkt-cena .label {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.produkt-cena .cena {
    font-size: 1.8rem;
    font-weight: 600;
    color: #27ae60;
}

/* Przyciski */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-weight: 500;
}

.btn-primary {
    background-color: #1a3c1e; /* Zielony Garden and Pools */
    color: white;
    width: 100%;
    text-align: center;
}

.btn-primary:hover {
    background-color: #27552e; /* Jaśniejszy zielony przy hover */
}

/* Footer */
footer {
    background-color: #1a3c1e;
    color: #ecf0f1;
    padding: 40px 0 20px 0;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 20px;
    margin-bottom: 30px;
}

.footer-content h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-content p {
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-contact p, .footer-info p {
    color: #bbb;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-icon {
    color: #ffffff;
    margin-right: 8px;
}

/* Footer Links */
.footer-link {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
    text-decoration: none;
}

.footer-link:visited {
    color: #bbb;
}

/* Language Switcher */
.language-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 100;
}

.lang-btn {
    padding: 8px 12px;
    border: 2px solid #ddd;
    background: white;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 500;
}

.lang-btn:hover {
    border-color: #1a3c1e;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(26, 60, 30, 0.3);
}

.lang-btn.active {
    background: #1a3c1e;
    color: white;
    border-color: #1a3c1e;
}

.lang-btn .flag {
    font-size: 1.2em;
}

.lang-btn .lang-code {
    font-size: 0.85rem;
    font-weight: 600;
}

/* Header z relative positioning dla language switcher */
header {
    position: relative;
}

/* Responsywność */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    
    .header-top {
        flex-direction: column;
        gap: 20px;
        padding: 15px;
    }
    
    .logo {
        max-height: 50px;
        max-width: 80%;
        margin: 0 auto;
    }
    
    #language-switcher-container {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .produkty-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .produkt-karta {
        margin: 0 10px;
    }
    
    .language-switcher {
        position: static;
        margin-bottom: 0;
        justify-content: center;
    }
    
    header {
        text-align: center;
    }
}

/* Sauna Configurator Specific Styles - Updated for English classes */

/* Additional oven type selection styles - stylized radio buttons */
.oven-options {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.oven-option {
    flex: 1;
    display: block;
    cursor: pointer;
}

.oven-option input[type="radio"] {
    display: none;
}

.oven-option-tile {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.oven-option-tile:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.15);
    transform: translateY(-2px);
}

.oven-option input[type="radio"]:checked + .oven-option-tile {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-light) 100%);
    border-color: var(--primary-color);
    box-shadow: 0 6px 16px rgba(76, 175, 80, 0.2);
}

.oven-option-tile .option-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
    margin-bottom: 8px;
}

.oven-option-tile .option-description {
    font-size: 14px;
    color: var(--text-light);
    display: block;
}

/* Oven model selection - updated */
.oven-model-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.oven-model-option {
    display: block;
    cursor: pointer;
}

.oven-model-option input[type="radio"] {
    display: none;
}

.oven-model-tile {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.oven-model-tile:hover {
    border-color: var(--primary-color);
    background: #f8f9fa;
    transform: translateX(5px);
}

.oven-model-option input[type="radio"]:checked + .oven-model-tile {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-light) 100%);
    border-color: var(--primary-color);
    box-shadow: 0 3px 10px rgba(33, 150, 243, 0.2);
}

.oven-model-tile .model-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.oven-model-tile .model-description {
    font-size: 13px;
    color: var(--text-light);
}

/* Option section - main container */
.option-section {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.option-section h3 {
    color: #1a3c1e;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background: #fff;
    border-radius: 8px;
    padding: 16px;
    min-width: 300px;
    max-width: 500px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    border-left: 4px solid;
}

.toast.toast-show {
    opacity: 1;
    transform: translateX(0);
}

.toast-icon {
    font-size: 20px;
    min-width: 24px;
    text-align: center;
}

.toast-message {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
}

.toast-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.toast-close:hover {
    color: #333;
}

/* Toast Types */
.toast.toast-success {
    border-left-color: #4caf50;
    background: #f1f8f4;
}

.toast.toast-success .toast-icon {
    color: #4caf50;
}

.toast.toast-error {
    border-left-color: #f44336;
    background: #fef1f0;
}

.toast.toast-error .toast-icon {
    color: #f44336;
}

.toast.toast-warning {
    border-left-color: #ff9800;
    background: #fff8f0;
}

.toast.toast-warning .toast-icon {
    color: #ff9800;
}

.toast.toast-info {
    border-left-color: #2196f3;
    background: #f0f7ff;
}

.toast.toast-info .toast-icon {
    color: #2196f3;
}

/* Mobile responsiveness for toasts */
@media (max-width: 768px) {
    .toast-container {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
    
    .toast {
        min-width: auto;
        max-width: none;
    }
}

/* Size selector */
.size-options {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.size-option {
    flex: 1;
    min-width: 200px;
    display: block;
    cursor: pointer;
}

.size-option input[type="radio"] {
    display: none;
}

.size-option-tile {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.size-option-tile:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.15);
    transform: translateY(-2px);
}

.size-option input[type="radio"]:checked + .size-option-tile {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-light) 100%);
    border-color: var(--primary-color);
    box-shadow: 0 6px 16px rgba(76, 175, 80, 0.2);
}

.size-option-tile .size-dimensions {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
    margin-bottom: 8px;
}

.size-option-tile .size-capacity {
    font-size: 14px;
    color: var(--text-light);
    display: block;
}

/* Responsive design */
@media (max-width: 768px) {
    .oven-options {
        flex-direction: column;
    }
    
    .oven-option-tile {
        min-height: 80px;
    }
    
    .size-options {
        flex-direction: column;
    }
    
    .size-option {
        min-width: auto;
    }
}

/* Extra small devices (phones in portrait) */
@media (max-width: 480px) {
    .header-top {
        padding: 10px;
    }
    
    .logo {
        max-height: 45px;
        max-width: 90%;
    }
    
    header h1 {
        font-size: 1.75rem;
    }
    
    header p {
        font-size: 1rem;
        padding: 0 10px;
    }
}