/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    font-family: "Roboto", serif;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    /* scroll-padding-top: 2rem; */
}

/* Main Varables */
:root {
    --main-color: #FF6600;
    --bg-color: #f5f5f5;
    --container-color: #8fd14f;
    --text-color: #141026;
}

section {
    padding: 4rem 0 3rem;
}

img {
    width: 100%;
}

body {
    color: var(--text-color);
    background: var(--bg-color);
}

/* header */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-color);
    box-shadow: 0 1px 4px hsla(1px, 0%, 98%, 0.1);
    z-index: 100;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.container {
    max-width: 1068px;
    margin: auto;
    width: 100%;
}

.logo {
    color: var(--main-color);
    font-size: 2.1rem;
    font-weight: 700;
}

#cart-icon {
    position: relative;
    font-size: 2.5rem;
    cursor: pointer;
}

#cart-icon[data-quantity="0"]::after {
    content: '';
}

#cart-icon[data-quantity]::after {
    content: attr(data-quantity);
    position: absolute;
    top: 0;
    right: -12px;
    width: 20px;
    height: 20px;
    background: var(--main-color);
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Cart */
.cart {
    position: fixed;
    top: 0;
    width: 360px;
    height: 100vh;
    padding: 20px;
    background: var(--text-color);
    box-shadow: -2px 0 4px hsl(0, 45, 15% / 10%);
    transition: 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    right: -100%;
    /* Enable scrolling */
    overflow-y: auto;
    overscroll-behavior: contain; /* Prevents scrolling beyond the cart */
    -ms-overflow-style: auto; /* IE and Edge */
    /* iOS Fix */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling for iOS Safari */
    scrollbar-width: none;
}

.cart::-webkit-scrollbar {
    display: none;
}

.cart.active {
    transition: 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);
    right: 0;
}

.cart-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    color: var(--bg-color);
}

.total {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.5rem;
    border-top: 1px solid var(--bg-color);
}

.total-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 1rem;
    color: var(--bg-color);
}

.total-price {
    font-size: 1.075rem;
    margin: 1rem 0 0 0.7rem;
    color: var(--bg-color);
}

.btn-buy {
    display: flex;
    justify-content: center;
    margin: 1.5rem auto 0 auto;
    padding: 12px 20px;
    width: 50%;
    text-align: center;
    border: none;
    border-radius: 2rem;
    background: var(--main-color);
    color: var(--bg-color);
    font-size: 1rem;
    font-style: italic;
    font-weight: 600;
    cursor: pointer;
}

#close-cart {
    position: absolute;
    top: 1rem;
    right: 0.8rem;
    color: var(--bg-color);
    cursor: pointer;
    font-size: 2rem;
}

.cart-box {
    display: grid;
    grid-template-columns: 32% 50% 18%;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.cart-img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    padding: 10px;
    object-position: center;
}

.detail-box {
    display: grid;
    row-gap: 0, 5rem;
}

.cart-product-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #f5f5f5;
}

.cart-price {
    font-weight: 600;
    color: #f5f5f5;
    margin-top: 5px;
}

.cart-quantity {
    border: 1px solid var(--bg-color);
    outline-color: var(--container-color);
    width: 2.8rem;
    text-align: center;
    font-size: 1rem;
    border-radius: 4px;
    margin-top: 10px;
}

.cart-remove {
    font-size: 24px;
    cursor: pointer;
    color: var(--main-color);
}

/* Product Box */
.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.8rem;
}

.shop {
    margin-top: 2rem;
}

.shop-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, auto));
    gap: 1rem;
}

.product-box {
    position: relative;
    background: #ffffff;
    padding: 20px;
    border-radius: 5px;
    transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.product-box:hover {
    background: #f9fff2;
    /* border: 1px solid #f0f0f0; */
    box-shadow: 0 8px 30px hsl(0.075);
    transition: 0.5s;
    cursor: pointer;
}

.product-img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 0.8rem;
}

.price {
    font-weight: 600;
}

.add-cart {
    position: absolute;
    bottom: 10px;
    right: 18px;
    background: var(--bg-color);
    color: var(--main-color);
    padding: 10px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
}

