/* KIVÁLASZTOTT ANYAG */
.selected-material-display {
    margin-bottom: 2rem;
}

.back-to-materials-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #e7e5e4;
    color: #57534e;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.back-to-materials-btn:hover {
    background: #d6d3d1;
}

.selected-material-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    background: #f5f5f4;
    padding: 2rem;
    border-radius: 12px;
}

.selected-material-image {
    width: 100%;
    max-width: 600px;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin: 0 auto;
}

.selected-material-info h2 {
    font-size: 1.75rem;
    color: #292524;
    margin-bottom: 0.5rem;
}

.selected-material-info .material-category {
    color: #78716c;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.selected-material-info .material-type {
    color: #a8a29e;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.selected-material-info .material-price {
    font-size: 1.125rem;
    font-weight: 600;
    color: #57534e;
    margin-bottom: 1.5rem;
}

.material-note {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #57534e;
}

.material-note strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #292524;
}

.material-note ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.material-note li {
    padding: 0.25rem 0;
    color: #57534e;
}

@media (min-width: 768px) {
    .selected-material-card {
        grid-template-columns: 1fr 1fr;
    }
}

/* BELTÉR/KÜLTÉR PÁRKÁNYONKÉNT */
.windowsill-indoor-selector {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #f5f5f4;
    border-radius: 8px;
    margin-top: 0.5rem;
    gap: 0.5rem;
}

.indoor-option-btn {
    padding: 0.5rem 1.25rem;
    background: white;
    color: #57534e;
    border: 2px solid #e7e5e4;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 0.875rem;
}

.indoor-option-btn:hover {
    border-color: #a8a29e;
}

.indoor-option-btn.active {
    background: #57534e;
    color: white;
    border-color: #57534e;
}

/* EXTRÁK PANEL */
.extras-panel {
    background: white;
    border: 2px solid #e7e5e4;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 0.75rem;
}

.extras-panel h4 {
    color: #292524;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.extras-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.extra-item {
    background: #f5f5f4;
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.3s;
}

.extra-item.active {
    background: white;
    border: 2px solid #57534e;
}

/* ÁR TELJESEN JOBBRA! */
.extra-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0;
    gap: 1rem;
}

.extra-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    flex: 0 1 auto;
}

.extra-checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
}

.extra-name {
    font-weight: 500;
    color: #292524;
    font-size: 1rem;
}

.extra-price {
    color: #57534e;
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: auto;
}

/* Extra body */
.extra-body {
    margin-top: 1rem;
    padding-top: 1rem;
}

/* TÖBBSZÖRÖS VÁLASZTÓ (A/B/C/D checkboxok) */
.multi-option-selector {
    margin-top: 1rem;
}

.multi-label {
    display: block;
    font-weight: 500;
    color: #57534e;
    margin-bottom: 0.75rem;
}

.multi-option-checkboxes {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.multi-option-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: white;
    border: 2px solid #e7e5e4;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.multi-option-item:hover {
    border-color: #a8a29e;
    background: #f5f5f4;
}

.multi-option-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.multi-option-item input[type="checkbox"]:checked + span {
    font-weight: 600;
    color: #292524;
}

.multi-option-item span {
    font-size: 1rem;
    color: #57534e;
    font-weight: 500;
}

.selected-summary {
    padding: 0.75rem;
    background: #dcfce7;
    border-radius: 6px;
    color: #166534;
    font-weight: 500;
    font-size: 0.875rem;
    border-left: 3px solid #22c55e;
}

/* A/B/C/D VÁLASZTÓ GOMBOK */







.extra-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: block;
}

