a {
    transition: all 0.4s ease;
}
a:hover {
	 transition: all 0.6s ease;
 }
 img {
	 transition: all 0.9s ease;
 }
 img:hover {
	 opacity: 0.85;
	 transition: all 0.9s ease;
 }
 .mb-0 {
   margin-bottom: 0 !important
 }
 .pt-0 {
   padding-top: 0 !important;
 }
 .ml-0 {
   margin-left: 0 !important;
 }
 .pl-0 {
   padding-left: 0 !important;
 }
 .pr-0 {
   padding-right: 0 !important;
 }
 .pb-0 {
   padding-bottom: 0 !important;
 }
 .pt-1 {
   padding-top: 10px;
 }
 .no-gap {
   gap:0;
 }
 .description p {
   margin-bottom: 0px;
 }
 .hide {
  display: none !important;
 }
.lbl {
    display: inline-block;
    padding: 5px 10px;
    font-size: 11px;
    border-radius: 15px;
    color: white;
}

.lbl-default {
    background-color: #01a99d;
}

.lbl:hover {
    opacity: 0.8;
}
.bigger:hover {
 color: #fff;
}
.relative {
  min-height: 80px;
}
.payment-methods h5 {
   font-size: 16px;
   font-weight: bold;
   margin: 15px 0 8px;
   color: #333;
}

.payment-methods ul.l-inline {
   list-style: none;
   padding: 0;
   margin: 0;
}

.payment-methods ul.l-inline li {
   margin-bottom: 10px;
   display: flex;
   align-items: center;
   gap: 10px;
}

.payment-methods ul.l-inline li input[type="radio"] {
   accent-color:  #1b8b83;
   width: 18px;
   height: 18px;
}

.payment-methods ul.l-inline li label {
   font-size: 15px;
   color: #333;
   cursor: pointer;
   display: flex;
   align-items: center;
   gap: 5px;
    transition:  color 0.3s ease;
}

.payment-methods ul.l-inline li label:hover {
   color: var(--secondary-color);
}

.payment-methods button.checkout-btn {
   transition: background-color 0.3s ease;
}

.payment-methods button.checkout-btn:hover {
   background-color: #111;
}

.payment-methods button.checkout-btn:disabled {
   background-color: #c0c0c0;
   cursor: not-allowed;
}

.payment-methods button i.fa-spinner {
   margin-right: 8px;
   display: inline-block;
}

#paymentIframe {
    width: 100%;
    height: 100vh;
}
.capital {
  text-transform: capitalize;
}
.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.vocontent {
  background: #fff;
  border-radius: 8px;
  padding: 10px;
}


.spinner {
    border: 4px solid transparent;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
}

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


#editAddressForm textarea{
    margin-bottom: -5px;
}
 #editAddressForm .form-group {
    margin-bottom: 10px;
}
  #editAddressForm input[type="radio"] {
     width: auto;
 }
#editAddressForm .form-group label {
    margin-right: 10px;
    margin-top: 5px;
    display: inline-block;
    font-weight: normal;
         align-content: center;
     align-items: center;
     vertical-align: middle;
     align-self: center;
}

 #editAddressForm input[type="radio"] {
    margin-right: 5px;
     margin-top: 0;
}
 #editAddressForm button {
     margin-top: 10px
 }
.inner h4 {
	font-size: 16px;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: #fff;
  background-color: var(--primary-color);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
}

.btn:hover {
  opacity: 0.8;
}
.list {
    background-color: #fff;
    border-radius: 18px;
    padding: 15px;
}

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

.list ul li {
    margin-bottom: 10px;
}

.list ul li a {
    display: block;
    padding: 10px 10px;
    text-decoration: none;
    color: #333;
	border: 1px solid #fff;
    /* border-radius: 28px; */
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.list ul li a:hover {
    color: #ff4d4d;
	border: 1px solid #ff4d4d;
}

.list ul li a.active {
    color: #ff4d4d;
    border-color: #ff4d4d;
}

.list ul li a#logoutButton {
    color: #ff4d4d;
    background-color: #fff;
    border: 1px solid #ff4d4d;
}

.list ul li a#logoutButton:hover {
    background-color: #ff4d4d;
    color: #fff;
}

@media (max-width: 768px) {
    .list {
        width: 100%;
    }
}

.btn-secondary {
  background-color: var(--secondary-color);
}

.card {
  transition: all 0.3s ease;
  position: relative;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.card-content {
  font-size: 1rem;
  color: var(--text-color);
}
.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
	bottom: 0;
    width: 300px;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 99999;
}
.cart-header {
	display: flex;
}
.cart-header h3 {
	font-size: 16px;
}
.cart-sidebar.active {
    transform: translateX(0);
}
.cart-header {
    padding: 10px 20px;
    border-bottom: 1px dashed #ddd;
	background: #fff;
	margin-bottom: 0px;
	width: 100%;
}
.header-col.select-all {
	margin-right: 20px;
}
.header-col.product {
	width: 38%;

}

.header-col.price {
	font-size: 15px;
	width: 20%;
	text-align: left;
}
.header-col.quantity {
	width: 14%;
	text-align: left;
}
.header-col.subtotal {
	  width: 12%;
}
.checkout .header-col.subtotal {
	  width: auto;
}
.header-col.actions {
	width: 9%;
	text-align: right;
}
.cart-header h3 {
    margin: 0;
}

