/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.header, .toolbar, .banner, .footer, .navigation-banner {
    padding: 10px 0;
    text-align: center;
}
h1{
    margin-left: 10px;
    display: flex;
    width: 100%;
    margin-top: 20px;
    padding-top: 20px;
}

/*header css*/
.banner{
    padding: 0;
}
.banner nav ul{
    /*display: flex;
    justify-content: center;*/
    margin: 0px;
}
.header{
    margin-top: 0px;
    /*background-color: #AED6F1;*/
}

header{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}
.header #iq73p{
    display: none;
}
.header .logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100% !important;
}
.logo > img {
    width: 450px !important;
}
.menu-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}
.menu-container.container-complex-product{
/*    display: block;*/
}

.cart-container {
    display: block;
    flex-wrap: unset;
}
.cart-container h1{
    text-align: center;
    align-items: center;
    justify-content: center;
}
.cart-container .sys-cart-empty{
    text-align: center;
}

.menu-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2px;
    border: 1px solid;
    box-sizing: border-box;
    flex-grow: 1;
    min-width: 145px;
    max-width: 300px;
    flex-basis: calc(25% - 20px);
    padding: 0px;
    cursor: pointer;
    height: auto;
}
.img-exist{
    border: none;
}

.menu-content-outer {
    padding-top: 100%;
    height: 0;
    position: relative;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-content {
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 0;
}

.menu-content img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
}

.menu-content p {
    margin: 0;
}

@media (max-width: 768px) {
    .menu-item {
        flex-basis: calc(50% - 20px); /* 2 items per row on mobile */
        flex: 0 0 calc(50% - 4px);
    }
}

/* Mobile view */
@media (max-width: 767px) {
    .menu-item img, .menu-item p {
        max-width: 100%;
        max-height: 100%;
    }
}

/* Tablet/PC view */
/*@media (min-width: 768px) {
    .menu-item img, .menu-item p {
        max-width: 100%;
        max-height: 100%;
    }
}

@media (min-width: 250px) and (max-width: 300px) {
    .menu-item {
        height: 100px;
        min-width: 97px;
    }
}
@media (min-width: 301px) and (max-width: 400px) {
    .menu-item {
        height: 175px;
    }
}
@media (min-width: 401px) and (max-width: 500px) {
    .menu-item {
        height: 220px;
    }
}
@media (min-width: 501px) and (max-width: 600px) {
    .menu-item {
        height: 245px;
    }
}
@media (min-width: 601px) and (max-width: 767px) {
    .menu-item {
        height: 300px;
    }
}
@media (min-width: 768px) and (max-width: 900px) {
    .menu-item {
        height: 200px;
    }
}*/

.popup-message {
    display: none; /* Initially hidden */
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f8d7da;
    color: #721c24;
    padding: 10px 20px;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
    z-index: 1000;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Breadcrumb container styling */
#breadcrumb{
    max-width: 1200px;
    margin: auto;
    display: block;
    width: 100%;
}
#breadcrumb ul {
  margin: 10px 0;
  padding: 0;
  overflow: hidden;
}

/* Breadcrumb items styling */
#breadcrumb li {
  float: left;
  margin-left: 0;
  width: auto;
  height: 20px;
  list-style-type: none;
  padding: 5px 5px 5px 30px;
  border-right: 3px solid white;
  position: relative;
  align-content: center;
  box-sizing: unset;
}
#breadcrumb li:first-child {
  padding-left: 5px;
}
#breadcrumb li:nth-child(n+2)::before {
  position: absolute;
  top:0;
  left:0;
  display: block;
  border-left: 26px solid white; /* width: arrow width, color: background of document */
  border-top: 16px solid transparent; /* width: half height */
  border-bottom: 15px solid transparent; /* width: half height */
  width: 0;
  height: 0;
  content: " ";
}
#breadcrumb li::after {
  z-index: 1; /* need to bring this above the next item */
  position: absolute;
  top: 0;
  right: -24px; /* arrow width (negated) */
  display: block;
  border-left: 25px solid #AED6F1; /* width: arrow width */
  border-top: 16px solid transparent; /* width: half height */
  border-bottom: 15px solid transparent; /* width: half height */
  width:0;
  height:0;
  content: " ";
}
#breadcrumb li { background-color: #AED6F1; }
#breadcrumb li::after { border-left-color: #AED6F1; }