.extra-quantity {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.extra-quantity label {
    font-weight: 500;
    color: #57534e;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border: 2px solid #e7e5e4;
    border-radius: 8px;
    padding: 0.25rem;
}

.quantity-selector button {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f4;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    color: #57534e;
}

.quantity-selector button:hover:not(:disabled) {
    background: #e7e5e4;
    color: #292524;
}

.quantity-selector button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.quantity-value {
    min-width: 40px;
    text-align: center;
    font-weight: 600;
    color: #292524;
    font-size: 1.125rem;
}

.extra-note {
    font-size: 0.875rem;
    color: #78716c;
    font-style: italic;
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: #fef3c7;
    border-radius: 6px;
    border-left: 3px solid #f59e0b;
}

.extras-summary {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #e7e5e4;
    border-radius: 8px;
    text-align: right;
    font-size: 1.125rem;
    color: #292524;
}

/* RESZPONZIVITÁS */
@media (max-width: 768px) {
    .windowsill-item {
        grid-template-columns: auto 1fr;
        gap: 0.5rem;
    }
    
    .windowsill-item .number {
        grid-column: 1;
        grid-row: 1;
    }
    
    .windowsill-item .inputs {
        grid-column: 1 / -1;
        grid-row: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .windowsill-item .extras-button {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
    }
    
    .windowsill-item .remove-button {
        grid-column: 1 / -1;
        grid-row: 3;
        width: 100%;
    }
    
    .windowsill-indoor-selector {
        flex-wrap: wrap;
    }
    
    .indoor-option-btn {
        flex: 1;
        min-width: 100px;
    }
    
    .extra-image {
        max-width: 100%;
    }
    
    .selected-material-image {
        max-width: 100%;
    }
    
    .option-buttons {
        flex-wrap: wrap;
    }
    
    .option-btn {
        min-width: 60px;
    }
}

@media (max-width: 480px) {
    .extra-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .extra-price {
        align-self: flex-end;
        margin-left: 0;
    }
    
    .selected-material-info h2 {
        font-size: 1.5rem;
    }
}
/* KATEGÓRIA GOMBOK */
.category-button {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e7e5e4;
    background: white;
    color: #57534e;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.category-button:hover {
    background: #f5f5f4;
    border-color: #a8a29e;
}

.category-button.active {
    background: #57534e;
    color: white;
    border-color: #57534e;
}

@media (max-width: 640px) {
    .category-button {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }
}

/* TOOLTIP A CERUZA IKONNÁL */
.extras-tooltip {
    position: absolute;
    left: 50px;
    top: -10px;
    background: #fef3c7;
    color: #92400e;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 2px solid #fbbf24;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: tooltipBounce 2s infinite;
}

.extras-tooltip-arrow {
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 10px solid #fbbf24;
}

@keyframes tooltipBounce {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-5px);
    }
}

/* MENNYISÉG INPUT */
.windowsill-item input[type="number"][placeholder*="Mennyiség"] {
    font-weight: 600;
    color: #292524;
}

@media (max-width: 768px) {
    .extras-tooltip {
        display: none; /* Mobilon rejtjük a tooltipet */
    }
}

/* PÁRKÁNY INPUT MÉRETEZÉS JAVÍTVA */
.windowsill-item {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 0.75rem;
    align-items: center;
    background: #f5f5f4;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.windowsill-item .number {
    font-weight: bold;
    color: #57534e;
    min-width: 30px;
    font-size: 1rem;
}

.windowsill-item .inputs {
    display: grid;
    grid-template-columns: 1fr 1fr 80px;
    gap: 0.5rem;
    width: 100%;
}

.windowsill-item input {
    padding: 0.75rem 0.5rem;
    border: 1px solid #d6d3d1;
    border-radius: 8px;
    font-size: 0.95rem;
    width: 100%;
}

.windowsill-item .input-length,
.windowsill-item .input-width {
    text-align: left;
}

.windowsill-item .input-quantity {
    text-align: center;
    font-weight: 600;
    color: #292524;
    background: #fef3c7;
    border-color: #fbbf24;
}

.windowsill-item input:focus {
    outline: none;
    border-color: #57534e;
    box-shadow: 0 0 0 2px rgba(87, 83, 78, 0.1);
}