.cart-body {
    padding: 10px;
    overflow-y: auto;
    min-height:  200px;
    max-height: calc(100% - 140px);
}
.cart-body .justify-center {
  display: flex;
  height: 180px;
  opacity: 0.6;
  margin: 0;
  align-items: center;
}
.cart-body .justify-center h4{
  font-size: 16px;
}
.cart-btm {
	background: #fff;
	padding: 10px 20px;
	margin-top: 20px;
	margin-bottom: 20px;
}
.cart-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
	padding: 10px 20px;
	gap: 20px;
	background: #fff;
	border-bottom: 1px dashed #ddd;

}
.cart-item .item-info {
     width: 24%;
}
.cart-item .item-info .item-title{
     font-size: 16px;
}
.cart-item .item-left {
	 width: 8%;
	background: #fff;
	display: flex;
	justify-content: center;
}
.cart-item .item-variation {
    font-size: 12px;
	color: #777;
    align-items: center;
    display: flex;
}
.cart-item .qty-box {
	 display: flex;
	justify-content: center;
   align-items: center;
    width: 12%;
}
.cart-item .item-price-total {
	 display: flex;
	justify-content: center;
   align-items: center;
    width: 12%;
}
.cart-item .item-actions {
     width: 10%;
    display: flex;
	text-align: right;
    justify-content: flex-end;
}
.cart-item .remove-btn {
	cursor: pointer
}
.cart-item .remove-btn:hover {
	color: red
}
.cart-item .item-price {
	 display: flex;
	text-align: center;
	color: red;
	align-items: center;
   justify-content: center;
		 width: 22%;
}
.cart-item .qty-box input {
    -webkit-appearance: none;
    border-left: 0;
    border-radius: 0;
    border-right: 0;
    box-sizing: border-box;
    cursor: text;
    font-size: 16px;
    font-weight: 400;
    height: 32px;
    text-align: center;
    width: 50px;
	 border: 1px solid rgba(0,0,0,.09);
}
.cart-item .qty-box button {
    align-items: center;
    background: transparent;
    border: 0;
    border: 1px solid rgba(0,0,0,.09);
    border-radius: 2px;
    color: rgba(0,0,0,.8);
    cursor: pointer;
    display: flex;
    font-size: .875rem;
    font-weight: 300;
    height: 32px;
    justify-content: center;
    letter-spacing: 0;
    line-height: 1;
    outline: none;
    transition: background-color .1s cubic-bezier(.4,0,.6,1);
    width: 32px

}
.cart-item.mod img {

    width: 50px;
    height: 50px;
}

.cart-item .quantity-input {
    width: 60px;
	border: none;
    text-align: center;
}
.checkout-btn  {
	display: block;
	width: 100%;
	background: #333;
	color: #fff;
	padding: 10px;
	 border-radius: 20px;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    margin-bottom: 1.4em;
    width: 100%;
}

th,
td,
caption {
    padding: .25em 10px .25em 5px;
}

tfoot {
    font-style: italic;
}

caption {
    background-color: transparent;
}
.table-container {
    overflow-x: auto; /* Memungkinkan scroll horizontal pada perangkat kecil */
}
.table-striped tbody tr:nth-child(odd) {
    background-color: #eee; /* Warna latar belakang untuk baris ganjil */
}

.table-striped tbody tr:nth-child(even) {
    background-color: #ffffff; /* Warna latar belakang untuk baris genap */
}

table {
    width: 100%;
    border-collapse: collapse; /* Menghilangkan jarak antara border sel */
}
.table > caption + thead > tr:first-child > td,
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > td,
.table > thead:first-child > tr:first-child > th {
 border-top: 0;
}
.table-bordered {
 border: 1px solid #EBEBEB;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
 background-color: #F5F5F6;
 border-bottom-width: 1px;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
 border: 1px solid #e7e7e7;
}
.table > thead > tr > th {
 border-bottom: 1px solid #DDDDDD;
 vertical-align: bottom;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
 border-top: 1px solid #e7eaec;
 line-height: 1.42857;
 padding: 8px;
 vertical-align: top;
}
.form {
    margin: 20px 0;
}

.form-group {
    margin-bottom: 16px;
}
#options-container .form-group {
  display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 5px;
	position: relative;
}
#options-container h4  {
	font-size: 16px;
	margin-bottom: 4px;
}
.cartbox h1 {
	padding: 0 !important;
	font-size: 30px;
	margin-top:10px;
}
#product-price {
	color: #ed4d2c;
		font-weight: 500;
	font-size: 30px;
	letter-spacing: -1px;
}
#product-price .erpe {
	font-size: 20px;
	margin-right: -4px;
}
#options-container .quantity-input {
	background: #f9f9f9;
	display: flex;
	gap:20px;
	margin-top: 8px;
	border: 1px solid #ddd;
	align-items: center;
	justify-content: space-between;
	padding: 10px;
	margin-bottom: 20px;
}
#options-container .quantity-input span {
	width: 65%;
}
 #options-container .quantity-input input {
	 width: 60px;
	 	border-radius: 0;
	 text-align: center;
	 	padding: 4px 5px;
	 border: 1px solid #ddd;
 }
