/* Reset styles */
/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: Arial, sans-serif;
}

/* Header (Navbar) */
.navbar {
    background-color: #333;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.navbar .logo {
    color: white;
    font-size: 24px;
}

.nav-links {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
}

.nav-links li {
    margin: 0 10px;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.nav-links li a:hover {
    color: #ff6347;
}

/* Responsive Design for Navbar */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar .logo {
        margin-bottom: 10px;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
    }

    .nav-links li {
        margin: 5px 0;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 10px;
    }

    .navbar .logo {
        font-size: 20px;
    }

    .nav-links li a {
        font-size: 14px;
    }
}
/* Category Filter */
.category-filter {
    padding: 20px;
    text-align: center;
    background-color: #f4f4f4;
}

.filter-options {
    margin: 10px 0;
}

#category-filter, #search-input {
    padding: 10px;
    font-size: 16px;
    margin: 5px;
}

/* Products Section */
.product-list {
    padding: 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.product-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-card p {
    font-size: 18px;
    margin: 10px 0;
}

.product-card .price {
    color: green;
    font-weight: bold;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    color: #ff6347;
}

/* General styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Body and Background */
body {
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background-color: #2d3e50;
    padding: 20px 0;
    text-align: center;
}

.navbar h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.nav-links {
    list-style: none;
}

.nav-links li {
    display: inline;
    margin-right: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff7f50;
}

/* Sections */
section {
    padding: 40px 0;
    margin: 20px 0;
}

h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Our Story Section */
.our-story {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.our-story .story-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.our-story img {
    max-width: 40%;
    border-radius: 8px;
}

.our-story p {
    max-width: 55%;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

/* Our Team Section */
.our-team {
    background-color: #f9f9f9;
}

.team-members {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}

.team-member {
    text-align: center;
    width: 30%;
}

.team-member img {
    max-width: 80%;
    border-radius: 50%;
    margin-bottom: 15px;
}

.team-member h3 {
    font-size: 1.5rem;
    color: #333;
}

.team-member p {
    font-size: 1rem;
    color: #777;
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.features {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}

.feature {
    text-align: center;
    width: 30%;
}

.feature img {
    max-width: 80%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 1.5rem;
    color: #333;
}

.feature p {
    font-size: 1rem;
    color: #666;
}

/* Footer */
footer {
    background-color: #2d3e50;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin-right: 15px;
}

.footer-links a:hover {
    color: #ff7f50;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar h1 {
        font-size: 2rem;
    }

    .nav-links {
        text-align: center;
    }

    .team-members, .features {
        flex-direction: column;
        align-items: center;
    }

    .team-member, .feature {
        width: 80%;
        margin-bottom: 20px;
    }

    .our-story .story-content {
        flex-direction: column;
        text-align: center;
    }

    .our-story img {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .our-story p {
        max-width: 100%;
    }
}


/* Global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

header {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
}

.navbar h1 {
    display: inline;
}

.nav-links {
    list-style: none;
    display: inline;
    float: right;
}

.nav-links li {
    display: inline;
    margin-left: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
}

/* Filters section */
.filters {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #f4f4f4;
}

.filter-category, .filter-price, .filter-popularity {
    width: 30%;
}

h3 {
    margin-bottom: 10px;
}

.filter-category ul {
    list-style: none;
}

.filter-category li {
    margin: 5px 0;
}

/* Search bar */
.search-bar {
    text-align: center;
    margin: 20px 0;
}

#searchInput {
    width: 60%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* Products section */
.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
}

.product-item {
    text-align: center;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-item h4 {
    margin: 10px 0;
}

.product-item p {
    color: green;
    font-weight: bold;
}

.add-to-cart {
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.add-to-cart:hover {
    background-color: #218838;
}

/* Hover effect */
.product-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    .filters {
        flex-direction: column;
        align-items: flex-start;
    }

    .products {
        grid-template-columns: repeat(2, 1fr);
    }

    #searchInput {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .products {
        grid-template-columns: 1fr;
    }

    .filter-category, .filter-price, .filter-popularity {
        width: 100%;
    }
}


/* General Reset and Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

a {
    text-decoration: none;
}

.navbar {
    background-color: #333;
    padding: 15px;
    color: #fff;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
}

.nav-links li {
    margin: 0 20px;
}

.nav-links li a {
    color: #fff;
    font-size: 18px;
}

/* Offers Section */
.limited-time-offers {
    background-color: #fff;
    padding: 50px 0;
    text-align: center;
}

.limited-time-offers h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.offer-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.offer-card {
    background-color: #f9f9f9;
    width: 300px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.offer-card:hover {
    transform: scale(1.05);
}

.offer-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.offer-info {
    padding: 20px;
    text-align: left;
}

.offer-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.offer-info p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.old-price {
    text-decoration: line-through;
    font-size: 18px;
    color: #999;
    margin-right: 10px;
}

.new-price {
    font-size: 20px;
    font-weight: bold;
    color: #e63946;
}

.add-to-cart {
    background-color: #e63946;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.add-to-cart:hover {
    background-color: #f1faee;
    color: #333;
}

/* Countdown Timer Section */
.countdown-timer {
    background-color: #1d3557;
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 24px;
}

#timer {
    font-size: 30px;
    font-weight: bold;
}

/* Footer Section */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-links {
    list-style: none;
    margin-top: 10px;
}

.footer-links a {
    color: #fff;
    margin: 0 15px;
    font-size: 16px;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* General Reset and Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

a {
    text-decoration: none;
}

.navbar {
    background-color: #333;
    padding: 15px;
    color: #fff;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
}

.nav-links li {
    margin: 0 20px;
}

.nav-links li a {
    color: #fff;
    font-size: 18px;
}

/* Cart Section */
.cart {
    background-color: #fff;
    padding: 50px 20px;
    text-align: center;
}

.cart h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

/* Cart Table */
#cart-table {
    width: 80%;
    margin: 0 auto;
    border-collapse: collapse;
    margin-bottom: 30px;
}

#cart-table th, #cart-table td {
    padding: 15px;
    border: 1px solid #ddd;
    text-align: center;
}

#cart-table th {
    background-color: #f1f1f1;
}

.quantity-input {
    width: 50px;
    text-align: center;
}

/* Cart Summary */
#cart-summary {
    margin-top: 20px;
}

