/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    background: #fff;
    color: #000;
    line-height: 1.6;
}

/* Header */
header {
    background: #0b0c0b;
    text-align: center;
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-container {
    margin-bottom: 15px;
}

.logo-container img {
    max-width: 180px;
    height: auto;
}

/* Mobile Navigation Toggle Button */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    top: 20px;
    right: 20px;
}

.nav-toggle .nav-icon,
.nav-toggle.open .nav-icon {
    position: relative;
    display: block;
    width: 30px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s;
}

.nav-toggle .nav-icon:before,
.nav-toggle .nav-icon:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s;
}

.nav-toggle .nav-icon:before {
    top: -10px;
}

.nav-toggle .nav-icon:after {
    top: 10px;
}

/* Mobile Sliding Menu */
.mobile-menu {
    display: none; /* Hide the menu by default */
    position: fixed;
    top: 0;
    left: -250px; /* Start off the screen */
    width: 250px;
    height: 100%;
    background: #0b0c0b;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
    padding-top: 60px;
    z-index: 1000;
    transition: left 0.3s ease; /* Smooth transition */
}

.mobile-menu.open {
    left: 0; /* When open, slide in from the left */
    display: block; /* Ensure it's displayed */
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
}

.mobile-menu ul li {
    text-align: center;
    margin: 20px 0;
}

.mobile-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

/* Open/Close mobile menu */
.nav-toggle.open .nav-icon {
    transform: rotate(45deg);
}

.nav-toggle.open .nav-icon:before {
    top: 0;
    transform: rotate(90deg);
}

.nav-toggle.open .nav-icon:after {
    top: 0;
    transform: rotate(90deg);
}

/* Categories Navigation */
.categories-nav {
    background: #0b0c0b;
    padding: 10px 0;
    border-top: 1px solid #333;
}

.categories-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    list-style: none;
}

.categories li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: opacity 0.3s;
}

.categories li a:hover {
    opacity: 0.8;
}

/* Hero Image/Banner */
.hero-banner {
    width: 100%;
    background: #f5f5f5;
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* Products Grid */
.products-section {
            padding: 40px 0;
            text-align: center;
        }

        .products-grid {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 40px;
        }

        .product-card {
            width: 220px;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease-in-out;
        }


 .product-card:hover {
            transform: translateY(-10px);
        }

  .product-image {
            width: 100%;
            border-radius: 10px;
            object-fit: cover;
        }

.product-title {
    font-size: 14px;
    font-weight: 500;
    color: #000;
}
/* Hover Effect */
        .product-card::after {
            content: 'BUY NOW';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.6);
            color: white;
            text-align: center;
            padding: 10px;
            font-weight: bold;
            opacity: 0;
            transform: translateY(100%);
            transition: opacity 0.3s, transform 0.3s;
        }

        .product-card:hover::after {
            opacity: 1;
            transform: translateY(0);
        }

        .section-title {
            margin-top: 40px;
            font-size: 2.5em;
            font-weight: bold;
            color: #222;
        }

        .view-more-btn {
            background-color: #333;
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            text-transform: uppercase;
            font-weight: bold;
            cursor: pointer;
            margin-top: 30px;
            transition: background-color 0.3s ease;
        }

        .view-more-btn:hover {
            background-color: #444;
            color: #fff;
        }


/* Footer - EXACT match to image */
footer {
    background-image: url('images/footer.png'); /* your footer image */
    background-size: cover; /* makes the image cover entire footer */
    background-position: center; /* centers the image */
    background-repeat: no-repeat; /* prevents tiling */
    color: #fff; /* make text readable if needed */
    position: relative;
    z-index: 1;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 50px 0px;
    max-width: 1440px;
    margin: 0 auto;
}

.footer-column {
    /* flex: 1 1 200px; */
    margin: 10px;
}

.zoks-logo {
    font-family: 'Impact', sans-serif;
    font-size: 36px;
    margin-bottom: 10px;
}

.footer-column h3 {
    margin-bottom: 15px;
    font-size: 16px;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

.connect-icons img {
    width: 140px;
    display: block;
    margin-bottom: 15px;
}

.email-signup-form {
    display: flex;
    margin-bottom: 10px;
}

.email-signup-form input[type="email"] {
    padding: 10px;
    flex: 1;
    border: none;
    border-radius: 4px 0 0 4px;
}

.email-signup-form button {
    padding: 8px 12px;
    border: none;
    background-color: #fff;
    color: #111;
    font-weight: bold;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
}

.email-signup-form button:hover {
    background-color: #ccc;
}

.store-link {
    display: inline-block;
    margin-top: 10px;
    color: #fff;
    text-decoration: underline;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    header {
padding: 20px 0px 20px 0px;
    }
    .logo-container {
    width: 80%;
    text-align: left;
}
    .categories {
    display: flex;
    flex-direction: column;
}

    .footer-column {
        margin-bottom: 20px;
    }

    .connect-icons img {
        width: 100px;
    }

    /* Hide original categories navigation for small screens */
    .categories-nav {
        display: none;
    }

    /* Show the mobile menu toggle button on small screens */
    .nav-toggle {
    display: flex;
    width: 20%;
    height: 80px;
    align-items: center;
    align-content: center;
}
}

@media (max-width: 480px) {
    .categories {
        gap: 15px;
    }

    .categories li a {
        font-size: 13px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-image {
        height: 250px;
    }

    .logo-container img {
        max-width: 150px;
    }

    .products-section {
        padding: 30px 15px;
    }

    .page-container h1 {
        font-size: 28px;
    }

    .page-container h2 {
        font-size: 22px;
    }

    .zoks-brand h1 {
        font-size: 24px;
    }

    .footer-section h3,
    .email-signup-section h3 {
        font-size: 13px;
    }

    .footer-section ul li a,
    .email-signup-section p,
    .email-signup-form input,
    .email-signup-form button,
    .store-link {
        font-size: 13px;
    }

    .email-signup-form input,
    .email-signup-form button {
        padding: 10px;
    }
}

@media (max-width: 568px) {
    .footer-container {
        flex-direction: column;
        text-align: -webkit-center;
    }
.email-signup-form {
    display: flow;
}
}
