@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'League Spartan', sans-serif;
}
:root {
    --green-color: #088178;
    --heading-color: #222;
    --p-color: #465b52;
    --border-color: #cce7d0;
}
body {
    width: 100%;
}
h1 {
    font-size: 50px;
    line-height: 64px;
    color: var(--heading-color);
}
h2 {
    font-size: 46px;
    line-height: 54px;
    color: var(--heading-color);
}
h4 {
    font-size: 20px;
    color: var(--heading-color);
}
h6 {
    font-size: 12px;
    font-weight: 700;
}
p {
    font-size: 16px;
    color: var(--p-color);
    margin: 15px 0 20px 0;
}
.section-p1 {
    padding: 40px 80px;
}
.section-m1 {
    margin: 40px 0
}
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;
    transition: .2s;
}
button.white {
    font-size: 13px;
    font-weight: 600;
    padding: 11px 18px;
    color: #fff;
    background-color: transparent;
    cursor: pointer;
    border: 1px solid #fff;
    outline: none;
    transition: .2s;
}
/* ************************ Header ********************* */
#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 80px;
    background-color: #e3e6f3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
}
#nav-items {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
}
#nav-items li {
    list-style: none;
    position: relative;
    padding: 0 20px;
}
#nav-items li a:not(.icon) {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    transition: .3s ease;
}
#nav-items li .icon {
    color: var(--green-color);
}
#nav-items li a:hover,
#nav-items li a.active-link {
    color: var(--green-color);
}
#nav-items li a.active-link::after,
#nav-items li a:not(.icon):hover:after {
    content: "";
    position: absolute;
    width: 30%;
    height: 2px;
    background-color: var(--green-color);
    left: 20px;
    bottom: -4px;
}
#nav-items .sign-up {
    padding: 10px 20px;
    background: var(--green-color);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: .3s;
}
#nav-items .sign-up:hover {
    background: #056861;
}
.cart-btn {
    position: relative;
    cursor: pointer;
    padding-right: 0 !important;
    list-style: none;
}
.cart-icon {
    font-size: 1.25rem;
    color: var(--green-color);
}
.close-cart {
    cursor: pointer;
    font-size: 1.7rem;
}
.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ffbd27;
    color: #fff;
    padding: 0 5px;
    border-radius: 30%;
    font-weight: bold;
}
.cart-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    transition: .3s;
    background: rgba(0, 0, 0, .5);
    z-index: 2;
    visibility: hidden;
}
.cart-added {
    position: fixed;
    top: 80px;
    right: 0;
    width: 40vw;
    height: 100%;
    overflow-y: scroll;
    background: #e3e6f3;
    transition: .3s;
    padding: 1.5rem;
    z-index: 3;
    min-width: 450px;
    transform: translateX(100%);
}
.cart-added h3 {
    text-align: center;
    text-transform: capitalize;
    letter-spacing: 1.2px;
    margin-bottom: 2rem;
}
.cart-product {
    display: grid;
    align-items: center;
    grid-template-columns: auto 1fr auto;
    column-gap: 1.5rem;
    margin: 1.5rem 0;
}
.cart-product img {
    width: 75px;
    height: 75px;
}
.cart-product h4 {
    font-size: .85rem;
    text-transform: capitalize;
    letter-spacing: 1.2px;
    line-height: 1.2;
}
.cart-product h5 {
    margin: .5rem 0;
    letter-spacing: 1.2px;
}
.amount {
    text-align: center;
    margin: 0;
    font-weight: bold;
}
.remove-item {
    cursor: pointer;
}
.fa-chevron-up,
.fa-chevron-down {
    cursor: pointer;
    color: var(--green-color);
}
.cart-footer {
    margin-top: 2rem;
    margin-bottom: 5rem;
    letter-spacing: 1.2px;
    text-align: center;
}
.remove-item {
    cursor: pointer;
    color: #bc1c1c;
}
.cart-footer h3 {
    text-transform: capitalize;
    margin-bottom: 1rem;
}
button.clear-cart {
    background-color: #bc1c1c;
    color: #fff;
    font-weight: bold;
    border: 1px solid #bc1c1c;
    letter-spacing: 1.2px;
}
button.clear-cart:hover {
    background-color: transparent;
    color: #000;
}
.show-cart {
    transform: translateX(0)
}
.transparent-bg {
    visibility: visible;
}
#mobile {
    display: none;
    align-items: center;
}
#close {
    display: none;
}
/* ************* Home Page ************************** */
#hero {
    background-image: url("../imgs/hero4.png");
    height: 90vh;
    width: 100%;
    background-size: cover;
    background-position: top 25% right 0;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
#hero h4 {
    padding-bottom: 15px;
}
#hero h1 {
    color: var(--green-color);
}
#hero button {
    background-image: url("../imgs/button.png");
    background-color: transparent;
    background-repeat: no-repeat;
    color: var(--green-color);
    border: 0;
    padding: 14px 80px 14px 65px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
}
#feature {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
#feature .fet-box {
    width: 16%;
    min-height: 154px;
    text-align: center;
    padding: 25px 15px;
    box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    margin: 15px auto;
}
#feature .fet-box:hover {
    box-shadow: 10px 10px 54px rgba(70, 62, 221, 0.1);
}
#feature .fet-box img {
    width: 100%;
    margin-bottom: 10px;
}
#feature .fet-box h6 {
    padding: 9px 8px 6px;
    line-height: 1;
    background-color: #fddde4;
    color: var(--green-color);
    display: inline-block;
}
#feature .fet-box:nth-child(2) h6 {
    background-color: #cdebbc;
}
#feature .fet-box:nth-child(3) h6 {
    background-color: #d1e8f2;
}
#feature .fet-box:nth-child(4) h6 {
    background-color: #cdd4f8;
}
#feature .fet-box:nth-child(5) h6 {
    background-color: #f6dbf6;
}
#feature .fet-box:nth-child(6) h6 {
    background-color: #fff2e5;
}
#products {
    text-align: center;
}
#products .prod {
    position: relative;
    width: 23%;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
    margin: 15px auto;
    transition: 0.2s ease;
}
#products .prod:hover {
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.06);
}
#products .prod img {
    width: 100%;
    border-radius: 20px;
    cursor: pointer;
}
#products .prod .desc {
    text-align: center;
    padding: 10px 0;
}
#products .prod .desc span {
    color: #606063;
    font-size: 12px;
}
#products .prod .desc h5 {
    padding: 7px 0;
    color: #1a1a1a;
    font-size: 14px;
}
#products .prod .desc i {
    font-size: 12px;
    color: rgb(243, 181, 25);
}
#products .prod .desc h4 {
    padding-top: 7px;
    font-size: 15px;
    font-weight: 700;
    color: var(--green-color);
}
#products .prod .bag-btn {
    background: var(--green-color);
    border: 1px solid #ccc;
    padding: 8px 16px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: .3s;
}
#products .prod-container {
    display: flex;
    flex-wrap: wrap;
}
#banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url("../imgs/banner/b2.jpg");
    width: 100%;
    height: 40vh;
    background-position: center;
    background-size: cover;
}
#banner h4 {
    color: #fff;
    font-size: 16px;
}
#banner h2 {
    color: #fff;
    font-size: 30px;
    padding: 10px 0;
}
#banner h2 span {
    color: #ef3636;
}
#banner button:hover {
    color: #fff;
    background-color: var(--green-color);
}
#sm-banner {
    display: flex;
    flex-wrap: wrap;
}
#sm-banner .banner-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-image: url("../imgs/banner/b17.jpg");
    min-width: 48%;
    height: 50vh;
    background-position: center;
    background-size: cover;   
    padding: 30px;
    margin: auto;
}
#sm-banner .banner-box2 {
    background-image: url("../imgs/banner/b10.jpg");
}
#sm-banner .banner-box h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 300;
}
#sm-banner .banner-box h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
}
#sm-banner .banner-box span {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 15px;
}
#sm-banner .banner-box:hover button{
    background-color: var(--green-color);
    border-color: var(--green-color);
}
#banner-3 {
    display: flex;
    flex-wrap: wrap;
    padding: 0 80px;
}
#banner-3 .banner-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-image: url("../imgs/banner/b7.jpg");
    width: 31%;
    height: 30vh;
    background-position: center;
    background-size: cover;   
    padding: 20px;
    margin: auto;
}
#banner-3 .banner-box2 {
    background-image: url("../imgs/banner/b4.jpg");

}
#banner-3 .banner-box3 {
    background-image: url("../imgs/banner/b18.jpg");

}

