* {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f6f8;
    margin: 0;
    padding: 20px;
}


/* Közös Fix Fejléc - Lábléc nincs! */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    text-decoration: none;
    background-image: url('surfingathome.gif');
    width: 77px;
    height: 66px;
}

.checkout-container {
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 100px !important;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Galéria */
.main-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.6;
    border: 2px solid transparent;
}

.thumb.active, .thumb:hover {
    opacity: 1;
    border-color: #007bff;
}

/* Ár és Mennyiség */
.price-calculator {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.qty-btn-group {
    display: flex;
    align-items: center;
}

.qty-btn-group button {
    width: 35px;
    height: 35px;
    background: #e9ecef;
    border: 1px solid #ced4da;
    font-size: 18px;
    cursor: pointer;
}

.qty-btn-group input {
    width: 45px;
    height: 35px;
    text-align: center;
    border: 1px solid #ced4da;
    border-left: none;
    border-right: none;
    font-size: 16px;
}

.price-display {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
}

/* Űrlap */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 14px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.submit-btn {
    width: 100%;
    background-color: #28a745;
    color: white;
    border: none;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.submit-btn:hover {
    background-color: #218838;
}


/* Mobil nézet (Egymás alá ugrás) */
@media (max-width: 768px) {
    .checkout-container {
        grid-template-columns: 1fr;
        padding: 15px;
    }
}

/** Elorendeles resz */
/* --- Waitlist / Értesítő Szekció Stílusok --- */
.waitlist-section {
    padding: 80px 20px;
    text-align: center;
}

.waitlist-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.waitlist-container h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.waitlist-container p {
    font-size: 1rem;
    opacity: 0.85;
    line-height: 1.6;
    margin-bottom: 28px;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-group {
    display: flex;
    width: 100%;
    max-width: 480px;
    gap: 10px;
}

.form-group input[type="email"] {
    flex: 1;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.2);
    color: inherit;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.form-group input[type="email"]:focus {
    border-color: #0071e3;
    background: rgba(0, 0, 0, 0.4);
}

.waitlist-btn {
    padding: 14px 24px;
    border-radius: 10px;
    border: none;
    background: #0071e3;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.1s ease;
}

.waitlist-btn:hover {
    background: #0077ed;
    transform: translateY(-1px);
}

.waitlist-btn:active {
    transform: translateY(0);
}

.privacy-note {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-top: 12px;
}

/* Mobilos illeszkedés */
@media (max-width: 520px) {
    .form-group {
        flex-direction: column;
    }

    .waitlist-btn {
        width: 100%;
    }
}