/* Current */
#breadcrumb li.current { background-color: #d7d7d7; }
#breadcrumb li.current::after { border-left-color: #d7d7d7; }

/* Hover for completed and current */
#breadcrumb li:hover {background-color: #000}
#breadcrumb li:hover::after {border-left-color: #000}

#breadcrumb li a{
    color: #fff;
    text-decoration: none;
}

/* Mobile view */
@media (max-width: 767px) {
    #breadcrumb li{
        align-content: normal;
    }
    #breadcrumb li a{
        font-size: 12px;
    }
}

/*product selection*/
/* General styles for product boxes */
.product-box {
    border: 1px solid #ccc;
    padding: 10px;
    margin: 10px;
    box-sizing: border-box;
}
/* Flexbox container for individual products */
.individual-products, .master-products, .bom-products {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
/* Flexbox item for individual products */
.individual-product {
    border-top: 1px solid #ddd;
    box-sizing: border-box;
    flex: 1 0 95%;
    display: block;
}
/* Flexbox item for master and BOM products */
.master-product, .bom-product {
    border: 1px solid #ddd;
    padding: 10px;
    /*margin: 10px;*/
    box-sizing: border-box;
    /*flex: 1 0 96%;*/
}
.main-section {
    display: flex;
}
/* Product box styles */
.individual-product h4,
.master-product h3,
.bom-product h3 {
    margin: 0 0 10px;
}
.individual-product p,
.master-product p,
.bom-product p {
    margin: 5px 0;
}
/* Link and button styles */
.individual-product a,
.individual-product .more-details,
.master-product a,
.master-product .more-details,
.bom-product a,
.bom-product .more-details {
    display: inline-block;
    padding: 5px 10px;
    margin: 5px;
    text-align: center;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}
.individual-product a:hover,
.individual-product .more-details:hover,
.master-product a:hover,
.master-product .more-details:hover,
.bom-product a:hover,
.bom-product .more-details:hover {
    background-color: #0056b3;
}
/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    padding-top: 60px;
}
.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    box-sizing: content-box;
}
.close {
    /*color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;*/
    color: #fff;
    float: right;
    font-size: 16px;
    background: #000;
    padding: 5px;
    border-radius: 5px;
}
.close:hover,
.close:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.individual-products table{
    width: 100%;
}

.individual-products table td{
    /*width: 100%;*/
}
/*.individual-products table td.align-right a{
    width: 20%;
}*/

.filter-box-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-bottom: 10px;
}
.filter-box-inner .form-control {
    width: 30%;
}
.filter-box-inner label {
    width: 100%;
}
.filter-box-inner select {
    width: 100%;
    padding: 5px;
    border-radius: 5px;
}
.no-products-message{
    margin-top: 20px;
}
.left-section {
    flex: 1;
}
.right-section {
    /*flex: 1;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    /*min-width: 150px;*/
}
.left-section img {
    border: 1px solid #ddd;
    width: 100%;
}

/* Responsive styles */
@media (min-width: 700px) {
    .individual-product {
        flex: 0 0 47%; /* Two items per row on tablet */
    }
    .master-product, .bom-product {
        flex: 0 0 47%;
    }
}

@media (min-width: 1025px) {
    .individual-product {
        flex: 0 0 31.45%; /* Three items per row on desktop */
    }
    .master-product, .bom-product {
        flex: 0 0 31.45%;
    }
}

/*product display*/
.product-page {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px;
    width: 100%;
}

.product-box {
    box-sizing: border-box;
    padding: 2px;
    margin-bottom: 10px;
    width: 100%;
}