#banner-3 .banner-box h2 {
    color: #fff;
    font-weight: 900;
    font-size: 22px;
}
#banner-3 .banner-box h3 {
    color: #ec544e;
    font-weight: 800;
    font-size: 15px;
}
#newsletter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    background-image: url("../imgs/banner/b14.png");
    background-repeat: no-repeat;
    background-position: 20% 30%;
    background-color: #041e42;
}
#newsletter h4 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}
#newsletter p {
    font-size: 14px;
    font-weight: 600;
    color: #818ea0;
}
#newsletter p span {
    color: #ffbd27;
}
#newsletter .form {
    display: flex;
    width: 40%;
}
#newsletter .form input {
    height: 3.125rem;
    width: 100%;
    outline: none;
    font-size: 14px;
    padding: 0 1.25rem;
    border: 1px solid transparent;
    border-radius: 4px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
#newsletter .form button {
    background-color: var(--green-color);
    color: #fff;
    white-space: nowrap;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer .col{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.footer .logo {
    margin-bottom: 30px;
}
.footer h4 {
    font-size: 14px;
    padding-bottom: 20px;
}
.footer p {
    font-size: 13px;
    margin: 0 0 8px 0;
}
.footer a {
    font-size: 13px;
    text-decoration: none;
    color: #222;
    margin-bottom: 10px;
}
.footer .follow {
    margin-top: 20px;
}
.footer .follow i {
    color: #465b52;
    padding-right: 4px;
    cursor: pointer;
}
.footer .install .row img {
    border: 1px solid var(--green-color);
    border-radius: 6px;
    margin: 10px 0 15px 0;
}
.footer .follow i:hover,
.footer a:hover {
    color: var(--green-color);
}
/* ************************************* page Page *********************************** */
#page-header {
    background-image: url("../imgs/banner/b1.jpg");
    width: 100%;
    height: 40vh;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 14px;
}
#page-header h2,
#page-header p {
    color: #fff;
}
#pagination {
    text-align: center;
}
#pagination a {
    text-decoration: none;
    background-color: var(--green-color);
    color: #fff;
    padding: 15px 20px;
    border-radius: 4px;
    font-weight: 600;
}
#pagination a i {
    font-size: 16px;
    font-weight: 600;
}
/* *************************************** Single Product ************************* */
#prod-details {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding: 0px 40px 20px;
}
#prod-details img {
    width: 100%;
}
#prod-details .single-prod-image {
    min-width: 40%;
}
#prod-details .smal-img-group {
    display: flex;
    justify-content: space-between;
}
#prod-details .smal-img-group .smal-img-col {
    flex-basis: 24%;
    cursor: pointer;
}
#prod-details .single-prod-details {
    min-width: 50%;
    padding: 30px;
}
#prod-details .single-prod-details h4 {
    padding: 40px 0 20px 0;
}
#prod-details .single-prod-details h2 {
    font-size: 26px;
}
#prod-details .single-prod-details select {
    display: block;
    padding: 5px 10px;
    margin-bottom: 10px;
}
#prod-details .single-prod-details input {
    width: 50px;
    height: 47px;
    padding-left: 10px;
    font-size: 16px;
    margin-right: 10px;
    margin-bottom: 10px;
}
#prod-details .single-prod-details input:focus,
#prod-details .single-prod-details select:focus {
    outline: none;
}
#prod-details .single-prod-details button {
    background-color: var(--green-color);
    color: #fff;
}
#prod-details .single-prod-details p {
    line-height: 25px;
}
/* ****************************** Blog Page ************************** */
#page-header.blog-header {
    background-image: url("../imgs/banner/b19.jpg");
}
#blog {
    padding: 150px 150px 0 150px;
}
#blog .blog-box {
display: flex;
align-items: center;
width: 100%;
position: relative;
padding-bottom: 90px;
}
#blog .blog-img {
    width: 50%;
    margin-right: 40px;
}
#blog .blog-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
#blog .blog-details {
    width: 50%;
}
#blog .blog-details a {
    text-decoration: none;
    font-size: 11px;
    color: #000;
    font-weight: 700;
    position: relative;
    transition: .3s;
}
#blog .blog-details a::after {
    content: "";
    width: 50px;
    height: 1px;
    background-color: #000;
    position: absolute;
    top: 4px;
    right: -60px;
}
#blog .blog-details a:hover {
    color: var(--green-color);
}
#blog .blog-details a:hover::after {
    background-color: var(--green-color);
}
#blog .blog-box h1 {
    position: absolute;
    top: -40px;
    left: 0;
    font-size: 70px;
    font-weight: 700;
    color: #c9cbce;
    z-index: -1;
}
/* ******************************* About Page ************************************* */
#page-header.about-header {
    background-image: url("../imgs/about/banner.png");
}
#about-head {
    display: flex;
    align-items: center;
}
#about-head img {
    width: 50%;
    height: auto;
}
#about-head div {
    padding-left: 40px;
}
#about-app {
    text-align: center;
}
#about-app .video {
    width: 70%;
    height: 100%;
    margin: 30px auto 0 auto;
}
#about-app .video video {
    width: 100%;
    height: 100%;
    border-radius: 30px;
}
/* ************************************* Contact Page *************************************** */
#contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#contact .contact-details {
    width: 40%;
}
#contact .contact-details span,
#form-details form span {
    font-size: 12px;
}
#contact .contact-details h2,
#form-details form h2 {
    font-size: 26px;
    line-height: 35px;
    padding: 20px 0;
}
#contact .contact-details h3 {
    font-size: 16px;
    padding-bottom: 15px;
}
#contact .contact-details li {
    list-style: none;
    display: flex;
    padding: 10px 0;
}
#contact .contact-details li i {
    font-size: 14px;
    padding-right: 22px;
}
#contact .contact-details li p {
    margin: 0;
    font-size: 14px;
}
#contact .map {
    width: 55%;
    height: 350px;
}
#contact .map iframe {
    width: 100%;
    height: 100%;
}
#form-details {
    display: flex;
    justify-content: space-between;
    padding: 80px;
    margin: 30px;
    border: 1px solid #e1e1e1;
}
#form-details form {
    width: 65%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