#options-container .quantity-input button  {
	background: #fff;
	padding: 4px 15px;
	border-radius: 0;
	text-align: center;
	 border: 1px solid #ddd;

}
#stock-message {
	margin: 0;
	font-size: 11px;
	text-align: right;
}
#options-container .form-group input {
   width: auto;
	display: none;
}
#options-container .form-group .flex {
  display: inline-flex;
	align-items: center;
	gap: 10px;
}
#add-to-cart-var, #add-to-cart {
	padding: 15px;
}
#buy-now-var, #buy-now {
	padding: 15px;
	background: #ee4d2d;
}
.form-group input {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    margin-top: 4px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-group textarea {
    width: 100%;
	margin-top: 4px;
    padding: 10px 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-group input:focus {
    border-color: #007bff;
    box-shadow: 0 0 4px rgba(0, 123, 255, 0.4);
}

form button {
    background: #333;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

form button.btn:hover {
    background: #222;
}

form button:active {
    transform: scale(0.98);
}

@media (max-width: 480px) {
    form {
        padding: 15px;
    }
    form button[type="submit"] {
        font-size: 14px;
        padding: 8px 12px;
    }
}

hr {
    display: block;
    margin: 1em 0;
    padding: 0;
    height: 1px;
    border: 0;
    border-top: 1px dashed #ddd;
}
@-webkit-keyframes slideIn {
  0% {
    opacity: .3;
    -webkit-transform: translate3d(5%, 0, 0)scale(.97);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0)scale(1);
  }
}

@-moz-keyframes slideIn {
  0% {
    opacity: .3;
    -moz-transform: translate3d(5%, 0, 0)scale(.97);
  }

  100% {
    opacity: 1;
    -moz-transform: translate3d(0, 0, 0)scale(1);
  }
}

@keyframes slideIn {
  0% {
    opacity: .3;
    transform: translate3d(5%, 0, 0)scale(.97);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0)scale(1);
  }
}

nav.close {
  opacity: .3;

  -webkit-transform: translate3d(5%, 0, 0)scale(.97);
  -webkit-animation: slideOut .3s ease-in-out;

  -moz-transform: translate3d(5%, 0, 0)scale(.97);
  -moz-animation: slideOut .3s ease-in-out;

  transform: translate3d(5%, 0, 0)scale(.97);
  animation: slideOut .3s ease-in-out;
}

@-webkit-keyframes slideOut {
  0% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0)scale(1);
  }

  100% {
    opacity: .3;
    -webkit-transform: translate3d(5%, 0, 0)scale(.97);
  }
}

@-moz-keyframes slideOut {
  0% {
    opacity: 1;
    -moz-transform: translate3d(0, 0, 0)scale(1);
  }

  100% {
    opacity: .3;
    -moz-transform: translate3d(5%, 0, 0)scale(.97);
  }
}

@keyframes slideOut {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0)scale(1);
  }

  100% {
    opacity: .3;
    transform: translate3d(5%, 0, 0)scale(.97);
  }
}


.mobile .content {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 1;
}

.header.open,
.content.open {
  -webkit-transform: translate3d(300px, 0, 0);
  -webkit-animation: open .5s ease-in-out;

  -moz-transform: translate3d(300px, 0, 0);
  -moz-animation: open .5s ease-in-out;

  transform: translate3d(300px, 0, 0);
  animation: open .5s ease-in-out;
}

@-webkit-keyframes open {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
  }

  70% {
    -webkit-transform: translate3d(320px, 0, 0);
  }

  100% {
    -webkit-transform: translate3d(300px, 0, 0);
  }
}

@-moz-keyframes open {
  0% {
    -moz-transform: translate3d(0, 0, 0);
  }

  70% {
    -moz-transform: translate3d(320px, 0, 0);
  }

  100% {
    -moz-transform: translate3d(300px, 0, 0);
  }
}

@keyframes open {
  0% {
    transform: translate3d(0, 0, 0);
  }

  70% {
    transform: translate3d(320px, 0, 0);
  }

  100% {
    transform: translate3d(300px, 0, 0);
  }
}

.header.close,
.content.close {
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-animation: close .3s ease-in-out;

  -moz-transform: translate3d(0, 0, 0);
  -moz-animation: close .3s ease-in-out;

  transform: translate3d(0, 0, 0);
  animation: close .3s ease-in-out;
}

@-webkit-keyframes close {
  0% {
    -webkit-transform: translate3d(300px, 0, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
  }
}

@-moz-keyframes close {
  0% {
    -moz-transform: translate3d(300px, 0, 0);
  }

  100% {
    -moz-transform: translate3d(0, 0, 0);
  }
}

@keyframes close {
  0% {
    transform: translate3d(300px, 0, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

#addressModal .iziModal-content header{
    margin-bottom: 0px;
    overflow: hidden;
    width: 100%;
}
#addressModal .iziModal-content header a{
    display: block;
    width: 50%;
	height: 40px;
	margin: 0 20px;
	line-height: 40px;
	border-radius: 20px;
	background: #888;
    text-align: center;
    color: #fff;
    vertical-align: middle;
}
#addressModal .iziModal-content header a.active{
   display: block;
    width: 50%;
	height: 40px;
	line-height: 40px;
	border-radius: 30px;
	background: #333;
    text-align: center;
    color: #fff;
    vertical-align: middle;
}

#addressModal .iziModal-content section button{
  height: 46px;
  padding: 0;
}
#addressModal .iziModal-content section input:focus{
    border-color:#28CA97;
}
#addressModal .iziModal-content section {
    padding: 10px 20px 20px;
    background: #fff;
}
#addressModal .iziModal-content section footer{
    overflow: hidden;
}
#addressModal .iziModal-content section button{
    background: #308c6f;
    color: white;
    cursor: pointer;
}
#addressModal .iziModal-content section button:hover{
    opacity: 0.8;
}