.product-images, .product-details {
    flex: 1 1 48%;
    max-width: 48%;
}
.main-image {
    border: 1px solid #ddd;
}
.main-image img {
    width: 100%;
}
.thumbnail-images {
    display: flex;
    gap: 2px;
    flex-wrap: wrap;
}
.thumbnail-images img {
    width: 80px;
    margin-top: 5px;
    cursor: pointer;
    border: 1px solid #ddd;
    padding: 5px;
    margin-top: 5px;
}

.product-details-content h1 {
    font-size: 1.5em;
    margin: 0 0 10px 0;
}

.product-details-content .price {
    font-size: 1.2em;
    color: #b12704;
}

.qty-button-section {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
}

.product-details-content .availability {
    color: green;
}

.quantity {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.quantity button {
    width: 30px;
    height: 37px;
    background-color: #aed6f1;
    border-color: #aed6f1;
    border-style: none;
    cursor: pointer;
}

.quantity input {
    width: 40px;
    text-align: center;
    height: 31px;
    border: 1px solid #aed6f1;
    padding: 2px;
}
.quantity {
    border: 2px solid #000;
    border-radius: 40px;
    height: 46px;
    width: 90px;
    justify-content: center;
}
.quantity button {
    line-height: 36px;
    cursor: pointer;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    background-color: transparent;
    border-color: transparent;
}
.quantity input {
    border: none !important;
    padding: 0 !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    font-style: normal !important;
}

.add-to-cart {
    display: block;
    background-color: #f0c14b;
    border: 1px solid #a88734;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    margin: 10px 0;
}
.add-to-cart {
    font-weight: 700;
    text-transform: uppercase;
    min-width: 120px;
    border-radius: 50px;
    border: 1px solid transparent;
    font-size: 14px;
}

.product-meta a {
    color: #007185;
    text-decoration: none;
}

.product-tabs {
    display: flex;
    margin-top: 20px;
    justify-content: space-around;
    border: 1px solid #ddd;
    border-radius: 5px 5px 0 0;
    border-bottom: 0;
    margin: 0 10px;
    width: 100%;
}
.tab-button {
    padding: 10px 20px;
    cursor: pointer;
    width: 100%;
    border: none;
    border-right: 1px solid #ddd;
    border-bottom: none;
}
.tab-button.active {
    background-color: #f0c14b;
    border-bottom: none;
}
.tab-button:first-child {
    border-radius: 5px 0 0 0;
}
.tab-button:last-child {
    border-color: #f0f0f0;
    border-radius: 0 5px 0 0;
}
.tab-button.active:last-child {
    border-color: #f0c14b;
}

.tab-content {
    display: none;
    padding: 20px;
    border: 1px solid #ddd;
    margin: 0 10px;
    border-top: 0;
    margin-bottom: 20px;
    border-radius: 0 0 5px 5px;
}

.tab-content.active {
    display: block;
    width: 100%;
}


form#enquiryForm {
    width: 500px;
    margin-left: auto;
    margin-right: auto;
}
#enquiryForm label {
    display: block;
    margin: 10px 0 5px;
}
#enquiryForm input, #enquiryForm textarea {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    margin-bottom: 5px;
}

#enquiryForm button {
    background-color: #f0c14b;
    border: 1px solid #a88734;
    padding: 10px;
    cursor: pointer;
    margin-top: 10px;
}

.product-page .product-box{
    border: none;
    padding: 0;
    margin: 0;
}

.contact-info {
    width: auto !important;
}
.header .logo span{
    padding-left: 20px;
}

.individual-product .right-section a, .individual-product .right-section button {
    width: calc(100% - 10px);
    box-sizing: border-box;
    font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
}

