
/* ==========================================================================
   VICORA LUXURY SLIDE-OUT WISHLIST DRAWER
   ========================================================================== */

.vicora-wl-drawer-backdrop {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  background: rgba(0, 20, 18, 0.65) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
  z-index: 9999998 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s !important;
}

body.vicora-wl-drawer-open .vicora-wl-drawer-backdrop {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.vicora-wl-drawer {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  width: 100% !important;
  max-width: 440px !important;
  height: 100% !important;
  height: 100vh !important;
  height: 100dvh !important;
  background: #FFFFFF !important;
  z-index: 9999999 !important;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.25) !important;
  display: flex !important;
  flex-direction: column !important;
  transform: translate3d(105%, 0, 0) !important;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif !important;
  box-sizing: border-box !important;
}

body.vicora-wl-drawer-open .vicora-wl-drawer {
  transform: translate3d(0, 0, 0) !important;
  visibility: visible !important;
  display: flex !important;
}

/* Header */
.vicora-wl-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: #013B38;
  color: #FFFFFF;
  border-bottom: 1px solid rgba(200, 169, 106, 0.4);
}

.vicora-wl-drawer-header-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vicora-wl-drawer-header-icon {
  display: inline-flex;
  color: #C8A96A;
}

.vicora-wl-drawer-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.vicora-wl-drawer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 12px;
  background: #C8A96A;
  color: #013B38;
  font-size: 11px;
  font-weight: 700;
}

.vicora-wl-drawer-close {
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.vicora-wl-drawer-close:hover {
  color: #C8A96A;
  transform: scale(1.1);
}

/* Body */
.vicora-wl-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
  overscroll-behavior: contain;
}

.vicora-wl-drawer-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vicora-wl-drawer-item {
  display: flex;
  gap: 14px;
  padding: 14px;
  border-radius: 10px;
  background: #FDFBF7;
  border: 1px solid rgba(200, 169, 106, 0.2);
  transition: all 0.25s ease;
  position: relative;
}

.vicora-wl-drawer-item:hover {
  border-color: #C8A96A;
  box-shadow: 0 4px 14px rgba(1, 59, 56, 0.08);
}

.vicora-wl-drawer-item-img {
  width: 78px;
  height: 96px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  background: #F4EFE6;
}

.vicora-wl-drawer-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vicora-wl-drawer-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.vicora-wl-drawer-item-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 4px 0;
}

.vicora-wl-drawer-item-title a {
  color: #013B38;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vicora-wl-drawer-item-title a:hover {
  color: #C8A96A;
}

.vicora-wl-drawer-item-price {
  font-size: 14px;
  color: #013B38;
  margin-bottom: 8px;
}

.vicora-wl-drawer-item-price strong {
  font-weight: 700;
  color: #013B38;
}

.vicora-wl-drawer-item-price del {
  color: #8C827A;
  margin-left: 6px;
  font-size: 12px;
}

.vicora-wl-drawer-item-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vicora-wl-drawer-add-bag {
  flex: 1;
  background: #013B38;
  color: #FFFFFF;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.vicora-wl-drawer-add-bag:hover {
  background: #0B4F4B;
  box-shadow: 0 2px 8px rgba(1, 59, 56, 0.2);
}

.vicora-wl-drawer-add-bag:disabled {
  background: #C4BFB6;
  cursor: not-allowed;
}

.vicora-wl-drawer-remove-btn {
  background: transparent;
  border: 1px solid rgba(200, 169, 106, 0.3);
  color: #8C827A;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.vicora-wl-drawer-remove-btn:hover {
  border-color: #D32F2F;
  color: #D32F2F;
  background: #FFEBEE;
}

/* Empty State in Drawer */
.vicora-wl-drawer-empty {
  text-align: center;
  padding: 60px 20px;
}

.vicora-wl-drawer-empty-icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #FDFBF7;
  border: 1px dashed #C8A96A;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vicora-wl-drawer-empty-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #013B38;
  margin: 0 0 8px;
}

.vicora-wl-drawer-empty-subtitle {
  font-size: 13px;
  color: #6E685F;
  line-height: 1.5;
  margin: 0 0 24px;
}

.vicora-wl-drawer-shop-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #013B38;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 30px;
  border: 1px solid #C8A96A;
  transition: all 0.25s ease;
}

.vicora-wl-drawer-shop-cta:hover {
  background: #C8A96A;
  color: #013B38;
}

/* Footer */
.vicora-wl-drawer-footer {
  padding: 16px 20px;
  background: #FDFBF7;
  border-top: 1px solid rgba(200, 169, 106, 0.3);
}

.vicora-wl-drawer-btn-account {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  background: #013B38;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 8px;
  text-align: center;
  transition: all 0.2s ease;
}

.vicora-wl-drawer-btn-account:hover {
  background: #0B4F4B;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(1, 59, 56, 0.25);
}

.vicora-wl-drawer-arrow {
  transition: transform 0.2s ease;
}