#addressModal .iziModal-content .icon-close{
    background: #FFF;
    margin-bottom: 10px;
    position: absolute;
    right: -8px;
    top: -8px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    border: 0;
    color: #a9a9a9;
    cursor: pointer;
}
#addressModal .iziModal-content .icon-close:hover, #addressModal .iziModal-content .icon-close:focus{
  color: black;
}

#addressModal h3 {
	padding: 10px 10px 0;
	text-align: center;
}

.autocomplete-list  {
	max-height: 200px;
	overflow-y: auto;
}
.autocomplete-list .pointer {
	margin: 10px 0 0px;
	line-height: 1;
	padding: 4px 10px 0 ;
	display:  block;
	font-size: 13px;
}
.autocomplete-list .pointer:hover {
	color: #777
}
 .address-item {
  padding: 15px;

}
#addressList .card {
	 background: #fff;
}
.address-item .name {
  font-weight: 600;
  margin-bottom: 4px;
}

.address-item .address {
  margin-bottom: 6px;
  color: #444;
  line-height: 1.4;
}

.address-item .actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.btn-small {
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 6px;
}

.btn-danger {
  background: #e74c3c;
  color: #fff;
}

.btn-danger:hover {
  background: #c0392b;
}
.btn.btn-small {
	padding: 5px 10px ;
	font-size: 12px;
	background: #eee;
	color: #222;
	margin: 2px;
	border-radius: 20px;
}
#subtotalPage {
  margin-bottom: 20px;
}
#dropshipModal .iziModal-content section button{
  height: 46px;
  padding: 0;
}
#dropshipModal .iziModal-content section input:focus{
    border-color:#28CA97;
}
#dropshipModal .iziModal-content section {
    padding: 10px 20px 20px;
    background: #fff;
}
#dropshipModal .iziModal-content section footer{
    overflow: hidden;
}
#dropshipModal .iziModal-content section button{
    background: #308c6f;
    color: white;
    cursor: pointer;
}
#dropshipModal .iziModal-content section button:hover{
    opacity: 0.8;
}

#dropshipModal .iziModal-content .icon-close{
    background: #FFF;
    margin-bottom: 10px;
    position: absolute;
    right: -8px;
    top: -8px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    border: 0;
    color: #a9a9a9;
    cursor: pointer;
}
#dropshipModal .iziModal-content .icon-close:hover, #dropshipModal .iziModal-content .icon-close:focus{
  color: black;
}

#dropshipModal h3 {
	padding: 10px 10px 0;
	text-align: center;
}

#courierModal .icon-close{
    background: #FFF;
    margin-bottom: 10px;
    position: absolute;
    right: -8px;
    top: -8px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    border: 0;
    color: #a9a9a9;
    cursor: pointer;
}
#courierModal .icon-close:hover, #courierModal  .icon-close:focus{
  color: black;
}

.search-form {
 /* position: relative; */
 /* width: 100%; */
 /* display: flex; */
 /* background-color: white; */
 /* padding: 7px; */
}

.search-input {
 background-color: white;
 border: none;
 outline: none;
 width: 100%;
 height: 100%;
 border-radius: 999px;
 padding-left: 1rem;
 font-size: small;
}
.search-button {
 width: 50px;
 background: #e84028;
 height: 28px;
 border-radius: 0;
 position: absolute;
 top: 4px;
 right: 4px;
 cursor: pointer;
}
.search-button span {
  color:#fff !important;
	font-weight: 600;
line-height: 0;
	font-size: 15px;
}
#autocomplete-results {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	font-weight: normal;
	margin-top: 10px;
	   box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
	padding: 10px;
	background: #fff;
	border-radius:  10px 10px;
	z-index: 1;
}
.autocomplete-item.search-more a  {
	font-weight: bold;
}
.autocomplete-item a  {
	display: flex;
	margin-top: 5px;
	font-size: 13px;
	gap: 10px;
	padding-bottom: 5px;
	border-bottom: 1px dashed #ddd;
	align-items: center;
}
.autocomplete-item img {
	width: 50px;
}
.autocomplete-item.search-more a {
	margin-top: 10px;
	border-bottom: none;
}
.search-icon,
.search-close {
 position: absolute;
 font-size: 1.75rem;
 color: #333;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
}

.search-close {
 opacity: 0;
}

.active-search {
 max-width: 280px;
 width: 20rem;
 z-index: 999;
 transition: width 0.5s;
 box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
}

.active-search .search-button {
 left: calc(100% - 2rem);
}

.active-search .search-input {
 pointer-events: initial;
}

.active-search .search-close {
 opacity: 1;
}

.active-search .search-icon {
 opacity: 0;
}
.sticky-foot {
	position: sticky;
	bottom: 0;
}
.cart-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #fff;
  border-top: 1px solid #eee;
  position: relative;
}

.cart-left {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;

}

.cart-left .remove-action,
.cart-left .fav-action {
  color: #ee4d2d;
  cursor: pointer;
}

