/* Coding with OnesPro */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #0056b3;
    color: #fff;
    padding: 1rem 0;
}

header h1 {
    font-size: 2rem;
}

/* Flex container for header */
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Nav styles */
nav {
    display: flex;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ffcc00;
}

/* Menu Toggle (Hamburger) */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive Styling */
@media (max-width: 768px) {
    nav {
        display: none;
        width: 100%;
        background-color: #0056b3;
        padding: 10px 0;
        position: relative;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        margin: 0;
    }

    nav ul li {
        width: 100%;
        padding: 10px 20px;
        border-top: 1px solid #fff;
    }

    .menu-toggle {
        display: flex;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1,
    nav {
        float: none;
        text-align: center;
    }

    nav ul {
        padding-top: 10px;
    }
}


/* Shop Banner Section */
.shop-banner {
    background-color: #0056b3;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
    align-items: center;
}
.shop-banner {
    margin-top: 2rem; /* or adjust to your preference */
}

.shop-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.shop-banner p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* Shop Collections Section */
.shop-collections {
    background-color: #fff;
    padding: 2rem 0;
}

.shop-collections h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.collection-category {
    margin-bottom: 2rem;
}

.collection-category h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.products {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.product-card {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    width: 300px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.image-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 1rem;
}

.image-container img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.product-card h4 {
    font-size: 1.5rem;
    margin: 1rem 0;
}

.product-card p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.product-card .place-order-btn {
    background-color: #ffcc00;
    color: #0056b3;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.product-card .place-order-btn:hover {
    background-color: #0056b3;
    color: #fff;
}

/* Footer */
footer {
    background-color: #0056b3;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

footer .social-media {
    margin-top: 1rem;
}

footer .social-media a {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

footer .social-media a:hover {
    color: #ffcc00;
}

footer p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Featured Collections */
.featured-collections {
    padding: 2rem 0;
    background-color: #fff;
    text-align: center;
}

.featured-collections h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.collections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.collection {
    background-color: #f1f1f1;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.collection:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.collection img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.collection h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
/* "Powered by OnesPro Developers" */
footer a {
    color: #ffeb3b;
    text-decoration: none;
    font-weight: bold;
    margin-top: 5px;
}

footer a:hover {
    color: #ffd700;
}