* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "League Spartan", sans-serif;
}

h1 {
    font-size: 50px;
    line-height: 64px;
    color: #222;
}

h2 {
    font-size: 46px;
    line-height: 54px;
    color: #222;
}

h4 {
    font-size: 20px;
    color: #222;
}

h6 {
    font-size: 12px;
    font-weight: 700;
}

p {
    font-size: 12px;
    color: #465b52;
    margin: 12px 0px 20px 0px;
}

.sectionP1 {
    padding: 40px 80px;
}

.sectionM1 {
    margin: 40px 0px;
}

button.normal {
    font-size: 14px;
    font-weight: 600;
    padding: 15px 30px;
    color: #000;
    background-color: #fff;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    outline: none;
    transform: 0.2s;
}

button.white {
    font-size: 13px;
    font-weight: 600;
    padding: 11px 18px;
    color: rgb(0, 0, 0);
    background-color: #fff;
    cursor: pointer;
    border: 1px solid #fff;
    outline: none;
    transform: 0.2s;
}

body {
    width: 100%;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 80px;
    background-color: #f3f3f7;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
}

.header img{
    width: 16%;
}

.navbar ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar li {
    list-style: none;
    padding: 0px 20px;
    position: relative;
}

.navbar li a {
    font-size: 16px;
    text-decoration: none;
    font-weight: 600;
    color: #1a1a1a;
    transition: 0.3s ease;
}

.navbar li a:hover {
    color: #088178;
}

.navbar li a:hover,
.navbar li a.active {
    color: #088178;
}

.navbar li a.active::after,
.navbar li a:hover::after {
    content: "";
    width: 30%;
    height: 2px;
    background-color: #088178;
    position: absolute;
    bottom: -4px;
    left: 20px;
}

#bag {
    position: absolute;
    top: 32px;
    right: 60px;
    /* adjust spacing based on hamburger */
    z-index: 2000;
    /* ensures it's clickable */
}

#bag i {
    font-size: 18px;
    color: #000;
    /* adjust to match your theme */
    cursor: pointer;
}

#mobile {
    display: none;
    align-items: center;
}

#close {
    display: none;
}

.hero {
    background-image: url(2img/hero.jpg);
    height: 90vh;
    width: 100%;
    background-size: cover;
    background-position: top 0% right 0;
    padding: 0 80px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.hero h4 {
    padding-bottom: 15px;
}

.hero h1 {
    color: #088178;
}

.hero button {
    background-image: url(2img/button.png);
    background-color: transparent;
    color: #088178;
    border: 0;
    padding: 14px 80px 14px 65px;
    background-repeat: no-repeat;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
}

.hero button a {
    text-decoration: none;
    color: #088178;
}

#feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

#feature .featureBox {
    width: 180px;
    text-align: center;
    padding: 25px 15px;
    box-shadow: 10px 10px 54px rgba(70, 62, 221, 0.1);
    border: 1px solid #cce7d0;
    border-radius: 4px;
    margin: 15px 0;
}

#feature .featureBox:hover {
    box-shadow: 20px 20px 24px rgba(0, 0, 0, 0.3);
}

#feature .featureBox img {
    width: 100%;
    margin-bottom: 10px;
}

#feature .featureBox h6 {
    padding: 9px 8px 6px 8px;
    line-height: 1;
    border-radius: 4px;
    background-color: #fddde4;
    color: #088178;
    display: inline-block;
}

#feature .featureBox:nth-child(2) h6 {
    background-color: #cdebbc;
}

#feature .featureBox:nth-child(3) h6 {
    background-color: #d1e8f2;
}

#feature .featureBox:nth-child(4) h6 {
    background-color: #cdd4f8;
}

#feature .featureBox:nth-child(5) h6 {
    background-color: #f6dbf6;
}

#feature .featureBox:nth-child(6) h6 {
    background-color: #fff2e5;
}

#product1 {
    text-align: center;
}

#product1 .Pcontainer {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    flex-wrap: wrap;
}

#product1 .pro {
    width: 23%;
    min-width: 250px;
    padding: 10px 12px;
    border: 1px solid #cce7d0;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
    margin: 15px 0;
    transform: 0.2s ease;
    position: relative;
}

#product1 .pro img {
    width: 100%;
    border-radius: 20px;
}

#product1 .pro:hover {
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.06);
}

#product1 .pro .description {
    text-align: start;
    padding: 10px 0;
}

#product1 .pro .description span {
    color: #606063;
    font-size: 12px;
}

#product1 .pro .description h5 {
    padding-top: 7px;
    color: #1a1a1a;
    font-size: 14px;
}

#product1 .pro .description h4 {
    padding-top: 7px;
    font-size: 15px;
    font-weight: 700;
    color: #088178;
}

#product1 .pro .cartShopping {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50px;
    background-color: #e8f6ea;
    font-weight: 500;
    color: #088178;
    border: 1px solid #cce7d0;
    position: absolute;
    bottom: 20px;
    right: 10px;
}

#banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url(2img/banner/discoundBack.jpg);
    width: 100%;
    height: 40vh;
    background-size: cover;
    background-position: 0px -200px;
}

#banner h4 {
    color: #fff;
    font-size: 16px;
}

#banner h2 {
    color: #fff;
    font-size: 30px;
    padding: 10px 0;
}

#banner h2 span {
    color: #ff0000e0;
}

#banner button a {
    text-decoration: none;
    color: #000;
}

#banner button:hover {
    background-color: #088178;
    color: #fff;
}

#subBanner a {
    text-decoration: none;
}