#form-details form input,
#form-details form textarea {
    width: 100%;
    padding: 12px 15px;
    outline: auto;
    margin-bottom: 20px;
    outline: none;
    border: 1px solid #e1e1e1;
}
#form-details form textarea {
    resize: none;
}
#form-details button {
    color: #fff;
    background-color: var(--green-color);
}
#form-details .people div {
    padding-bottom: 25px;
    display: flex;
    /* align-items: flex-start; */
}
#form-details .people div img {
    width: 65px;
    height: 65px;
    object-fit: cover;
    margin-right: 15px;
}
#form-details .people div p {
    margin: 0;
    font-size: 13px;
    line-height: 25px;
}
#form-details .people div p span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #000;
}
/* *********************************** Cart Page ************************* */
#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(2),
#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 td {
    padding-top: 15px;
    font-size: 13px;
}
input[type='number'] {
    width: 30%;
    height: 30px;
    text-align: center;
    border: 1px solid #ccc;
    outline: none
}
.size {
    border: 1px solid #ccc;
}
.remove-row {
    cursor: pointer;
}
#cart-add {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}
#cart-add #coupon {
    width: 70%;
    margin-bottom: 30px;
}
#coupon h3,
#subtotal h3 {
    padding-bottom: 15px;
}
#coupon input {
    width: 60%;
    padding: 10px 20px;
    outline: none;
    margin-right: 10px;
    border: 1px solid #e2e9e1;
}
#coupon button,
#subtotal button {
    color: #fff;
    background-color: var(--green-color);
    padding: 10px 20px;
}
#subtotal {
    width: 70%;
    margin-bottom: 30px;
    border: 1px solid #e2e9e1;
    padding: 30px;
}
#subtotal table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
#subtotal table td {
    width: 50%;
    border: 1px solid #e2e9e1;
    padding: 10px;
    font-size: 13px;
}
.container{
    position: relative;
    max-width: 430px;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 50px auto;
}

.container .forms{
    display: flex;
    align-items: center;
    height: 440px;
    width: 200%;
    transition: height 0.2s ease;
}


.container .form{
    width: 50%;
    padding: 30px;
    background-color: #fff;
    transition: margin-left 0.18s ease;
}

.register {
    margin-top: 30px;
    letter-spacing: 1.2px;
    text-align: center;
}

.container.active .login{
    margin-left: -50%;
    opacity: 0;
    transition: margin-left 0.18s ease, opacity 0.15s ease;
}

.container .signup{
    opacity: 0;
    transition: opacity 0.09s ease;
}
.container.active .signup{
    opacity: 1;
    transition: opacity 0.2s ease;
}

.container.active .forms{
    height: 600px;
}
.container .form .title{
    position: relative;
    font-size: 27px;
    font-weight: 600;
}

.form .title::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 30px;
    background-color: #4070f4;
    border-radius: 25px;
}

.form .input-field{
    position: relative;
    height: 50px;
    width: 100%;
    margin-top: 30px;
}

.input-field input{
    position: absolute;
    height: 100%;
    width: 100%;
    padding: 0 35px;
    border: none;
    outline: none;
    font-size: 16px;
    border-bottom: 2px solid #ccc;
    border-top: 2px solid transparent;
    transition: all 0.2s ease;
}

.input-field input:is(:focus, :valid){
    border-bottom-color: #4070f4;
}

.input-field i{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 23px;
    transition: all 0.2s ease;
}

.input-field input:is(:focus, :valid) ~ i{
    color: #4070f4;
}

.input-field i.icon{
    left: 0;
}
.input-field i.showHidePw{
    right: 0;
    cursor: pointer;
    padding: 10px;
}

