/**
 * Shopcy Pro Frontend Styles
 */

/* =========================================================
   1. SLIDE-OUT CART DRAWER
   ========================================================= */
.shopcy-drawer-overlay {
  position: fixed; inset: 0; background: rgba(10, 15, 30, 0.65);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 99998;
}
.shopcy-drawer-overlay.is-active {
  opacity: 1; visibility: visible;
}

.shopcy-cart-drawer {
  position: fixed; top: 0; right: 0; width: 100%; max-width: 420px; height: 100%;
  background: var(--surface, #ffffff); border-left: 1px solid var(--line, #e2e8f0);
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.25);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 99999;
}
.shopcy-cart-drawer.is-open {
  transform: translateX(0);
}

.shopcy-drawer__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--line, #e2e8f0);
}
.shopcy-drawer__title {
  display: flex; align-items: center; gap: 0.6rem;
}
.shopcy-drawer__title svg {
  width: 22px; height: 22px; color: var(--accent, #2a5bff);
}
.shopcy-drawer__title h3 {
  margin: 0; font-size: 1.1rem; font-weight: 700; color: var(--ink, #0f172a);
}
.drawer-count-badge {
  font-size: 0.9rem; color: var(--ink-3, #64748b); font-weight: 600;
}
.shopcy-drawer__close {
  background: transparent; border: none; padding: 6px; cursor: pointer;
  color: var(--ink-3, #64748b); border-radius: 8px; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.shopcy-drawer__close:hover {
  background: var(--surface-2, #f1f5f9); color: var(--ink, #0f172a);
}
.shopcy-drawer__close svg {
  width: 20px; height: 20px;
}

/* Shipping Progress Bar */
.shopcy-drawer__shipping-meter {
  padding: 0.85rem 1.5rem; background: var(--surface-2, #f8fafc);
  border-bottom: 1px solid var(--line, #e2e8f0);
}
.shipping-meter-text {
  font-size: 0.82rem; color: var(--ink-2, #334155); margin-bottom: 0.45rem; text-align: center;
}
.shipping-meter-track {
  width: 100%; height: 6px; background: #e2e8f0; border-radius: 999px; overflow: hidden;
}
.shipping-meter-bar {
  height: 100%; background: linear-gradient(90deg, var(--accent, #2a5bff), #10b981);
  border-radius: 999px; transition: width 0.4s ease;
}
.shipping-unlocked {
  color: #059669; font-weight: 700;
}

/* Drawer Body & Items */
.shopcy-drawer__body {
  flex: 1; overflow-y: auto; padding: 1rem 1.5rem;
}
.shopcy-drawer__list {
  list-style: none; margin: 0; padding: 0;
}
.shopcy-drawer__item {
  display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line, #e2e8f0);
}
.shopcy-drawer__item:last-child {
  border-bottom: none;
}
.drawer-item__thumb {
  width: 68px; height: 68px; border-radius: 8px; overflow: hidden; background: #f8fafc;
  flex-shrink: 0; border: 1px solid var(--line, #e2e8f0);
}
.drawer-item__thumb img {
  width: 100%; height: 100%; object-fit: cover;
}
.drawer-item__details {
  flex: 1; min-width: 0;
}
.drawer-item__title {
  display: block; font-size: 0.88rem; font-weight: 600; color: var(--ink, #0f172a);
  text-decoration: none; line-height: 1.3; margin-bottom: 0.25rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.drawer-item__title:hover {
  color: var(--accent, #2a5bff);
}
.drawer-item__price {
  font-size: 0.88rem; font-weight: 700; color: var(--accent, #2a5bff); margin-bottom: 0.5rem;
}
.drawer-item__qty-row {
  display: flex; align-items: center; justify-content: space-between;
}
.qty-control-pills {
  display: inline-flex; align-items: center; border: 1px solid var(--line, #e2e8f0);
  border-radius: 6px; overflow: hidden; background: var(--surface, #ffffff);
}
.qty-control-pills .qty-btn {
  background: transparent; border: none; width: 26px; height: 26px; cursor: pointer;
  font-weight: 700; color: var(--ink, #0f172a); display: flex; align-items: center; justify-content: center;
}
.qty-control-pills .qty-btn:hover {
  background: var(--surface-2, #f1f5f9);
}
.qty-control-pills .qty-num {
  padding: 0 8px; font-size: 0.82rem; font-weight: 600; color: var(--ink, #0f172a);
}
.drawer-item__remove {
  background: transparent; border: none; padding: 4px; cursor: pointer;
  color: #94a3b8; transition: color 0.2s;
}
.drawer-item__remove:hover {
  color: #ef4444;
}
.drawer-item__remove svg {
  width: 16px; height: 16px;
}

.shopcy-drawer__empty {
  text-align: center; padding: 3rem 1rem; color: var(--ink-3, #64748b);
}
.shopcy-drawer__empty svg {
  width: 48px; height: 48px; margin-bottom: 1rem; opacity: 0.4;
}

/* Drawer Footer */
.shopcy-drawer__footer {
  padding: 1.25rem 1.5rem; border-top: 1px solid var(--line, #e2e8f0); background: var(--surface, #ffffff);
}
.shopcy-drawer__subtotal {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 1rem; font-weight: 700; color: var(--ink, #0f172a); margin-bottom: 0.35rem;
}
.drawer-tax-note {
  font-size: 0.76rem; color: var(--ink-3, #64748b); margin: 0 0 1rem;
}
.shopcy-drawer__actions {
  display: flex; flex-direction: column; gap: 0.65rem; margin-top: 0.5rem;
}
.shopcy-drawer__actions .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  width: 100%; height: 48px; padding: 0 1.5rem;
  background: var(--accent, #2a5bff); color: #fff;
  font-size: 0.95rem; font-weight: 700; border-radius: var(--r-md, 8px);
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(42, 91, 255, 0.25);
}
.shopcy-drawer__actions .btn:hover {
  background: var(--accent-2, #1d4ed8); transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(42, 91, 255, 0.35);
}
.shopcy-drawer__actions .btn svg {
  width: 18px !important; height: 18px !important; stroke: currentColor; stroke-width: 2.2;
  fill: none; flex-shrink: 0; transition: transform 0.2s ease;
}
.shopcy-drawer__actions .btn:hover svg {
  transform: translateX(4px);
}
.btn-view-cart {
  display: block; text-align: center; padding: 0.4rem; font-size: 0.84rem; font-weight: 600;
  color: var(--ink-3, #64748b); text-decoration: underline; transition: color 0.2s;
}
.btn-view-cart:hover {
  color: var(--accent, #2a5bff);
}

/* =========================================================
   2. STICKY FLOATING ADD TO CART BAR
   ========================================================= */
.shopcy-sticky-cart-bar {
  position: fixed; bottom: 0; left: 0; width: 100%;
  background: var(--surface, #ffffff); border-top: 1px solid var(--line, #e2e8f0);
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 0; z-index: 999;
  transform: translateY(100%); opacity: 0; visibility: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.shopcy-sticky-cart-bar.is-visible {
  transform: translateY(0); opacity: 1; visibility: visible;
}
.sticky-cart-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.sticky-cart-product {
  display: flex; align-items: center; gap: 0.75rem; min-width: 0;
}
.sticky-cart-thumb {
  width: 44px; height: 44px; border-radius: 6px; overflow: hidden; background: #f8fafc; flex-shrink: 0;
}
.sticky-cart-thumb img {
  width: 100%; height: 100%; object-fit: cover;
}
.sticky-cart-title {
  margin: 0; font-size: 0.92rem; font-weight: 700; color: var(--ink, #0f172a);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sticky-cart-price {
  font-size: 0.88rem; font-weight: 700; color: var(--accent, #2a5bff);
}
.sticky-cart-action {
  display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0;
}
.sticky-cart-form {
  display: flex; align-items: center; gap: 0.5rem; margin: 0;
}
.sticky-qty-input {
  width: 50px; height: 38px; text-align: center; border: 1px solid var(--line, #e2e8f0);
  border-radius: 8px; font-weight: 600;
}

/* =========================================================
   3. INSTANT LIVE SEARCH POPUP
   ========================================================= */
.shopcy-live-search-results {
  position: absolute; top: calc(100% + 8px); left: 0; width: 100%;
  background: var(--surface, #ffffff); border: 1px solid var(--line, #e2e8f0);
  border-radius: 12px; box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  overflow: hidden; z-index: 9999; animation: searchFadeIn 0.2s ease;
}
@keyframes searchFadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}
.live-search-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.65rem 1rem; background: var(--surface-2, #f8fafc);
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-3, #64748b);
}
.live-search-count {
  background: var(--accent, #2a5bff); color: #fff; border-radius: 999px; padding: 2px 8px; font-size: 0.7rem;
}
.live-search-list {
  list-style: none; margin: 0; padding: 0; max-height: 320px; overflow-y: auto;
}
.live-search-item {
  border-bottom: 1px solid var(--line, #e2e8f0);
}
.live-search-link {
  display: flex; align-items: center; gap: 0.75rem; padding: 0.65rem 1rem;
  text-decoration: none; color: var(--ink, #0f172a); transition: background 0.15s;
}
.live-search-link:hover {
  background: var(--surface-2, #f1f5f9);
}
.live-search-thumb {
  width: 40px; height: 40px; border-radius: 6px; overflow: hidden; background: #f8fafc; flex-shrink: 0;
}
.live-search-thumb img {
  width: 100%; height: 100%; object-fit: cover;
}
.live-search-meta {
  flex: 1; min-width: 0;
}
.live-search-name {
  display: block; font-size: 0.85rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.live-search-price {
  font-size: 0.8rem; font-weight: 700; color: var(--accent, #2a5bff);
}
.live-search-arrow {
  width: 16px; height: 16px; color: #94a3b8;
}
.live-search-view-all {
  display: block; text-align: center; padding: 0.75rem 1rem; background: var(--surface-2, #f8fafc);
  font-size: 0.82rem; font-weight: 700; color: var(--accent, #2a5bff); text-decoration: none;
}
.live-search-empty {
  padding: 1.5rem; text-align: center; font-size: 0.85rem; color: var(--ink-3, #64748b);
}

/* =========================================================
   4. CHECKOUT ORDER BUMP BOX
   ========================================================= */
.shopcy-order-bump-box {
  background: #f0fdf4; border: 2px dashed #86efac; border-radius: 10px;
  padding: 1rem 1.25rem; margin: 1.25rem 0; position: relative;
}
.shopcy-order-bump-box .bump-tag {
  position: absolute; top: -10px; right: 15px; background: #16a34a; color: #fff;
  font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em;
  padding: 2px 8px; border-radius: 4px;
}
.bump-checkbox-label {
  display: flex; align-items: center; gap: 0.6rem; cursor: pointer; font-size: 0.92rem; font-weight: 700; color: #166534;
}
.bump-price {
  color: #15803d;
}
.bump-description {
  margin: 0.4rem 0 0 1.6rem; font-size: 0.8rem; color: #14532d; line-height: 1.4;
}

/* =========================================================
   5. AJAX QUICK VIEW MODAL
   ========================================================= */
.shopcy-qv-modal {
  position: fixed; inset: 0; z-index: 999999;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem; opacity: 0; visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
}
.shopcy-qv-modal.is-open {
  opacity: 1; visibility: visible;
}
.shopcy-qv-backdrop {
  position: absolute; inset: 0; background: rgba(10, 15, 30, 0.72);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.shopcy-qv-dialog {
  position: relative; z-index: 2; width: 100%; max-width: 880px; max-height: 90vh;
  background: var(--surface, #ffffff); border-radius: var(--r-xl, 16px);
  border: 1px solid var(--line, #e2e8f0); box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  overflow-y: auto; transform: scale(0.94) translateY(12px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.shopcy-qv-modal.is-open .shopcy-qv-dialog {
  transform: scale(1) translateY(0);
}
.shopcy-qv-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 10;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--surface-2, #f1f5f9); border: 1px solid var(--line, #e2e8f0);
  color: var(--ink-2, #334155); display: grid; place-items: center; cursor: pointer;
  transition: all 0.2s ease;
}
.shopcy-qv-close:hover {
  background: var(--ink, #0f172a); color: #fff; transform: scale(1.08);
}
.shopcy-qv-close svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; }

.shopcy-qv-content { padding: 2rem; }
.shopcy-qv-loading {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 4rem 2rem; text-align: center; color: var(--ink-3, #64748b);
}
.shopcy-spinner {
  width: 40px; height: 40px; border: 3px solid rgba(42, 91, 255, 0.15);
  border-top-color: var(--accent, #2a5bff); border-radius: 50%;
  animation: qvSpin 0.7s linear infinite; margin-bottom: 1rem;
}
@keyframes qvSpin { to { transform: rotate(360deg); } }

/* Quick View Grid */
.shopcy-qv-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 2rem; align-items: start;
}
@media (max-width: 768px) {
  .shopcy-qv-grid { grid-template-columns: 1fr; }
  .shopcy-qv-content { padding: 1.5rem; }
}

/* Media Column */
.shopcy-qv-media { display: flex; flex-direction: column; gap: 0.75rem; }
.shopcy-qv-main-img-wrap {
  position: relative; aspect-ratio: 1; border-radius: var(--r-lg, 12px);
  background: var(--surface-2, #f8fafc); border: 1px solid var(--line, #e2e8f0);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.shopcy-qv-main-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease;
}
.shopcy-qv-thumbs {
  display: flex; gap: 0.6rem; overflow-x: auto; padding-bottom: 0.25rem;
}
.shopcy-qv-thumb {
  width: 60px; height: 60px; border-radius: 8px; overflow: hidden;
  border: 2px solid transparent; background: var(--surface-2, #f8fafc);
  cursor: pointer; padding: 0; flex-shrink: 0; transition: all 0.2s;
}
.shopcy-qv-thumb.is-active, .shopcy-qv-thumb:hover {
  border-color: var(--accent, #2a5bff); transform: scale(1.05);
}
.shopcy-qv-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Details Column */
.shopcy-qv-details { display: flex; flex-direction: column; gap: 1rem; }
.shopcy-qv-header { display: flex; flex-direction: column; gap: 0.4rem; }
.shopcy-qv-meta { display: flex; align-items: center; justify-content: space-between; }
.shopcy-qv-stock {
  display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.75rem;
  font-weight: 700; color: #10b981; background: rgba(16, 185, 129, 0.1);
  padding: 0.2rem 0.55rem; border-radius: var(--r-pill, 999px);
}
.shopcy-qv-stock .dot { width: 6px; height: 6px; border-radius: 50%; background: #10b981; }
.shopcy-qv-title {
  font-family: var(--font-display, inherit); font-size: 1.45rem; font-weight: 800;
  color: var(--ink, #0f172a); margin: 0; line-height: 1.25;
}
.shopcy-qv-rating {
  display: flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; color: var(--ink-3, #64748b);
}
.shopcy-qv-rating .i-star { width: 15px; height: 15px; fill: #f59e0b; color: #f59e0b; }
.shopcy-qv-rating strong { color: var(--ink, #0f172a); font-weight: 700; }
.shopcy-qv-desc {
  font-size: 0.88rem; color: var(--ink-2, #334155); line-height: 1.55;
  padding: 0.6rem 0; border-top: 1px solid var(--line, #e2e8f0);
}
.shopcy-qv-desc p { margin: 0; }

/* Actions Bar */
.shopcy-qv-actions {
  display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap;
  padding: 0.75rem 0; border-top: 1px solid var(--line, #e2e8f0);
  border-bottom: 1px solid var(--line, #e2e8f0);
}
.shopcy-qv-actions .qty-stepper {
  display: inline-flex; align-items: center; background: var(--surface-2, #f8fafc);
  border: 1px solid var(--line, #e2e8f0); border-radius: var(--r-md, 8px);
  padding: 2px;
}
.shopcy-qv-actions .qty-btn {
  width: 34px; height: 34px; border: none; background: transparent;
  color: var(--ink, #0f172a); font-weight: 700; font-size: 1.1rem;
  cursor: pointer; border-radius: 6px; transition: background 0.2s;
  display: grid; place-items: center;
}
.shopcy-qv-actions .qty-btn:hover { background: var(--surface, #ffffff); }
.shopcy-qv-actions input {
  width: 44px; height: 34px; border: none; background: transparent;
  text-align: center; font-weight: 700; font-size: 0.92rem; color: var(--ink, #0f172a);
}
.shopcy-qv-add-btn {
  flex: 1; min-width: 140px; display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem; padding: 0.75rem 1.4rem; background: var(--accent, #2a5bff);
  color: #fff; font-weight: 700; font-size: 0.92rem; border-radius: var(--r-md, 8px);
  border: none; cursor: pointer; transition: all 0.25s ease; text-decoration: none;
}
.shopcy-qv-add-btn:hover {
  background: var(--accent-2, #1d4ed8); transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(42, 91, 255, 0.3);
}
.shopcy-qv-wish-btn {
  width: 44px; height: 44px; border-radius: var(--r-md, 8px);
  background: var(--surface-2, #f8fafc); border: 1px solid var(--line, #e2e8f0);
  color: var(--ink-2, #334155); display: grid; place-items: center; cursor: pointer;
  transition: all 0.2s;
}
.shopcy-qv-wish-btn:hover, .shopcy-qv-wish-btn.is-active {
  background: var(--sale, #ef4444); color: #fff; border-color: var(--sale, #ef4444);
}
.shopcy-qv-wish-btn svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; }
.shopcy-qv-wish-btn.is-active svg { fill: #fff; stroke: #fff; }

.shopcy-qv-view-more {
  display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.82rem;
  font-weight: 700; color: var(--accent, #2a5bff); text-decoration: none;
  transition: gap 0.2s;
}
.shopcy-qv-view-more:hover { gap: 0.6rem; text-decoration: underline; }

.shopcy-qv-trust {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 0.5rem;
}
.shopcy-qv-trust-item {
  display: flex; align-items: center; gap: 0.5rem; font-size: 0.76rem;
  color: var(--ink-3, #64748b); font-weight: 600;
}
.shopcy-qv-trust-item svg {
  width: 16px; height: 16px; color: var(--accent, #2a5bff); stroke: currentColor;
  stroke-width: 2; fill: none; flex-shrink: 0;
}

/* =========================================================
   6. GLOBAL TOAST NOTIFICATION
   ========================================================= */
.shopcy-toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9999999;
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 1.4rem; background: #0f172a; color: #fff;
  border-radius: var(--r-pill, 999px); font-size: 0.85rem; font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transform: translateY(30px); opacity: 0; visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.shopcy-toast.is-active {
  transform: translateY(0); opacity: 1; visibility: visible;
}
.shopcy-toast svg { width: 18px; height: 18px; color: #38bdf8; flex-shrink: 0; }

/* =========================================================
   7. SLIDE-OUT WISHLIST DRAWER
   ========================================================= */
.shopcy-wishlist-drawer .shopcy-drawer__header {
  border-bottom: 1px solid var(--line, #e2e8f0);
}
.shopcy-wishlist-item {
  display: flex !important;
  gap: 1rem !important;
  align-items: center !important;
  padding: 1rem 0 !important;
  border: none !important;
  border-bottom: 1px solid var(--line, #f1f5f9) !important;
  border-radius: 0 !important;
  background: transparent !important;
  margin-bottom: 0 !important;
  box-shadow: none !important;
  transition: none !important;
}
.shopcy-wishlist-item:last-child {
  border-bottom: none !important;
}
.shopcy-wishlist-item:hover {
  border-color: var(--line, #f1f5f9) !important;
  box-shadow: none !important;
  transform: none !important;
}
.shopcy-wishlist-item .drawer-item__thumb {
  width: 72px !important;
  height: 72px !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  background: var(--surface-2, #f8fafc) !important;
  flex-shrink: 0 !important;
  border: 1px solid var(--line, #e2e8f0) !important;
  box-shadow: none !important;
}
.shopcy-wishlist-item .drawer-item__thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
.shopcy-wishlist-item .drawer-item__details {
  flex: 1 !important;
  min-width: 0 !important;
}
.shopcy-wishlist-item .drawer-item__title {
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  color: var(--ink, #0f172a) !important;
  line-height: 1.35 !important;
  text-decoration: none !important;
  margin-bottom: 0.25rem !important;
}
.shopcy-wishlist-item .drawer-item__title:hover {
  color: var(--accent, #2a5bff) !important;
}
.shopcy-wishlist-item .drawer-item__price {
  font-size: 0.92rem !important;
  font-weight: 800 !important;
  color: var(--ink, #0f172a) !important;
  margin-bottom: 0.5rem !important;
}
.shopcy-wishlist-item .drawer-item__price .now {
  color: var(--accent, #2a5bff) !important;
}
.shopcy-wishlist-item-actions {
  display: flex !important;
  align-items: center !important;
  gap: 0.6rem !important;
}
.btn-wishlist-add {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.45rem !important;
  padding: 0.45rem 1rem !important;
  background: var(--accent, #2a5bff) !important;
  color: #ffffff !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  border: none !important;
  cursor: pointer !important;
  box-shadow: none !important;
  transition: background 0.2s ease !important;
  line-height: 1 !important;
  margin: 0 !important;
}
.btn-wishlist-add:hover {
  background: var(--accent-2, #1d4ed8) !important;
  color: #ffffff !important;
  transform: none !important;
  box-shadow: none !important;
}
.btn-wishlist-add svg {
  width: 14px !important;
  height: 14px !important;
  stroke: currentColor !important;
  stroke-width: 2 !important;
  fill: none !important;
  display: inline-block !important;
  margin: 0 !important;
}
.shopcy-wishlist-remove {
  width: 32px !important;
  height: 32px !important;
  border-radius: 6px !important;
  background: var(--surface-2, #f1f5f9) !important;
  border: 1px solid var(--line, #e2e8f0) !important;
  cursor: pointer !important;
  color: var(--ink-3, #94a3b8) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.2s ease !important;
  padding: 0 !important;
  box-shadow: none !important;
}
.shopcy-wishlist-remove:hover {
  background: rgba(239, 68, 68, 0.1) !important;
  border-color: rgba(239, 68, 68, 0.2) !important;
  color: var(--sale, #ef4444) !important;
  transform: none !important;
  box-shadow: none !important;
}
.shopcy-wishlist-remove svg {
  width: 15px !important;
  height: 15px !important;
  stroke: currentColor !important;
  stroke-width: 2 !important;
  fill: none !important;
}

.shopcy-wishlist-drawer .btn {
  box-shadow: none !important;
}
.shopcy-wishlist-drawer .btn:hover {
  box-shadow: none !important;
  transform: none !important;
}