.cart-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-total {
  position: relative;
  font-size: 14px;
	display: flex;
	align-items: center;
	text-align: right;
}
.cart-right .checkout-btn {
	width: 200px;
	margin-left: 5px;
}
.cart-total .price {
  font-size: 26px;
  color: #ee4d2d;
  margin-left: 4px;
}

.cart-total .toggle-detail {
  cursor: pointer;
  margin-left: 6px;
  font-weight: normal;
	font-size: 18px;
	transition: all ease 0s;
}

.cart-total:hover .toggle-detail {
  transform: rotate(-180deg);
}

 .total-popup {
  transition: all 0.3s ease;
  position: absolute;
  bottom: 140%;
  right: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  padding: 12px 16px;
  border-radius: 6px;
  opacity: 0;
	   visibility: hidden;
  min-width: 320px;
  z-index: 10;
}

.cart-right:hover .total-popup {
  opacity: 1;
  visibility: visible;
}


.total-popup .popup-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 14px;
}

.total-popup .popup-total {
  font-weight: bold;
  color: #d0021b;
}

.cart-total:hover .total-popup {
  display: block;

}

.checkout-btn {
  background: #ee4d2d;
  border: none;
  color: #fff;
  padding: 10px 18px;

  border-radius: 3px;
  cursor: pointer;
}
.popup.cart-popup {
  transition: opacity .14s ease, transform .14s ease;
  will-change: opacity, transform;
  position: absolute;
  top: 100%;            /* tampil sedikit di bawah icon */
  right: 0;             /* default: align ke kanan wrapper */
  transform: translateY(12px);
  width: 320px;
  max-width: calc(100vw - 40px);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
  border: 1px solid #eee;
  z-index: 120;
  opacity: 0;
  visibility: hidden;
  transition: opacity .14s ease, transform .14s ease;
}

/* visible state (dimasukkan via :hover atau class hovered) */
.has-popup.hovered > .popup,
.has-popup:hover > .popup {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* triangle arrow - menggunakan CSS variable --arrow-left untuk posisinya */
.popup.cart-popup::before {
  content: "";
  position: absolute;
  top: -12px; /* sedikit di atas popup */
  left:  calc(100% - 56px); /* fallback: kanan */
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 12px 10px;
  border-color: transparent transparent #fff transparent;
  filter: drop-shadow(0 -1px 0 rgba(0,0,0,0.03));
  z-index: 121;
  pointer-events: none;
}

/* list & item styling (rapi, nama tengah, price kanan) */
.cart-preview-list {
  list-style: none;
  margin: 0;
  padding: 6px 0;
  max-height: 360px;
  overflow-y: auto;
}

.cart-preview-item {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  gap: 12px;
  border-bottom: 1px solid #f6f6f6;
}

.cart-preview-item .thumb { flex: 0 0 56px; height:56px; border-radius:6px; overflow:hidden; }
.cart-preview-item .thumb img { width:100%; height:100%; object-fit:cover; display:block; }

.cart-preview-item .details { flex:1 }
.cart-preview-item .name { margin:0; font-size:13px; color:#222; line-height:1.2; }
.cart-preview-item .variant { margin-top:4px; font-size:12px; color:#777; }

.cart-preview-item .price { white-space:nowrap; color:#d0011b; font-weight:600; font-size:13px; margin-left:12px; }

/* footer tombol satu baris */
.cart-popup-footer { padding:12px; border-top:1px solid #eee; background:#fff; }
.cart-popup-footer .btn { width:100%; background:#ee4d2d; color:#fff; padding:9px 12px; border-radius:6px; border:none; cursor:pointer; font-weight:600; }

/* responsive small screens - popup full width under header */
@media (max-width: 600px) {
  .popup.cart-popup { left: 8px !important; right: 8px !important; width: auto; top: calc(100% + 6px); }
  .popup.cart-popup::before { display: none; }
}
#accountMenu {
	line-height: 34px;
  display: flex;
}
#accountMenu a{
  font-weight: 600;
}
.popup.account-popup a {
	line-height: normal;
}
#accountMenu > a:last-child {
	margin-left: 12px;
}

.account-popup {
  position: absolute;
  top: 100%;
  margin-left: -120px;
	left: 0;
  width: 180px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
  border: 1px solid #eee;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: all .15s ease;
  z-index: 120;
}
.account-popup::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 10px 8px;
  border-color: transparent transparent #fff transparent;
  filter: drop-shadow(0 -1px 0 rgba(0,0,0,0.04));
  pointer-events: none;
}
@media (max-width: 600px) {
  .account-popup {
    right: 0 !important;
  }
  .account-popup::before {
    right: 16px;
  }
}
.notif-count {
  display: inline-block;
  min-width: 18px;
  height: 18px;
  line-height: 18px;
  padding: 0 6px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: #ee4d2d;
  border-radius: 999px;
  margin-left: 6px;
  vertical-align: middle;
  text-align: center;
}

.popup.notif-popup {
  width: 360px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
  border: 1px solid #eee;
  padding: 0;
  position: absolute;
  top: 100%;
  left: -112px;
  transform-origin: top right;
  z-index: 130;
}

.popup.notif-popup::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 41%;
  border-style: solid;
  border-width: 0 8px 10px 8px;
  border-color: transparent transparent #fff transparent;
  filter: drop-shadow(0 -1px 0 rgba(0,0,0,0.05));
}

#notifList {
	display: block;
  padding: 8px 0;
	height: 180px;
		overflow: auto;
}
#notifPopup {

		overflow: visible;
}