.form .checkbox-text{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.checkbox-text .checkbox-content{
    display: flex;
    align-items: center;
}

.checkbox-content input{
    margin: 0 8px -2px 4px;
    accent-color: #4070f4;
}

.form .text{
    color: #333;
    font-size: 14px;
}

.form a.text{
    color: #4070f4;
    text-decoration: none;
}
.form a:hover{
    text-decoration: underline;
}

.form .button{
    margin-top: 35px;
}

.form .button button{
    border: none;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 6px;
    background-color: #4070f4;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 50px;
}

.button button:hover{
    background-color: #265df2;
}

.form .login-signup{
    margin-top: 30px;
    text-align: center;
}
.modal {
    display: none;
    position: fixed;
    overflow: auto;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 9999;
}
.modal-content {
    width: 70%;
    background: #fff;
    margin: 20px auto;
    box-shadow: 4px 4px 5px rgba(0, 0, 0, .25);
}
.modal-header {
    position: relative;
    background: #e3e6f3;
    box-shadow: 0 5px 15px rgb(0 0 0 / 6%);
    padding: 25px 30px;
    text-align: center;
    text-transform: uppercase;
    font-size: 30px;
}
.modal-header h2 {
    font-size: 30px;
}
.modal-close {
    position: absolute;
    font-size: 40px;
    top: 5px;
    cursor: pointer;
    right: 10px;
}

/* ****************************** Media Queries ******************************* */
@media (max-width: 799px) {
    .section-p1 {
        padding: 40px 40px;
    }
    #nav-items {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        position: fixed;
        top: 0;
        right: -555px;
        width: 60vw;
        height: 100vh;
        background-color: #e3e6f3;
        box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
        padding: 80px 0 0 10px;
        transition: .3s;
    }
    #nav-items.active {
        right: -1px;
    }
    #nav-items li {
        margin-bottom: 25px;
    }
    #nav-items button {
        margin-bottom: 25px;
    }
    #mobile {
        display: flex;
        align-items: center;
    }
    #mobile i:first-child {
        color: var(--green-color);
    }
    #mobile i {
        color: #1a1a1a;
        font-size: 24px;
        padding-left: 20px;
        cursor: pointer;
    }
    #close {
        display: initial;
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 24px;
        color: #222;
        border-radius: 50%;
        background-color: #cdd4f8;
        cursor: pointer;
    }
    #lg-bag {
        display: none;
    }
    #hero {
        height: 70vh;
        background-position: top 30% right 30;
        padding: 0 80px;
    }
    #feature {
        justify-content: center;
    }
    #feature .fet-box {
        width: 31%;
        margin: 15px auto;
    }
    #products .prod-container {
        justify-content: center;
        padding-top: 20px;
    }
    #products .prod {
        width: 48%;
    }
    #banner {
        height: 35vh;
    }
    #sm-banner .banner-box {
        min-width: 100%;
        height: 30vh;
        background-position: center;
        background-size: cover;
        padding: 30px;
    }
    #banner-3 {
        padding: 0 40px;
    }
    #banner-3 .banner-box {
        min-width: 100%;
    }
    #newsletter .form {
        width: 70%;
    }
    /* Contact Page */
    #form-details {
        padding: 40px;
    }
    #form-details form {
        width: 50%;
    }
    #nav-items .cart-btn {
        display: none;
    }
    #prod-details {
        flex-direction: column;
    }
    .cart-added {
        min-width: 384px;
    }
}
@media (max-width: 477px) {
    .section-p1 {
        padding: 20px;
    }
    #header {
        padding: 10px 30px;
    }
    h1 {
        font-size: 38px;
    }
    h2 {
        font-size: 32px;
    }
    #hero {
        background-position: 60%;
        padding: 0 20px;
    }
    #feature {
        justify-content: space-between;
    }
    #feature .fet-box {
        width: 48%;
        margin:0 0 15px 0;
    }
    #products .prod {
        width: 100%;
    }
    #banner {
        height: 40vh;
        padding: 0 15px;
    }
    #sm-banner .banner-box {
        height: 40vh;
    }
    #sm-banner .banner-box2 {
        margin-top: 20px;
    }
    #banner-3 {
        padding: 0 20px;
    }
    #newsletter {
        padding: 40px 20px;
    }
    #newsletter .form {
        width: 100%;
    }
    /* Single Product */
    #prod-details {
    flex-direction: column;        
    }
    #prod-details .single-prod-image {
        width: 100%;
        margin-right: 0px;
    }
    #prod-details .single-prod-details {
        width: 100%;
    }
    /* Blog Page */
    #blog {
        padding: 100px 20px 0 20px;
    }
    #blog .blog-box {
        flex-direction: column;
        align-items: flex-start;
    }
    #blog .blog-img {
        width: 100%;
        margin-right: 0px;
        margin-bottom: 30px;
    }
    #blog .blog-details {
        width: 100%;
    }
    /* About Page */
    #about-head {
        flex-direction: column;
    }
    #about-head img {
        width: 100%;
        margin-bottom: 30px;
    }
    #about-head div {
        padding-left: 0px;
    }
    #about-app .video {
        width: 100%;
    }
    /* Contact Page */
    #contact {
        flex-direction: column;
    }
    #contact .contact-details {
        width: 100%;
        margin-bottom: 30px;
    }
    #contact .map {
        width: 100%;
    }
    #form-details {
        padding: 30px 10px;
        margin: 10px;
        flex-wrap: wrap;
    }
    #form-details form {
        width: 100%;
        margin-bottom: 30px;
    }
    /* Cart Page */
    #cart-add {
        flex-direction: column;
    }
    #cart-add #coupon {
        width: 100%;
    }
    #subtotal {
        width: 100%;
        padding: 20px;
    }
    .cart-added {
        top: 60px;
        min-width: 100vw;
    }
    #nav-items .cart-btn {
        display: none;
    }
    .modal-header h2 {
        font-size: 22px;
    }
    .modal-content {
        width: 85%;
    }
}
.marquee-text {
  background-color: #ccc;
  padding: 15px;
  overflow: hidden;
  white-space: nowrap;
  animation: scroll-left 10s linear infinite;
  width: 100%;
  box-sizing: border-box;
}

@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
#pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}

#pagination a {
  display: inline-block;
  padding: 10px 15px;
  background-color: #f0f0f0;
  color: #000;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

#pagination a:hover {
  background-color: #088178;
  color: white;
}

#pagination a.active {
  background-color: #088178;
  color: white;
  font-weight: bold;
}

#pagination a.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
#contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 30px 0;
}

.contact-details {
  flex: 1;
}

.contact-details span {
  color: #088178;
  font-weight: bold;
}

.contact-details h2 {
  font-size: 26px;
  margin: 15px 0;
}

.contact-details h3 {
  margin: 25px 0 15px 0;
}

.contact-details ul {
  list-style: none;
  padding: 0;
}

.contact-details ul li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 10px 0;
  font-size: 14px;
}

.contact-details ul li i {
  color: #088178;
  font-size: 18px;
  width: 25px;
  text-align: center;
}

.map {
  flex: 1;
}

.map iframe {
  width: 100%;
  height: 450px;
  border-radius: 8px;
}

#form-details {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin: 30px 0;
}

#form-details form {
  flex: 1;
  display: flex;
  flex-direction: column;
}

#form-details form span {
  color: #088178;
  font-weight: bold;
  margin-bottom: 10px;
}

#form-details form h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

#form-details input,
#form-details textarea {
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
}

#form-details input:focus,
#form-details textarea:focus {
  outline: none;
  border-color: #088178;
  box-shadow: 0 0 8px rgba(8, 129, 120, 0.2);
}

#form-details button {
  margin-top: 15px;
  padding: 12px;
  background-color: #088178;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

#form-details button:hover {
  background-color: #056b5c;
}

.people {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.people div {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.people img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.people p {
  font-size: 14px;
  line-height: 1.8;
}

.people p span {
  font-weight: bold;
  font-size: 16px;
  display: block;
  margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  #contact {
    flex-direction: column;
  }

  .map iframe {
    height: 300px;
  }

  #form-details {
    flex-direction: column;
  }

  .people {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .people div {
    flex-direction: column;
    text-align: center;
  }
}
#products {
  padding: 40px 0;
}