#cart-summary p {
    font-size: 20px;
}

#checkout-btn {
    background-color: #e63946;
    color: #fff;
    padding: 15px 30px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
}

#checkout-btn:hover {
    background-color: #f1faee;
    color: #333;
}

/* Footer Section */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

/* General Reset and Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

a {
    text-decoration: none;
}

.navbar {
    background-color: #333;
    padding: 15px;
    color: #fff;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
}

.nav-links li {
    margin: 0 20px;
}

.nav-links li a {
    color: #fff;
    font-size: 18px;
}

/* Checkout Section */
.checkout {
    background-color: #fff;
    padding: 50px 20px;
    max-width: 1200px;
    margin: 20px auto;
}

.checkout h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

/* Billing Details */
.billing-details {
    margin-bottom: 30px;
}

.billing-details label {
    font-size: 18px;
    margin-bottom: 8px;
    display: block;
}

.billing-details input, .billing-details textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

/* Payment Options */
.payment-options {
    margin-bottom: 30px;
}

.payment-options label {
    font-size: 18px;
    margin-bottom: 10px;
    display: block;
}

.payment-options input {
    margin-right: 10px;
}

/* Order Summary */
.order-summary {
    margin-bottom: 30px;
}

.order-summary table {
    width: 100%;
    margin-bottom: 15px;
    border-collapse: collapse;
}

.order-summary th, .order-summary td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
}

.order-summary th {
    background-color: #f1f1f1;
}

.order-summary p {
    font-size: 20px;
    margin-bottom: 10px;
}

/* Place Order Button */
#place-order-btn {
    background-color: #e63946;
    color: #fff;
    padding: 15px 30px;
    border: none;
    cursor: pointer;
    font-size: 20px;
    border-radius: 5px;
    width: 100%;
}

#place-order-btn:hover {
    background-color: #f1faee;
    color: #333;
}

/* Footer Section */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

/* General Reset and Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

a {
    text-decoration: none;
}

.navbar {
    background-color: #333;
    padding: 15px;
    color: #fff;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
}

.nav-links li {
    margin: 0 20px;
}

.nav-links li a {
    color: #fff;
    font-size: 18px;
}

/* Contact Section */
.contact-us {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 20px auto;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.contact-us h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

/* Contact Form */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-size: 18px;
    margin-bottom: 8px;
    display: block;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-group textarea {
    height: 150px;
}

/* Submit Button */
#submit-btn {
    background-color: #4CAF50;
    color: white;
    padding: 15px 30px;
    border: none;
    cursor: pointer;
    font-size: 20px;
    border-radius: 5px;
    width: 100%;
}

#submit-btn:hover {
    background-color: #45a049;
}

/* Store Information */
.store-info {
    margin-top: 30px;
    font-size: 18px;
}

.store-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

/* Google Map */
.google-map {
    margin-top: 30px;
    margin-bottom: 30px;
}

.google-map iframe {
    width: 100%;
    height: 350px;
    border: none;
}

/* Floating Social Media Icons */
.social-media-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
}

.social-icon {
    background-color: #333;
    color: #fff;
    padding: 10px;
    margin: 5px 0;
    text-align: center;
    font-size: 20px;
    border-radius: 5px;
}

.social-icon:hover {
    background-color: #4CAF50;
}

/* Footer Section */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}