.add-cart:hover {
    background: hsl(22, 98%, 62%);
    color: #f5f5f5;
    transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.cart-color {
    color: #fff;
}

.cart-size {
    color: #fff;
}

.sc-container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.sc-container img {
    width: 300px;
    margin: 2rem;
}

.sc-container span {
    color: #FF6600;
    font-weight: 700;
}

.sc-container h1 {
    font-size: 2.7rem;
    margin-bottom: 10px;
}

.sc-container p {
    max-width: 600px;
    margin-bottom: 20px;
}

.sc-btn {
    padding: 12px 20px;
    border-radius: 2rem;
    background: var(--main-color);
    color: var(--bg-color);
    font-size: 1rem;
    font-weight: 600;
}


/* Hero */
.voltar {
    color: var(--bg-color);
    background: var(--main-color);
    font-size: 18px;
    padding: 8px 10px;
}

.hero {
    height: 80vh;
    width: 100%;
    background: url(Images/Hero.jpg);
    background-position: center;
    background-size: cover;
}

.hero-content {
    margin: 150px;
}

.hero-content-title {
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #f9fff2;
}

.hero-content-title span {
    color: var(--main-color);
}

.hero-content-paragraph {
    width: 500px;
    color: #f9fff2;
    margin-bottom: 20px;
}

.hero-content-btn {
    padding: 12px 20px;
    border-radius: 2rem;
    background: var(--main-color);
    color: var(--bg-color);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
}

/* Categoories */


.categories {
    height: 40vh;
    width: 100%;
}

.categories-content {
    display: flex;
    margin: 5px, auto;
}

.categories-content-title {
    margin: 20px;
}

.categories-content-list {
    display: flex;
    float: left;
    margin-left: -80px;
}

.categories-content-list a {
    text-decoration: none;
}

.categories-content-item {
    margin: 5px;
    border-radius: 5px;
    /* background: var(--main-color); */
    color: var(--text-color);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    height: 200px;
    width: 200px;
    align-items: center;
    margin-top: 100px;
    border-radius: 10px;
}

.categories-content-item-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.categories-content-item-title {
    margin: 5px;
}

/* Best Deals */
.bestdeals {
    height: 80vh;
    width: 100%;
    margin-top: 150px;
}

.bestdeals-content {
    /* display: flex; */
    margin: auto;
}

.bestdeals-content-title {
    margin: 20px;
    margin-bottom: 30px;
}

.bestdeals-content-list {
    display: flex;
    float: left;
    justify-content: center;
    align-items: center;
    margin-left: 80px;
}

.bestdeals-content-item {
    margin: 5px;
    border-radius: 5px;
    background: var(--main-color);
    color: var(--main-color);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    height: 220px;
    width: 200px;
    align-items: center;
    margin-top: 20px;
}

.bestdeals-item-detail {
    display: flex;
    margin-bottom: 5px;
    margin-top: 2px;
}

.bestdeals-content-item-title {
    color: var(--text-color);
    font-size: 15px;
    font-weight: 400;
    margin-top: 10px;
}

.bestdeals-content-item-price {
    color: var(--text-color);
    font-size: 15px;
    font-weight: 400;
    margin-left: 80px;
    margin-top: 10px;
}

.bestdeals-content-item-btn {
    padding: 6px 8px;
    border-radius: 2rem;
    background: var(--main-color);
    color: var(--bg-color);
    font-size: 1rem;
    font-weight: 300;
    cursor: pointer;
    margin-top: 10px;
    border: none;
    transition: 0.5s;
    margin-top: 10px;
}

.bestdeals-content-item-btn:hover {
    transform: scaleX(1.1);
    transition: 0.5s;
}

.seeall {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 1150px;
    margin-top: -70px;
}

.seeall a {
    padding: 8px 10px;
    border-radius: 2rem;
    background: var(--main-color);
    color: var(--bg-color);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    border: none;
    transition: 0.5s;
}

.seeall a:hover {
    transform: scaleX(1.1);
    transition: 0.5s;
}

/* Promo */
.promo {
    height: 80vh;
    width: 100%;
}

.promo-content {
    display: flex;
    margin: auto;
    justify-content: center;
}

.promo-content-container {
    width: 1000px;
    height: 350px;
    margin: 20px;
    border-radius: 20px;
    background: var(--main-color);
    display: flex;
    float: left;
    /* margin: auto; */
}

.promo-content-code h2 {
    font-size: 40px;
    font-weight: 700;
    margin: 20px;
    color: var(--bg-color);
}

.promo-content-code span {
    color: var(--text-color);
    font-weight: 700;
}


.promo-content-code p {
    font-size: 25px;
    font-weight: 300;
    margin: 20px;
    margin-top: 5px;
    color: var(--bg-color);
}

.promo-content-code a {
    padding: 6px 8px;
    border-radius: 2rem;
    background: var(--bg-color);
    color: var(--main-color);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    margin-top: 10px;
    border: none;
    margin: 20px;
}

.promo-content-code-img {
    margin-bottom: 70px;
    margin-bottom: 30px;
}

/* Testimonials */
.trusted {
    height: 60vh;
    width: 100%;
    padding-top: 10px;
    /* background: #141026; */
    justify-content: center;
    align-items: center;
}

.trusted-content-header {
    margin: 20px;
}

.trusted-content-container {
    display: flex;
    margin: auto;
    justify-content: center;
    flex-wrap: wrap;
    margin: 15px;
    padding-top: 50px;
}

.trusted-content-item {
    width: 280px;
    height: 95px;
    background: #c4c5c3;
    border: 1px solid #f0f0f0;
    border-radius: 5px;
    margin: 5px;
    display: flex;
}

.trusted-img {
    width: 100px;
    height: 50px;
    margin: 5px;
    border-radius: 50px;
}

.trusted-img img {
    width: 80px;
    height: 80px;
    border-radius: 50px;
}

.trusted-text {
    color: var(--text-color);
}

.trusted-text h2 {
    font-size: 15px;
    margin: 5px;
}

.trusted-text p {
    font-size: 12px;
    margin: 5px;
    max-width: 150px;
}

/* Newly added */
.NewlyAdded {
    height: 80vh;
    width: 100%;

}

.Newly-content {
    margin: auto;
}


.Newly-content-title {
    margin: 20px;
    margin-bottom: 40px;
}

/* Discounts */

.Discounts {
    height: 80vh;
    width: 100%;
}


.discount-content {
    /* display: flex; */
    margin: auto;
}

.discount-content-title {
    margin: 20px;
    margin-bottom: 40px;
}


/* FQA */
.FAQ {
    height: 100vh;
    width: 100%;
    padding-top: 20px;
    /* background: #141026; */
    justify-content: center;
    align-items: center;
}

.FAQ-content {
    display: flex;
    margin: auto;
    justify-content: center;
    flex-wrap: wrap;
    margin: 15px;
    /* padding-top: 10px;   */
}

.FAQ-content-header {
    margin: 20px;
}

.FAQ-content-item {
    width: 300px;
    height: 400px;
    background: #f0f0f0;
    margin: 10px;
    border-radius: 15px;
}

.FAQ-content-text {
    margin: 10px;
}

.FAQ-content-img {
    width: 300px;
    height: 200px;
    border-radius: 15px;
}

.FAQ-content-img img {
    width: 300px;
    height: 200px;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    margin-top: 95px;
    object-fit: contain;
}


/* Footer */
footer {
    background: var(--main-color);
    color: var(--bg-color);
    text-align: center;
    /* padding: 1rem 0; */
    height: 100vh;
    position: absolute;
    width: 100%;
    margin-top: 25px;
}

.ine {
    border-top: 0.1px solid var(--bg-color);
    border-bottom: 0.1px solid var(--bg-color);
    margin: 60px;
    margin-top: 20px;
    height: 500px;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1250px;
    /* margin: auto; */
    margin-top: 100px;
}

.footer-content-text {
    max-width: 300px;
    margin-top: 20px;
    margin-right: 20px;
}

.footer-content-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 220px;
}

