* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f5f5f5;
    overflow-x: hidden;
}

/* Layout */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header */
header {
    background: #111;
    color: #fff;
    padding: 12px 0;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap; /* IMPORTANT: no stacking */
}

/* Logo LEFT */
.logo img {
    height: 40px;
    max-width: 100%;
    object-fit: contain;
}

/* Phone RIGHT */
.contact {
    font-size: 14px;
    text-align: right;
    white-space: nowrap; /* prevents breaking */
}

/* Hero */
.hero {
    background: #0073e6;
    color: #fff;
    text-align: center;
    padding: 60px 15px;
}

.hero h1 {
    font-size: 32px;
}

.hero p {
    margin-top: 10px;
}

.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #fff;
    color: #0073e6;
    text-decoration: none;
    border-radius: 5px;
}

/* Products */
.products {
    margin: 40px auto;
}

.products h2 {
    text-align: center;
    margin-bottom: 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.product-card {
    background: #fff;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
}

.product-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.product-card button {
    margin-top: 10px;
    width: 100%;
    padding: 8px;
    background: #0073e6;
    color: #fff;
    border: none;
    cursor: pointer;
}

/* Cart */
.cart {
    background: #fff;
    padding: 20px;
    margin: 20px auto;
    border-radius: 8px;
}

.checkout-btn {
    margin-top: 10px;
    padding: 10px;
    width: 100%;
    max-width: 250px;
    background: green;
    color: #fff;
    border: none;
    cursor: pointer;
}

/* Footer */
footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

/* Mobile adjustments ONLY for text, NOT layout */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
    }

    .contact {
        font-size: 12px;
    }
}
.product-detail {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.product-image img {
    width: 100%;
    max-width: 350px;
    border-radius: 8px;
}

.product-info {
    max-width: 500px;
}

.product-info h1 {
    font-size: 28px;
}

.price {
    font-size: 22px;
    font-weight: bold;
    margin: 10px 0;
}

.description {
    margin: 15px 0;
    line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
    .product-detail {
        flex-direction: column;
        text-align: center;
    }
}