.notif-item {
  display: block;
	width: 100%;
  padding: 10px 12px;
  border-bottom: 1px solid #f6f6f6;
  cursor: pointer;
  transition: background 0.15s;
}
.notif-item:hover {
  background: #fafafa;
}

.notif-thumb {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  overflow: hidden;
  flex: 0 0 56px;
}
.notif-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.notif-body { flex: 1; }
.notif-title { font-size: 13px; color: #222; font-weight: 600; margin-bottom: 2px; }
.notif-text { font-size: 12px; color: #666; line-height: 1.3; margin-bottom: 4px; }
.notif-time { font-size: 11px; color: #999; }

.notif-footer {
  padding: 10px;
  border-top: 1px solid #eee;
  text-align: center;
}
.notif-footer .btn {
  display: block;
  background: #ee4d2d;
  color: #fff;
  border-radius: 6px;
  padding: 8px 10px;
	line-height: normal;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}
.has-notif a {
	line-height: 34px;
}
.order-filters {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
}
.order-filters button {
  flex: 1;
  padding: 6px 0;
  border: none;
  background: none;
  font-size: 13px;
  color: #666;
  cursor: pointer;
}
.order-filters button.active {
  color: #d93025;
  border-bottom: 2px solid #d93025;
}

.order-search {
  margin: 10px 0;
}
.order-search input {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 13px;
}

.order-card {
  border: 1px solid #ddd;
  background: #fff;
	margin: 10px 0 20px;
	box-shadow: 0 0 10px #eee;
  overflow: hidden;
}

.order-card .status {
	text-transform: uppercase;
	font-size: 16px;
	color: #ee4d2d;
}
.order-card .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ee928a0d;
  padding: 8px 15px;
  border-bottom: 1px solid #eee;
}
.order-card .inv {
	font-size: 16px;
}
.order-card .date {
	color: #333;
}
.order-card .products {
  padding: 10px 15px;
}
.order-item {
  display: flex;
  gap: 20px;
  margin-bottom: 8px;
}
.order-item img {
  width: 95px;
  height: 95px;
  object-fit: cover;
  border: 1px solid #eee;
}
.order-item .info {
  flex: 1;
}
.order-item .info p {
	margin-bottom: 0;
}
.order-item .name {
  font-weight: 500;
  font-size: 16px;
  color: #333;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.order-item .variant {
  color: #777;
  font-size: 12px;
}
.order-item .qty {
  color: #999;
  font-size: 12px;
}
.order-item .price {
  font-size: 16px;
  color: #ee4d2d;
  font-weight: 500;
}
.order-card .footer {
  display: flex;
  justify-content: flex-end;
  padding: 8px 15px;
  border-top: 1px solid #eee;
  font-size: 15px;
  background: #fff;
  gap: 20px;
}
.order-card .actions {
  text-align: right;
	background: #f5f5f5;
	border-top: 1px dashed #ddd;
  padding: 10px 12px;
}
.order-card .btn {
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
  background: none;
  font-size: 13px;
  cursor: pointer;
}
.order-card .btn-pay {
  border-color: #e74c3c;
  color: #e74c3c;
}
.order-card .btn-pay:hover {
  background: #fdecea;
}
.order-card .btn-detail {
  color: #333;
	background: #fff;
	border-radius: 2px;
	padding: 6px 15px;
}
.order-card .btn-disabled {
  border-color: #ccc;
  color: #aaa;
  cursor: default;
}
.status {
  padding: 2px 6px;
  border-radius: 5px;
  font-size: 12px;
}
.status.pending { background: #fff3cd; color: #856404; }
.status.process { background: #cce5ff; color: #004085; }
.status.shipping { background: #f8d7da; color: #721c24; }
.status.done { background: #d4edda; color: #155724; }
.status.cancelled { background: #e2e3e5; color: #6c757d; }
#loadMoreWrapper {
 margin-top: 15px;
}
#loadMore {
 background: #fff;
 border: 1px solid #ccc;
 padding: 8px 16px;
 border-radius: 6px;
 cursor: pointer;
 transition: all .2s ease;
}
#loadMore:hover {
 background: #f5f5f5;
}
#loadMore:disabled {
 opacity: .6;
 cursor: not-allowed;
}
.text-red-500 {
  color: white;
  font-size: 12px;
  margin-top: 4px;
  padding: 0px 8px;
  border-radius: 2px;
  display:inline-block;
  background: #ee4d2e;
}
.checkout-alert {
	margin-top: 20px;
  background: #fff5f5;
  border: 1px solid #ffcccc;
  color: #b80000;
  padding: 14px 16px;
  border-radius: 6px;
  margin-bottom: 16px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.checkout-alert .alert-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.checkout-alert strong {
  color: #900;
}

.close-alert {
  background: none;
  border: none;
  font-size: 20px;
  color: #b80000;
  cursor: pointer;
  line-height: 1;
}
.old-price {
  color: #999;
  font-size: 12px;
  text-decoration: line-through;
  display: inline-block;
  margin-left: 8px;
}

.new-price {
  color: #e53935;
  font-weight: 600;
  font-size: 16px;
}
.new-price span {
	 font-size: 12px;
		margin-right: 2px;
}
.manual-payment-content {
    background: #fff;
    padding: 20px;
    border-radius: 0px;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 auto;
  }

  .manual-payment-content h3 {
    margin-top: 0;
    font-size: 16px;
    font-weight: 600;
    color: #222;
    padding-bottom: 8px;
    margin-bottom: 12px;
  }

  .manual-payment-content .manual-html {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 0px;
    padding: 12px;
  }

  .manual-payment-content .manual-html p {
    margin: 6px 0;
  }

  .manual-payment-content .manual-html b {
    color: #000;
  }

  .manual-payment-content .mt-3 {
    margin-top: 15px !important;
    text-align: right;
  }

  .manual-payment-content .btn {
    display: inline-block;
    border-radius: 5px;
    padding: 7px 14px;
    font-size: 13px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
  }

  .manual-payment-content .btn-secondary {
    background: #f3f3f3;
    border: 1px solid #ccc;
    color: #333;
  }

  .manual-payment-content .btn-secondary:hover {
    background: #e8e8e8;
  }

  .manual-payment-content .btn-primary {
    background: #c62828;
    border: none;
    color: #fff;
    margin-left: 8px;
  }

  .manual-payment-content .btn-primary:hover {
    background: #b71c1c;
  }
  .t-center {
    text-align: center
  }
.iziModal .iziModal-header {
	background: #c6282a !important;
}

#manualPaymentModal button {
	border-radius: 0;
	padding: 10px 30px;
}
#viewPaymentInstruction {
	background: #ee4d2d
}
.head-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed #ddd;
  margin-bottom: 20px;
}

.invoice-badge {
  background: #d33;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.dropship-info {
  margin-top: 20px;
  background: #fffbf6;
  border: 1px solid #ee4d2d21;
  padding: 12px 16px;
}
.dropship-info p {
  font-size: 14px;
  margin-bottom: 0px;
}
.dropship-info em{
  font-size: 12px;
  color: red;
  display: block;
  margin-top: 8px;
}
.dropship-info h3 {
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 600;
}
#addAddressForm button {
    width: 30%;
	margin: 0 0 0 70%;
	display:  block;
}
.slider-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.slider-track {
  display: flex;
  transition: transform 0.3s ease-in-out;
}
.slide-item {
  flex: 0 0 100%;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.1);
  border: none;
	opacity: 0.5;
  color: white;
  font-size: 1.5rem;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  border-radius: 4px;
  z-index: 5;
	transition: all 0.3s ease;
}
.slide-btn.prev { left: 10px; }
.slide-btn.next { right: 10px; }
.slide-btn:hover { background: rgba(0,0,0,0.6); }