/* GOMBOK */
.extras-button,
.remove-button {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.extras-button {
    background: #57534e;
    color: white;
}

.extras-button:hover {
    background: #44403c;
    transform: scale(1.05);
}

.remove-button {
    background: #fef2f2;
    color: #dc2626;
}

.remove-button:hover {
    background: #fee2e2;
}

/* RESZPONZÍV - TABLET */
@media (max-width: 1024px) {
    .windowsill-item {
        grid-template-columns: auto 1fr;
        gap: 0.5rem;
    }
    
    .windowsill-item .number {
        grid-column: 1;
        grid-row: 1;
    }
    
    .windowsill-item .inputs {
        grid-column: 2;
        grid-row: 1;
    }
    
    .windowsill-item > div[style*="position: relative"] {
        grid-column: 1;
        grid-row: 2;
        justify-self: start;
    }
    
    .windowsill-item .remove-button {
        grid-column: 2;
        grid-row: 2;
        justify-self: end;
        width: 100%;
        max-width: 120px;
    }
}

/* RESZPONZÍV - MOBIL */
@media (max-width: 640px) {
    .windowsill-item {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 0.75rem;
    }
    
    .windowsill-item .number {
        grid-column: 1;
        grid-row: 1;
        font-size: 1.125rem;
    }
    
    .windowsill-item .inputs {
        grid-column: 1;
        grid-row: 2;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .windowsill-item .input-length {
        grid-column: 1 / -1;
    }
    
    .windowsill-item .input-width,
    .windowsill-item .input-quantity {
        grid-column: auto;
    }
    
    .windowsill-item input {
        font-size: 0.875rem;
        padding: 0.625rem 0.5rem;
    }
    
    .windowsill-item > div[style*="position: relative"] {
        grid-column: 1;
        grid-row: 3;
        justify-self: start;
    }
    
    .windowsill-item .remove-button {
        grid-column: 1;
        grid-row: 4;
        width: 100%;
    }
    
    /* Tooltip mobilon */
    .extras-tooltip {
        left: auto;
        right: 0;
        top: 50px;
        max-width: 200px;
        white-space: normal;
        font-size: 0.75rem;
    }
    
    .extras-tooltip-arrow {
        display: none;
    }
}

/* GECI */

/* ============================================
   EXTRAS v6.1 CSS - JAVÍTÁSOK
   - Nagyobb képek (150px)
   - 5 oszlopos grid
   - Disabled label stílus
   ============================================ */

/* BAL/JOBB OLDAL VÁLASZTÓ GOMBOK */
.side-selector {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
}

.side-button {
    flex: 1;
    padding: 0.75rem 1.5rem;
    background: #f5f5f4;
    border: 2px solid #d6d3d1;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #57534e;
    cursor: pointer;
    transition: all 0.2s;
}

.side-button:hover {
    background: #e7e5e4;
    border-color: #a8a29e;
}

.side-button.active {
    background: #0ea5e9;
    border-color: #0ea5e9;
    color: white;
}

/* VARIÁNS KÉPVÁLASZTÓ - JAVÍTOTT */
.variant-selector {
    margin: 1rem 0;
}

.variant-label {
    display: block;
    font-weight: 500;
    color: #57534e;
    margin-bottom: 0.75rem;
}

.variant-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 OSZLOP MAX (nagyobb képek!) */
    gap: 1.5rem;
    max-width: 900px; /* Maximum szélesség, hogy ne legyen túl széles */
}

.variant-option {
    border: 2px solid #e7e5e4;
    border-radius: 0.5rem;
    padding: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.variant-option:hover {
    border-color: #a8a29e;
    background: #fafaf9;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.variant-option.selected {
    border-color: #0ea5e9;
    background: #f0f9ff;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
}

.variant-option img {
    width: 100%;
    height: 220px; /* NAGYOBB KÉP (2 oszlopos gridhez) */
    object-fit: contain;
    border-radius: 0.25rem;
    margin-bottom: 0.75rem;
}

.variant-option span {
    display: block;
    font-size: 0.875rem;
    color: #57534e;
    font-weight: 500;
}

/* INPUT MEZŐK */
.input-fields {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #fafaf9;
    border-radius: 0.5rem;
}

.input-label {
    display: block;
    font-weight: 500;
    color: #57534e;
    margin-bottom: 0.75rem;
}

.input-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.input-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.input-group label {
    font-weight: 500;
    color: #78716c;
    min-width: 30px;
}

.input-group input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #d6d3d1;
    border-radius: 0.25rem;
    font-size: 0.875rem;
}

.input-group input:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.1);
}

.input-group span {
    font-size: 0.875rem;
    color: #78716c;
}

/* AUTOMATIKUSAN HOZZÁADOTT JELZÉSEK */
.auto-badge {
    display: inline-block;
    padding: 0.125rem 0.5rem;
    background: #fef3c7;
    color: #92400e;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 0.25rem;
    margin-left: 0.5rem;
}

.auto-reason {
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: #fef3c7;
    border-left: 3px solid #f59e0b;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    color: #92400e;
}

.multi-option-item.auto-added {
    opacity: 0.7;
}

.multi-option-item.auto-added input[type="checkbox"] {
    cursor: not-allowed;
}

/* DISABLED CHECKBOX LABEL */
.extra-checkbox-label.disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.extra-checkbox-label.disabled input[type="checkbox"] {
    cursor: not-allowed;
}

.extra-notes {
    margin-top: 1rem;
    padding: 0.75rem;
    background: #f0f9ff;
    border-left: 3px solid #0ea5e9;
    border-radius: 0.25rem;
}

