@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

/* ================= RESET ================= */
.product-page,
.product-page * {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ================= BASE ================= */
.product-page {
    font-family: "Poppins", sans-serif;
    background: #f8fbff;
    color: #333;
    padding-top: 80px;
}

/* ================= HEADER ================= */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    z-index: 1000;
}

.header_content {
    max-width: 1200px;
    margin: auto;
    height: 70px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 100px;
}

/* ================= NAV ================= */
.nav a {
    margin-left: 24px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.nav a:hover {
    color: #1a73e8;
}

/* ================= BUTTON ================= */
.btn {
    padding: 8px 18px;
    background: #1a73e8;
    color: white;
    border-radius: 30px;
    text-decoration: none;
}

/* ================= SECTIONS ================= */
.section {
    max-width: 1100px;
    margin: auto;
    padding: 80px 20px;
}

.section.light {
    background: #ffffff;
}

/* ================= PRODUCT HERO ================= */
.product-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.product-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image img {
    max-width: 420px;
    max-height: 420px;
    object-fit: contain;
    filter: drop-shadow(0 18px 36px rgba(0,0,0,0.15));
}

/* ================= PRODUCT INFO ================= */
.product-info h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.description {
    line-height: 1.9;
}

/* ================= DETAILS ================= */
.product-details h2 {
    font-size: 26px;
    margin-bottom: 20px;
}

.product-details h3 {
    margin-top: 24px;
}

.product-details p,
.product-details ul {
    line-height: 1.9;
    color: #444;
}

.product-details ul {
    padding-left: 22px;
}

.product-details li {
    margin-bottom: 6px;
}

/* ================= DISCLAIMER ================= */
.disclaimer {
    margin-top: 24px;
    font-size: 14px;
    color: #777;
}

/* ================= CTA ================= */
.cta {
    text-align: center;
}

.cta p {
    max-width: 600px;
    margin: 20px auto;
}

/* ================= FOOTER ================= */
.footer {
    background: #0a2540;
    color: white;
    text-align: center;
    padding: 30px;
}
.mobile-menu{
    display: none;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .product-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .product-info h1 {
        font-size: 30px;
    }
}
