* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: 0.3s;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    background-color: transparent;
    scroll-behavior: smooth;
}

.page {
    width: 100%;
    min-height: 100vh;
    position: relative;
}


.page header {
    width: 90%;
    height: 70px;
    display: flex;

    background: transparent;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 8px;
    left: 5%;
    z-index: 1000;
    border-radius: 20px;
}

.page header .top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;

    background: none;
}

.logo {
    margin-left: 50px;
}

img {
    width: 100%;
    height: 100%;
}

.nav-links .links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.links li a {
    text-decoration: none;
    color: #161616;
    font-weight: 500;
    text-transform: capitalize;
    position: relative;
}

.links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #000000;
    transition: width 0.3s ease;
}

.links li a:hover::after {
    width: 100%;
}

.links li a:hover {
    color: #000000;
    font-size: 17px;
}

.user-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-actions i {
    font-size: 18px;
    color: #161616;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.user-actions i:hover {
    transform: scale(1.2);
}

.sign-in,
.get-started {
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sign-in {
    color: #161616;
    background: transparent;
    backdrop-filter: blur(25px);

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #333;
}

.get-started {
    color: white;
    background-color: #161616;
    border: 1px solid #161616;
    margin-right: 50px;
}

.sign-in:hover,
.get-started:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}


main {

    width: 100%;

}


.hero {
    width: 100%;
    height: 90vh;
    background-image: url('./images/Rectangle\ 2\ \(2\).png');
    background-size: cover;

    display: flex;
    align-items: center;
    border-radius: 0 0 60px 60px;
    padding: 0 50px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    background: transparent;
    padding: 40px 40px 20px 20px;
    border-radius: 40px;
    backdrop-filter: blur(15px);

    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.336);
    position: relative;
    margin-left: 30px;
    margin-top: 100px;
    z-index: 2;

}

