/* Globális Alapok */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    background-color: #0d0e12;
    line-height: 1.6;
}

/* Felső Promo Sáv */
.top-promo-bar {
    background-color: #ff3e3e;
    color: #ffffff;
    text-align: center;
    padding: 12px 10%;
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { background-color: #ff3e3e; }
    50% { background-color: #ff0000; box-shadow: 0 0 15px #ff0000; }
    100% { background-color: #ff3e3e; }
}

/* Navigáció */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
    background-color: #141722;
    border-bottom: 3px solid #ffcc00;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .logo {
    font-family: 'Impact', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 1px;
    color: #ffffff;
}

.navbar .logo .dot {
    color: #ffcc00;
}

.navbar nav a {
    text-decoration: none;
    color: #ffffff;
    margin-left: 25px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.2s;
}

.navbar nav a:hover {
    color: #ffcc00;
}

/* Címek */
.section-title {
    font-family: 'Impact', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 50px;
    color: #ffcc00;
    text-shadow: 2px 2px 0px #000;
}

/* Kezdőlap (Hero) Szerkezet */
.hero-section {
    padding: 80px 8%;
    background: linear-gradient(135deg, #141722 0%, #0d0e12 100%);
    border-bottom: 2px dashed #333;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 50px auto;
}

.hero-content {
    flex: 1.2;
    text-align: left;
}

.badge {
    background-color: #ffcc00;
    color: #000000;
    padding: 6px 15px;
    font-weight: 900;
    font-size: 0.9rem;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-section h1 {
    font-family: 'Impact', sans-serif;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.hero-section .highlight {
    color: #ff4500;
    text-shadow: 0 0 10px rgba(255, 69, 0, 0.5);
}

.hero-subtext {
    font-size: 1.3rem;
    color: #a0aec0;
    margin-bottom: 40px;
}

.urgent-box {
    background-color: rgba(255, 204, 0, 0.1);
    border: 2px solid #ffcc00;
    padding: 25px;
    border-radius: 8px;
    color: #fff;
    font-size: 1.1rem;
    max-width: 750px;
}

/* Kiemelt, megnövelt karakter doboza */
.hero-character {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Centrifuga rázkódás effekt */
.speeding-machine {
    transform-origin: 100px 100px;
    animation: machineShake 0.15s linear infinite;
}

@keyframes machineShake {
    0% { transform: translate(1px, 1px) rotate(-4deg); }
    25% { transform: translate(-1px, -1px) rotate(-5deg); }
    50% { transform: translate(-1px, 1px) rotate(-4deg); }
    75% { transform: translate(1px, -1px) rotate(-3deg); }
    100% { transform: translate(1px, 1px) rotate(-4deg); }
}

.swirl-effect {
    transform-origin: 100px 135px;
    animation: spinSwirl 0.4s linear infinite;
}

@keyframes spinSwirl {
    100% { transform: rotate(360deg); }
}

/* Három alsó kártya vízszintes elrendezése */
.hero-graphics {
    display: flex;
    justify-content: center;
    gap: 30px;
    width: 100%;
    max-width: 1100px;
    margin: 60px auto 0 auto;
    flex-wrap: wrap;
}

.graphic-card {
    background-color: #1c2030;
    border: 2px solid #2d3248;
    padding: 20px 30px;
    border-radius: 8px;
    text-align: center;
    min-width: 260px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.graphic-card .icon-wrap {
    font-size: 2.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}

.graphic-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Termékek szekció */
.products-section {
    padding: 100px 8%;
    background-color: #0b0c0f;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background-color: #141722;
    border: 3px solid #2d3248;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card.hot-deal {
    border-color: #ff4500;
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.15);
}

.badge-card {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #ff4500;
    color: #fff;
    font-weight: 900;
    padding: 5px 12px;
    font-size: 0.8rem;
    border-radius: 4px;
    z-index: 10;
}

.product-image {
    background-color: #ffffff;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.old-price {
    font-size: 1.1rem;
    color: #718096;
    text-decoration: line-through;
}

.price {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffcc00;
}

.description-box {
    font-size: 0.95rem;
    color: #cbd5e0;
}

/* Szállítás szekció */
.shipping-section {
    padding: 100px 8%;
    background-color: #141722;
    border-top: 3px solid #ff4500;
}

.shipping-container {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.shipping-section h2 {
    font-family: 'Impact', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.shipping-intro {
    font-size: 1.1rem;
    color: #a0aec0;
    margin-bottom: 30px;
}

.shipping-list {
    list-style: none;
}

.shipping-list li {
    margin-bottom: 15px;
    font-size: 1.05rem;
    position: relative;
    padding-left: 30px;
}

.shipping-list li::before {
    content: "✅";
    position: absolute;
    left: 0;
}

.shipping-graphic {
    flex: 1;
    min-width: 280px;
    display: flex;
    justify-content: center;
}

.shipping-img {
    max-width: 280px;
    height: auto;
}

/* Kapcsolat és gombok */
.contact-section {
    padding: 100px 8%;
    background-color: #0d0e12;
}

.contact-container {
    display: flex;
    justify-content: center;
}

.contact-box {
    background-color: #141722;
    border: 3px solid #ffcc00;
    padding: 50px;
    border-radius: 16px;
    max-width: 650px;
    width: 100%;
    text-align: center;
}

.contact-box h3 {
    font-size: 1.6rem;
    margin-bottom: 30px;
    color: #ffcc00;
}

.address-text {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.phone-box {
    background-color: #0d0e12;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.phone-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #a0aec0;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.big-phone-btn {
    display: block;
    background-color: #ff4500;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 900;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 6px;
    transition: transform 0.2s;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
}

.big-phone-btn:last-child {
    margin-bottom: 0;
    background-color: #28a745;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.big-phone-btn:hover {
    transform: scale(1.03);
}

.hours-box {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.hours-box .closed {
    color: #ff3e3e;
    font-weight: 700;
    margin-top: 5px;
}

.nav-btn {
    display: inline-block;
    background-color: transparent;
    color: #ffcc00;
    border: 2px solid #ffcc00;
    text-decoration: none;
    padding: 12px 30px;
    font-weight: 700;
    text-transform: uppercase;
    transition: background-color 0.2s, color 0.2s;
}

.nav-btn:hover {
    background-color: #ffcc00;
    color: #000000;
}

/* Lábléc */
footer {
    text-align: center;
    padding: 40px 8%;
    background-color: #0b0c0f;
    color: #718096;
    font-size: 0.9rem;
    border-top: 1px solid #141722;
}

/* Reszponzivitás mobilra */
@media (max-width: 900px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-content {
        text-align: center;
    }
    .hero-character {
        margin-top: 20px;
    }
    .shipping-container {
        flex-direction: column-reverse;
    }
    .contact-box {
        padding: 25px;
    }
    .big-phone-btn {
        font-size: 1.4rem;
    }
}
/* Másolja a style.css legvégére: Szállítási karakter animációja */

.shipping-cartoon-svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Pattogó, zötykölődő effekt a szállított mosógépnek */
.bouncing-shipping-machine {
    transform-origin: 75px 180px;
    animation: cartBounce 0.3s ease-in-out infinite alternate;
}

@keyframes cartBounce {
    0% { transform: translateY(0px) rotate(8deg); }
    100% { transform: translateY(-4px) rotate(9deg); }
}

/* A dob ebben a gépben is pörög szállítás közben */
.shipping-swirl {
    transform-origin: 117px 132px;
    animation: spinSwirl 0.5s linear infinite;
}