.prod-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.prod-container .pro {
  cursor: pointer;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.prod-container .pro:hover {
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.prod-container .pro img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.prod-container .pro .des {
  text-align: start;
  padding: 15px;
  background: white;
}

.prod-container .pro .des span {
  color: #606063;
  font-size: 12px;
}

.prod-container .pro .des h5 {
  padding-top: 7px;
  color: #1a1a1a;
  font-size: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.prod-container .pro .star {
  color: rgb(243, 171, 39);
  font-size: 12px;
  margin: 5px 0;
}

.prod-container .pro .star i.empty {
  color: #ccc;
}

.prod-container .pro h4 {
  padding-top: 7px;
  font-size: 16px;
  font-weight: bold;
  color: #088178;
}

.prod-container .pro .cart-btn-add {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 45px;
  height: 45px;
  background-color: #e8f6f3;
  border: 1px solid #cce7e0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #088178;
  transition: all 0.3s ease;
}

.prod-container .pro .cart-btn-add:hover {
  background-color: #088178;
  color: white;
  border-color: #088178;
}

/* Pagination */
#pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}

#pagination a {
  display: inline-block;
  padding: 12px 18px;
  background-color: #f0f0f0;
  color: #000;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
}

#pagination a:hover {
  background-color: #088178;
  color: white;
}

#pagination a.active {
  background-color: #088178;
  color: white;
  font-weight: bold;
}

#pagination a.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 1200px) {
  .prod-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .prod-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .prod-container .pro img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .prod-container {
    grid-template-columns: 1fr;
  }
}
/* Cart Page Styles */
#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 thead {
  border: 1px solid #e2e9e1;
  border-left: none;
  border-right: none;
}

#cart table thead td {
  font-weight: 700;
  font-size: 13px;
  padding: 18px 0;
  text-transform: uppercase;
}

#cart table tbody tr td {
  padding-top: 15px;
  font-size: 13px;
}

#cart table tbody td {
  border-bottom: 1px solid #e2e9e1;
}

.remove-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: #088178;
  transition: 0.3s;
}

.remove-btn:hover {
  color: #ff0000;
}

.quantity-control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.quantity-control button {
  width: 30px;
  height: 30px;
  border: 1px solid #ccc;
  background: white;
  cursor: pointer;
  border-radius: 4px;
  font-size: 16px;
  transition: 0.3s;
}

.quantity-control button:hover:not(:disabled) {
  background: #088178;
  color: white;
  border-color: #088178;
}

.quantity-control button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.quantity-control span {
  min-width: 30px;
  text-align: center;
  font-weight: 600;
}

/* Cart Actions */
.cart-actions {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.coupon {
  flex: 1;
  min-width: 300px;
}

.coupon h3 {
  padding-bottom: 15px;
}

.coupon-input {
  display: flex;
  gap: 10px;
}

.coupon-input input {
  padding: 10px 20px;
  outline: none;
  border: 1px solid #e2e9e1;
  flex: 1;
}

.cart-total {
  flex: 1;
  min-width: 300px;
  border: 1px solid #e2e9e1;
  padding: 30px;
}

.cart-total h3 {
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e9e1;
}

.cart-total table {
  width: 100%;
  margin: 20px 0;
}

.cart-total table td {
  padding: 10px 0;
  font-size: 14px;
}

.cart-total table .total-row td {
  padding-top: 20px;
  border-top: 1px solid #e2e9e1;
  font-size: 16px;
}

.cart-total button {
  width: 100%;
  margin-bottom: 10px;
}

.clear-cart-btn {
  background: #dc3545 !important;
}

.clear-cart-btn:hover {
  background: #c82333 !important;
}

/* Empty Cart */
.empty-cart {
  text-align: center;
  padding: 80px 20px;
}

.empty-cart h2 {
  margin: 20px 0;
  color: #333;
}

.empty-cart p {
  color: #666;
  margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
  #cart table thead {
    display: none;
  }

  #cart table,
  #cart table tbody,
  #cart table tr,
  #cart table td {
    display: block;
    width: 100%;
  }

  #cart table tr {
    margin-bottom: 30px;
    border: 1px solid #e2e9e1;
    padding: 15px;
    border-radius: 8px;
  }

  #cart table td {
    text-align: left !important;
    padding: 10px 0;
    position: relative;
    padding-left: 50%;
  }

  #cart table td::before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    width: 50%;
    padding-left: 15px;
    font-weight: bold;
    text-align: left;
  }

  #cart table td:nth-child(1) {
    text-align: center !important;
    padding-left: 0;
  }

  #cart table td:nth-child(2) {
    text-align: center !important;
    padding-left: 0;
  }

  .cart-actions {
    flex-direction: column;
  }
}
/* ============= Wishlist Icon on Products ============= */
.pro {
  position: relative;
}

.pro .wishlist-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: white;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #ddd;
  transition: all 0.3s;
  z-index: 10;
  opacity: 0;
}

.pro:hover .wishlist-icon {
  opacity: 1;
}

.pro .wishlist-icon i {
  transition: all 0.3s;
}

.pro .wishlist-icon:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.pro .wishlist-icon:hover i {
  transform: scale(1.1);
}

/* Active state - Red filled heart */
.pro .wishlist-icon.active {
  opacity: 1;
  background: white;
}

.pro .wishlist-icon.active i {
  color: #ff6b6b;
  font-weight: 900;
}

/* Mobile - Always show wishlist icon */
@media (max-width: 768px) {
  .pro .wishlist-icon {
    opacity: 1;
    width: 40px;
    height: 40px;
    font-size: 18px;
    top: 10px;
    right: 10px;
  }
}

/* ============= Wishlist in Header ============= */
#header .wishlist-link {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 20px;
  cursor: pointer;
}

#header .wishlist-link .wishlist-icon {
  font-size: 28px;
  color: #1a1a1a;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: transparent;
  border: none;
  box-shadow: none;
  opacity: 1;
}

#header .wishlist-link:hover .wishlist-icon {
  color: #088178;
  transform: scale(1.1);
}

/* Heart icon - empty */
#header .wishlist-link .wishlist-icon i.fa-regular {
  color: #1a1a1a;
}

/* Heart icon - filled with items */
#header .wishlist-link .wishlist-icon i.fa-solid {
  color: #ff6b6b;
}

/* Number inside heart */
#header .wishlist-count {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 11px;
  font-weight: 900;
  z-index: 10;
  pointer-events: none;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
}