.vicora-wl-drawer-btn-account:hover .vicora-wl-drawer-arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   VICORA ULTRA-LUXURY ACCOUNT WISHLIST PAGE
   ========================================================================== */

.vicora-account-page--wishlist-premium {
  width: 100%;
  box-sizing: border-box;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #123632;
}

.vicora-wish-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.vicora-wish-head h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: #013B38;
  margin: 0 0 6px 0;
  line-height: 1.15;
}

.vicora-wish-head p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

.vicora-wish-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #F4EFE6;
  color: #8C733E;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid rgba(200, 169, 106, 0.35);
  white-space: nowrap;
}

.vicora-wish-badge-dot {
  width: 6px;
  height: 6px;
  background: #C8A96A;
  border-radius: 50%;
  display: inline-block;
}

.vicora-wish-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #E2D9C8 0%, rgba(226, 217, 200, 0.2) 100%);
  margin-bottom: 24px;
}

.vicora-wish-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 18px;
  background: #FAF8F5;
  border-radius: 12px;
  border: 1px solid #EFEAE1;
  margin-bottom: 24px;
}

.vicora-wish-count-label {
  font-size: 13px;
  font-weight: 600;
  color: #013B38;
}

.vicora-wish-move-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #013B38;
  color: #FFFFFF !important;
  font-size: 12px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.vicora-wish-move-all:hover {
  background: #0B4F4B;
  box-shadow: 0 4px 12px rgba(1, 59, 56, 0.2);
}

.vicora-wish-move-all img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.vicora-wish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.vicora-wish-card {
  background: #FFFFFF;
  border: 1px solid #EAE5DC;
  border-radius: 14px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.vicora-wish-card:hover {
  transform: translateY(-4px);
  border-color: #C8A96A;
  box-shadow: 0 8px 24px rgba(1, 59, 56, 0.08);
}

.vicora-wish-image-wrap {
  position: relative;
  width: 100%;
  padding-top: 125%;
  background: #F7F5F0;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
}

.vicora-wish-image-wrap a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.vicora-wish-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.vicora-wish-card:hover .vicora-wish-image {
  transform: scale(1.04);
}

.vicora-wish-heart {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: #C8A96A;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: all 0.2s ease;
}

.vicora-wish-heart:hover {
  background: #FFFFFF;
  transform: scale(1.1);
  color: #e11d48;
}

.vicora-wish-stock-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vicora-wish-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 6px;
}

.vicora-wish-tag {
  font-size: 10px;
  font-weight: 600;
  color: #8C733E;
  background: #FAF6ED;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.vicora-wish-card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 6px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 44px;
}

.vicora-wish-card-title a {
  color: #013B38;
  text-decoration: none;
  transition: color 0.2s ease;
}

.vicora-wish-card-title a:hover {
  color: #C8A96A;
}

.vicora-wish-price {
  font-size: 15px;
  color: #013B38;
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.vicora-wish-price strong {
  font-weight: 700;
}

.vicora-wish-price del {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 400;
}

.vicora-wish-card-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vicora-wish-add {
  width: 100%;
  padding: 9px 12px;
  background: #013B38;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vicora-wish-add:hover:not(:disabled) {
  background: #0B4F4B;
  box-shadow: 0 4px 12px rgba(1, 59, 56, 0.2);
}

.vicora-wish-add:disabled {
  background: #e2e8f0;
  color: #94a3b8;
  cursor: not-allowed;
}

.vicora-wish-remove {
  font-size: 11px;
  color: #94a3b8;
  text-align: center;
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  padding: 2px;
  transition: color 0.2s ease;
}

.vicora-wish-remove:hover {
  color: #e11d48;
}

/* Empty State */
.vicora-wishlist-empty-state {
  text-align: center;
  padding: 50px 20px 40px;
  background: #FAF8F5;
  border: 1px solid #EAE5DC;
  border-radius: 16px;
  max-width: 600px;
  margin: 20px auto 40px;
}

.vicora-wish-empty-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #E5DFD3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.vicora-wish-empty-icon {
  font-size: 28px;
  color: #C8A96A;
}

.vicora-wish-empty-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: #013B38;
  margin: 0 0 10px 0;
}

.vicora-wish-empty-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  max-width: 440px;
  margin: 0 auto 24px;
}

.vicora-wish-empty-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: #013B38;
  color: #FFFFFF !important;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.vicora-wish-empty-cta:hover {
  background: #0B4F4B;
  box-shadow: 0 6px 18px rgba(1, 59, 56, 0.25);
  transform: translateY(-1px);
}

.vicora-wish-perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid #EAE5DC;
  text-align: left;
}

.vicora-wish-perk {
  display: flex;
  gap: 8px;
}

.vicora-wish-perk-icon {
  color: #C8A96A;
  font-size: 14px;
  line-height: 1.4;
}

.vicora-wish-perk strong {
  display: block;
  font-size: 12px;
  color: #013B38;
  margin-bottom: 2px;
}

.vicora-wish-perk p {
  font-size: 11px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.35;
}

@media (max-width: 768px) {
  .vicora-wish-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .vicora-wish-perks {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .vicora-wish-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