.extra-notes p {
    margin: 0.25rem 0;
    font-size: 0.875rem;
    color: #0c4a6e;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .variant-images {
        grid-template-columns: repeat(2, 1fr); /* 2 OSZLOP MINDIG */
    }
}

@media (max-width: 768px) {
    .side-selector {
        flex-direction: column;
    }
    
    .variant-images {
        grid-template-columns: repeat(2, 1fr); /* 2 OSZLOP MOBILON */
    }
    
    .variant-option img {
        height: 120px; /* KISEBB MOBILON */
    }
    
    .input-row {
        grid-template-columns: 1fr;
    }
}

/* ÖSSZESÍTÉS MEGJELENÍTÉS az extrák alatt */
.extras-summary-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #fafaf9;
    border-radius: 0.75rem;
    border: 2px solid #e7e5e4;
}

.extras-summary-section h4 {
    margin: 0 0 1rem 0;
    color: #57534e;
    font-size: 1.125rem;
}

.extras-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e7e5e4;
}

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

.extras-summary-row .name {
    color: #78716c;
    font-size: 0.875rem;
}

.extras-summary-row .calculation {
    font-family: 'Courier New', monospace;
    color: #57534e;
    font-size: 0.875rem;
}

.extras-summary-row .price {
    font-weight: 600;
    color: #0c4a6e;
}

/* EXTRA JEGYZET KIEMELÉS */
.extra-note {
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: #f0f9ff;
    border-left: 3px solid #0ea5e9;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    color: #0c4a6e;
}
/* ============================================
   KÉP MODAL/LIGHTBOX (v7.0)
   ============================================ */

/* Kép klikkelhetővé tétele */
.extra-image,
.selected-material-image,
.material-summary-image {
    cursor: zoom-in;
    transition: all 0.3s;
}

.extra-image:hover,
.selected-material-image:hover,
.material-summary-image:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/* Image Modal */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.9);
    cursor: zoom-out;
}

.image-modal.active {
    display: flex;
}

.image-modal img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    cursor: default;
}

.image-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10001;
}

.image-modal-close:hover {
    background: #f5f5f4;
    transform: rotate(90deg);
}

.image-modal-close svg {
    color: #292524;
}

@media (max-width: 768px) {
    .image-modal {
        padding: 1rem;
    }
    
    .image-modal-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
}

/* ============================================
   ALAP PÁRKÁNY KÉP (v7.0)
   ============================================ */

/* 2 oszlopos grid az alapár tartalmazza boxhoz */
.material-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.material-note-with-image {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #57534e;
}

.material-note-with-image strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #292524;
}

.material-note-with-image ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.material-note-with-image li {
    padding: 0.25rem 0;
    color: #57534e;
}

.base-windowsill-image-box {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #57534e;
    display: flex;
    flex-direction: column;
}

.base-windowsill-image-box strong {
    display: block;
    margin-bottom: 0.75rem;
    color: #292524;
}

.base-windowsill-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    cursor: zoom-in;
    transition: all 0.3s;
}

.base-windowsill-image:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

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

/* SAROK KIVÁGÁS - TÖBBSZÖRÖS VÁLASZTÓ (v7.0) */
.side-selector-multi {
    margin: 1rem 0;
}

.side-selector-label {
    display: block;
    font-weight: 500;
    color: #292524;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.side-checkboxes {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.side-checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: #f5f5f4;
    border: 2px solid #d6d3d1;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.side-checkbox-item:hover {
    background: #e7e5e4;
    border-color: #a8a29e;
}

.side-checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.side-checkbox-item input[type="checkbox"]:checked {
    accent-color: #0ea5e9;
}

.side-checkbox-item span {
    font-weight: 500;
    color: #57534e;
    user-select: none;
}

/* Input mezők oldalanként */
.input-fields-by-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.side-input-group {
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #e7e5e4;
}

.side-input-label {
    display: block;
    font-weight: 600;
    color: #292524;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

/* DUAL IMAGE - Hosszú él mindkét oldal */
.extra-image.dual-image {
    border: 3px solid #0ea5e9;
    box-shadow: 0 0 12px rgba(14, 165, 233, 0.3);
}

.dual-image-note {
    background: #e0f2fe;
    border-left: 4px solid #0ea5e9;
    padding: 0.75rem;
    border-radius: 0.5rem;
    color: #0c4a6e;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* RESZPONZÍV */
@media (max-width: 768px) {
    .side-checkboxes {
        flex-direction: column;
    }
    
    .side-checkbox-item {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .input-fields-by-side .input-row {
        flex-direction: column;
    }
    
    .input-group {
        width: 100%;
    }
}