#subBanner .bannerBox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-image: url(2img/banner/big1.jpg);
    width: 580px;
    height: 50vh;
    background-size: cover;
    padding: 30px;
    background-position: center;
}

#subBanner .bannerBox2 {
    background-image: url(2img/banner/big2.jpg);
}

#subBanner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#subBanner h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 300;
}

#subBanner h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
}

#subBanner span {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 15px;
}

#subBanner .bannerBox:hover button {
    background: #088178;
    border: 1px solid #088178;
}

#banner3 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 80px;
}

#banner3 .bannerBox {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-image: url(2img/banner/b1.jpg);
    width: 30%;
    height: 40vh;
    background-size: cover;
    padding: 20px;
    background-position: start;
    margin-bottom: 20px;
}

#banner3 .bannerBox-2 {
    display: none;
    background-image: url(2img/banner/b2.jpg);
}

#banner3 .bannerBox-3 {
    background-image: url(2img/banner/b3.jpg);
    display: none;
}


#banner3 h2 {
    color: #fff;
    font-weight: 900;
    font-size: 22px;
}

#banner3 h3 {
    color: #ec544e;
    font-weight: 800;
    font-size: 15px;
}

#email {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    /* background-image: url(img/banner/b14.png); */
    background-repeat: no-repeat;
    background-position: 20% 30%;
    background-color: #041e42;
}

#email h4 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

#email p {
    font-size: 14px;
    font-weight: 600;
    color: #818ea0;
}

#email p span {
    color: #ffbd27;
}

#email .form {
    display: flex;
    width: 40%;
}

#email input {
    height: 3.125rem;
    padding: 0 1.25em;
    font-size: 14px;
    width: 100%;
    border: 1px solid transparent;
    border-radius: 4px;
    outline: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

#email button {
    background-color: #088178;
    color: #fff;
    white-space: nowrap;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.social {
    margin-top: 30px;
}

.container001 {
    display: flex;
    gap: 20px;
    max-width: 80vw;
    margin: auto;
    justify-content: space-between;
    align-items: center;
}

.card001 {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.3);
    width: 40vw;
    text-align: center;
}

.card001 h3 {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: bold;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    font-size: 40px;
    color: inherit;
    text-decoration: none;
}

.social-icons .whatsapp {
    color: #25D366;
}

.social-icons .instagram {
    color: #ff0000;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    color: #555;
}

.contact-info i {
    color: #e83e8c;
    margin-right: 8px;
}

/* ---------------shop Page------------------ */

#pageHeader {
    background-image: url(2img/banner/shopHero.jpg);
    width: 100%;
    height: 40vh;
    background-size: cover;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 14px;
}

#pageHeader h2,
#pageHeader p {
    color: #fff;
}

#pageHeader p{
    font-size: 16px;
}

#pageSlide {
    text-align: center;
}

#pageSlide a {
    text-decoration: none;
    background-color: #088178;
    padding: 15px 20px;
    border-radius: 4px;
    color: #fff;
    font-weight: 600;
}

#pageSlide a i {
    font-size: 16px;
    font-weight: 600;
}

#proDetails {
    display: flex;
    margin-top: 20px;
}

#proDetails .singleProImage {
    width: 40%;
    margin-right: 50px;
}

.smallImageGroup {
    display: flex;
    justify-content: space-between;
}

.smallImageCol {
    flex-basis: 24%;
    cursor: pointer;
}

#proDetails .singleProDetails {
    width: 50%;
    padding-top: 30px;
}

#proDetails .singleProDetails {
    width: 50%;
    padding-top: 30px;
}

#proDetails .singleProDetails h4 {
    padding: 40px 0 20px 0;
}

#proDetails .singleProDetails h2 {
    font-size: 26px;
}

#proDetails .singleProDetails select {
    display: block;
    padding: 5px 10px;
    margin-bottom: 10px;
}

#proDetails .singleProDetails input {
    width: 50px;
    height: 47px;
    padding-left: 10px;
    font-size: 16px;
    margin-right: 10px;
}

#proDetails .singleProDetails input:focus {
    outline: none;
}

#proDetails .singleProDetails button {
    background-color: #088178;
    color: #fff;
}

#proDetails .singleProDetails span {
    line-height: 25px;
}

/* -----------Cart----------- */

#cart {
    overflow-x: auto;
}

#cart table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    white-space: nowrap;
}

#cart table img {
    width: 70px;
}

#cart table td:nth-child(1) {
    width: 100px;
    text-align: center;
}

#cart table td:nth-child(2) {
    width: 150px;
    text-align: center;
}

#cart table td:nth-child(3) {
    width: 250px;
    text-align: center;
}

#cart table td:nth-child(4),
#cart table td:nth-child(5),
#cart table td:nth-child(6) {
    width: 150px;
    text-align: center;
}

#cart table td:nth-child(5) input {
    width: 70px;
    padding: 10px 5px 10px 15px;
}

#cart table thead {
    border: 1px solid #e2e9e1;
    border-left: none;
    border-right: none;
}

#cart table thead td {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    padding: 18px 0;
}

#cart table tbody tr td {
    padding-top: 15px;
}

#cart table tbody td {
    font-size: 13px;
}

#subTotal {
    max-width: 80vw;
    margin: auto;
    display: flex;
    justify-content: end;
    align-items: center;
    border: 1px solid #e2e9e1;
    border-left: none;
    border-right: none;
}

#subTotal tr td {
    padding: 20px;
}

.btn {
    max-width: 80vw;
    margin: auto;
    display: flex;
    justify-content: end;
    align-items: center;
    border-left: none;
    border-right: none;
    padding-top: 30px;
}

.btn button {
    background-color: #088178;
    color: #fff;
}