.footer-content-paragraph {
    font-size: 15px;
    text-align: left;
    margin-left: 10px;
}

.footer-content-paymentMeth {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.paywith {
    font-size: 15px;
    color: #fff;
    margin: 2px;
    margin-right: 100px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.paywith span {
    font-size: 15px;
    color: var(--text-color);
}

.footer-content-paymentMeth {
    width: 250px;
    height: 120px;
}

.footer-content-paymentMeth img {
    width: 50px;
    height: 25px;
    margin: 5px;
    /* object-fit: fill; */
}

.footer-content-links {
    margin-right: -50px;
    margin-bottom: 150px;
}

.footer-content-links-list {
    text-align: left;
}

.footer-content-links-item {
    margin: 1px;
    transition: 0.5s;
    cursor: pointer;
}

.footer-content-links-item:hover {
    color: var(--text-color);
    transition: 0.5s;
}

.footer-content-contact-title {
    margin-bottom: 10px;
    text-align: left;
}

.footer-content-contact-list {
    text-align: left;
}

.footer-content-contact-item {
    margin: 3px;
    transition: 0.5s;
}

.footer-content-contact-item:hover {
    color: var(--text-color);
    transition: 0.5s;
}

.footer-content-about {
    margin-right: 50px;
}

.footer-content-about-title {
    margin-bottom: 10px;
    text-align: left;
}

.footer-content-about-list {
    text-align: left;
}

.footer-content-about-item {
    margin: 2px;
    transition: 0.5s;
    cursor: pointer;
}

.footer-content-about-item:hover {
    color: var(--text-color);
    transition: 0.5s;
}

.footer-content-services {
    margin-left: -130px;
    margin-top: -20px;
}

.footer-content-services-title {
    margin-bottom: 10px;
    text-align: left;
}

.footer-content-services-list {
    text-align: left;
}

.footer-content-services-item {
    margin: 4px;
    transition: 0.5s;
    cursor: pointer;
}

.footer-content-services-item:hover {
   color: var(--text-color);
    transition: 0.5s;
}


.footer-content-links {
    margin-top: 90px;
}

.footer-content-links-title {
    margin-bottom: 10px;
}

.footer-content-contact {
    margin-left: -50px;
    margin-top: -40px;
}

.footer-content-contact-list {
    cursor: pointer;
}

.footer-content-contact-title {
    margin-bottom: 10px;
}

.lastfoot {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: auto;
    max-width: 1200px;
}

.footer-content-partner {
    margin: 5px;
    font-size: 17px;
}

.footer-content-social-icons i {
    font-size: 30px;
}

.terms a {
    text-decoration: none;
    color: var(--bg-color);
}

/* Loader Styles */
.loader {
    border: 4px solid rgba(236, 136, 136, 0.3);
    border-top: 4px solid var(--main-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -20px;
    margin-top: -20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hide content initially */
.hidden {
    display: none;
}

/* Product Detail Styles */
.product-detail-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
  }
  
  .detail-image-container {
    flex: 1;
  }
  
  .detail-img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 8px;
  }
  
  .detail-info {
    flex: 1;
    padding: 20px;
  }
  
  .detail-title {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .detail-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0066cc;
    display: block;
    margin-bottom: 20px;
  }
  
  .detail-description {
    margin-bottom: 30px;
    line-height: 1.6;
  }
  
  .detail-sizes, .detail-colors {
    margin-bottom: 25px;
  }
  
  .size-options, .color-options {
    display: flex;
    gap: 10px;
    margin-top: 10px;
  }
  
  .size-option {
    padding: 8px 15px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .size-option:hover {
    background: #f5f5f5;
  }
  
  .color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #eee;
    cursor: pointer;
  }
  
  .color-option:hover {
    transform: scale(1.1);
  }
  
  .detail-stock {
    margin: 20px 0;
    color: #666;
  }
  
  .add-to-cart-btn {
    background: #0066cc;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition:  0.3s;
  }
  
  .add-to-cart-btn:hover {
    background: #0055aa;
  }
  
  .back-button {
    background: #f0f0f0;
    border: none;
    padding: 10px 20px;
    margin: 20px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 1rem;
  }
  
  .back-button:hover {
    background: #e0e0e0;
  }

  /* Alert Box */

  .alert-box {
  position: fixed;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  color: #333;
  padding: 20px 30px;
  border: 1px solid #ccc;
  border-radius: 10px;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.alert-box button {
  margin-top: 15px;
  padding: 8px 16px;
  background-color: #FF6600;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.hidden {
  display: none;
}



/* Responsiveness */

@media (max-width: 1080px) {
    .nav {
        padding: 5px 0;
    }

    section {
        padding: 3rem 0 2rem;
    }

    .container {
        margin: 0 auto;
        width: 90%;
    }

    .shop {
        margin-top: 1rem !important;
    }

}



@media (max-width: 360px) {
    .nav {
        padding: 2px 0;
    }

    .logo {
        font-size: 1.2rem;
    }

    .cart {
        width: 320px;
    }

    .shop-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, auto));
        gap: 1rem;
    }

    .product-title {
        font-size: 1rem;
        font-weight: 700;
        text-transform: capitalize;
        margin-bottom: 0.4rem;
    }

    .price {
        font-weight: 600;
    }

    .add-cart {
        position: absolute;
        bottom: 10px;
        right: 14px;
        background: var(--bg-color);
        color: var(--main-color);
        padding: 10px;
        border-radius: 50%;
        font-size: 1.2rem;
        cursor: pointer;
    }

    .hero {
        height: 80vh;
        width: 100%;
        background: url(Images/Hero.jpg);
        background-position: center;
        background-size: cover;
    }

    .hero-content {
        margin: 75px;
    }

    .hero-content-title {
        font-size: 25px;
        font-weight: 700;
        margin-bottom: 4px;
        color: #f9fff2;
    }

    .hero-content-title span {
        color: var(--main-color);
    }

    .hero-content-paragraph {
        width: 300px;
        color: #f9fff2;
        margin-bottom: 20px;
    }

    .hero-content-btn {
        padding: 12px 20px;
        border-radius: 2rem;
        background: var(--main-color);
        color: var(--bg-color);
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        margin-top: 10px;
    }

    .categories {
        height: 80vh;
        width: 100%;
    }

    .categories-content {
        display: flex;
        margin: 5px, auto;
    }

    .categories-content-title {
        margin: 20px;
        font-size: 30px;
    }

    .categories-content-list {
        display: flex;
        float: left;
        /* margin: auto; */
    }

    .categories-content-item {
        margin: 5px;
        border-radius: 5px;
        /* background: var(--main-color); */
        color: var(--main-color);
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        height: 220px;
        width: 200px;
        align-items: center;
        margin-top: 80px;
    }


    .categories-content-item-title {
        margin: 20px;
    }

    /* Best Deals */
    .bestdeals {
        height: 80vh;
        width: 100%;
        margin-top: 200px;
    }

    .bestdeals-content {
        /* display: flex; */
        /* margin: auto; */
        padding-top: 50px;
    }

    .bestdeals-content-title {
        margin: 20px;
        padding-bottom: 18px;
    }

    .bestdeals-content-list {
        display: flex;
        float: left;
        /* margin: auto; */
        margin-left: -10px;
        flex-wrap: wrap;
        margin-top: 30px;
    }

    .bestdeals-content-item {
        margin: 25px;
        border-radius: 5px;
        background: var(--main-color);
        color: var(--main-color);
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        height: 120px;
        width: 100px;
        align-items: center;
        margin-bottom: 200px;
    }

    .bestdeals-item-detail {
        display: flex;
        margin-bottom: 2px;
        margin-top: 12px;
    }

    .bestdeals-content-item-title {
        color: var(--text-color);
        font-size: 15px;
        font-weight: 400;
    }

    .bestdeals-content-item-price {
        color: var(--text-color);
        font-size: 13px;
        font-weight: 500;
        margin-left: 30px;
    }

    .bestdeals-content-item-btn {
        padding: 4px 4px;
        border-radius: 2rem;
        background: var(--main-color);
        color: var(--bg-color);
        font-size: 11px;
        font-weight: 600;
        cursor: pointer;
        margin-top: 10px;
        border: none;
    }

    .seeall {
        margin-left: 180px;
        margin-top: -70px;
        /* padding-top: 15px; */
    }

    .seeall a {
        padding: 4px 6px;
        border-radius: 2rem;
        background: var(--main-color);
        color: var(--bg-color);
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        border: none;
        transition: 0.5s;
    }

    /* Newly added */
    .NewlyAdded {
        height: 90vh;
        width: 100%;  
    }

    .Newly-content {
        margin: auto;
    }


    .Newly-content-title {
        margin: 20px;
        padding-bottom: 5px;
        max-width: 200px;
    }

    /* Discounts */

    .Discounts {
        height: 100vh;
        width: 100%;
        padding-top: 50px;
    }


    .discount-content {
        /* display: flex; */
        margin: auto;
    }

    .discount-content-title {
        margin: 20px;
        padding-bottom: 16px;
    }

    /* Promo */
    .promo {
        height: 80vh;
        width: 100%;
        margin-top: 500px;
    }

    .promo-content {
        display: flex;
        margin: auto;
        justify-content: center;
    }

    /* .promo-content-container {
        width: 1000px;
        height: 370px;
        margin: 20px;
        border-radius: 20px;
        background: var(--main-color);
        display: flex;
        float: left;
    } */

    .promo-content-code h2 {
        font-size: 40px;
        font-weight: 700;
        margin: 20px;
        color: var(--bg-color);
    }

    .promo-content-code span {
        color: var(--text-color);
        font-weight: 700;
    }


    .promo-content-code p {
        font-size: 25px;
        font-weight: 300;
        margin: 20px;
        margin-top: 5px;
        color: var(--bg-color);
    }

    .promo-content-code a {
        padding: 6px 8px;
        border-radius: 2rem;
        background: var(--bg-color);
        color: var(--main-color);
        font-size: 1rem;
        font-weight: 500;
        cursor: pointer;
        margin-top: 10px;
        border: none;
        margin: 20px;
    }

    .promo-content-code-img {
        margin-bottom: 70px;
        margin-bottom: 30px;
    }

    /* Testimonials */
    .trusted {
        height: 170vh;
        width: 100%;
        /* padding-top: 20px; */
        /* background: #141026; */
        justify-content: center;
        align-items: center;
        margin-bottom: 200px;
    }

    .trusted-content-header {
        margin: 10px;
    }

    .trusted-content-container {
        display: flex;
        /* margin: auto; */
        justify-content: center;
        flex-wrap: wrap;
        margin: 15px;
    }

    .trusted-content-item {
        width: 280px;
        height: 95px;
        background: #c4c5c3;
        border: 1px solid #f0f0f0;
        border-radius: 5px;
        margin: 5px;
        display: flex;
    }

    .trusted-img {
        width: 100px;
        height: 50px;
        margin: 5px;
        border-radius: 50px;
    }

    .trusted-img img {
        width: 80px;
        height: 80px;
        border-radius: 50px;
    }

    .trusted-text {
        color: var(--text-color);
    }

    .trusted-text h2 {
        font-size: 15px;
        margin: 5px;
    }

    .trusted-text p {
        font-size: 12px;
        margin: 5px;
        max-width: 150px;
    }

    /* FQA */
    .FAQ {
        height: 250vh;
        width: 100%;
        padding-top: 50px;
        /* background: #141026; */
        justify-content: center;
        align-items: center;
    }

    .FAQ-content {
        display: flex;
        margin: auto;
        justify-content: center;
        flex-wrap: wrap;
        margin: 15px;
        padding-top: 10px;
    }

    .FAQ-content-header {
        margin: 20px;
        margin-top: 380px;
    }

    .FAQ-content-item {
        width: 300px;
        height: 400px;
        background: #f0f0f0;
        margin: 10px;
        border-radius: 15px;
    }

    .FAQ-content-text {
        margin: 10px;
    }

    .FAQ-content-img {
        width: 300px;
        height: 200px;
        border-radius: 15px;
    }

    .FAQ-content-img img {
        width: 300px;
        height: 200px;
        border-bottom-right-radius: 15px;
        border-bottom-left-radius: 15px;
        margin-top: 95px;
        object-fit: contain;
    }

    /* Footer */
    footer {
        background: var(--main-color);
        color: var(--bg-color);
        text-align: center;
        /* padding: 1rem 0; */
        height: 180vh;
        position: absolute;
        width: 100%;
        margin-top: 700px;
    }

    .ine {
        border-top: 0.1px solid var(--bg-color);
        border-bottom: 0.1px solid var(--bg-color);
        margin: 60px;
        margin-top: 20px;
        height: 800px;
    }

    .footer-content {
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-wrap: wrap;
        max-width: 1000px;
        margin: auto;
    }

    .footer-content-text {
        max-width: 350px;
        margin-top: 20px;
        margin-right: 30px;
    }

    .footer-content-title {
        font-size: 1.5rem;
        font-weight: 700;
        margin-right: 185px;
    }

    .footer-content-paragraph {
        font-size: 15px;
        text-align: left;
    }

    .footer-content-paymentMeth {
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-wrap: wrap;
    }

    .paywith {
        font-size: 15px;
        color: #fff;
        margin: 2px;
        margin-right: 60px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .paywith span {
        font-size: 15px;
        color: var(--text-color);
    }

    .footer-content-paymentMeth img {
        width: 50px;
        height: 30px;
        margin: 5px;
    }

    .footer-content-links {
        margin-right: 20px;
    }

    .footer-content-links-list {
        text-align: left;
        max-width: 200px;
    }

    .footer-content-links-item {
        margin: 1px;
        text-align: left;
    }

    .footer-content-contact {
        margin-left: 150px;
        margin-top: -170px;
    }

    .footer-content-contact-title {
        margin-bottom: 10px;
        text-align: left;
    }

    .footer-content-contact-list {
        text-align: left;
        padding-bottom: 100px;
    }

    .footer-content-contact-item {
        margin: 3px;
    }

    .footer-content-about {
        margin-right: -50px; 
    }

    .footer-content-about-title {
        margin-bottom: 10px;
        text-align: left;
    }


    .footer-content-about-list {
        text-align: left;
    }

    .footer-content-about-item {
        margin: 2px;
    }


    .footer-content-services{
        margin-right: 100px;
        margin-top: 10px;
    }
    .footer-content-services-title {
        margin-bottom: 10px;
        text-align: left;
    }

    .footer-content-services-list {
        text-align: left;
    }

    .footer-content-services-item {
        margin: 4px;
    }


    .footer-content-links {
        margin-top: 90px;
    }

    .footer-content-links-title {
        margin-bottom: 10px;
    }

    .footer-content-contact {
        margin-right: 100px;
    }

    .footer-content-contact-title {
        margin-bottom: 10px;
    }

    .lastfoot {
        display: flex;
        justify-content: space-around;
        align-items: center;
        margin: auto;
        max-width: 1000px;
        margin-right: 10px;
    }


    .footer-content-partner {
        margin: 5px;
        font-size: 17px;
    }

    .footer-content-social-icons i {
        font-size: 20px;
    }

    .terms a {
        text-decoration: none;
        color: var(--bg-color);
    }

}


@media (max-width: 400px) {
    .shop {
        margin-top: 2rem !important;
    }

    .cart {
        width: 280px;
    }

    .shop-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(130px, auto));
        gap: 1rem;
    }

    /* Hero */
    .hero {
        height: 80vh;
        width: 100%;
        background: url(Images/Hero.jpg);
        background-position: center;
        background-size: cover;
    }

    .hero-content {
        margin: 75px;
    }

    .hero-content-title {
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 4px;
        color: #f9fff2;
    }

    .hero-content-title span {
        color: var(--main-color);
    }

    .hero-content-paragraph {
        width: 200px;
        color: #f9fff2;
        margin-bottom: 20px;
    }

    .hero-content-btn {
        padding: 12px 20px;
        border-radius: 2rem;
        background: var(--main-color);
        color: var(--bg-color);
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        margin-top: 10px;
    }

    /* Categories */

    .categories {
        height: 80vh;
        width: 100%;
        margin-bottom: 20px;
    }

    .categories-content {
        /* display: flex;
        margin: 5px, auto; */
    }

    .categories-content-title {
        margin: 20px;
        font-size: 20px;
        color: var(--text-color);
    }

    .categories-content-list {
        display: flex;
        float: left;
        flex-wrap: wrap;
        margin-right: 20px;
    }
    
    .categories-content-item {
        margin: 5px;
        border-radius: 15px;
        /* background: var(--main-color); */
        color: var(--text-color);
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        height: 100px;
        width: 110px;
        align-items: center;
        margin-top: 80px;   
    }

    .categories-content-item-img{
        width: 100px;
        height: 110px;
        object-fit: cover;
        border-radius: 10px;
    }

    .categories-content-item-title {
        margin: 5px;
        font-size: 15px;
        text-align: left;
    }

    /* Best Deals */
    .bestdeals {
        height: 80vh;
        width: 100%;
        margin-top: 150px;
    }

    .bestdeals-content {
        /* display: flex; */
        /* margin: auto; */
        padding-top: 50px;
    }

    .bestdeals-content-title {
        margin: 20px;
        padding-bottom: 18px;
    }

    .bestdeals-content-list {
        display: flex;
        float: left;
        /* margin: auto; */
        margin-left: -10px;
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .bestdeals-content-item {
        margin: 25px;
        border-radius: 5px;
        background: var(--main-color);
        color: var(--main-color);
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        height: 120px;
        width: 100px;
        align-items: center;
        margin-bottom: 120px;
    }

    .bestdeals-item-detail {
        display: flex;
        margin-bottom: 2px;
        margin-top: 12px;
    }

    .bestdeals-content-item-title {
        color: var(--text-color);
        font-size: 15px;
        font-weight: 400;
        /* margin-top: 10px; */
    }

    .bestdeals-content-item-price {
        color: var(--text-color);
        font-size: 13px;
        font-weight: 500;
        margin-left: 30px;
        /* margin-top: 10px; */
    }

    .bestdeals-content-item-btn {
        padding: 4px 4px;
        border-radius: 2rem;
        background: var(--main-color);
        color: var(--bg-color);
        font-size: 11px;
        font-weight: 600;
        cursor: pointer;
        margin-top: 10px;
        border: none;
    }

    .seeall {
        margin-left: 180px;
        margin-top: -70px;
        /* padding-top: 15px; */
    }

    .seeall a {
        padding: 4px 6px;
        border-radius: 2rem;
        background: var(--main-color);
        color: var(--bg-color);
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        border: none;
        transition: 0.5s;
    }

    /* FQA */
    .FAQ {
        padding-top: 150px;
        /* background: #141026; */
        justify-content: center;
        align-items: center;
        margin-bottom: 100px;
    }

    /* Footer*/

     .footer-content {
        display: flex;
        justify-content: space-around;
        align-items: center;
        /* flex-wrap: wrap; */
        max-width: 1000px;
        margin: auto;
    }

    .footer-content-links {
        margin-right: 30px;
    }

    .footer-content-services{
        margin-right: 100px;
        margin-top: -50px;
        margin-left: -10px;
        
    }

    .footer-content-contact {
        margin-left: 120px;
        margin-top: -170px;
    }

    .ine {
        border-top: 0.1px solid var(--bg-color);
        border-bottom: 0.1px solid var(--bg-color);
        margin: 60px;
        margin-top: 20px;
        height: 800px;
    }
}