.thumbs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.thumb-item {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s ease;
  border: 1px solid #ddd;
}

.thumb-item.active {
  opacity: 1;
  border-color: #f00;
}
.price-normal, .price-final {
	color: #ed4d2c;
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: -0.8px;
}
 .price-original {
	font-size: 12px;
	letter-spacing: -0.5px !important;
}
.price-normal span,
.price-final span {
	font-size: 12px;
	margin-right: 2px;
}
.product-item {
  position: relative;
  overflow: hidden;
}

.discount-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #ee4d2d;
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 6px 0 6px 0;
  z-index: 2;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.price-original {
  font-size: 12px;
  margin-left: 0px;
	display: block;
  color: #999;
	letter-spacing: -0.5px;
}
.price-original span {
	margin-right: 4px;
}
.sidebar {
  background: #fff;
  border-right: 1px solid #eee;
}

.sidebar h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.sort-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f7f7f7;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #eee;
}

.sort-label {
  color: #555;
  font-weight: 500;
  margin-right: 10px;
}

.sort-options {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sort-btn {
  background: #fff;
  border: 1px solid #ddd;
  padding: 6px 12px;
  border-radius: 2px;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 14px;
}

.sort-btn:hover {
  border-color: #ff3c3c;
  color: #ff3c3c;
}

.sort-btn.active {
  background: #ff3c3c;
  color: #fff;
  border-color: #ff3c3c;
}

.sort-dropdown select {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 6px 8px;
  font-size: 14px;
}

.sort-page-info {
  font-size: 14px;
  color: #444;
  margin-left: 10px;
}
.linkbio .bigger {min-width: 350px;}
.product-item {
  position: relative;
  background: #fff;
  border: 1px solid #eee;
  border-radius:0px;
  padding: 10px;
  transition: box-shadow 0.2s ease;
}

.product-item:hover {
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
header {
	position: sticky;
	min-height: 80px;
	width: 100%;
	top: 0;
	background-color: #ffffff;
	z-index: 999;
}

.header-user-actions .box-c {
	min-height: 60px;
}
.navigations {
	justify-content: space-between;
	display: flex;
	align-items: center;
}


.top-menu ul {
  list-style: none;
  display: flex;
  gap: 16px;

  align-items: center;
	font-size: 14px;
    margin: 0;
}

.top-menu a {
  text-decoration: none;
  color: #333;
}
.top-menu ion-icon {
  font-size: 14px !important; /* ini yang ngatur ukuran sebenarnya */
  vertical-align: middle;     /* biar sejajar sama teks */
  margin-top: -2px;           /* opsional: tweak kecil biar pas di optik */
  color: #555;
}
.top-menu .grid{
	display: flex;
	justify-content: space-between;
}
.search-form {
 position: relative;
 width: 800px;
 justify-content: center;
 align-items: center;
 display: flex;
 background-color: white;
 padding: 0px;
 height: 38px;
}

.search-input {
 background-color: #f5f5f5;
 border: none;
 outline: none;
 width: 100%;
 height: 100%;
 border-radius: 30px;
 padding-left: 1rem;
 font-size: 14px;
}
.search-button {
 width: 50px;
	background: #7a7a7a;
 height: 30px;
 border-radius: 30px;
 position: absolute;
 top: 4px;
 right: 4px;
 cursor: pointer;

}
.search-button span {
  color:#fff !important;
	font-weight: 600;
line-height: 0;
	font-size: 15px;
}
#autocomplete-results {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	font-weight: normal;
	margin-top: 10px;
	   box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
	padding: 10px;
	background: #fff;
	border-radius:  10px 10px;
	z-index: 1;
}
.autocomplete-item.search-more a  {
	font-weight: bold;
}
.autocomplete-item a  {
	display: flex;
	margin-top: 5px;
	font-size: 13px;
	gap: 10px;
	padding-bottom: 5px;
	border-bottom: 1px dashed #ddd;
	align-items: center;
}
.autocomplete-item img {
	width: 50px;
}
.autocomplete-item.search-more a {
	margin-top: 10px;
	border-bottom: none;
}
.search-icon,
.search-close {
 position: absolute;
 font-size: 1.75rem;
 color: #333;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
}
.has-popup {
  position: relative;
}
.download-popup {
  position: absolute;
  top: 120%;
  left: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  border-radius: 6px;
  padding: 10px;
  min-width: 180px;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.notif-popup {
  position: absolute;
  top: 120%;
  left: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  border-radius: 6px;
  padding: 10px;
  min-width: 180px;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.has-popup:hover .popup {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.download-popup a,
.account-popup a {
  display: block;
  padding: 6px 8px;
  color: #333;
}

.download-popup a:hover,
.account-popup a:hover {
  background: #f0f0f0;
}

.notif-popup {
  max-height: 250px;
  overflow-y: auto;
  min-width: 220px;
}

.notif-popup ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.notif-popup li {
  padding: 8px;
  border-bottom: 1px solid #eee;
  font-size: 13px;
}
header .logo {
	align-self: center;
}

header .logo img {
	width: auto;
	height: 75px;
	margin-top: 5px;
}
.popup.cart-popup {
  transition: opacity .14s ease, transform .14s ease;
  will-change: opacity, transform;
  position: absolute;
  top: 100%;
	font-size: 14px;
  right: 0;
  transform: translateY(12px);
  width: 320px;
  max-width: calc(100vw - 40px);
  background: #fff;
  border-radius: 0px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
  border: 1px solid #eee;
  z-index: 120;
  opacity: 0;
  visibility: hidden;
  transition: opacity .14s ease, transform .14s ease;
}

.has-popup.hovered > .popup,
.has-popup:hover > .popup {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.popup.cart-popup::before {
  content: "";
  position: absolute;
  top: -10px; /* sedikit di atas popup */
  left:  calc(100% - 56px); /* fallback: kanan */
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 12px 10px;
  border-color: transparent transparent #fff transparent;
  filter: drop-shadow(0 -1px 0 rgba(0,0,0,0.03));
  z-index: 121;
  pointer-events: none;
}

.cart-preview-list {
  list-style: none;
  margin: 0;
  padding: 6px 0;
  max-height: 360px;
  overflow-y: auto;
}

.cart-preview-item {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  gap: 12px;
  border-bottom: 1px solid #f6f6f6;
}

.cart-preview-item .thumb { flex: 0 0 56px; height:56px; border-radius:6px; overflow:hidden; }
.cart-preview-item .thumb img { width:100%; height:100%; object-fit:cover; display:block; }

.cart-preview-item .details { flex:1 }
.cart-preview-item .name { margin:0; font-size:13px; color:#222; line-height:1.2; }
.cart-preview-item .variant { margin-top:4px; font-size:12px; color:#777; }

.cart-preview-item .price { white-space:nowrap; color:#d0011b; font-weight:600; font-size:13px; margin-left:12px; }

/* footer tombol satu baris */
.cart-popup-footer { padding:12px; border-top:1px solid #eee; background:#fff; }
.cart-popup-footer .btn { width:100%; background:#ee4d2d; color:#fff; padding:9px 12px; border-radius:4px; border:none; cursor:pointer;  }

#carticon {
	margin-right: 0px;
	position: relative;
}

  .action-btn .count {
	  position: absolute;
	top: -2px;
	right: -4px;
	background: #01a99d;
	z-index: 0;
	color: #fff;
	font-size: 12px;
	font-weight: var(--weight-500);
	line-height: 1;
	padding: 2px 4px;
	-webkit-border-radius: 20px;
			border-radius: 20px;
  }
#cartCount {
	position:absolute;
	font-size: 10px;
	color: #fff;
	border: 1.5px solid #555;
	background: #ff0000;
	padding: 2px 7px;
	margin-top: 0px;
	left: 25px;
	border-radius: 10px;
}
.cart-header {
    padding: 10px 20px;
    border-bottom: 1px dashed #ddd;
	background: #fff;
	margin-bottom: 0px;
	width: 100%;
}

.product-item h4 {
  font-size: 14px;
  line-height: 1.4;
	min-height: calc(1.5em * 2);
  max-height: calc(1.5em * 2);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  text-overflow: ellipsis;
}
