/* =========================================
   HEADER BUTTON
   ========================================= */
.header-cart-wrapper {
  font-family: "DM Sans", "Helvetica Neue", sans-serif;
}
.header-cart-wrapper .header-cart-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  height: 42px;
  border: 1px solid rgba(232, 224, 255, 0.8);
  border-radius: 10px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.header-cart-wrapper .header-cart-link:hover {
  background: #f9f7ff;
  border-color: #b66fff;
  color: #b66fff;
}
.header-cart-wrapper .header-cart-link:hover svg path {
  fill: #b66fff;
}
.header-cart-wrapper .header-cart-total {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.header-cart-wrapper .header-cart-total svg {
  width: 18px;
  height: 18px;
}
.header-cart-wrapper .header-cart-total svg path {
  fill: currentColor;
  transition: fill 0.15s ease;
}
.header-cart-wrapper .header-cart-total-price {
  font-size: 12px;
}
.header-cart-wrapper .header-cart-total-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 17px;
  width: -moz-fit-content;
  width: fit-content;
  height: 17px;
  background: #b66fff;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  border: 2px solid #fff;
  line-height: 1;
}

/* =========================================
   SIDEBAR AND OVERLAY
   ========================================= */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 46, 0.5);
  backdrop-filter: blur(4px);
  z-index: 100;
  display: none;
}

.widget_shopping_cart {
  position: fixed;
  top: 0;
  right: -450px;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  padding: 20px;
  background: #fff;
  z-index: 999;
  box-shadow: 0 12px 40px rgba(26, 26, 46, 0.12);
  transition: right 0.25s ease;
  display: flex;
  flex-direction: column;
  font-family: "DM Sans", "Helvetica Neue", sans-serif;
}
.widget_shopping_cart.show {
  right: 0;
}
.widget_shopping_cart .woocommerce-mini-cart__total strong {
  font-weight: normal;
  color: #777;
  font-size: 16px;
}

/* =========================================
   INTERNAL CART ELEMENTS
   ========================================= */
.itk-cart-header {
  padding-bottom: 12px;
  border-bottom: 1px solid #f5f5f5;
  display: flex;
  flex-direction: column;
  position: relative;
}
.itk-cart-header .itk-cart-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  margin: 0;
  color: #1a1a2e;
}
.itk-cart-header .itk-cart-close {
  background: none;
  border: none;
  color: #777;
  cursor: pointer;
  padding: 4px;
  transition: color 0.25s ease;
  position: absolute;
  right: 0;
  top: 6px;
}
.itk-cart-header .itk-cart-close svg {
  width: 24px;
  height: 24px;
}
.itk-cart-header .itk-cart-close:hover {
  color: #ff3700;
}

.itk-free-shipping-promo {
  margin-bottom: 16px;
  padding-top: 16px;
  text-align: center;
}
.itk-free-shipping-promo .itk-free-shipping-success {
  color: #00a046;
}
.itk-free-shipping-promo .itk-free-shipping-title {
  margin-bottom: 8px;
  font-size: 14px;
}
.itk-free-shipping-promo .itk-free-shipping-left {
  font-size: 14px;
  color: #777;
  margin-bottom: 8px;
}
.itk-free-shipping-promo .itk-free-shipping-left b {
  color: #1a1a2e;
}
.itk-free-shipping-promo .itk-free-shipping-progress-bg {
  background-color: #aaa;
  height: 6px;
  border-radius: 10px;
  overflow: hidden;
}
.itk-free-shipping-promo .itk-free-shipping-progress-bar {
  background-color: #b66fff;
  height: 100%;
  transition: width 0.25s ease;
}

.itk-cart-list {
  flex: 1;
  padding: 0;
  margin: 0;
  list-style: none;
}
.itk-cart-list .itk-cart-item {
  position: relative;
  padding: 16px 0;
  border-bottom: 1px solid #f5f5f5;
}
.itk-cart-list .itk-cart-item:last-child {
  border-bottom: none;
}

.itk-cart-item-layout {
  display: flex;
  gap: 16px;
  position: relative;
}
.itk-cart-item-layout .itk-cart-item-thumb img {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  border: 1px solid #f5f5f5;
}
.itk-cart-item-layout .itk-cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.itk-cart-item-layout .itk-cart-item-name {
  font-size: 16px;
  font-weight: 500;
  color: #1a1a2e;
  text-decoration: none;
  margin-bottom: 8px;
  padding-right: 24px;
  display: block;
  line-height: 1.3;
}
.itk-cart-item-layout .itk-cart-item-name:hover {
  color: #b66fff;
}
.itk-cart-item-layout .itk-cart-remove {
  position: absolute;
  top: -4px;
  right: -4px;
  color: #aaa;
  background: #fff;
  padding: 2px;
  border-radius: 50%;
  transition: all 0.25s ease;
}
.itk-cart-item-layout .itk-cart-remove svg {
  width: 18px;
  height: 18px;
}
.itk-cart-item-layout .itk-cart-remove:hover {
  color: #ff3700;
  transform: scale(1.1);
}