/* Cart styling */
#header .cart-btn {
  position: relative;
  display: flex;
  align-items: center;
}

#header .cart-btn .cart-icon {
  font-size: 24px;
  color: #1a1a1a;
}

#header .cart-btn:hover .cart-icon {
  color: #088178;
}

#header .cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #088178;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  border: 2px solid white;
}

/* Mobile */
#mobile .wishlist-link {
  margin-right: 15px;
}

#mobile .wishlist-link .wishlist-icon {
  font-size: 24px;
  background: transparent;
  border: none;
  box-shadow: none;
  width: auto;
  height: auto;
  opacity: 1;
}

#mobile .wishlist-count {
  font-size: 10px;
}

@media (max-width: 768px) {
  #mobile {
    display: flex;
    align-items: center;
    gap: 15px;
  }
}
/* ============= Breadcrumb ============= */
#breadcrumb {
  padding: 25px 0;
  font-size: 14px;
  background: #f8f9fa;
  border-bottom: 1px solid #e2e9e1;
}

#breadcrumb a {
  color: #088178;
  text-decoration: none;
  margin: 0 5px;
  font-weight: 500;
  transition: 0.3s;
}

#breadcrumb a:hover {
  color: #066b63;
  text-decoration: underline;
}

#breadcrumb span {
  color: #666;
  margin-left: 5px;
  font-weight: 500;
}

/* ============= Product Details ============= */
#product-details {
  display: flex;
  gap: 60px;
  margin-top: 20px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.product-images {
  flex: 0 0 45%;
  max-width: 550px;
}

.main-image {
  width: 100%;
  margin-bottom: 20px;
  position: relative;
  border: 1px solid #e2e9e1;
  border-radius: 12px;
  overflow: hidden;
  background: #f8f9fa;
}

.main-image img {
  width: 100%;
  height: 550px;
  object-fit: contain;
  display: block;
  padding: 20px;
}

.wishlist-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: 2px solid #e2e9e1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #666;
  transition: all 0.3s;
  z-index: 10;
}

.wishlist-btn:hover {
  background: #088178;
  color: white;
  border-color: #088178;
  transform: scale(1.1);
}

.wishlist-btn.active {
  background: #ff6b6b;
  color: white;
  border-color: #ff6b6b;
}

.small-images {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.small-images img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border: 2px solid #e2e9e1;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.small-images img:hover,
.small-images img.active {
  border-color: #088178;
}

/* Product Info */
.product-info {
  flex: 1;
  padding-top: 20px;
}

.product-brand {
  display: inline-block;
  color: #088178;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  padding: 6px 12px;
  background: #e8f5f4;
  border-radius: 4px;
}

.product-title {
  font-size: 32px;
  font-weight: 600;
  margin: 15px 0 20px 0;
  color: #222;
  line-height: 1.3;
}

.rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e9e1;
}

.rating i {
  color: #ffc107;
  font-size: 18px;
}

.rating i.empty {
  color: #ddd;
}

.review-count {
  color: #666;
  font-size: 15px;
  margin-left: 8px;
  font-weight: 500;
}

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

.product-price {
  font-size: 42px;
  font-weight: 700;
  color: #088178;
  margin: 0;
}

.stock-badge {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.stock-badge.in-stock {
  background: #d4edda;
  color: #155724;
}

.stock-badge i {
  font-size: 12px;
}

/* Size Selection */
.size-selection {
  margin-bottom: 30px;
}

.size-selection h5 {
  margin-bottom: 15px;
  font-size: 15px;
  font-weight: 600;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sizes {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.size-btn {
  min-width: 55px;
  height: 55px;
  border: 2px solid #e2e9e1;
  background: white;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s;
  color: #666;
}

.size-btn:hover {
  border-color: #088178;
  color: #088178;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(8, 129, 120, 0.1);
}

.size-btn.active {
  background: #088178;
  color: white;
  border-color: #088178;
  box-shadow: 0 4px 12px rgba(8, 129, 120, 0.3);
}

/* Quantity Section */
.quantity-section {
  margin-bottom: 30px;
}

.quantity-section h5 {
  margin-bottom: 15px;
  font-size: 15px;
  font-weight: 600;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.quantity-section .quantity-control {
  display: flex;
  align-items: center;
  gap: 15px;
  width: fit-content;
  border: 2px solid #e2e9e1;
  border-radius: 10px;
  padding: 5px;
  background: white;
}

.quantity-section .quantity-control button {
  width: 45px;
  height: 45px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.3s;
  font-size: 18px;
  color: #666;
  font-weight: 600;
}

.quantity-section .quantity-control button:hover {
  background: #088178;
  color: white;
}

.quantity-section .quantity-control span {
  min-width: 60px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #222;
}

/* Action Buttons */
.action-buttons {
  margin-bottom: 30px;
}

.add-to-cart-btn {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Product Description */
.product-description {
  padding: 35px 0;
  border-top: 1px solid #e2e9e1;
  margin-bottom: 25px;
}

.product-description h4 {
  margin-bottom: 18px;
  font-size: 18px;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-description p {
  color: #666;
  line-height: 1.9;
  margin-bottom: 25px;
  font-size: 15px;
}

.product-description ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.product-description ul li {
  padding: 12px 15px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8f9fa;
  border-radius: 8px;
  font-size: 14px;
  transition: 0.3s;
}

.product-description ul li:hover {
  background: #e8f5f4;
}

.product-description ul li i {
  color: #088178;
  font-size: 16px;
  flex-shrink: 0;
}

/* Shipping Info */
.shipping-info {
  padding: 25px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #e2e9e1;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
}

.info-item i {
  color: #088178;
  font-size: 22px;
  width: 30px;
  text-align: center;
}

.info-item span {
  color: #555;
  font-size: 15px;
  font-weight: 500;
}

/* Related Products */
#related-products {
  border-top: 1px solid #e2e9e1;
  padding-top: 50px;
}

#related-products h2 {
  margin-bottom: 30px;
}

/* Loading */
.loading-container {
  text-align: center;
  padding: 100px 20px;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #e2e9e1;
  border-top-color: #088178;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 1024px) {
  #product-details {
    flex-direction: column;
    gap: 40px;
  }

  .product-images {
    max-width: 100%;
    flex: none;
  }

  .main-image img {
    height: 450px;
  }

  .product-title {
    font-size: 28px;
  }

  .product-price {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  #product-details {
    flex-direction: column;
  }}
  /* Cart Button - مربع صغير */
.cart-add-btn,
.cart-btn-add {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #088178;
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  z-index: 5;
  box-shadow: 0 3px 10px rgba(8, 129, 120, 0.3);
}

.cart-add-btn:hover,
.cart-btn-add:hover {
  background: #066b63;
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(8, 129, 120, 0.5);
}

.cart-add-btn i,
.cart-btn-add i {
  font-size: 18px;
}

/* على الموبايل */
@media (max-width: 768px) {
  .cart-add-btn,
  .cart-btn-add {
    width: 36px;
    height: 36px;
    font-size: 16px;
    bottom: 8px;
    right: 8px;
  }

  .cart-add-btn i,
  .cart-btn-add i {
    font-size: 16px;
  }
}
/* ============= Cart Page Improvements ============= */

/* Cart Table Headers */
#cart table thead td {
  font-weight: 700;
  font-size: 15px;
  padding: 20px 10px;
  text-transform: uppercase;
  color: #222;
  letter-spacing: 0.5px;
}

/* Cart Table Body */
#cart table tbody tr td {
  padding: 20px 10px;
  font-size: 16px;
  color: #333;
}

/* Product Name */
#cart table tbody td:nth-child(3) {
  font-weight: 600;
  font-size: 17px;
  color: #222;
}