.hero-content h1 {
    font-size: 45px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


.hero-content p {
    font-size: 16px;
    color: #000000;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.buy-now {
    background-color: #161616;
    color: white;
    border: none;
    padding: 15px 80px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.buy-now:hover {
    background-color: #252525;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}


.featured-products {
    padding: 80px 50px;
    text-align: center;
}

.featured-products h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 1px solid #ddd;
    background-color: white;
    color: #161616;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.active,
.filter-btn:hover {
    background-color: #333;
    color: white;
    transform: translateY(-2px);
}

.no-products {
    text-align: center;
    font-size: 20px;
    color: #5d0000;
    margin-top: 50px;
}


.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;

}

.product-card {
    max-width: 500px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.img-container {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .img-container img {
    transform: scale(1.1);
}

.wishlist-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: white;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ff4757;
    transition: all 0.3s ease;
}

.wishlist-icon:hover {
    background-color: #ff4757;
    color: white;
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 18px;
    font-weight: bold;
    color: #161616;
    margin-bottom: 10px;
}

.price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.current-price {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.original-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

.product-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.rating span {
    font-weight: bold;
    color: #333;
}

.rating i {
    color: #ffd700;
}

.reviews-count {
    font-size: 12px;
    color: #999;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.buy-now-btn,
.add-to-cart-btn {
    flex: 1;
    padding: 10px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.buy-now-btn {
    background-color: #171717;
    color: white;
}

.add-to-cart-btn {
    background-color: white;
    color: #333;
    border: 1px solid #333;
}

.buy-now-btn:hover,
.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.view-all {
    background-color: #161616;
    color: white;
    border: none;
    padding: 12px 80px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin: 0 auto;
    text-align: center;
    transition: all 0.3s ease;
}

.view-all:hover {
    background-color: #3d3d3d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}


.why-choose-us {
    padding: 0px 50px 30px 50px;
    background-color: #ffffff;
    text-align: center;
}

.why-choose-us h2 {
    font-size: 36px;
    font-weight: bold;
    color: #161616;
    margin-bottom: 20px;
}

.why-choose-us>p {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 0 auto;
    padding: 20px;
}

.feature-card {
    flex: 1 1 220px;
    max-width: 250px;
    background-color: rgba(238, 238, 238, 0.39);
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.327);
    border-radius: 10px;
    text-align: start;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.feature-card:hover img {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: bold;
    color: #161616;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 14px;
    color: #2c2c2c;
    line-height: 1.6;
}


.testimonials {
    width: 90%;
    margin: 0 auto;
    padding: 100px 0;
    text-align: center;
    background-color: #c4c1c16e;
    border-radius: 30px;
    margin-bottom: 300px;
}

.testimonials h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.testimonials>p {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;

}

.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow: hidden;
    max-width: 1000px;
}

.testimonial-card {
    position: relative;
    background-color: white;
    padding: 5px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 300px;
    text-align: start;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-card img {
    position: absolute;
    left: 0;
    width: 80px;
    height: 80px;

    object-fit: cover;
    margin-bottom: 20px;

    transition: transform 0.3s ease;
}



.testimonial-card h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-left: 60px;
    margin-bottom: 5px;
}

.testimonial-card .title {
    margin-left: 60px;
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.testimonial-card .rating {
    margin-left: 5px;
    justify-content: center;
    margin-bottom: 15px;
}

.text-butoom {
    display: flex;
}


.testimonial-card .review {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.testimonial-card .reviews-count {
    margin-top: 60px;
    font-size: 12px;
    color: #999;
}


.discount-banner {
    position: absolute;
    width: 80%;
    height: 400px;
    background-image: url('./images/Rectangle 12.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 100px;
    border-radius: 20px;
    left: 10%;
    bottom: 500px;
    overflow: hidden;
    z-index: 5;
}

.banner-content {
    color: white;
    max-width: 600px;
}



.banner-content h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.banner-content p {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.6;
}

.view-offers {
    background-color: white;
    color: #161616;
    border: none;
    padding: 15px 60px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-offers:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}


footer {
    width: 100%;
    min-height: 90vh;
    background-color: #000000;
    color: white;
    padding: 200px 200px 40px 200px;
    border-radius: 60px 60px 0 0;



}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 50px;
    margin-bottom: 30px;
    align-items: center;

}

.footer-left img {

    width: 150px;
    height: 150px;
    margin-bottom: 20px;
}

.footer-left p {
    font-size: 16.5px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #ccc;
}

.email-signup {
    display: flex;

}

.email-signup input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 15px 0 0 15px;
    background-color: #252525;
    color: white;
    outline: none;
}

.email-signup button {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    border: none;
    padding: 10px 20px;
    border-radius: 0 15px 15px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.email-signup button:hover {
    background-color: #918c8c;

}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.link-group h3 {
    font-size: 19px;
    font-weight: bold;
    margin-bottom: 30px;
}

.link-group ul {
    list-style: none;
}

.link-group ul li {
    margin-bottom: 25px;
}

.link-group ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.link-group ul li a:hover {
    color: white;
}

.copyright {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: left;
}

.copyright p {
    font-size: 14px;
    color: #ccc;
}





.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
    
    z-index: 1002;
}

.sidebar-menu {
    display: none;
}

@media only screen and (max-width: 768px) {
    .page header .top {
        padding: 20px;
        gap: 20px;
        
        
        
    }
    .top{
        
    }
    .logo {
        width: 100px;
        height: 50px;
        margin-left: 0px;
    }

    .nav-links {
        display: none;
    }

    .user-actions {
        gap: 5px;
    
    }
    .sign-in,
.get-started {
    font-size: 10px;
    padding: 5px 15px;
    white-space: nowrap;


}
.get-started{
    margin-right: 0;
}


.menu-toggle {
        display: block;
    }
    .nav-links {
        display: none;
    }
    .sidebar-menu {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 0;
        
        right: -60vw;
        width: 50vw;
        height: 100vh;
        background: #cdcccb;
        
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        z-index: 2000;
        transition: right 0.3s;
        
        padding: 2rem 1.5rem 1.5rem 1.5rem;
    }
    .sidebar-menu.active {
        right: -10vw;
        width: 55vw;
        top: -20px;
        height: 105vh;
    }
    .sidebar-menu .close-btn {
        align-self: self-end;
        margin-right: 20px;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: #333;
        margin-bottom: 2rem;
    }
    .sidebar-menu ul.links {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .sidebar-menu ul.links li a {
        color: #333;
        font-size: 1.2rem;
        text-decoration: none;
    }





    .hero {
        
        height: 80vh;
        padding: 0 20px;
    }

    .hero-content {
        left: -3%; 
        padding: 30px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .featured-products,
    .why-choose-us,
    .testimonials {
        padding: 50px 20px;
    }

    .filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 14px;
    }

    .products-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

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

    .testimonials-container {
        flex-direction: column;
        gap: 20px;
    }

    .testimonials-slider {
        flex-direction: column;
        gap: 20px;
    }

    .testimonial-card {
        min-width: auto;
    }

    .discount-banner {
        height: 400px;

        padding: 0 20px;
        bottom: 1200px;
    }

    .banner-content h2 {
        font-size: 32px;
    }

    footer {
        padding: 200px 30px 20px 20px;
        height: 1350px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        font-size: 12px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
@media  only screen and (max-width: 320px) {
    

    .get-started{
    margin-right: -10px;
}
    
    .hero {
        height: 100vh;
    }

    .hero-content {
        padding: 20px;
        margin-top: 60px;
        left: -5%;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .featured-products h2,
    .why-choose-us h2,
    .testimonials h2 {
        font-size: 28px;
    }

    .filter-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .product-card {
        max-width: 100%;
    }
      .discount-banner {
        height: 400px;
        padding: 10px 20px;
        bottom: 1250px;
    }

    .banner-content h2 {
        font-size: 32px;
    }

    footer {
        padding: 200px 30px 20px 20px;
        height: 1400px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    
}