/* Media Queries */
@media (max-width: 768px) {
    .header .logo{
        flex-wrap: wrap;
        justify-content: center;
    }
    .logo > img {
         width: 320px !important; 
    }
    .header .logo .contact-info {
        width: 100%;
    }
    .header .logo span {
        width: 100%;
        padding-top: 10px;
        display: block;
        align-items: center;
        vertical-align: middle;
        text-align: center;
    }
    .product-images, .product-details {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .downloads img {
        width: 60px;
    }
    form#enquiryForm {
        width: 100%;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .product-images, .product-details {
        flex: 1 1 48%;
        max-width: 48%;
    }
}

@media (min-width: 1025px) {
    .product-images, .product-details {
        flex: 1 1 48%;
        max-width: 48%;
    }
}


/*Complex product*/
.product-page.multi-choice-product {
    width: 100%;
    border: 0;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
    -webkit-transition: 0.1s;
    transition: 0.1s;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
    gap: 50px;
}
.multi-choice-product .product-box.product-images {
    max-width: 20%;
}
.multi-choice-product .product-box.product-images .main-image{
    border: none;
}
.multi-choice-product .extra-products {
    width: 100%;
    padding: 10px;
}
.extra-products {
    width: 100%;
    padding: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.extra-products .full-product-box {
    width: 100%;
    border: 0;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    -webkit-transition: 0.1s;
    transition: 0.1s;
    padding-bottom: 10px;
}
.extra-products .full-product-box.individual-product{
    padding: 10px;
}
.extra-products .full-product-box .c-main-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.extra-products .full-product-box .c-main-section .c-left-section {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.extra-products .full-product-box .c-main-section .c-left-section .image{
    max-width: 60px;
}
.extra-products .title-price {
    line-height: 1em;    
}
.extra-products .full-product-box.individual-product .title-price{
    margin-left: 10px;
}
.extra-products .title-price h3 {
    font-weight: 900;
    margin: 0;
    margin-bottom: 5px;
}
.extra-products .individual-products-option-inner {
    padding-bottom: 5px;
    position: relative;
    border-top: 1px solid #ddd;
}
.right-correct-check-in, .close-check-in {
    display: none;
}
.right-correct-check-in.active, .close-check-in.removed{
    display: block;
}
.extra-products .individual-products-option-inner label.individual-products-option-inner-label {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    cursor: pointer;
}
.extra-products .qty-section {
    display: flex;
    gap: 15px;
    justify-content: center;
    padding: 5px 0;
}
.extra-products .qty-section span {
    padding: 5px 20px;
    border: 2px solid #d4d4d4;
    border-radius: 5px;
    font-size: 14px;
}
.extra-products .qty-section-inner.active span.qty {
    border: 2px solid #007bff;
    font-weight: 700;
}
.extra-products .filter-box {
    border-top: 1px solid #ddd;
    margin-top: 5px;
    padding-top: 5px;
}
.total-with-button {
    width: 100%;
    padding: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0px auto 10px auto;
    align-items: center;
}
.total-with-button .total-price {
    font-size: 24px;
}
.total-with-button .buy-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    gap: 13px;
}
.total-with-button .buy-buttons button, .cart-container button {
    font-style: normal;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: #FFF;
    font-size: 14px;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    text-align: center;
    margin: 0;
    width: 100%;
}
.extra-products .individual-products table img {
    max-width: 100px;
}
.extra-products .individual-products-option {
    width: 100%;
}
.extra-products .individual-products-option .individual-product {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding-top: 5px;
    border: none;

}
.extra-products .individual-products-option .individual-product img {
    max-width: 60px;
}
.extra-products .individual-products-option .individual-product .image-title-sub-title{
    display: flex;
    align-items: center;
}
.extra-products .individual-products-option .individual-product .image-title-sub-title .image-section{
    position: relative;
}
.extra-products .individual-products-option .individual-product .title-sub-title {
    margin-left: 10px;
}
.extra-products .none_filer-radio, .extra-products .filter-radio{
    display: none;
}
.extra-products .qty-section-inner {
    position: relative;
}
.extra-products label.individualproductoption {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 999;
    cursor: pointer;
}
input.individual-product-radio {
    display: none;
}
.extra-products .qty-section-inner.active span.qty:before {
    content: '\2713';
    display: inline-block;
    color: blue;
    padding: 0 5px 0 0;
}
.c-bottom-section .individual-product .align-right{
    z-index: 99999;
    display: flex;
    align-items: center;
}
button.btn-item {
    display: inline-block;
    padding: 2px 5px;
    text-align: center;
    background-color: transparent;
    color: #000;
    text-decoration: none;
    border: 1px solid #000;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    max-width: 80px;
    width: 100%;
    height: 26px;
}
.sys-d-flex {
    display: flex;
}
.sys-justify-content-between {
    justify-content: space-between;
}
.sys-align-item-center {
    align-items: center;
}
.sys-gap-15 {
     gap: 15px;
}
.sys-space-nowrap {
    white-space: nowrap;
}
.sys-d-none{
    display: none;
}
button.btn-item.remove{
    color: red;
    border-color: red;
}
.c-main-section .c-right-section {
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-basis: min-content;
}
.c-main-section .c-right-section .quantity, .individual-products-option-inner .quantity{
    border-radius: 5px;
    height: 25px;
    width: 100%;
    margin: 0;
    max-width: 78px;
    border: 1px solid #000;
}
.c-main-section .c-right-section .quantity button.decrement, .c-main-section .c-right-section .quantity button.increment,
.individual-products-option-inner .quantity button.decrement, .individual-products-option-inner .quantity button.increment {
    line-height: unset;
    /*font-size: 14px;*/
    font-weight: normal;
    border-right: 1px solid #000;
    height: 25px;
}
.c-main-section .c-right-section .quantity button.increment,
.individual-products-option-inner .quantity button.increment{
    border-right: none;
    border-left: 1px solid #000;
}
.c-main-section .c-right-section .quantity input, 
.individual-products-option-inner .quantity input{
    /*font-size: 12px !important;*/
    height: 25px;
    font-weight: normal !important;
    width: 35px;
    text-align: center;
}
.c-main-section .c-right-section button.more-details, .individual-products-option .more-details{
    max-width: 80px;
    min-width: 80px;
    width: 100%;
    margin: 0;
    margin-bottom: 5px;
    height: 26px;
}
.individual-products-option .more-details{
    margin-bottom: 0px;
}
.c-left-section .title-price p {
    font-size: 12px;
}
.title-sub-title p {
    font-size: 12px;
}
.error-message {
    color: red;
    font-size: 14px;
    display: none;
    text-align: center;
}

/* Loader styles */
.loader {
    border: 4px solid #f3f3f3; /* Light grey */
    border-top: 4px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 5px;
    height: 5px;
    animation: spin 2s linear infinite;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px; /* Adjust for spacing */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Optionally, disable the button when the loader is active */
.button-loading {
    pointer-events: none; /* Disable clicks */
    opacity: 0.6; /* Reduce opacity */
}
.c-main-section .c-left-section input.custom-text {
    width: 100%;
    padding: 5px;
}
@media (max-width:767px){
    .extra-products .full-product-box .c-main-section {
        margin-bottom: 5px;
    }
    .multi-choice-product .product-box.product-images {
        max-width: 60%;
    }
    .product-page.multi-choice-product{
        gap: 0;
    }
    .extra-products .qty-section{
        gap: 5px;
    }
    .extra-products .qty-section span{
        padding: 5px;
        font-size: 10px;
    }
    .total-with-button .total-price {
        width: 100%;
        text-align: center;
        padding: 10px;
        font-size: 24px;
    }
    .total-with-button .buy-buttons button {
        width: 100%;
        text-align: center;
    }
    .total-with-button .buy-buttons{
        justify-content: center;
        align-items: center;
        width: 100%;
    }
}



















.field-group {
    margin-bottom: 15px;
    margin-top: 10px;
}
.field-group {
    margin-bottom: 15px;
    margin-top: 10px;
}
.field-group .label {
    font-weight: bold;
    margin-bottom: 10px;
}
.field-group input {
    width: 100%;
    height: 35px;
    box-sizing: border-box;
    border: 1px solid #333;
}
.field-group .note {
    font-size: 12px;
    margin-top: 5px;
    margin-bottom: 5px;
    color: #555555;
}

.field-group .date-time {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}
.field-group .date-time .date {
    width: 100%;
}
.field-group .date-time .date label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
}
.field-group .date-time .date input {
    padding-left: 15px;
    padding-right: 15px;
}
.field-group textarea {
    width: 100%;
    border: 1px solid;
    box-sizing: border-box;
}
.field-group h4 {
    margin-bottom: 5px;
}


/* Basic styles for the cart drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 400px;
  height: 100%;
  background-color: #fff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  z-index: 999999;
  transition: right 0.3s ease;
}
@media (max-width: 767px) {
    .cart-drawer {
        width: 100%;
        max-width: 100%;
    }
}

.cart-drawer.sys-open {
  right: 0;
}

.cart-drawer-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 15px;
    border-bottom: 1px solid #ddd;
    gap: 20px;
}
.cart-drawer-content {
  padding: 0 15px;
  overflow-y: auto;
  height: calc(100% - 195px);
}
.close-cart-drawer {
  background: none;
  border: none;
  font-size: 1.5em;
  cursor: pointer;
}
.cart-drawer-content .cart__item {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}
.cart-drawer-content .cart__item:last-child {
    border-bottom: none;
}
.cart-drawer-content img.cart-item-image {
    width: 80px;
}
.cart-drawer-content .cart__item--details {
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    display: grid;
    grid-column: 2;
}
.cart-drawer-content .cart__item--name {
    grid-column: 1 / span 3;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
}
.cart-drawer-content .cart__item--price {
    flex-direction: column;
    grid-column: auto;
    margin-left: 0;
    display: flex;
    gap: 10px;
}
.cart-drawer-content .cart__item--price .prices {
    display: flex;
    gap: 10px;
}
.cart-drawer-content small.cart__price.cart__price--strikethrough {
    color: #969696;
    -webkit-text-decoration: line-through;
    text-decoration: line-through;
}
.cart-drawer-content span.cart__price.cart__discount {
    display: block;
    font-weight: 700;
    font-size: 14px;
}
.cart-drawer-content small.cart__discount {
    font-size: 10px;
    background-color: #d6d6d670;
    padding: 1px 5px;
    border-radius: 4px;
    font-weight: 700;
    display: block;
}
.cart-drawer-content small.additional-product {
    display: block;
}
.cart-drawer-content .cart__item--qty {
    display: flex;
    justify-content: end;
    grid-column: 2;
}
.cart-drawer-content .cart__item--qty .quantity {
    border-radius: 5px;
    height: 25px;
    width: 100%;
    margin: 0;
    max-width: 78px;
    border: 1px solid #000;
}
.cart-drawer-content .cart__item--qty button.decrement, .cart-drawer-content .cart__item--qty button.increment {
    line-height: unset;
    border-right: 1px solid #000;
    height: 25px;
}
.cart-drawer-content .cart__item--qty .quantity input {
    height: 25px;
    font-weight: normal !important;
    width: 35px;
    text-align: center;
}
.cart-drawer-content .cart__item--qty button.increment {
    border-right: none;
    border-left: 1px solid #000;
}
.cart-drawer-footer {
  padding: 15px;
  border-top: 1px solid #ddd;
}
.cart-drawer-footer .cart__item-sub {
    display: flex;
    flex: 1 1 100%;
    justify-content: space-between;
    line-height: 1;
    margin-bottom: 8px;
}
.cart-drawer-footer .cart__item-sub .cart__subtotal {
    letter-spacing: 0;
    text-transform: uppercase;
    font-weight: 700;
}
.cart-drawer-footer .cart-total-price {
    font-weight: 700;
}
.cart-drawer-footer .min-cart-shipping {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    line-height: normal;
    font-weight: 600;
    text-transform: uppercase;
}
.cart-drawer-footer button {
    font-style: normal;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: #FFF;
    font-size: 14px;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    text-align: center;
    margin: 0;
    margin-top: 18px;
    width: 100%;
}