/* Price */
#cart table tbody td:nth-child(4) {
  font-weight: 700;
  font-size: 18px;
  color: #088178;
}

/* Subtotal */
#cart table tbody td:nth-child(6) {
  font-weight: 700;
  font-size: 19px;
  color: #088178;
}

/* Quantity Control */
.quantity-control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.quantity-control button {
  width: 35px;
  height: 35px;
  border: 2px solid #e2e9e1;
  background: white;
  cursor: pointer;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  color: #666;
  transition: 0.3s;
}

.quantity-control button:hover:not(:disabled) {
  background: #088178;
  color: white;
  border-color: #088178;
}

.quantity-control span {
  min-width: 40px;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  color: #222;
}

/* Remove Button */
.remove-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: #088178;
  transition: 0.3s;
}

.remove-btn:hover {
  color: #ff0000;
  transform: scale(1.2);
}

/* Apply Coupon Section */
.coupon h3 {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

.coupon-input input {
  padding: 14px 20px;
  font-size: 15px;
  border: 2px solid #e2e9e1;
  border-radius: 8px;
}

.coupon-input input::placeholder {
  font-size: 14px;
}

/* Cart Totals */
.cart-total h3 {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.cart-total table td {
  padding: 14px 0;
  font-size: 16px;
  color: #555;
}

.cart-total table td:first-child {
  font-weight: 600;
  color: #333;
}

.cart-total table td:last-child {
  font-weight: 700;
  font-size: 18px;
  color: #088178;
}

.cart-total table .total-row td {
  padding-top: 25px;
  border-top: 2px solid #e2e9e1;
  font-size: 20px;
  color: #222;
}

.cart-total table .total-row td:last-child {
  font-size: 24px;
  font-weight: 700;
  color: #088178;
}

/* Buttons */
.cart-total button {
  font-size: 16px;
  font-weight: 700;
  padding: 16px 30px;
  letter-spacing: 0.5px;
}

.clear-cart-btn {
  font-size: 15px;
  font-weight: 600;
}

/* Page Header */
#page-header h2 {
  font-size: 48px;
  font-weight: 700;
}

#page-header p {
  font-size: 18px;
  margin-top: 10px;
}

/* Empty Cart */
.empty-cart h2 {
  font-size: 28px;
  font-weight: 700;
  color: #333;
}

.empty-cart p {
  font-size: 17px;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  #cart table thead {
    display: none;
  }

  #cart table tbody tr {
    display: block;
    margin-bottom: 30px;
    border: 2px solid #e2e9e1;
    border-radius: 12px;
    padding: 20px;
  }

  #cart table tbody td {
    display: block;
    text-align: left !important;
    padding: 12px 0;
    font-size: 16px;
  }

  #cart table tbody td::before {
    content: attr(data-label);
    font-weight: 700;
    color: #222;
    display: inline-block;
    width: 120px;
    font-size: 15px;
  }

  #cart table tbody td:nth-child(1) {
    text-align: center !important;
  }

  #cart table tbody td:nth-child(2) {
    text-align: center !important;
    padding: 15px 0;
  }

  .cart-total table td {
    font-size: 17px;
  }

  .cart-total table .total-row td {
    font-size: 19px;
  }

  .cart-total table .total-row td:last-child {
    font-size: 22px;
  }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.2); }
  50% { transform: scale(1); }
  75% { transform: scale(1.2); }
}

/* ===== Section Header ===== */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #088178, #0abab5);
  border-radius: 2px;
}

.section-header p {
  color: #666;
  font-size: 16px;
  margin-top: 20px;
}

/* ===== Products Grid ===== */
.prod-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 20px 0;
}

/* ===== Product Card ===== */
.prod-container .pro {
  position: relative;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  border: 1px solid #f0f0f0;
}

.prod-container .pro:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(8, 129, 120, 0.15);
  border-color: #088178;
}

/* ===== Product Badges ===== */
.product-badges {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-badges .badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  animation: scaleIn 0.3s ease;
}

