/* ==================== General Page Setup ==================== */
body {
    font-family: 'Rubik', sans-serif;
    margin: 0;
    padding: 0;
    background: #fff;
    color: #111;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==================== Header ====================
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .logo {
    height: 40px;
}

.main-nav-list {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-nav-link {
    font-weight: 500;
    font-size: 16px;
    color: #111;
    transition: color 0.2s;
}

.main-nav-link:hover {
    color: #000;
}

.btn-mobile-nav {
    display: none;
} */

/* ==================== Product Container ==================== */
.product-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ----- Left Image ----- */
.product-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

/* ----- Right Info ----- */
.product-info h1 {
    margin-top: 0;
    font-size: 32px;
}

.location {
    color: #666;
    font-size: 16px;
    margin-top: 8px;
}

.price {
    font-size: 28px;
    font-weight: bold;
    margin: 20px 0;
}

.buy-button {
    background: #000;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.buy-button:hover {
    background: #333;
}

.features {
    margin-top: 25px;
    line-height: 28px;
    font-size: 15px;
    color: #333;
}

/* ==================== Description Section ==================== */
.description {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.description h2 {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
}

.description p {
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 16px;
}

/* ==================== Responsive ==================== */
@media screen and (max-width: 992px) {
    .product-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 20px;
    }

    .product-info h1 {
        font-size: 28px;
    }

    .price {
        font-size: 24px;
    }
}

@media screen and (max-width: 600px) {
    .header {
        flex-wrap: wrap;
        gap: 15px;
    }

    .main-nav-list {
        flex-direction: column;
        gap: 15px;
        display: none;
    }

    .btn-mobile-nav {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
    }
}