.itk-cart-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.itk-qty-controls {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border-radius: 999px;
  padding: 2px;
}
.itk-qty-controls .itk-qty-btn {
  background: none;
  border: none;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  color: #1a1a2e;
  border-radius: 50%;
  transition: background 0.25s ease;
}
.itk-qty-controls .itk-qty-btn:hover {
  background: #fff;
  box-shadow: 0 4px 24px rgba(26, 26, 46, 0.09);
}
.itk-qty-controls .itk-qty-input {
  width: 32px;
  text-align: center;
  background: transparent;
  border: none;
  font-size: 14px;
  font-weight: 500;
  -moz-appearance: textfield;
}
.itk-qty-controls .itk-qty-input::-webkit-outer-spin-button, .itk-qty-controls .itk-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.itk-cart-item-prices {
  text-align: right;
}
.itk-cart-item-prices .itk-price-new {
  font-weight: 600;
  color: #e53935;
  font-size: 16px;
}
.itk-cart-item-prices .itk-price-old {
  text-decoration: line-through;
  color: #aaa;
  font-size: 13px;
  display: block;
}

.itk-stock-left {
  font-size: 12px;
  color: #777;
  margin-top: 4px;
}

/* =========================================
   GIFT PROMO BLOCK
   ========================================= */
.itk-gift-promo {
  background: #f9f7ff;
  border: 1px dashed #b66fff;
  border-radius: 10px;
  padding: 12px;
  margin-top: 16px;
}
.itk-gift-promo .itk-gift-promo-text {
  font-weight: 600;
  color: #7b2fd4;
  margin: 0 0 8px 0;
  text-align: center;
  font-size: 14px;
}
.itk-gift-promo .itk-gift-promo-item {
  display: flex;
  gap: 12px;
  align-items: center;
  opacity: 0.7;
}
.itk-gift-promo .itk-gift-promo-item img {
  width: 50px;
  height: 50px;
  border-radius: 6px;
}
.itk-gift-promo .itk-gift-promo-item p {
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.2;
}
.itk-gift-promo .itk-gift-badge {
  background: #fff;
  color: #9340e8;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(26, 26, 46, 0.09);
}

.itk-cart-gift-badge {
  color: #00a046;
  font-weight: 600;
  font-size: 14px;
  margin-top: auto;
}

/* =========================================
   FOOTER (COUPONS AND TOTAL)
   ========================================= */
.itk-cart-footer {
  margin-top: 16px;
}

.itk-coupon-wrapper {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.itk-coupon-wrapper .itk-coupon-input {
  flex: 1;
  padding: 0 12px;
  border: 1px solid #aaa;
  border-radius: 10px;
  font-family: inherit;
  transition: border-color 0.25s ease;
}
.itk-coupon-wrapper .itk-coupon-input:focus {
  outline: none;
  border-color: #b66fff;
}

.itk-applied-coupons {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}
.itk-applied-coupons li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #00a046;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 4px;
}
.itk-applied-coupons .itk-coupon-remove {
  background: none;
  border: none;
  color: inherit;
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
}

.itk-cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 16px;
  border-top: 1px solid #f5f5f5;
  padding-top: 16px;
}

/* =========================================
   BUTTONS AND EMPTY CART
   ========================================= */
.itk-btn, .itk-cart-buttons .button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.itk-btn--primary, .itk-cart-buttons .button {
  background: #b66fff;
  color: #fff;
  box-shadow: 0 8px 32px rgba(182, 111, 255, 0.25);
  flex: 1;
}
.itk-btn--primary:hover, .itk-cart-buttons .button:hover {
  background: #9340e8;
  color: #fff;
  transform: translateY(-2px);
}
.itk-btn--secondary {
  background: #1a1a2e;
  color: #fff;
}
.itk-btn--secondary:hover {
  background: #1a1a2e;
  color: #fff;
}

.itk-cart-buttons {
  display: flex;
  gap: 8px;
}
.itk-cart-buttons .button {
  width: 100%;
  text-align: center;
}
.itk-cart-buttons .checkout {
  background: #1a1a2e;
  box-shadow: none;
}
.itk-cart-buttons .checkout:hover {
  background: #1a1a2e;
}

.itk-cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  color: #777;
}
.itk-cart-empty svg {
  width: 64px;
  height: 64px;
  color: #aaa;
  margin-bottom: 16px;
}
.itk-cart-empty p {
  font-size: 16px;
  margin-bottom: 24px;
}/*# sourceMappingURL=mini-cart.css.map */