.product-badges .badge.sale {
  background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.product-badges .badge.new {
  background: linear-gradient(135deg, #088178, #0abab5);
  color: white;
  box-shadow: 0 4px 15px rgba(8, 129, 120, 0.4);
}

/* ===== Product Image ===== */
.pro-image {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.pro-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.prod-container .pro:hover .pro-image img {
  transform: scale(1.08);
}

/* ===== Product Actions Overlay ===== */
.pro-actions {
  position: absolute;
  bottom: -60px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  transition: all 0.4s ease;
  opacity: 0;
}

.pro-actions.show,
.prod-container .pro:hover .pro-actions {
  bottom: 0;
  opacity: 1;
}

.pro-actions .action-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: white;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  text-decoration: none;
}

.pro-actions .action-btn:hover {
  transform: translateY(-5px) scale(1.1);
}

.pro-actions .action-btn.primary {
  background: linear-gradient(135deg, #088178, #0abab5);
  color: white;
}

.pro-actions .action-btn.primary:hover {
  box-shadow: 0 8px 25px rgba(8, 129, 120, 0.5);
}

.pro-actions .action-btn.active {
  background: #ff6b6b;
  color: white;
  animation: heartBeat 0.6s ease;
}

.pro-actions .action-btn:nth-child(1) { transition-delay: 0.05s; }
.pro-actions .action-btn:nth-child(2) { transition-delay: 0.1s; }
.pro-actions .action-btn:nth-child(3) { transition-delay: 0.15s; }

/* ===== Product Info ===== */
.prod-container .pro .des {
  padding: 20px;
  text-align: left;
  background: white;
}

.prod-container .pro .des .brand {
  display: inline-block;
  color: #088178;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(8, 129, 120, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.prod-container .pro .des h5 {
  color: #222;
  font-size: 15px;
  font-weight: 600;
  margin:auto ;
}
/* ===== باقي الـ CSS للـ Product Cards ===== */

.prod-container .pro .des h5 {
  color: #222;
  font-size: 15px;
  font-weight: 600;
  margin: 8px 0;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.3s;
}

.prod-container .pro .des h5:hover {
  color: #088178;
}

.prod-container .pro .des a {
  text-decoration: none;
}

/* ===== Stars ===== */
.prod-container .pro .star {
  display: flex;
  align-items: center;
  gap: 3px;
  margin: 8px 0;
}

.prod-container .pro .star i {
  color: #ffc107;
  font-size: 12px;
}

.prod-container .pro .star i.empty {
  color: #ddd;
}

.prod-container .pro .star .review-count {
  color: #999;
  font-size: 12px;
  margin-left: 5px;
}

/* ===== Price Box ===== */
.price-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.prod-container .pro .price-box h4 {
  font-size: 18px;
  font-weight: 700;
  color: #088178;
  margin: 0;
  padding: 0;
}

.prod-container .pro .price-box .old-price {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}

/* ===== Quick Add Button (Mobile) ===== */
.quick-add-btn {
  position: absolute;
  bottom: 80px;
  right: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #088178, #0abab5);
  color: white;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(8, 129, 120, 0.4);
  transition: all 0.3s ease;
  z-index: 5;
}

.quick-add-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(8, 129, 120, 0.6);
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
  .prod-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .prod-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .section-header h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .prod-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .pro-image img {
    height: 200px;
  }

  /* Show quick add button on mobile */
  .quick-add-btn {
    display: flex;
    bottom: 70px;
    right: 10px;
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  /* Always show actions on mobile */
  .pro-actions {
    position: static;
    opacity: 1;
    background: transparent;
    padding: 10px 15px;
    justify-content: flex-start;
  }

  .pro-actions .action-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .section-header p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .prod-container {
    grid-template-columns: 1fr;
  }
}
/* ===== Fix Products Container Centering ===== */

#products {
  text-align: center;
  padding: 60px 80px;
}

#products .section-header {
  text-align: center;
  margin-bottom: 50px;
}

/* Products Grid - Centered */
#products .prod-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1400px;      /* ✅ حد أقصى للعرض */
  margin: 0 auto;          /* ✅ توسيط في النص */
  padding: 20px 0;
}

/* ===== Alternative: Using Flexbox ===== */
/* لو عايز تستخدم Flexbox بدل Grid */
/*
#products .prod-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

#products .prod-container .pro {
  width: calc(25% - 23px);
  min-width: 280px;
}
*/

/* ===== Responsive ===== */
@media (max-width: 1400px) {
  #products {
    padding: 60px 40px;
  }
  
  #products .prod-container {
    max-width: 100%;
  }
}

@media (max-width: 1200px) {
  #products .prod-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  #products {
    padding: 40px 30px;
  }
  
  #products .prod-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  #products {
    padding: 30px 20px;
  }
  
  #products .prod-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 480px) {
  #products .prod-container {
    grid-template-columns: 1fr;
    max-width: 350px;
  }
}
/* ============================================
   🎨 FOOTER - NEW DESIGN
   ============================================ */

.footer {
  background: #f8f9fa;
  border-top: 1px solid #e2e9e1;
}

/* ===== Footer Top - Logo ===== */
.footer-top {
  text-align: center;
  padding: 40px 80px 30px;
  border-bottom: 1px solid #e2e9e1;
}

.footer-top .logo {
  height: 50px;
  width: auto;
}

/* ===== Footer Content - Columns ===== */
.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 50px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

/* ===== Footer Columns ===== */
.footer-content .col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-content .col h4 {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 10px;
}

.footer-content .col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #088178, #0abab5);
  border-radius: 2px;
}

.footer-content .col p {
  font-size: 14px;
  color: #666;
  margin: 0 0 10px 0;
  line-height: 1.8;
}

.footer-content .col a {
  font-size: 14px;
  text-decoration: none;
  color: #666;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  position: relative;
}

.footer-content .col a:hover {
  color: #088178;
  padding-left: 8px;
}

.footer-content .col a::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: #088178;
  transition: width 0.3s ease;
}

.footer-content .col a:hover::before {
  width: 10px;
}

/* ===== Follow Us Section ===== */
.footer-content .follow {
  margin-top: 20px;
}

.footer-content .follow h4 {
  font-size: 14px;
  margin-bottom: 15px;
}

.footer-content .follow h4::after {
  width: 30px;
}

.footer-content .social {
  display: flex;
  gap: 12px;
}

.footer-content .social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e2e9e1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 16px;
  transition: all 0.3s ease;
  margin: 0;
  padding: 0;
}

.footer-content .social a::before {
  display: none;
}

.footer-content .social a:hover {
  background: #088178;
  border-color: #088178;
  color: #fff;
  transform: translateY(-3px);
  padding-left: 0;
}

/* ===== Install App Section ===== */
.footer-content .install .row {
  display: flex;
  gap: 10px;
  margin: 15px 0;
}

.footer-content .install .row img {
  height: 40px;
  width: auto;
  border-radius: 6px;
  border: 1px solid #e2e9e1;
  transition: transform 0.3s ease;
}

.footer-content .install .row img:hover {
  transform: scale(1.05);
}

.footer-content .install > img {
  margin-top: 10px;
  max-width: 200px;
}

/* ===== Footer Bottom - Copyright ===== */
.footer-bottom {
  background: #222;
  text-align: center;
  padding: 20px;
}

.footer-bottom p {
  color: #999;
  font-size: 14px;
  margin: 0;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
  }
}

@media (max-width: 768px) {
  .footer-top {
    padding: 30px 40px 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
    text-align: center;
  }

  .footer-content .col {
    align-items: center;
  }

  .footer-content .col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-content .col a::before {
    display: none;
  }

  .footer-content .col a:hover {
    padding-left: 0;
  }

  .footer-content .social {
    justify-content: center;
  }

  .footer-content .install .row {
    justify-content: center;
  }

  .footer-content .install > img {
    margin: 10px auto 0;
  }
}

@media (max-width: 480px) {
  .footer-top {
    padding: 25px 20px;
  }

  .footer-top .logo {
    height: 40px;
  }

  .footer-content {
    padding: 30px 20px;
    gap: 35px;
  }
}