@media (max-width: 375px) {
    /* Categories */

    .categories-content-title {
        margin: 10px;
        font-size: 25px;
    }

    .categories-content {
        width: 100%;
        height: 60vh;
    }

    .categories-content-list {
        display: flex;
        float: left;
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .categories-content-item {
        margin: 5px;
        border-radius: 15px;
        /* background: var(--main-color); */
        color: var(--text-color);
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        height: 100px;
        width: 110px;
        align-items: center;
        margin-top: 80px;  
    }

    .categories-content-item-img{
        width: 100px;
        height: 110px;
        object-fit: cover;
        border-radius: 10px;
    }

    .categories-content-item-title {
        margin: 5px;
        font-size: 15px;
        text-align: left;
    }

    /* Best Deals */

    


    .bestdeals-item-detail {
        display: flex;
        margin-bottom: 2px;
        margin-top: 12px;
    }


    .bestdeals-content-item-title {
        color: var(--text-color);
        font-size: 15px;
        font-weight: 400;
    }

    .bestdeals-content-item-price {
        color: var(--text-color);
        font-size: 13px;
        font-weight: 500;
        margin-left: 30px;
    }

    /* Promo */

    .promo {
        height: 80vh;
        width: 100%;
        margin-top: 520px;
    }

    

    .promo-content {
        display: flex;
        margin: auto;
        justify-content: center;
    }

    /* .promo-content-container {
        width: 1000px;
        height: 550px;
        margin: 20px;
        border-radius: 20px;
        background: var(--main-color);
        display: flex;
        float: left;
        margin-left: -350px;
        margin-top: 100px;
    } */


    /* Testimonials */
    .trusted {
        height: 150vh;
        width: 100%;
        padding-top: 70px;
        /* background: #141026; */
        justify-content: center;
        align-items: center;
    }

    /* Newly Added */
    .NewlyAdded {
        height: 90vh;
        width: 100%;
        margin-top: 100px;  
    }


     /* FQA */
    .FAQ {
        height: 100vh;
        width: 100%;
        /* padding-top: 250px; */
        /* background: #141026; */
        justify-content: center;
        align-items: center;
    }

    .FAQ-content-header {
        margin: 20px;
        margin-top: 380px;
    }

    /* Discounts */
    .Discounts {
        height: 70vh;
        width: 100%;
        margin-bottom: 10px;
    }

    /* Footer */
    footer {
        background: var(--main-color);
        color: var(--bg-color);
        text-align: center;
        /* padding: 1rem 0; */
        height: 280vh;
        position: absolute;
        width: 100%;
    }

    
    .footer-content-links {
        margin-right: 20px;
    }

    .footer-content-about {
        margin-right: -60px; 
    }

    .footer-content-contact {
        margin-left: 150px;
        margin-top: -170px;
    }


}




@media (max-width: 390px) {
    /* Categories */

    .categories-content-title {
        margin: 10px;
        font-size: 25px;
    }

    .categories-content {
        width: 100%;
        height: 60vh;
    }

    .categories-content-list {
        display: flex;
        float: left;
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .categories-content-item {
        margin: 5px;
        border-radius: 15px;
        /* background: var(--main-color); */
        color: var(--text-color);
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        height: 100px;
        width: 110px;
        align-items: center;
        margin-top: 80px;  
    }

    .categories-content-item-img{
        width: 100px;
        height: 110px;
        object-fit: cover;
        border-radius: 10px;
    }

    .categories-content-item-title {
        margin: 5px;
        font-size: 15px;
        text-align: left;
    }

    /* Best Deals */

    .bestdeals-item-detail {
        display: flex;
        margin-bottom: 2px;
        /* margin-top: 22px; */
    }

    .bestdeals-content-title {
        margin: 20px;
        padding-bottom: 12px;
    }


    .bestdeals-content-item-title {
        color: var(--text-color);
        font-size: 15px;
        font-weight: 400;
    }

    .bestdeals-content-item-price {
        color: var(--text-color);
        font-size: 13px;
        font-weight: 500;
        margin-left: 30px;
    }

    /* Promo */

    .promo {
        height: 80vh;
        width: 100%;
        margin-top: 420px;
    }

    .promo-content {
        display: flex;
        margin: auto;
        justify-content: center;
    }

    /* .promo-content-container {
        width: 1000px;
        height: 370px;
        margin: 20px;
        border-radius: 20px;
        background: var(--main-color);
        display: flex;
        float: left;
        margin-left: -350px;
        margin-top: 200px;
    } */


    /* Testimonials */
    .trusted {
        height: 150vh;
        width: 100%;
        /* padding-top: 20px; */
        /* background: #141026; */
        justify-content: center;
        align-items: center;
    }
    
    .trusted-content-header {
        margin: 10px;
        margin-top: 70px;
        margin-bottom: 0px;
    }

    /* Newly added */
    .NewlyAdded {
        height: 90vh;
        width: 100%;
        margin-top: 100px;
    }

    .Newly-content-title {
        margin: 20px;
        padding-bottom: 2px;
        max-width: 200px;
        margin-right: 5px;
    }

    

    /* FAQ */

    .FAQ-content-header {
        margin: 20px;
        margin-top: 350px;
    }



    /* Discounts */

    .Discounts {
        height: 100vh;
        width: 100%;
        margin-top: 920px;
    }
    
    .discount-content {
        /* display: flex; */
        margin: auto;
        margin-top: 300px;
    }

    /* Footer */
    footer {
        background: var(--main-color);
        color: var(--bg-color);
        text-align: center;
        /* padding: 1rem 0; */
        height: 180vh;
        position: absolute;
        width: 100%;
        margin-top: 750px;
    }

    .footer-content-links {
        margin-right: 10px;
    }

    .footer-content-about {
        margin-right: -60px; 
    }

    .footer-content-contact {
        margin-left: 150px;
        margin-top: -190px;
    }
}


