@import url('https://fonts.googleapis.com/css2?family=Alumni+Sans+Pinstripe:ital@0;1&family=Anta&family=Audiowide&family=Bruno+Ace+SC&family=Bubblegum+Sans&family=Bubbler+One&family=Bungee+Outline&family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Codystar:wght@300;400&family=Dosis:wght@200..800&family=Doto:wght@100..900&family=Goldman:wght@400;700&family=Jura:wght@300..700&family=Kulim+Park:ital,wght@0,200;0,300;0,400;0,600;0,700;1,200;1,300;1,400;1,600;1,700&family=Michroma&family=Orbitron:wght@400..900&family=Poiret+One&family=Protest+Riot&family=Raleway:ital,wght@0,100..900;1,100..900&family=Rationale&family=Rubik+Doodle+Shadow&family=Signika:wght@300..700&family=Tourney:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&family=Zen+Tokyo+Zoo&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alumni+Sans+Pinstripe:ital@0;1&family=Anta&family=Asimovian&family=Audiowide&family=Bruno+Ace+SC&family=Bubblegum+Sans&family=Bubbler+One&family=Bungee+Outline&family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Codystar:wght@300;400&family=Dosis:wght@200..800&family=Doto:wght@100..900&family=Goldman:wght@400;700&family=Jura:wght@300..700&family=Kulim+Park:ital,wght@0,200;0,300;0,400;0,600;0,700;1,200;1,300;1,400;1,600;1,700&family=Michroma&family=Orbitron:wght@400..900&family=Poiret+One&family=Protest+Riot&family=Raleway:ital,wght@0,100..900;1,100..900&family=Rationale&family=Rubik+Doodle+Shadow&family=Signika:wght@300..700&family=Tourney:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&family=Zen+Tokyo+Zoo&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: Raleway;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(#ff914D,#AB003E);
}

