/* 
  Lisa Nicole NY - E-Commerce Shop & Color Swatches Styling (Light Luxury Palette)
*/

/* Header Navbar Single-Row Layout Fix */
.wionmain-menu-item nav.main-menu > ul {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 12px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.wionmain-menu-item nav.main-menu > ul > li {
  display: inline-flex !important;
  align-items: center !important;
  white-space: nowrap !important;
  margin-right: 0 !important;
}

.wionmain-menu-item nav.main-menu > ul > li > a {
  padding: 6px 8px !important;
  font-size: 15px !important;
  white-space: nowrap !important;
}

.site-header .row {
  flex-wrap: nowrap !important;
}

/* Header Cart Icon Button (100% Crisp & Visible) */
.header-cart-btn {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: #181514 !important; /* Dark solid circle */
  border: 1.5px solid #d4a373 !important; /* Wheat gold border */
  color: #f5deb3 !important; /* Gold/wheat icon */
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  cursor: pointer !important;
}

.header-cart-btn:hover {
  background: #d4a373 !important;
  border-color: #d4a373 !important;
  color: #111111 !important;
  transform: translateY(-2px) scale(1.05) !important;
  box-shadow: 0 6px 18px rgba(212, 163, 115, 0.4) !important;
}

.header-cart-btn:hover svg {
  stroke: #111111 !important;
}

.header-cart-btn svg {
  width: 20px !important;
  height: 20px !important;
  stroke: #ffffff !important;
  transition: stroke 0.3s ease !important;
}

.cart-badge-count {
  position: absolute !important;
  top: -5px !important;
  right: -5px !important;
  background: #ef4444 !important;
  color: #ffffff !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  width: 20px !important;
  height: 20px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 2px solid #ffffff !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3) !important;
}

/* Regional Shipping Announcement Bar */
.shop-announcement-bar {
  background: #1b1614;
  color: #f5deb3;
  padding: 10px 15px;
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  border-bottom: 1px solid rgba(245, 222, 179, 0.2);
  letter-spacing: 0.5px;
}

.shop-announcement-bar strong {
  color: #ffffff;
}

/* Light Hero Section */
.shop-hero-section {
  background: #f8f6f0 !important;
  border-bottom: 1px solid #eae6df;
}

.shop-hero-title {
  color: #1b1614 !important;
  font-weight: 800;
  font-family: 'Satoshi', sans-serif;
  letter-spacing: -0.5px;
}

.shop-hero-sub {
  color: #665b53 !important;
}

/* Category Filter Tabs (Light Luxe Palette) */
.shop-filter-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.shop-filter-btn {
  background: #ffffff;
  border: 1px solid #e2ddd5;
  color: #332d29;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.shop-filter-btn:hover,
.shop-filter-btn.active {
  background: #1b1614;
  color: #f5deb3;
  border-color: #1b1614;
  box-shadow: 0 6px 20px rgba(27, 22, 20, 0.25);
  transform: translateY(-2px);
}

/* Light Luxury Product Card Styling */
.product-card {
  background: #ffffff;
  border: 1px solid #eae5dc;
  border-radius: 16px;
  padding: 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: #d4a373;
}

.product-badge-sale {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #1b1614;
  color: #f5deb3;
  border: 1px solid #d4a373;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.product-img-wrap {
  width: 100%;
  height: 260px;
  border-radius: 12px;
  overflow: hidden;
  background: #f9f8f6;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}

.product-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1b1614;
  margin-bottom: 6px;
  line-height: 1.35;
}

.product-price-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.current-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: #b8860b;
}

.original-price {
  font-size: 0.95rem;
  color: #999999;
  text-decoration: line-through;
}

/* Fenty Beauty Inspired Color Swatches */
.swatch-section {
  margin: 12px 0 18px 0;
  padding-top: 10px;
  border-top: 1px dashed #ede8e0;
}

.swatch-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #776e65;
  margin-bottom: 10px;
}

.selected-shade-name {
  color: #1b1614;
  font-weight: 700;
}

.swatch-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.shade-swatch {
  width: 28px;
  height: 28px;
  border-radius: 5px; /* Square rounded swatches like Fenty Beauty */
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 1px #d0c9bf;
  cursor: pointer;
  position: relative;
  transition: all 0.25s ease;
}

.shade-swatch:hover {
  transform: scale(1.18);
  z-index: 2;
  box-shadow: 0 0 0 2px #1b1614;
}

.shade-swatch.active {
  box-shadow: 0 0 0 2px #1b1614, 0 0 0 4px #d4a373;
  transform: scale(1.1);
  z-index: 3;
}

