 @import url('https://fonts.googleapis.com/css?family=Poppins:400,500,700,900');
 @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');


 :root {
     /* Light Mode Colors */
     --bg-primary: #ffffff;
     --bg-secondary: #f8f9fa;
     --bg-card: #ffffff;
     --bg-overlay: rgba(255, 255, 255, 0.95);
     --bg-navbar: rgba(255, 255, 255, 0.95);
     --bg-top-bar: #222222;
     --bg-button: rgb(113, 127, 224);
     --bg-button-hover: #007bff;

     /* Text Colors */
     --text-primary: #333333;
     --text-secondary: #666666;
     --text-muted: #888888;
     --text-light: #b2b2b2;
     --text-dark: #1a1a1a;
     --text-white: #ffffff;
     --text-brand: #007bff;
     --text-accent: #4a4de7;
     --text-special: #f74877;

     /* Border Colors */
     --border-light: #e6e6e6;
     --border-medium: #cccccc;
     --border-navbar: rgba(255, 255, 255, 0.3);

     /* Shadow Colors */
     --shadow-light: rgba(0, 0, 0, 0.1);
     --shadow-medium: rgba(0, 0, 0, 0.2);
     --shadow-navbar: rgba(0, 0, 0, 0.2);

     /* navbar icons color */
     --navbar-icons-color: rgb(51, 51, 51);
     --navbar-links-hover: #007bff;
     --navbar-logo-color: ;

     /* products categories-btn  */
     --products-bg-btn: white;
     --products-bg-btn-hover: #333;
     --products-color: #222;
     --products-bg-btn-load-more: rgb(230, 230, 230);

     --product-shadow: #50ffd2d2 2px 3px 10px;

     /* features colors */
     --cart-table-text-color: #555;

     /* input colors */
     --inputs-color-bg: white;

     /* border colors */
     --borber-color: #e6e6e6;

     /* contact colors */
     --paragraph-colors: #8889;
     --icons-colors: #333;

     /* footer text color */
     --footer-text-color: white;

     /* login, register colors */
     --box-colors: white;
     --main-header-box-color: #11103d;
     --input-bg-color: white;
     --button-box-color: #6570c1;
     --error-color: red;

     /* popup */
     --popup-bg-color: var(--bg-primary);
     --popup-cart-text: #ffffff;
     --popup-cart-plus-color:#4c4949;
     --popup-button-bg-color:#2d2d2d;

     /* search box */
     --search-box-color:#a09696;
     --search-box-bg-color: white;
 }


 /* ==================== DARK MODE VARIABLES ==================== */
 body.dark-mode {
     --bg-primary: #121212c9;
     --bg-secondary: #1e1e1e;
     --bg-card: #2d2d2d;
     --bg-overlay: rgba(18, 18, 18, 0.95);
     --bg-navbar: rgba(18, 18, 18, 0.95);
     --bg-top-bar: #12121261;
     --bg-button: rgb(113, 127, 224);
     --bg-button-hover: #007bff;

     /* Dark Mode Text Colors */
     --text-primary: #aaa9a9;
     --text-secondary: #b8b8b8;
     --text-muted: #adaaaa;
     --text-light: #c8c3c3;
     --text-dark: #f0f0f0ad;
     --text-white: #5b5656;
     --text-brand: #4da6ff;
     --text-accent: #8889;
     --text-special: #ff6b9d;

     /* Dark Mode Border Colors */
     --border-light: #404040;
     --border-medium: #555555;
     --border-navbar: rgba(255, 255, 255, 0.1);

     /* Dark Mode Shadow Colors */
     --shadow-light: rgba(0, 0, 0, 0.3);
     --shadow-medium: rgba(0, 0, 0, 0.5);
     --shadow-navbar: rgba(0, 0, 0, 0.7);

     /* navbar icons color */
     --navbar-icons-color: rgb(178 172 172);
     --navbar-links-hover: #000000;
     --navbar-logo-color: brightness(2) saturate(100%) invert(100%);

     /* .logo-container>img {
     filter: brightness(2) saturate(100%) invert(100%);
 } */

     /* products categories-btn  */
     --products-bg-btn: transparent;
     --products-bg-btn-hover: rgb(235, 235, 235);
     --products-color: #9a9a9a;
     --products-bg-btn-load-more: #c1c1c1;
     --product-shadow: #505050 2px 3px 10px;


     /* features colors */
     --cart-table-text-color: #aaa9a9;

     /* input colors */
     --inputs-color-bg: #c6c6c6;

     /* border colors */
     --borber-color: #dedede;

     /* contact colors */
     --paragraph-colors: #fbfafa70;
     --icons-colors: #aaa9a9;

     /* footer text color */
     --footer-text-color: #cccaca;

     /* login, register colors */
     --box-colors: #6767676b;
     --main-header-box-color: #a9a9a9;
     --input-bg-color: #d2d0d0;
     --button-box-color: #2a2929ad;
     --error-color: #ff4949;

     /* popup */
     --popup-bg-color: #151515e0;
     --popup-cart-text: #d5cbcb;
     --popup-cart-plus-color:#d5cbcb;
     --popup-button-bg-color:#121212c9;

     /* search box */
     --search-box-color:#121212c9;
     --search-box-bg-color: #adaaaa;
 }



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

 button {
     cursor: pointer;
 }


 a {
     text-decoration: none;
 }



 body {
     font-family: 'Poppins', sans-serif;
     font-size: 15px;
     color: var(--text-secondary);
     overflow-x: hidden;
     line-height: 1.8;
     background-color: var(--bg-primary);
     transition: background-color 0.3s ease, color 0.3s ease;
 }

 @keyframes fadeDown {
     from {
         opacity: 0;
         transform: translateY(-30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes fadeUp {
     from {
         opacity: 0;
         transform: translateY(80px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes scaleFadeIn {
     from {
         opacity: 0;
         transform: scale(0);
     }

     to {
         opacity: 1;
         transform: scale(1);
     }
 }

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes rotateInLeft {
     from {
         opacity: 0;
         transform: translateX(-50px) rotate(-45deg);
     }

     to {
         opacity: 1;
         transform: translateX(0) rotate(0);
     }
 }

 @keyframes slideInRight {
     from {
         opacity: 0;
         transform: translateX(300px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 @keyframes rotateTopLeft {
     from {
         opacity: 0;
         transform: translateY(-50px) rotate(-90deg);
     }

     to {
         opacity: 1;
         transform: translateY(0) rotate(0);
     }
 }

 @keyframes rotateBottomRight {
     from {
         opacity: 0;
         transform: translateY(50px) rotate(90deg);
     }

     to {
         opacity: 1;
         transform: translateY(0) rotate(0);
     }
 }

 @keyframes rotateInPlace {
     from {
         opacity: 0;
         transform: rotate(0deg) scale(0.5);
     }

     to {
         opacity: 1;
         transform: rotate(360deg) scale(1);
     }
 }

 .delay-1 {
     animation-delay: 0.3s;
 }

 .delay-2 {
     animation-delay: 0.7s;
 }

 .delay-3 {
     animation-delay: 1.1s;
 }

 .animated {
     opacity: 1;
     animation-duration: 0.6s;
     animation-fill-mode: both;
 }

 .fade-in-up {
     animation-name: fadeInUp;
 }

 .rotate-in-left {
     animation-name: rotateInLeft;
 }

 .slide-in-right {
     animation-name: slideInRight;
 }

 .rotate-top-left {
     animation-name: rotateTopLeft;
 }

 .rotate-bottom-right {
     animation-name: rotateBottomRight;
 }

 .rotate-in-place {
     animation-name: rotateInPlace;
 }



 .top-bar {
     height: 40px;
     background-color: var(--bg-top-bar);
 }

 .top-bar-content-container {
     margin: auto;
     width: 80%;
     height: 100%;
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 0 15px;
 }

 .top-bar-left {
     color: var(--text-light);
     font-size: 12px;
 }

 .top-bar-links {
     display: flex;
     align-items: center;
     color: var(--text-light);
     height: 100%;
 }

 .top-bar-links a {
     padding: 0 25px;
     font-size: 12px;
     color: inherit;
     text-decoration: none;
     border-right: 1px solid rgba(255, 255, 255, 0.3);
     height: 100%;
     display: flex;
     align-items: center;
 }

 .top-bar-links a:first-child {
     border-left: 1px solid rgba(255, 255, 255, 0.3);
 }

 .navbar {
     width: 100%;
     height: 84px;
     background-color: rgba(0, 0, 0, 0);
     color: rgb(102, 102, 102);
     transition: height 0.4s ease, background-color 0.3s ease, box-shadow 0.3s ease;
     position: absolute;
     top: 40;
     z-index: 1;
 }

 .navbar.scrolled {
     background-color: var(--text-white);
     height: 70px;
     box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 3px 0px;
     z-index: 1;
     position: fixed;
     top: 0px;
 }

 .navbar.scrolled a {
     color: var(--navbar-icons-color);
 }

 .navbar-container {
     height: 100%;
     width: 80%;
     margin: auto;
     display: flex;
     align-items: center;
     padding: 0px 15px;
 }

 .nav-icons {
     display: flex;
     justify-content: flex-end;
     flex-grow: 1;
 }

 .nav-icons a {
     padding: 0px 11px 0px 22px;
     background-color: rgba(0, 0, 0, 0);
     border: none;
     /* here */
     color: var(--navbar-icons-color);
     font-size: 26px;
     transition: 0.4s ease, color 0.3s ease;
 }

 .label1 {
     position: relative;
 }

 .label1::after {
     content: attr(data-label1);
     font-family: Poppins-Regular;
     font-size: 10px;
     line-height: 15px;
     color: #fff;
     text-transform: uppercase;
     text-align: center;
     display: block;
     position: absolute;
     top: 3px;
     right: -9px;
     height: 15px;
     min-width: 32px;
     border-radius: 7px;
     padding: 0 4px;
     background-color: #f74877;
 }

 .nav-icons a:hover {
    color: var(--navbar-links-hover);
}

.cart-icon-container {
    position: relative;
    display: inline-block;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #f74877;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 11px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    box-sizing: border-box;
    line-height: 1;
    z-index: 10;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.cart-badge.hidden {
    display: none;
}

 /* Material Icons styles for dark mode toggle */
 .nav-icons .material-icons {
     font-family: 'Material Icons';
     font-weight: normal;
     font-style: normal;
     font-size: 26px;
     line-height: 1;
     letter-spacing: normal;
     text-transform: none;
     display: inline-block;
     white-space: nowrap;
     word-wrap: normal;
     direction: ltr;
     /* -webkit-font-feature-settings: 'liga'; */
     /* -webkit-font-smoothing: antialiased; */
 }

 .nav-links {
     height: 100%;
     display: flex;
     align-items: center;
     gap: 18px;
 }

 .nav-links a {
     text-decoration: none;
     padding: 20px 10px 20px 0px;
     color: var(--text-primary);
 }

 .nav-list {
     list-style: none;
     padding: 0;
     margin: 0;
     display: flex;
     gap: 18px;
     height: 100%;
     align-items: center;
 }

 .nav-links a:hover {
     color: var(--navbar-links-hover);
 }

 .nav-links a.active {
     color: var(--navbar-links-hover);
 }

 .logo-container {
     margin-right: 69px;
     display: flex;
     justify-content: flex-start;
     align-items: center;
 }

 /* fix color of logo in dark mode */
 .logo-container>img {
     filter: var(--navbar-logo-color);
 }

 .hero-section {
     position: relative;
     width: 100%;
     height: calc(100vh - 40px);
     color: rgb(102, 102, 102);
     background-image: url('../imgs/slide-01.jpg');
     background-repeat: no-repeat;
     background-size: cover;
 }

 .hero-section-container {
     height: 100%;
     width: 80%;
     margin: auto;
     padding: 0px 15px;
 }

 .hero-section-content {
     height: 100%;
     display: flex;
     flex-direction: column;
     justify-content: center;
     padding: 100px 0 30px 0;
     box-sizing: border-box;
     align-items: flex-start;
 }

 #slider-left-btn {
     position: absolute;
     top: 50%;
     left: 50px;
     background-color: rgba(0, 0, 0, 0);
     border: none;
     font-size: 80px;
     color: rgba(0, 0, 0, 0.3);
     padding: 0px;
     transition: all 0.4s ease;
 }

 #slider-right-btn {
     position: absolute;
     top: 50%;
     right: 50px;
     background-color: rgba(0, 0, 0, 0);
     border: none;
     font-size: 80px;
     color: rgba(0, 0, 0, 0.3);
     padding: 0px;
     transition: all 0.4s ease;
 }

 #slider-left-btn:hover,
 #slider-right-btn:hover {
     color: rgb(114, 128, 224);
 }

 .hero-section-content h3 {
     font-size: 28px;
     color: rgb(51, 51, 51);
     font-weight: 400;
 }

 .hero-section-content h2 {
     font-size: 60px;
     color: #333;
     padding: 19px 0px 43px;
     line-height: 1.1;
 }

 .hero-section-content a {
     background-color: rgb(113, 127, 224);
     border-radius: 23px;
     display: flex;
     justify-content: center;
     align-items: center;
     color: rgb(255, 255, 255);
     cursor: pointer;
     height: 46px;
     min-width: 129px;
     padding: 0px 16px;
 }

 .catg-card a div:first-child {
     display: flex;
     flex-direction: column;

 }

 .catg-card a div:first-child span:first-child {
     font-size: 28px;
     font-weight: bold;
     color: #333;

 }

 .catg-card a div:first-child span:last-child {
     font-size: 14px;
     color: rgb(85, 85, 85);
 }

 .catg-card a div:last-child {
     color: white;
 }

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

 .categories {
     padding: 80px 0 50px;
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
 }

 .categories>div {
     flex: 0 0 calc(33.3333%);
     padding: 0 15px 30px;
 }

 .catg-card {
     width: 100%;
     border: 1px solid #e6e6e6;
     position: relative;
     min-height: 300px;
     background-size: cover;
     background-repeat: no-repeat;
     background-position: center;
 }

 .catg-card a {
     position: absolute;
     inset: 0;
     padding: 34px 38px;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     text-decoration: none;
 }

 .catg-card a:hover {
     background-color: rgba(103, 117, 214, 0.8);
 }

 #women-catg .catg-card {
     background-image: url('../imgs/banner-01.jpg.webp');
 }

 #men-catg .catg-card {
     background-image: url('../imgs/banner-02.jpg.webp');
 }

 #accessories-catg .catg-card {
     background-image: url('../imgs/banner-03.jpg.webp');
 }

 .products {
     padding: 23px 0px 140px;
     width: 100%;
 }

 .products-container {
     width: 100%;
     padding: 0px 15px;
     display: flex;
     flex-direction: column;
 }

 .products-categories {
     display: flex;
     justify-content: space-between;
 }

 .products-categories-btn {
     display: flex;
     justify-content: flex-start;
     align-items: center;
     flex-wrap: wrap;
     gap: 32px;
     margin: 10px 0px;
 }

 .products-categories-btn button {
     margin: 5px 0px;
     border: none;
     background-color: var(--products-bg-btn);
     border-bottom: 1px solid transparent;
     color: var(--text-muted);
     line-height: 1.2;
     font-size: 15px;
 }

 .products-categories-btn button:hover {
     color: var(--products-bg-btn-hover);
     border-color: #797979;
 }

 .products-categories-btn .products-active {
     color: var(--products-bg-btn-hover);
     border-color: #797979;
 }

 .products-filter {
     display: flex;
     justify-content: center;
     gap: 8px;
     margin: 10px 0px;
 }

 .products-filter div {
     height: 40px;
     display: flex;
     justify-content: center;
     align-items: center;
     border: 1px solid #e6e6e6;
     border-radius: 3px;
     gap: 6px;
     line-height: 1.2;
     cursor: pointer;
     margin: 4px 0px;
 }

 .products-filter div:hover {
     background-color: rgba(113, 127, 240);
     color: white;
 }

 #product-filter-btn {
     min-width: 94px;
 }

 #product-search-btn {
     min-width: 111px;
 }

 .products-overview {
     font-weight: 700;
     font-size: 36px;
     color: var(--products-color);
     line-height: 1.1;
     text-transform: uppercase;
 }

 .products-list {
     width: 100%;
     min-height: 00px;
     display: flex;
     flex-wrap: wrap;
     gap: 40px;
     padding: 52px 0px 35px;

 }

 .product-card {
     flex: 0 0 calc(25% - 30px);
     display: flex;
     flex-direction: column;
     justify-content: start;
     align-items: flex-start;
     border-radius: 10px;
     box-shadow: var(--product-shadow);

 }

 .product-card div {
     overflow: hidden;
 }

 .product-card div>img {
     width: 100%;
     vertical-align: middle;
     border-style: none;
     transform: scale(1);
     transition: transform 0.9s ease;
 }

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

 .product-details {
     width: 100%;
     padding: 0 10px 10px 10px;

 }

 .product-name {
     width: 100%;
     display: flex;
     justify-content: space-between;
     padding-top: 14px;
 }

 .product-name a {
     position: relative;

 }

 .icon-heart-2 {
     position: absolute;
     top: 0;
     left: 0;
     opacity: 0;
 }

 .icon-heart-2:hover {
     opacity: 1;
 }

 .icon-heart-container {
     padding-top: 3px;
 }

 .load-more-btn {
     background-color: var(--products-bg-btn-load-more);
     height: 46px;
     width: 179px;
     color: rgb(34, 34, 34);
     border-radius: 23px;
     display: flex;
     justify-content: center;
     align-items: center;
     padding: 0px 15px;
     border: none;
     font-weight: 500;
     transition: 0.4s ease;
     line-height: 22px;
     cursor: pointer;
 }

 .load-more-btn:hover {
     background-color: #222;
     color: #fff;
 }


 .load-more-btn-container {
     display: flex;
     justify-content: center;
     align-items: center;
     padding-top: 45px;
 }




 .site-footer {
     background-color: #222;
     padding: 75px 0px 32px;
     font-family: 'Poppins', sans-serif;
     color: #888;
     line-height: 1.8;
     font-size: 14px;
 }

 .footer-container {
     width: 80%;
     margin: 0 auto;
     display: flex;
     justify-content: center;
     gap: 50px;
     color: #b2b2b2;
 }

 .footer-column {
     display: flex;
     flex-direction: column;
     padding: 0px 15px 50px;
     flex: 0 0 calc(25% - 37px);
 }

 .footer-title {
     color: var(--footer-text-color);
     font-weight: 700;
     line-height: 1.6;
     padding-bottom: 30px;
     text-transform: uppercase;
     font-family: 'Montserrat', sans-serif;
     font-weight: 700;

 }



 .footer-list {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .footer-list li {
     margin-bottom: 15px;
 }

 .footer-text {
     margin: 0;
     line-height: 1.8;
 }

 .newsletter-form {
     display: flex;
     flex-direction: column;
     gap: 15px;
 }

 .email-input {
     background-color: transparent;
     border-bottom: 1px solid #333;
     font-size: 13px;
     color: #b2b2b2;
     outline: none;
     border: none;
     width: 100%;
     border-bottom: 2px solid rgba(204, 204, 204, 0.1);
     padding-bottom: 8px;
     transition: all 0.4s;
 }

 .email-input:focus {
     border-color: #6774d5;
 }

 .email-input::placeholder {
     color: #b2b2b2;

 }

 .subscribe-container {
     padding-top: 10px;
 }

 .subscribe-btn {
     background-color: #7177e0;
     color: white;
     border: none;
     display: flex;
     justify-content: center;
     align-items: center;
     padding: 0px 15px;
     min-height: 46px;
     font-size: 15px;
     font-weight: 500;
     line-height: 22px;
     box-sizing: border-box;
     border: none;
     cursor: pointer;
     border-radius: 23px;
     width: 179px;
 }

 .copyright-bar {
     text-align: center;
 }

 .copyright-bar p {
     margin: 0;
     font-size: 13px;
     color: rgb(136, 136, 136);
 }

 .colorlib {
     color: #7177e0;
 }

 .payment-container {
     padding-bottom: 18px;
 }

 .product-img {
     position: relative;
     border-top-right-radius: 10px;
     border-top-left-radius: 10px;
 }

 .product-img button {
     position: absolute;
     width: 139px;
     height: 46px;
     line-height: 22px;
     color: var(--text-primary);
     bottom: -50px;
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     justify-content: center;
     align-items: center;
     padding: 0px 15px;
     cursor: pointer;
     transition: all 0.3s ease;
     background-color: var(--bg-card);
     border-radius: 20px;
     border: none;
     font-size: 15px;
     font-family: 'Poppins', sans-serif;
 }


 .product-img:hover button {
     bottom: 20px;
     height: 40px;
 }

 .product-img button:hover {
     background-color: #222;
     color: #fff;
 }

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

 .back-to-top {
     position: fixed;
     width: 40px;
     height: 38px;
     bottom: 0px;
     right: 40px;
     background-color: #717fe0;
     opacity: 0.5;
     display: flex;
     justify-content: center;
     align-items: center;
     z-index: 100;
     cursor: pointer;
     transition: all 0.4s;
 }

 .back-to-top:hover {
     opacity: 1;
 }

 .back-to-top span {
     font-size: 25px;
     color: white;
     line-height: 25px;

 }

 .back-to-top.hidden {
     opacity: 0;
     visibility: hidden;
 }


 /*start contact page*/

 .cover {
     box-sizing: border-box;
     color: white;
     display: block;
     background-image: url(https://preview.colorlib.com/theme/cozastore/images/bg-01.jpg.webp);
     font-family: 'Poppins', sans-serif;
     font-weight: 700;
     display: block;
     width: 100%;
     height: 100%;
     margin-top: 70px;
     margin-bottom: 100px;
     text-align: center;
     background-position: center;
     background-repeat: no-repeat;
     padding: 50px;
     font-size: 30px;
 }

 .mess_sec {
     border: 1px solid var(--borber-color);
     font-weight: 300;
 }

 .contact_sec {
     display: flex;
     flex-direction: column;
     margin-left: 70px;
     font-family: Poppins-Regular;
     color: #333;
     font-size: 18px;
     line-height: 1.222222;
     font-weight: 100px;
 }

 .mess_sec,
 .contact_sec {
     flex: 1;
     padding: 20px;
     font-family: 'Poppins', sans-serif;
     color: #333;
     font-weight: 300;

 }

 .mess_sec h2 {
     text-align: center;
     margin-bottom: 20px;
     font-family: 'Poppins', sans-serif;
     font-size: 24px;
     font-weight: 300;
     color: var(--text-primary);
 }

 .d1 {
     margin-bottom: 20px;
 }

 .d1>input {
     padding: 10px;
     width: 100%;
     background-color: var(--inputs-color-bg)
 }

 textarea {
     font-family: 'Poppins', sans-serif;
     width: 100%;
     padding: 15px;
     font-size: 14px;
     border: 1px solid #ccc;
     border-radius: 3px;
     resize: vertical;
     min-height: 120px;
     background-color: var(--inputs-color-bg)
 }


 .submit_btn {
     width: 100%;
     background-color: var(--bg-top-bar);
     color: var(--inputs-color-bg);
     padding: 14px;
     border: none;
     border-radius: 25px;
     font-weight: bold;
     cursor: pointer;
     font-family: 'Poppins', sans-serif;
 }

 .info_item {
     align-items: flex-start;
     display: flex;
     gap: 30px;
     padding: 30px;
 }

 .contact_text h4 {
     font-size: 18px;
     font-weight: 100px;
     color: var(--text-primary);
     margin: 0 0 5px;

 }

 .contact_text p {
     font-size: 15px;
     margin: 5px 0 0;
     color: var(--paragraph-colors);
     line-height: 1.4;
 }

 .contact-container {
     margin: auto;
     display: flex;
     justify-content: center;
     align-items: flex-start;
     padding: 50px;
     border: 1px solid var(--borber-color);
     /*max-width: 1000px;*/
     width: 80%;



 }

 input[type="email"],
 .contact_icon {

     font-size: 16px;
     color: #333;
     margin-top: 4px;
 }

 .contact_icon {
     color: var(--icons-colors);
 }

 .contact_text a {
     margin-top: 5px;
     font-size: 13px;
     color: var(--text-accent);
     text-decoration: none;

 }

 .info_item a {

     color: var(--paragraph-colors);
     text-decoration: none;
 }


 /*!*cart *!*/

 /*.cart-wrapper {*/
 /*    display: grid;*/
 /*    grid-template-columns: 1fr 350px;*/
 /*    gap: 40px;*/
 /*    background: white;*/
 /*    !*padding: 30px;*!*/
 /*    border-radius: 8px;*/
 /*    margin-top: 120px;*/
 /*    margin-bottom: 120px;*/
 /*    !* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); *!*/
 /*}*/

 /*!* Cart Items Section *!*/
 /*.cart-items {*/
 /*    background-color: var(--bg-primary);*/
 /*    overflow-x: auto;*/
 /*    border: 1px solid #eeeeee;*/
 /*}*/

 /*.cart-table {*/
 /*    color: #555;*/
 /*    width: 100%;*/
 /*    border-collapse: collapse;*/
 /*    margin-bottom: 30px;*/
 /*}*/

 /*.cart-table thead th {*/
 /*    !* background-color: #f8f9fa; *!*/
 /*    padding: 15px;*/
 /*    text-align: center;*/
 /*    font-weight: 600;*/
 /*    font-size: 14px;*/
 /*    color: var(--cart-table-text-color);*/
 /*    font-weight: 800;*/
 /*    letter-spacing: 0.5px;*/
 /*    border-bottom: 2px solid #f7f7f7;*/
 /*}*/

 /*.cart-table tbody td {*/
 /*    padding: 47px 0px 41px 10px;*/
 /*    border-bottom: 1px solid #f7f7f7;*/
 /*    vertical-align: middle;*/
 /*}*/

 /*.product-info .product-details {*/
 /*    display: flex;*/
 /*    align-items: center;*/
 /*    !* gap: 15px; *!*/
 /*    !* margin-left: 20px; *!*/
 /*    display: flex;*/
 /*    flex-wrap: wrap;*/
 /*    justify-content: flex-start;*/
 /*    align-content: flex-start;*/
 /*    align-items: start;*/
 /*}*/

 /*.product-image {*/
 /*    width: 60px;*/
 /*    height: 60px;*/
 /*    object-fit: cover;*/
 /*    border-radius: 4px;*/
 /*    border: 1px solid #f7f7f7;*/
 /*}*/

 /*.product-image:hover {*/

 /*    transition: all 0.3s ease-in-out;*/
 /*}*/

 /*.product-name {*/
 /*    font-weight: 500;*/
 /*    color: var(--text-primary);*/
 /*}*/

 /*.price,*/
 /*.total {*/
 /*    font-weight: 600;*/
 /*    color: #333;*/
 /*    font-size: 16px;*/
 /*}*/

 /*.quantity-controls {*/
 /*    display: flex;*/
 /*    align-items: center;*/
 /*    border-radius: 5px;*/
 /*    width: fit-content;*/
 /*    border: 1px solid #f7f7f7;*/
 /*}*/

 /*.plus {*/
 /*    border-bottom-right-radius: 5px;*/
 /*    border-top-right-radius: 5px;*/
 /*}*/


 /*.minus {*/
 /*    border-bottom-left-radius: 5px;*/
 /*    border-top-left-radius: 5px;*/
 /*}*/


 /*.quantity-controls .quantity-btn {*/
 /*    background: white;*/
 /*    border: none;*/
 /*    width: 45px;*/
 /*    height: 45px;*/
 /*    !* border-radius: 3px; *!*/
 /*    cursor: pointer;*/
 /*    display: flex;*/
 /*    align-items: center;*/
 /*    justify-content: center;*/
 /*    font-size: 20px;*/
 /*    color: #666;*/
 /*    transition: all 0.2s ease;*/
 /*    padding: 0px 17px;*/
 /*}*/

 /*.quantity-btn:hover {*/
 /*    background: #717fe0;*/
 /*    border-color: #717fe0;*/
 /*    color: #fff;*/
 /*    transition: all 0.3s ease-in-out;*/
 /*}*/

 /*.quantity-input {*/
 /*    background: #f7f7f7;*/
 /*    display: flex;*/
 /*    align-items: center;*/
 /*    justify-content: center;*/
 /*    width: 60px;*/
 /*    height: 45px;*/
 /*    border: none;*/
 /*    !* border-radius: 5px; *!*/
 /*    text-align: center;*/
 /*    font-size: 18px;*/
 /*    !* background: white; *!*/
 /*}*/

 /*.quantity-input:focus {*/
 /*    outline: none;*/
 /*    border-color: #007bff;*/
 /*}*/

 /*!* Coupon Section *!*/
 /*.coupon-section {*/
 /*    display: flex;*/
 /*    justify-content: space-between;*/
 /*    align-items: center;*/
 /*    padding-top: 20px;*/
 /*    border-top: 1px solid #e9ecef;*/
 /*    flex-wrap: wrap;*/
 /*    gap: 15px;*/
 /*}*/

 /*.coupon-input-group {*/
 /*    display: flex;*/
 /*    gap: 10px;*/
 /*    flex: 1;*/
 /*    min-width: 300px;*/
 /*}*/

 /*.coupon-input {*/
 /*    border: 1px solid #f7f7f7;*/
 /*    padding: 16px;*/
 /*    border-radius: 29px;*/
 /*    font-size: 16px;*/
 /*    font-weight: 500;*/
 /*    margin: 20px;*/
 /*}*/

 /*.coupon-input:focus {*/
 /*    outline: none;*/
 /*    border-color: #007bff;*/
 /*}*/

 /*.btn-apply-coupon,*/
 /*.btn-update-cart,*/
 /*.btn-calculate-totals {*/
 /*    padding: 12px 22px;*/
 /*    background: hsl(205deg 12.39% 93.71%);*/
 /*    color: #555;*/
 /*    border: 1px solid lightgrey;*/
 /*    border-radius: 29px;*/
 /*    font-size: 15px;*/
 /*    margin: 20px 20px 20px 0px;*/
 /*    font-weight: 500;*/
 /*    letter-spacing: 0.5px;*/
 /*    cursor: pointer;*/
 /*    transition: background 0.2s ease;*/
 /*}*/

 /*.btn-apply-coupon:hover,*/
 /*.btn-update-cart:hover,*/
 /*.btn-calculate-totals:hover {*/
 /*    background: #007bff;*/
 /*    color: #fff;*/
 /*    !* transform: scale(1.05); *!*/
 /*    !* transition: background 0.3s ease-in-out; *!*/
 /*    transition: all 0.3s ease-in-out;*/
 /*}*/


 /* ==================== CART PAGE STYLES ==================== */


 /* ==================== CART PAGE STYLES ==================== */

 .cart-page .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 40px 20px;
 }

 .cart-wrapper {
     display: grid;
     grid-template-columns: 2fr 1fr;
     gap: 40px;
     margin-top: 40px;
 }

 /* Cart Header */
 .cart-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 30px;
     padding-bottom: 15px;
     border-bottom: 2px solid var(--border-light);
 }

 .cart-title {
     font-size: 28px;
     font-weight: 700;
     color: var(--text-primary);
     margin: 0;
 }

 .item-count {
     background: var(--bg-button);
     color: white;
     padding: 8px 16px;
     border-radius: 20px;
     font-size: 14px;
     font-weight: 500;
 }

 /* Cart Items Container */
 .cart-items-container {
     display: flex;
     flex-direction: column;
     gap: 20px;
 }

 /* Cart Item Card */
 .cart-item-card {
     background: var(--bg-card);
     border-radius: 16px;
     padding: 25px;
     box-shadow: 0 4px 20px var(--shadow-light);
     transition: all 0.3s ease;
     border: 1px solid var(--border-light);
 }

 .cart-item-card:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 30px var(--shadow-medium);
 }

 .cart-item-content {
     display: grid;
     grid-template-columns: auto 1fr auto auto auto;
     gap: 25px;
     align-items: center;
 }

 /* Product Image */
 .product-image-container {
     position: relative;
 }

 .product-image {
     width: 120px;
     height: 120px;
     object-fit: cover;
     border-radius: 12px;
     transition: all 0.3s ease;
 }

 .product-image:hover {
     transform: scale(1.05);
 }

 /* Product Details */
 .cart-item-content .product-details {
     flex: 1;
 }

 .product-name {
     font-size: 14px;
     font-weight: 600;
     color: var(--text-primary);
     margin: 0 0 8px 0;
     line-height: 1.4;
 }

 .product-description {
     color: var(--text-muted);
     font-size: 14px;
     margin: 0 0 15px 0;
 }

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

 .remove-item,
 .save-later {
     background: none;
     border: none;
     color: var(--text-muted);
     font-size: 13px;
     cursor: pointer;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     gap: 5px;
     padding: 5px 0;
 }

 .remove-item:hover {
     color: #e74c3c;
 }

 .save-later:hover {
     color: var(--text-special);
 }

 /* Price Section */
 .price-section,
 .quantity-section,
 .total-section {
     text-align: center;
     min-width: 80px;
 }

 .price-label,
 .quantity-label,
 .total-label {
     display: block;
     font-size: 12px;
     font-weight: 500;
     color: var(--text-muted);
     margin-bottom: 8px;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 .price,
 .total-price {
     font-size: 18px;
     font-weight: 700;
     color: var(--text-primary);
 }

 /* Quantity Controls */
 .quantity-controls {
     display: flex;
     align-items: center;
     background: var(--bg-secondary);
     border-radius: 25px;
     padding: 4px;
     gap: 2px;
 }

 .cart-page .quantity-btn {
     width: 32px;
     height: 32px;
     border: none;
     background: var(--bg-button);
     color: white;
     border-radius: 50%;
     font-size: 16px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .quantity-btn:hover {
     background: var(--bg-button);
     transform: scale(1.1);
     color: var(--bg-primary);
 }

 .quantity-input {
     width: 50px;
     text-align: center;
     border: none;
     background: transparent;
     font-size: 16px;
     font-weight: 600;
     color: var(--text-primary);
     outline: none;
 }

 .quantity-input::-webkit-outer-spin-button,
 .quantity-input::-webkit-inner-spin-button {
     -webkit-appearance: none;
     margin: 0;
 }

 .quantity-input[type="number"] {
     -moz-appearance: textfield;
 }

 /* Coupon Section */
 .coupon-section {
     margin-top: 30px;
     padding: 25px;
     background: var(--bg-secondary);
     border-radius: 12px;
     border: 1px solid var(--border-light);
 }

 .coupon-input-group {
     display: flex;
     gap: 15px;
     align-items: center;
     flex-wrap: wrap;
 }

 .coupon-input {
     flex: 1;
     min-width: 200px;
     padding: 12px 16px;
     border: 2px solid var(--border-light);
     border-radius: 8px;
     font-size: 14px;
     background: var(--bg-card);
     color: var(--text-primary);
     transition: all 0.3s ease;
 }

 .coupon-input:focus {
     outline: none;
     border-color: var(--bg-button);
     box-shadow: 0 0 0 3px rgba(113, 127, 224, 0.1);
 }

 .btn-apply-coupon,
 .btn-update-cart {
     padding: 12px 24px;
     border: none;
     border-radius: 8px;
     font-size: 13px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 .btn-apply-coupon {
     background: var(--bg-button);
     color: white;
 }

 .btn-apply-coupon:hover {
     background: var(--bg-button-hover);
     transform: translateY(-1px);
 }

 .btn-update-cart {
     background: transparent;
     color: var(--text-secondary);
     border: 2px solid var(--border-medium);
 }

 .btn-update-cart:hover {
     background: var(--text-secondary);
     color: white;
 }

 /* Cart Totals Section */
 .cart-totals {
     background: var(--bg-card);
     padding: 30px;
     border-radius: 16px;
     box-shadow: 0 4px 20px var(--shadow-light);
     border: 1px solid var(--border-light);
     height: fit-content;
     position: sticky;
     top: 100px;
 }

 .totals-title {
     font-size: 20px;
     font-weight: 700;
     color: var(--text-primary);
     margin-bottom: 25px;
     text-align: center;
     padding-bottom: 15px;
     border-bottom: 1px solid var(--border-light);
 }

 .totals-row {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 15px 0;
     border-bottom: 1px solid var(--border-light);
 }

 .totals-row.total-row {
     border-bottom: none;
     border-top: 2px solid var(--border-medium);
     padding-top: 20px;
     margin-top: 15px;
 }

 .totals-row .label {
     font-size: 14px;
     font-weight: 500;
     color: var(--text-secondary);
 }

 .totals-row .value {
     font-size: 16px;
     font-weight: 600;
     color: var(--text-primary);
 }

 .total-row .label,
 .total-row .value {
     font-size: 18px;
     font-weight: 700;
     color: var(--text-primary);
 }

 .total-amount {
     color: var(--bg-button) !important;
 }

 /* Shipping Section */
 .shipping-section {
     margin: 20px 0;
 }

 .shipping-header {
     display: flex;
     flex-direction: column;
     gap: 15px;
 }

 .shipping-message {
     font-size: 13px;
     color: var(--text-muted);
     margin: 0;
     padding: 12px;
     background: var(--bg-secondary);
     border-radius: 8px;
     border-left: 4px solid var(--bg-button);
 }

 .shipping-form {
     display: flex;
     flex-direction: column;
     gap: 12px;
 }

 .country-select,
 .state-input,
 .postcode-input {
     padding: 10px 12px;
     border: 1px solid var(--border-light);
     border-radius: 6px;
     font-size: 14px;
     background: var(--bg-card);
     color: var(--text-primary);
     transition: all 0.3s ease;
 }

 .country-select:focus,
 .state-input:focus,
 .postcode-input:focus {
     outline: none;
     border-color: var(--bg-button);
     box-shadow: 0 0 0 2px rgba(113, 127, 224, 0.1);
 }

 .btn-calculate-shipping {
     padding: 10px 16px;
     background: var(--bg-secondary);
     border: 1px solid var(--border-medium);
     border-radius: 6px;
     font-size: 13px;
     font-weight: 500;
     color: var(--text-secondary);
     cursor: pointer;
     transition: all 0.3s ease;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 .btn-calculate-shipping:hover {
     background: var(--text-secondary);
     color: white;
 }

 /* Checkout Button */
 .btn-checkout {
     width: 100%;
     padding: 16px;
     background: var(--bg-button);
     color: white;
     border: none;
     border-radius: 10px;
     font-size: 16px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     text-transform: uppercase;
     letter-spacing: 1px;
     margin-top: 25px;
     box-shadow: 0 4px 15px rgba(113, 127, 224, 0.3);
 }

 .btn-checkout:hover {
     background: var(--bg-button-hover);
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(113, 127, 224, 0.4);
 }

 .btn-checkout:active {
     transform: translateY(0);
 }

 /*!* Cart Totals Section *!*/
 /*.cart-totals {*/
 /*    border: 1px solid #f7f7f7;*/
 /*    padding: 25px;*/
 /*    border-radius: 6px;*/
 /*    height: fit-content;*/
 /*    ;*/
 /*}*/

 .totals-title {
     font-size: 18px;
     font-weight: 700;
     color: var(--icons-colors);
     margin-bottom: 25px;
     text-align: left;
     letter-spacing: 1px;
 }

 .totals-row {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 15px 0;
     border-bottom: 2px dashed #dee2e6;
 }

 .totals-row .label {
     font-weight: 500;
     color: var(--icons-colors);
 }

 .totals-row .value {
     font-weight: 500;
     color: var(--icons-colors);
     font-size: 16px;
 }

 .shipping-section {
     padding: 15px 0;
     border-bottom: 2px dashed #dee2e6;
 }

 .shipping-header {
     display: flex;
     align-items: flex-start;
     gap: 15px;
     margin-bottom: 15px;
 }

 .shipping-header .label {
     font-weight: 600;
     color: var(--icons-colors);
     min-width: 70px;
 }

 .shipping-info {
     flex: 1;
 }

 .shipping-message {
     font-size: 13px;
     line-height: 1.6923;
     color: #888;
     padding-top: 2px;
     margin-bottom: 20px;
     margin-right: 10px;
 }

 p.calculate-shipping {
     margin-bottom: 4px;
     color: #555;
     font-size: 16px;
     font-weight: 500;
 }


 .shipping-form {
     display: flex;
     flex-direction: column;
     gap: 10px;
     margin-top: 15px;
 }

 .country-select,
 .state-input,
 .postcode-input {
     padding: 10px;
     border: 1px solid #ddd;
     border-radius: 3px;
     font-size: 13px;
     background: var(--input-bg-color);
     margin-bottom: 9px;

 }

 .c1 {
     padding: 15px 40px 15px 40px;
 }

 .country-select:focus,
 .state-input:focus,
 .postcode-input:focus {
     outline: none;
     border-color: #007bff;
 }

 .btn-update-totals {
     width: 100%;
     background: #222;
     color: white;
     border: none;
     padding: 15px;
     border-radius: 29px;
     font-size: 14px;
     font-weight: 600;
     letter-spacing: 0.5px;
     cursor: pointer;
     margin-top: 20px;
     transition: background 0.2s ease;
 }

 .btn-update-totals:hover {
     background: #007bff;
     color: #fff;
     transition: all 0.3s ease-in-out;
 }

 .btn-update-cart {
     margin-left: 50px;
 }

 /*start about*/
 /* our mission style */
 .ourMission {
     /* background-color: rgb(255, 182, 127); */
     width: 100%;
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 100px 190px;
     padding-bottom: 200px;
 }

 .ourMission>.text {
     margin-left: 25px;
 }

 .ourMission>.text>h3 {
     font-family: "Poppins", sans-serif;
     font-weight: 700;
     font-style: normal;

     font-size: 1.8em;
     /* padding-bottom: 10px; */
     color: var(--text-primary);
     margin: 0px;
     display: block;
     margin-block-start: 1em;
     margin-block-end: 1em;
     margin-inline-start: 0px;
     margin-inline-end: 0px;
     unicode-bidi: isolate;

 }

 .ourMission>.text>p {
     font-family: "Poppins", sans-serif;
     font-weight: 210;
     font-style: normal;
     font-size: 1em;
     width: 100%;
     margin: 0;
     padding: 0;
     /* text-align: justify; */
     /* display: block; */
     color: #888888;
     line-height: 1.8;
 }

 .lineBefore>p {
     font-family: "Poppins", sans-serif;
     font-weight: 300;
     font-style: italic;
     font-size: 1em;
     width: 100%;
     margin: 0;
     padding: 0;
     /* text-align: justify; */
     /* display: block; */
     color: #797979;
     line-height: 1.8;
 }

 #steve {
     font-style: normal;
     color: var(--text-dark);
     font-weight: 300;
     font-size: 0.9em;
     margin-top: 5px;
     /* line-height: 1.8; */
 }

 .lineBefore {
     position: relative;
     padding-left: 35px;
 }

 .lineBefore>p::before {
     content: "";
     position: absolute;
     left: 0;
     top: 0;
     width: 3px;
     height: 100%;
     background-color: #ccc;
 }

 .ourMission>.img {
     /* margin-top: -100px; */
     position: relative;
     display: inline-block;
 }

 .ourMission>.img::before {
     content: "";
     position: absolute;
     top: 40px;
     left: 25px;
     right: 75px;
     bottom: -10px;
     border: 3px solid #ccc;
     border-radius: 1px;
     /*z-index: 1;*/
 }

 .ourMission>.img>img {
     width: 420px;
     padding-top: 25px;
     /* margin-top: 25px; */
     margin-right: 100px;
     padding-bottom: 16px;
     /* border: 4px solid #cac9c9; */
     position: relative;
     /*z-index: 2;*/
     display: block;
     transform: scale(1);
     transition: transform 0.9s ease;
 }

 .ourMission>.img:hover img {
     transform: scale(1.1);
 }

 /* our story style */
 .ourStory {
     /* background-color: rgb(255, 182, 127); */
     width: 100%;
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 0 190px;
 }


 .ourStory>.text>h3 {
     font-family: "Poppins", sans-serif;
     font-weight: 700;
     font-style: normal;

     font-size: 1.8em;
     /* padding-bottom: 10px; */
     color: var(--text-primary);
     margin: 0px;
     display: block;
     margin-block-start: 1em;
     margin-block-end: 1em;
     margin-inline-start: 0px;
     margin-inline-end: 0px;
     unicode-bidi: isolate;

 }

 .ourStory>.text>p {
     font-family: "Poppins", sans-serif;
     font-weight: 210;
     font-style: normal;
     font-size: 1em;
     width: 100%;
     margin: 0;
     padding: 0;
     /* text-align: justify; */
     display: block;
     color: #888888;
     line-height: 1.8;
 }

 .ourStory>.img {
     margin-top: -100px;
     position: relative;
     display: inline-block;
 }

 .ourStory>.img::before {
     content: "";
     position: absolute;
     top: 40px;
     left: 75px;
     right: 25px;
     bottom: -10px;
     border: 3px solid #ccc;
     border-radius: 1px;
     /*z-index: 1;*/
 }

 .ourStory>.img>img {
     width: 400px;
     padding-top: 16px;
     margin-left: 100px;
     padding-bottom: 16px;
     /* border: 4px solid #cac9c9; */
     position: relative;
     /*z-index: 2;*/
     display: block;
     /* transition: tr 0.4s ease; */
     transform: scale(1);
     transition: transform 0.9s ease;
 }

 .ourStory>.img:hover img {
     transform: scale(1.1);
 }

 /*pop up */

 .popup {
     display: none;
     position: fixed;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     background-color: var(--popup-bg-color);
     padding: 40px;
     box-shadow: 0 0 10px var(--shadow-medium);
     z-index: 1000;
     width: 95%;
     max-width: 1100px;
     height: 90vh;
     max-height: 90vh;
     color: var(--text-primary);
     border-radius: 8px;
     overflow-y: auto;
 }

 .popup-content {
     display: flex;
     gap: 40px;
     height: 100%;
 }

 .popup-images {
     flex: 0 0 60%;
     display: flex;
     flex-direction: column;
     align-items: flex-start;
     justify-content: flex-start;
 }

 .popup-details {
     flex: 0 0 40%;
     display: flex;
     flex-direction: column;
     padding-top: 20px;
 }

 .popup-details h2 {
     margin: 0 0 15px;
     font-size: 28px;
     font-weight: 500;
 }

 .popup-details .price {
     font-size: 24px;
     font-weight: bold;
     margin: 0 0 20px;
     color: var(--text-accent);
 }

 .popup-details .description {
     margin: 0 0 30px;
     color: var(--text-secondary);
     line-height: 1.6;
     font-size: 16px;
 }

 .options-container {
     margin-bottom: 30px;
 }

 .option-group {
     margin-bottom: 25px;
 }

 .option-group label {
     display: block;
     margin-bottom: 10px;
     font-weight: 600;
     font-size: 16px;
 }

 .option-select {
     width: 100%;
     max-width: 100%;
     padding: 12px;
     border: 1px solid #ddd;
     border-radius: 6px;
     font-size: 15px;
     background-color: white;
 }

 .add-to-cart-container {
     margin-top: auto;
     display: flex;
     gap: 20px;
     align-items: center;
 }

 .quantity-selector {
     display: flex;
     align-items: center;
     gap: 12px;
     flex-grow: 0;
 }

 .quantity-btn {
     width: 36px;
     height: 36px;
     border: 1px solid #ddd;
     background: none;
     font-size: 18px;
     border-radius: 4px;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--popup-cart-plus-color);
 }

 .quantity-display {
     min-width: 30px;
     text-align: center;
 }

 .add-to-cart-btn {
     flex-grow: 0;
     width: 200px;
     background-color: var(--bg-button);
     color: var(--popup-cart-text);
     border: none;
     padding: 15px;
     font-size: 17px;
     font-weight: 600;
     border-radius: 6px;
     cursor: pointer;
     transition: background-color 0.2s;
 }

 .add-to-cart-btn:hover {
     background-color: var(--popup-button-bg-color);
 }

 .overlay {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.5);
     z-index: 999;
 }

 .close-btn {
     position: absolute;
     top: 20px;
     right: 20px;
     font-size: 28px;
     cursor: pointer;
     color: var(--text-primary);
     background: none;
     border: none;
     width: 40px;
     height: 40px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
 }

 .close-btn:hover {
     background-color: rgba(0, 0, 0, 0.05);
 }

 .popup-main-image {
     width: 100%;
     max-width: 100%;
     height: auto;
     max-height: 400px;
     object-fit: contain;
 }

 .thumbnail-container,
 .thumbnail-column {
     display: flex;
     flex-direction: column;
     gap: 15px;
     margin-right: 20px;
 }

 .thumbnail-img {
     width: 60px;
     height: 60px;
     object-fit: cover;
     cursor: pointer;
     border: 1px solid #ddd;
     border-radius: 4px;
     transition: all 0.2s ease;
 }

 .thumbnail-img:hover,
 .thumbnail-img.active {
     border-color: #333;
 }

 .main-image-container {
     flex: 1;
     display: flex;
     justify-content: center;
 }

 .image-container {
     display: flex;
     gap: 20px;
     margin-bottom: 20px;
 }


 /*login page*/
 .login__body {
     /*background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c') no-repeat center center fixed;*/
     background-size: cover;
     margin: 0;
     display: flex;
     justify-content: center;
     align-items: center;
     height: 100vh;
 }

 .login-box {
     background: var(--box-colors);
     padding: 40px;
     border-radius: 8px;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
     width: 400px;
 }

 .login-box h2 {
     text-align: center;
     color: var(--main-header-box-color);
     margin-bottom: 10px;
 }

 .login-box p {
     text-align: center;
     color: #888;
     font-size: 14px;
     margin-bottom: 30px;
 }

 .login__body input[type="email"],
 .login__body input[type="password"] {
     width: 100%;
     padding: 14px;
     margin: 8px 0 5px;
     border: 1px solid #ccc;
     border-radius: 4px;
     font-size: 16px;
     background-color: var(--input-bg-color);
 }

 input.error {
     border-color: red;
     background-color: #ffe6e6;
 }

 .error-message {
     color: var(--error-color);
     font-size: 13px;
     margin-bottom: 15px;
     display: none;
 }

 .login-box button {
     width: 100%;
     padding: 12px;
     background: var(--button-box-color);
     color: white;
     border: none;
     border-radius: 4px;
     font-weight: bold;
     cursor: pointer;
     margin-top: 15px;
 }

 .login-box .signup {
     text-align: center;
     margin-top: 20px;
     font-size: 14px;
 }

 .login-box .signup a {
     color: var(--button-box-color);
     font-weight: 600;
 }

 /*start register  */

 .signup-box {
     background: var(--box-colors);
     padding: 40px;
     border-radius: 8px;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
     width: 400px;
 }

 .signup-box h2 {
     text-align: center;
     color: var(--main-header-box-color);
     margin-bottom: 10px;
 }

 .signup-box p {
     text-align: center;
     color: #888;
     font-size: 14px;
     margin-bottom: 30px;
 }

 .signup-box input {
     width: 100%;
     padding: 14px;
     margin: 8px 0 5px;
     border: 1px solid #ccc;
     border-radius: 4px;
     font-size: 16px;
     background-color: var(--input-bg-color);
 }

 input.error {
     border-color: red;
     background-color: #ffe6e6;
 }

 .error-message {
     color: var(--error-color);
     font-size: 13px;
     margin-bottom: 15px;
     display: none;
 }

 .signup-box button {
     width: 100%;
     padding: 12px;
     background: var(--button-box-color);
     color: white;
     border: none;
     border-radius: 4px;
     font-weight: bold;
     cursor: pointer;
     margin-top: 15px;
 }

 .signup-box .login {
     text-align: center;
     margin-top: 20px;
     font-size: 14px;
 }

 .signup-box .login a {
     color: var(--button-box-color);
     font-weight: 600;
 }

 /* search box  */

 .search-box {
     display: flex;
     align-items: center;
     border: 1px solid var(--search-box-color);
     padding: 15px 20px;
     border-radius: 3px;
     background-color: var(--search-box-bg-color);
     max-width: 100%;
     display: none;
 }

 .search-box.hidden {
     display: block;
 }

 .search-icon {
     font-size: 16px;
     margin-right: 12px;
     color: var(--search-box-color);
 }

 .search-box input {
     border: none;
     outline: none;
     font-size: 16px;
     flex-grow: 1;
     color: var(--search-box-color);
     background-color: transparent;
     width: 95%;
 }

 /* ==================== CHECKOUT POPUP STYLES ==================== */
 .checkout-popup {
     max-width: 800px;
     width: 90%;
     height: auto;
     max-height: 85vh;
     padding: 30px;
 }

 .checkout-popup .popup-content {
     display: flex;
     flex-direction: column;
     gap: 25px;
     height: auto;
 }

 .checkout-header {
     text-align: center;
     padding-bottom: 20px;
     border-bottom: 2px solid var(--border-light);
 }

 .checkout-header h2 {
     margin: 0 0 8px 0;
     font-size: 28px;
     font-weight: 700;
     color: var(--text-primary);
 }

 .checkout-subtitle {
     margin: 0;
     color: var(--text-muted);
     font-size: 16px;
 }

 .checkout-items-container {
     display: flex;
     flex-direction: column;
     gap: 15px;
     max-height: 350px;
     overflow-y: auto;
     padding-right: 10px;
 }

 .checkout-item-card {
     background: var(--bg-secondary);
     border-radius: 12px;
     padding: 20px;
     border: 1px solid var(--border-light);
     transition: all 0.3s ease;
 }

 .checkout-item-card:hover {
     transform: translateY(-2px);
     box-shadow: 0 4px 15px var(--shadow-light);
 }

 .checkout-item-content {
     display: flex;
     align-items: center;
     gap: 20px;
 }

 .checkout-product-image-container {
     flex-shrink: 0;
 }

 .checkout-product-image {
     width: 80px;
     height: 80px;
     object-fit: cover;
     border-radius: 8px;
     border: 1px solid var(--border-light);
 }

 .checkout-product-details {
     flex: 1;
 }

 .checkout-product-name {
     margin: 0 0 8px 0;
     font-size: 18px;
     font-weight: 600;
     color: var(--text-primary);
 }

 .checkout-product-specs {
     margin: 0 0 5px 0;
     color: var(--text-muted);
     font-size: 14px;
 }

 .checkout-product-calculation {
     margin: 0;
     color: var(--text-secondary);
     font-size: 15px;
     font-weight: 500;
 }

 .checkout-summary {
     padding: 20px;
     background: var(--bg-secondary);
     border-radius: 12px;
     border: 2px solid var(--border-light);
 }

 .checkout-total-row {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .checkout-total-label {
     font-size: 20px;
     font-weight: 600;
     color: var(--text-primary);
 }

 .checkout-total-amount {
     font-size: 24px;
     font-weight: 700;
     color: var(--bg-button);
 }

 .checkout-actions {
     display: flex;
     gap: 15px;
     justify-content: center;
     padding-top: 10px;
 }

 .confirm-order-btn,
 .cancel-order-btn {
     padding: 15px 30px;
     border: none;
     border-radius: 25px;
     font-size: 16px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     min-width: 150px;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 .confirm-order-btn {
     background: var(--bg-button);
     color: white;
     box-shadow: 0 4px 15px rgba(113, 127, 224, 0.3);
 }

 .confirm-order-btn:hover {
     background: var(--bg-button-hover);
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(113, 127, 224, 0.4);
 }

 .cancel-order-btn {
     background: transparent;
     color: var(--text-secondary);
     border: 2px solid var(--border-medium);
 }

 .cancel-order-btn:hover {
     background: var(--text-secondary);
     color: white;
     transform: translateY(-2px);
 }