body::-webkit-scrollbar {
  display: none; 
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: #333;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    background-color: #ff6b6b;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn:hover {
    background-color: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-small {
    padding: 8px 15px;
    font-size: 0.9rem;
    background-color: #ff6b6b;
    color: #fff;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-small:hover {
    background-color: #ff5252;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ff6b6b;
}

/* Header Styles */
header {
     background: rgba(255, 255, 255, 0.1); 
  backdrop-filter: blur(5px);          /* Glass effect */
  -webkit-backdrop-filter: blur(5px); /* Safari support */
  border-bottom: 1px solid rgba(255, 255, 255, 0.2); 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 80px;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo h1 {
    font-size: 1.8rem;
    font-family: "Asimovian";
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff6b6b;
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.header-icons {
    display: flex;
    align-items: center;
}

.header-icons a {
    margin-left: 20px;
    font-size: 1.2rem;
    position: relative;
    color: #000000;
}

#cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    color: #000000;
    font-size: 0.9rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.search-form {
    display: none;
    padding: 15px;
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
}

.search-form.active {
    display: flex;
}

.search-form input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
    outline: none;
}

.search-form button {
    padding: 10px 15px;
    background-color: #ff6b6b;
    color: #fff;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.pexels.com/photos/9771509/pexels-photo-9771509.jpeg') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Categories Section */
.categories {
    padding: 80px 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-card h3 {
    padding: 15px 0;
    font-size: 1.3rem;
}

.category-card .btn-small {
    margin-bottom: 20px;
}

/* Products Section */
.products {
    padding: 80px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-icons {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
}

.product-icons a {
    background-color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    transform: translateX(60px);
    opacity: 0;
}

.product-card:hover .product-icons a {
    transform: translateX(0);
    opacity: 1;
}

.product-card:hover .product-icons a:nth-child(1) {
    transition-delay: 0.1s;
}

.product-card:hover .product-icons a:nth-child(2) {
    transition-delay: 0.2s;
}

.product-icons a:hover {
    background-color: #ff6b6b;
    color: #fff;
}

.product-details {
    padding: 20px;
}

.product-category {
    font-size: 0.8rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-title {
    font-size: 1.2rem;
    margin: 10px 0;
    font-weight: 600;
}

.product-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff6b6b;
}

.old-price {
    text-decoration: line-through;
    color: #777;
    font-size: 0.9rem;
    margin-right: 10px;
}

.add-to-cart {
    background-color: #ff6b6b;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    background-color: #ff5252;
    transform: scale(1.1);
}

/* Special Offer Section */
.special-offer {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.pexels.com/photos/325876/pexels-photo-325876.jpeg') no-repeat center center/cover;
    padding: 100px 0;
    color: #fff;
    text-align: center;
}

.offer-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.offer-content h3 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.offer-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 30px;
    padding-bottom: 30px;
}

.testimonial-slider::-webkit-scrollbar {
    height: 8px;
}

.testimonial-slider::-webkit-scrollbar-thumb {
    background-color: #ff6b6b;
    border-radius: 10px;
}

.testimonial-slider::-webkit-scrollbar-track {
    background-color: #f1f1f1;
    border-radius: 10px;
}

.testimonial {
    flex: 0 0 350px;
    scroll-snap-align: start;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stars {
    color: #ffc107;
    margin-bottom: 15px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
}

.customer h4 {
    font-weight: 600;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.newsletter-content p {
    margin-bottom: 30px;
}

#newsletter-form {
    display: flex;
    justify-content: center;
}

#newsletter-form input {
    flex: 1;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
    outline: none;
    max-width: 400px;
}

#newsletter-form button {
    border-radius: 0 5px 5px 0;
}

/* Footer */
footer {
    background-color: #222;
    color: #fff;
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-section h2 {
    color: #ff6b6b;
    margin-bottom: 20px;
}

.footer-section h3 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #ff6b6b;
}

.footer-section p {
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    transition: all 0.3s ease;
    color: #fff;
}

.social-icons a:hover {
    background-color: #ff6b6b;
    transform: translateY(-5px);
}

.footer-section.links ul li {
    margin-bottom: 10px;
}

.footer-section.links ul li a {
    color: #ddd;
    transition: all 0.3s ease;
}

.footer-section.links ul li a:hover {
    color: #ff6b6b;
    padding-left: 5px;
}

.footer-section.contact p i {
    margin-right: 10px;
    color: #ff6b6b;
}

.payment-methods {
    display: flex;
    gap: 15px;
    font-size: 2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    header .container {
        padding: 15px 20px;
    }

    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: #fff;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        padding: 30px;
    }

    nav ul li {
        margin: 15px 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active .line:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .category-grid,
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial {
        flex: 0 0 300px;
    }

    #newsletter-form {
        flex-direction: column;
        align-items: center;
    }

    #newsletter-form input {
        width: 100%;
        border-radius: 5px;
        margin-bottom: 10px;
    }

    #newsletter-form button {
        width: 100%;
        border-radius: 5px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .category-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-section {
        margin-bottom: 30px;
    }
}@import url('https://fonts.googleapis.com/css2?family=Alumni+Sans+Pinstripe:ital@0;1&family=Anta&family=Audiowide&family=Bruno+Ace+SC&family=Bubblegum+Sans&family=Bubbler+One&family=Bungee+Outline&family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Codystar:wght@300;400&family=Dosis:wght@200..800&family=Doto:wght@100..900&family=Goldman:wght@400;700&family=Jura:wght@300..700&family=Kulim+Park:ital,wght@0,200;0,300;0,400;0,600;0,700;1,200;1,300;1,400;1,600;1,700&family=Michroma&family=Orbitron:wght@400..900&family=Poiret+One&family=Protest+Riot&family=Raleway:ital,wght@0,100..900;1,100..900&family=Rationale&family=Rubik+Doodle+Shadow&family=Signika:wght@300..700&family=Tourney:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&family=Zen+Tokyo+Zoo&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alumni+Sans+Pinstripe:ital@0;1&family=Anta&family=Asimovian&family=Audiowide&family=Bruno+Ace+SC&family=Bubblegum+Sans&family=Bubbler+One&family=Bungee+Outline&family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Codystar:wght@300;400&family=Dosis:wght@200..800&family=Doto:wght@100..900&family=Goldman:wght@400;700&family=Jura:wght@300..700&family=Kulim+Park:ital,wght@0,200;0,300;0,400;0,600;0,700;1,200;1,300;1,400;1,600;1,700&family=Michroma&family=Orbitron:wght@400..900&family=Poiret+One&family=Protest+Riot&family=Raleway:ital,wght@0,100..900;1,100..900&family=Rationale&family=Rubik+Doodle+Shadow&family=Signika:wght@300..700&family=Tourney:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&family=Zen+Tokyo+Zoo&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: Raleway;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(#ff914D,#AB003E);
}

body::-webkit-scrollbar {
  display: none; 
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: #333;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    background-color: #ff6b6b;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn:hover {
    background-color: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-small {
    padding: 8px 15px;
    font-size: 0.9rem;
    background-color: #ff6b6b;
    color: #fff;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-small:hover {
    background-color: #ff5252;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ff6b6b;
}

/* Header Styles */
header {
     background: rgba(255, 255, 255, 0.1); 
  backdrop-filter: blur(5px);          /* Glass effect */
  -webkit-backdrop-filter: blur(5px); /* Safari support */
  border-bottom: 1px solid rgba(255, 255, 255, 0.2); 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 80px;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo h1 {
    font-size: 1.8rem;
    font-family: "Asimovian";
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff6b6b;
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.header-icons {
    display: flex;
    align-items: center;
}

.header-icons a {
    margin-left: 20px;
    font-size: 1.2rem;
    position: relative;
    color: #000000;
}

#cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    color: #000000;
    font-size: 0.9rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.search-form {
    display: none;
    padding: 15px;
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
}

.search-form.active {
    display: flex;
}

.search-form input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
    outline: none;
}

.search-form button {
    padding: 10px 15px;
    background-color: #ff6b6b;
    color: #fff;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.pexels.com/photos/9771509/pexels-photo-9771509.jpeg') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Categories Section */
.categories {
    padding: 80px 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-card h3 {
    padding: 15px 0;
    font-size: 1.3rem;
}

.category-card .btn-small {
    margin-bottom: 20px;
}

/* Products Section */
.products {
    padding: 80px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-icons {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
}

.product-icons a {
    background-color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    transform: translateX(60px);
    opacity: 0;
}

.product-card:hover .product-icons a {
    transform: translateX(0);
    opacity: 1;
}

.product-card:hover .product-icons a:nth-child(1) {
    transition-delay: 0.1s;
}

.product-card:hover .product-icons a:nth-child(2) {
    transition-delay: 0.2s;
}

.product-icons a:hover {
    background-color: #ff6b6b;
    color: #fff;
}

.product-details {
    padding: 20px;
}

.product-category {
    font-size: 0.8rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-title {
    font-size: 1.2rem;
    margin: 10px 0;
    font-weight: 600;
}

.product-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff6b6b;
}

.old-price {
    text-decoration: line-through;
    color: #777;
    font-size: 0.9rem;
    margin-right: 10px;
}

.add-to-cart {
    background-color: #ff6b6b;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    background-color: #ff5252;
    transform: scale(1.1);
}

/* Special Offer Section */
.special-offer {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.pexels.com/photos/325876/pexels-photo-325876.jpeg') no-repeat center center/cover;
    padding: 100px 0;
    color: #fff;
    text-align: center;
}

.offer-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.offer-content h3 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.offer-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 30px;
    padding-bottom: 30px;
}

.testimonial-slider::-webkit-scrollbar {
    height: 8px;
}

.testimonial-slider::-webkit-scrollbar-thumb {
    background-color: #ff6b6b;
    border-radius: 10px;
}

.testimonial-slider::-webkit-scrollbar-track {
    background-color: #f1f1f1;
    border-radius: 10px;
}

.testimonial {
    flex: 0 0 350px;
    scroll-snap-align: start;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stars {
    color: #ffc107;
    margin-bottom: 15px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
}

.customer h4 {
    font-weight: 600;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.newsletter-content p {
    margin-bottom: 30px;
}

#newsletter-form {
    display: flex;
    justify-content: center;
}

#newsletter-form input {
    flex: 1;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
    outline: none;
    max-width: 400px;
}

#newsletter-form button {
    border-radius: 0 5px 5px 0;
}

/* Footer */
footer {
    background-color: #222;
    color: #fff;
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-section h2 {
    color: #ff6b6b;
    margin-bottom: 20px;
}

.footer-section h3 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #ff6b6b;
}

.footer-section p {
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    transition: all 0.3s ease;
    color: #fff;
}

.social-icons a:hover {
    background-color: #ff6b6b;
    transform: translateY(-5px);
}

.footer-section.links ul li {
    margin-bottom: 10px;
}

.footer-section.links ul li a {
    color: #ddd;
    transition: all 0.3s ease;
}

.footer-section.links ul li a:hover {
    color: #ff6b6b;
    padding-left: 5px;
}

.footer-section.contact p i {
    margin-right: 10px;
    color: #ff6b6b;
}

.payment-methods {
    display: flex;
    gap: 15px;
    font-size: 2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    header .container {
        padding: 15px 20px;
    }

    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: #fff;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        padding: 30px;
    }

    nav ul li {
        margin: 15px 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active .line:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .category-grid,
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial {
        flex: 0 0 300px;
    }

    #newsletter-form {
        flex-direction: column;
        align-items: center;
    }

    #newsletter-form input {
        width: 100%;
        border-radius: 5px;
        margin-bottom: 10px;
    }

    #newsletter-form button {
        width: 100%;
        border-radius: 5px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .category-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-section {
        margin-bottom: 30px;
    }
}