/* Tooltip Hover */
.shade-swatch::after {
  content: attr(data-shade-name);
  position: absolute;
  bottom: 135%;
  left: 50%;
  transform: translateX(-50%);
  background: #1b1614;
  color: #ffffff;
  padding: 4px 9px;
  border-radius: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.shade-swatch:hover::after {
  opacity: 1;
}

/* Add to Cart Button (Wheat Gold Accent) */
.product-card-footer {
  margin-top: auto;
  display: flex;
  gap: 8px;
}

.btn-add-to-cart {
  flex: 1;
  background: #1b1614;
  color: #f5deb3;
  border: 1px solid #1b1614;
  font-weight: 700;
  padding: 12px 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  font-size: 0.92rem;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 12px rgba(27, 22, 20, 0.15);
}

.btn-add-to-cart:hover {
  background: #d4a373;
  color: #111111;
  border-color: #d4a373;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(212, 163, 115, 0.35);
}

/* Dynamic Cart Drawer (Slide-Out Side Panel) */
.shop-cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.shop-cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.shop-cart-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: #ffffff;
  color: #1b1614;
  z-index: 9999;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.shop-cart-drawer.open {
  right: 0;
}

.cart-drawer-header {
  padding: 22px;
  border-bottom: 1px solid #eae5dc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fcfbfa;
}

.cart-drawer-title h5 {
  margin: 0;
  color: #1b1614;
  font-size: 1.25rem;
  font-weight: 800;
}

.cart-badge {
  background: #d4a373;
  color: #111111;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 12px;
  margin-left: 8px;
}

.cart-close-btn {
  background: transparent;
  border: none;
  color: #666666;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

.cart-close-btn:hover {
  color: #1b1614;
}

.cart-shipping-notice {
  background: #f8f6f0;
  padding: 12px 22px;
  border-bottom: 1px solid #eae5dc;
  font-size: 0.82rem;
  color: #8b6b47;
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-empty-state {
  text-align: center;
  padding: 60px 20px;
  color: #888888;
}

.empty-bag-icon {
  font-size: 3.5rem;
  margin-bottom: 15px;
}

.cart-item-row {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #f0ece6;
}

.cart-item-img-wrap {
  width: 68px;
  height: 68px;
  border-radius: 10px;
  overflow: hidden;
  background: #f8f6f0;
  flex-shrink: 0;
}

.cart-item-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  font-size: 0.98rem;
  margin: 0 0 4px 0;
  color: #1b1614;
  font-weight: 700;
}

.cart-item-shade-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.shade-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid #ccc;
}

.cart-item-price-line {
  font-size: 0.92rem;
  font-weight: 700;
  color: #b8860b;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.qty-btn-group {
  display: flex;
  align-items: center;
  border: 1px solid #d0c9bf;
  border-radius: 6px;
  overflow: hidden;
}

.qty-btn {
  background: #f2ede6;
  border: none;
  color: #1b1614;
  width: 26px;
  height: 26px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
}

.qty-btn:hover {
  background: #d4a373;
  color: #ffffff;
}

.qty-val {
  padding: 0 10px;
  font-size: 0.88rem;
  font-weight: 700;
}

.item-remove-btn {
  background: transparent;
  border: none;
  color: #ef4444;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0 4px;
}

.cart-drawer-footer {
  padding: 22px;
  border-top: 1px solid #eae5dc;
  background: #fcfbfa;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.payment-icons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.pay-badge {
  background: #ffffff;
  color: #1b1614;
  border: 1px solid #d0c9bf;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 4px;
}

/* Animations */
@keyframes fadeInCard {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.shop-product-item.animate-fadeIn {
  animation: fadeInCard 0.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* High z-index for SweetAlert Checkout Popup */
.swal2-container {
  z-index: 100000 !important;
}

/* Responsive Mobile Layouts */
@media (max-width: 575px) {
  .product-img-wrap {
    height: 210px;
  }
  .shop-cart-drawer {
    max-width: 100vw;
  }
}

/* Elegant & Highly Visible Social Icons Styling for Footer */
.social-icons-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.social-icon-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #111111 !important;
  border: 1.5px solid #d4a373 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.social-icon-btn.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.4) !important;
}

.social-icon-btn.tiktok {
  background: #000000 !important;
  border: 1.5px solid #fe2c55 !important;
}

.social-icon-btn.phone {
  background: #111111 !important;
  border: 1.5px solid #d4a373 !important;
}

.social-icon-btn:hover {
  transform: translateY(-4px) scale(1.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.social-icon-btn.instagram:hover {
  filter: brightness(1.15);
  box-shadow: 0 8px 24px rgba(220, 39, 67, 0.55);
}

.social-icon-btn.tiktok:hover {
  background: #fe2c55 !important;
  box-shadow: 0 8px 24px rgba(254, 44, 85, 0.55);
}

.social-icon-btn.phone:hover {
  background: #d4a373 !important;
  border-color: #d4a373 !important;
  box-shadow: 0 8px 24px rgba(212, 163, 115, 0.55);
}

.social-icon-btn svg {
  display: block;
  transition: transform 0.35s ease;
}

.social-icon-btn:hover svg {
  transform: scale(1.15);
}

