/* ===============================
   RESET & BASE
================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background: #ffffff;
    color: #111111;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ===============================
   TOP BAR
================================= */
.top-bar {
    background: #f8f8f8;
    text-align: center;
    padding: 8px 10px;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid #eee;
}

/* ===== HEADER STRUCTURE ===== */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 60px;
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 999;
}

/* LEFT LOGO IMAGE */
.logo-left {
    flex: 1;
}

.logo-left img {
    height: 75px;   /* Make bigger if needed */
    width: auto;
    object-fit: contain;
}

/* CENTER SITE NAME */
.logo-center {
    flex: 1;
    text-align: center;
}

.logo-center a {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    text-decoration: none;
    letter-spacing: 1px;
}

/* RIGHT NAVIGATION */
.nav-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-right a,
.dropbtn {
    margin-left: 25px;
    font-weight: 500;
    color: #111;
    text-decoration: none;
}

.nav-right a:hover,
.dropbtn:hover {
    color: #000;
}



/* ===============================
   DROPDOWN
================================= */
.dropdown {
    position: relative;
}

.dropbtn {
    font-size: 15px;
    cursor: pointer;
}

.dropdown-content {
    position: absolute;
    top: 40px;
    left: 0;
    background: #fff;
    min-width: 220px;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.25s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.dropdown-content a {
    display: block;
    padding: 10px 18px;
    font-size: 14px;
    color: #444;
}

.dropdown-content a:hover {
    background: #f6f6f6;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ===============================
   DISCOUNT BANNER
================================= */
.discount-banner {
    text-align: center;
    padding: 14px 20px;
    font-size: 14px;
    background: #111;
    color: #fff;
}

/* ===============================
   HERO
================================= */
.hero {
    position: relative;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ===============================
   BUTTONS
================================= */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    background: #111;
    color: #fff;
    transition: 0.2s ease;
}

.btn:hover {
    background: #333;
}

/* ===============================
   PRODUCTS SECTION
================================= */
.products {
    padding: 80px 60px;
}

.products h2 {
    font-size: 28px;
    margin-bottom: 40px;
    font-weight: 600;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 40px;
}

/* ===============================
   PRODUCT CARD (Layup Style)
================================= */
.product-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    transition: 0.2s ease;
}

.product-card:hover {
    border-color: #ddd;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.card-img-container {
    background: #fafafa;
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    min-height: 42px;
}

.price-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.old-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.discount-price {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

/* ===============================
   LIGHTBOX
================================= */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox img {
    max-width: 85%;
    max-height: 85%;
    border-radius: 8px;
}

/* ===============================
   LIVE PURCHASE (SUBTLE)
================================= */
.live-popup {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background: #fff;
    border: 1px solid #eee;
    padding: 12px 18px;
    border-radius: 6px;
    font-size: 13px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    display: none;
}

/* ===============================
   FOOTER
================================= */
footer {
    padding: 40px 60px;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: #777;
}

/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 1000px) {
    .header {
        padding: 20px 30px;
    }

    .products {
        padding: 60px 30px;
    }

    .hero-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 600px) {

    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    nav {
        flex-wrap: wrap;
        gap: 15px;
    }

    .products {
        padding: 50px 20px;
    }

    .hero {
        height: 380px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 15px;
    }
}
/* ===== BIGGER LOGO ===== */
.logo img.site-logo {
    height: 75px;      /* Increase size */
    width: auto;
    display: block;
    object-fit: contain;
}
