/**
 * Neda Luxe Beauty — design system & premium UI layer
 * Loaded after style.css; scoped mainly via body.neda-luxe
 */

/* -------------------------------------------------------------------------
   Design tokens
   ------------------------------------------------------------------------- */
:root,
body.neda-luxe {
  --nl-primary: #b76a9b;
  --nl-primary-dark: #8e4a76;
  --nl-primary-light: #d8a9c6;
  --nl-bg-soft: #f5e6f0;
  --nl-black: #0f0f0f;
  --nl-gray: #6b6b6b;
  --nl-border: #e5e5e5;
  --nl-white: #ffffff;
  --nl-font-heading: "Playfair Display", Georgia, "Times New Roman", serif;
  --nl-font-body: "Montserrat", "Jost", -apple-system, BlinkMacSystemFont, sans-serif;
  --nl-radius: 14px;
  --nl-radius-sm: 10px;
  --nl-shadow-sm: 0 8px 30px rgba(15, 15, 15, 0.06);
  --nl-shadow-md: 0 16px 48px rgba(142, 74, 118, 0.12);
  --nl-shadow-glow: 0 12px 40px rgba(183, 106, 155, 0.22);
  --nl-transition: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

/* -------------------------------------------------------------------------
   Global typography & surfaces
   ------------------------------------------------------------------------- */
/* Storefront flash (cart / checkout feedback) */
.nl-store-flash {
  padding: 12px 0;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
.nl-store-flash--success {
  background: rgba(183, 106, 155, 0.12);
  color: var(--nl-primary-dark);
  border-bottom: 1px solid rgba(183, 106, 155, 0.2);
}
.nl-store-flash--error {
  background: rgba(180, 40, 60, 0.08);
  color: #8b2940;
  border-bottom: 1px solid rgba(180, 40, 60, 0.2);
}
.nl-store-flash--info {
  background: var(--nl-bg-soft);
  color: var(--nl-gray);
  border-bottom: 1px solid var(--nl-border);
}
.nl-store-flash p {
  margin: 0;
}

body.neda-luxe {
  font-family: var(--nl-font-body);
  color: var(--nl-gray);
  background: linear-gradient(180deg, var(--nl-white) 0%, #faf7fb 48%, var(--nl-white) 100%);
  -webkit-font-smoothing: antialiased;
}

body.neda-luxe h1,
body.neda-luxe h2,
body.neda-luxe h3,
body.neda-luxe h4,
body.neda-luxe .product-title,
body.neda-luxe .custom_blog_title,
body.neda-luxe .custommenu-title-blog,
body.neda-luxe .widgettitle {
  font-family: var(--nl-font-heading);
  color: var(--nl-black);
  font-weight: 500;
  letter-spacing: 0.02em;
}

body.neda-luxe a:hover,
body.neda-luxe a:focus {
  color: var(--nl-primary-dark);
}

body.neda-luxe .header-message {
  letter-spacing: 0.04em;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--nl-primary-dark);
}

body.neda-luxe .top-bar {
  background: linear-gradient(
    90deg,
    var(--nl-bg-soft) 0%,
    var(--nl-white) 50%,
    var(--nl-bg-soft) 100%
  );
  border-bottom: 1px solid rgba(183, 106, 155, 0.15);
}

body.neda-luxe .header.style7,
body.neda-luxe .header.style2 {
  box-shadow: var(--nl-shadow-sm);
}

body.neda-luxe .header.style7 .main-menu > li > a,
body.neda-luxe .header.style7 .stelina-menu-item-title,
body.neda-luxe .header.style2 .main-menu > li > a,
body.neda-luxe .header.style2 .stelina-menu-item-title {
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
}

/* Storefront header (style2): less dead space between logo row and nav bar */
@media (min-width: 992px) {
  body.neda-luxe .header.style2 .main-header {
    padding-top: 20px;
    padding-bottom: 10px;
  }
}

/* -------------------------------------------------------------------------
   Buttons & CTAs
   ------------------------------------------------------------------------- */
body.neda-luxe .button,
body.neda-luxe .single_add_to_cart_button,
body.neda-luxe button.button,
body.neda-luxe .button-submit,
body.neda-luxe .btn-submit,
body.neda-luxe .submit-newsletter {
  font-family: var(--nl-font-body);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(
    135deg,
    var(--nl-primary) 0%,
    var(--nl-primary-dark) 100%
  );
  color: var(--nl-white) !important;
  box-shadow: var(--nl-shadow-glow);
  transition: transform var(--nl-transition), box-shadow var(--nl-transition),
    filter var(--nl-transition);
}

body.neda-luxe .button:hover,
body.neda-luxe .single_add_to_cart_button:hover,
body.neda-luxe button.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 18px 44px rgba(183, 106, 155, 0.35);
  color: var(--nl-white) !important;
}

body.neda-luxe .button:active,
body.neda-luxe .single_add_to_cart_button:active {
  transform: translateY(0);
}

body.neda-luxe .btn-shop-now,
body.neda-luxe .btn-shop-the-look,
body.neda-luxe .btn-shop-product,
body.neda-luxe .btn-chekout,
body.neda-luxe .btn-lets-do-it {
  min-width: 168px;
  padding: 14px 28px;
}

/* Banner CTAs — solid primary (ghost white was invisible on light art) */
body.neda-luxe .item-banner .button {
  padding: 14px 28px;
  margin-right: 0;
  overflow: visible;
  border-radius: 999px;
  border: none;
  background: linear-gradient(
    135deg,
    var(--nl-primary) 0%,
    var(--nl-primary-dark) 100%
  );
  color: var(--nl-white) !important;
  box-shadow: var(--nl-shadow-glow);
}

body.neda-luxe .item-banner .button::before,
body.neda-luxe .item-banner .button:hover::before {
  display: none;
  content: none;
  animation: none;
}

body.neda-luxe .item-banner .button:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 18px 44px rgba(183, 106, 155, 0.35);
  color: var(--nl-white) !important;
  background: linear-gradient(
    135deg,
    var(--nl-primary) 0%,
    var(--nl-primary-dark) 100%
  );
}

/* -------------------------------------------------------------------------
   Forms
   ------------------------------------------------------------------------- */
body.neda-luxe input[type="text"],
body.neda-luxe input[type="email"],
body.neda-luxe input[type="password"],
body.neda-luxe input[type="search"],
body.neda-luxe textarea,
body.neda-luxe .input-text {
  border-radius: var(--nl-radius-sm);
  border: 1px solid var(--nl-border);
  transition: border-color var(--nl-transition), box-shadow var(--nl-transition);
}

body.neda-luxe input:focus,
body.neda-luxe textarea:focus,
body.neda-luxe .input-text:focus {
  border-color: var(--nl-primary);
  box-shadow: 0 0 0 3px rgba(183, 106, 155, 0.2);
  outline: none;
}

/* -------------------------------------------------------------------------
   Homepage — hero & slider
   ------------------------------------------------------------------------- */
/* Full-width home slider (Home 02 layout — primary landing) */
body.neda-luxe.home .home-slider.fullwidth {
  padding: 24px 0 0;
  background: radial-gradient(
      ellipse 120% 80% at 20% 20%,
      rgba(216, 169, 198, 0.35),
      transparent 55%
    ),
    radial-gradient(
      ellipse 90% 70% at 85% 60%,
      rgba(183, 106, 155, 0.14),
      transparent 50%
    ),
    linear-gradient(180deg, var(--nl-bg-soft) 0%, var(--nl-white) 100%);
}

body.neda-luxe.home .home-slider.fullwidth .slider-owl,
body.neda-luxe.home .home-slider.fullwidth .owl-slick {
  border-radius: var(--nl-radius);
  overflow: hidden;
  box-shadow: var(--nl-shadow-md);
}

body.neda-luxe.home .home-slider.fullwidth .slider-item.style4 .slider-inner,
body.neda-luxe.home .home-slider.fullwidth .slider-item.style5 .slider-inner,
body.neda-luxe.home .home-slider.fullwidth .slider-item.style6 .slider-inner {
  border-radius: var(--nl-radius);
}

body.neda-luxe.home .home-slider-banner {
  padding: 32px 0 8px;
  background: radial-gradient(
      ellipse 120% 80% at 20% 20%,
      rgba(216, 169, 198, 0.35),
      transparent 55%
    ),
    radial-gradient(
      ellipse 90% 70% at 85% 60%,
      rgba(183, 106, 155, 0.14),
      transparent 50%
    ),
    linear-gradient(180deg, var(--nl-bg-soft) 0%, var(--nl-white) 100%);
}

body.neda-luxe.home .home-slider-banner .silider-wrapp .home-slider,
body.neda-luxe.home .home-slider-banner .owl-slick {
  border-radius: var(--nl-radius);
  overflow: hidden;
  box-shadow: var(--nl-shadow-md);
}

body.neda-luxe.home .slider-item.style7 .slider-inner,
body.neda-luxe.home .slider-item.style8 .slider-inner,
body.neda-luxe.home .slider-item.style9 .slider-inner,
body.neda-luxe.home .slider-item.style4 .slider-inner,
body.neda-luxe.home .slider-item.style5 .slider-inner,
body.neda-luxe.home .slider-item.style6 .slider-inner {
  border-radius: var(--nl-radius);
}

body.neda-luxe.home .slider-infor .title-small {
  font-family: var(--nl-font-body);
  color: var(--nl-primary-dark);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 11px;
}

body.neda-luxe.home .slider-infor .title-big {
  font-family: var(--nl-font-heading);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.15;
  color: var(--nl-black);
  margin-bottom: 12px;
}

body.neda-luxe.home .slider-infor .price,
body.neda-luxe.home .slider-infor .number-price {
  font-family: var(--nl-font-heading);
  color: var(--nl-primary-dark);
}

/* Hero slider CTAs — same primary pill (theme used underline / transparent) */
body.neda-luxe.home .slider-item .slider-infor .button {
  padding: 14px 28px;
  margin-right: 8px;
  overflow: visible;
  border-radius: 999px;
  border: none;
  background: linear-gradient(
    135deg,
    var(--nl-primary) 0%,
    var(--nl-primary-dark) 100%
  );
  color: var(--nl-white) !important;
  box-shadow: var(--nl-shadow-glow);
  font-family: var(--nl-font-body);
  font-weight: 600;
  letter-spacing: 0.12em;
  font-size: 12px;
}

body.neda-luxe.home .slider-item .slider-infor .button::before,
body.neda-luxe.home .slider-item .slider-infor .button:hover::before {
  display: none;
  content: none;
  animation: none;
}

body.neda-luxe.home .slider-item .slider-infor .button:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 18px 44px rgba(183, 106, 155, 0.35);
  color: var(--nl-white) !important;
  background: linear-gradient(
    135deg,
    var(--nl-primary) 0%,
    var(--nl-primary-dark) 100%
  );
  border-color: transparent;
}

body.neda-luxe.home .banner-wrapp .item-banner .inner {
  border-radius: var(--nl-radius);
  overflow: hidden;
  box-shadow: var(--nl-shadow-sm);
  transition: transform var(--nl-transition), box-shadow var(--nl-transition);
}

body.neda-luxe.home .banner-wrapp .item-banner:hover .inner {
  transform: translateY(-4px);
  box-shadow: var(--nl-shadow-md);
}

body.neda-luxe.home .custommenu-title-blog {
  text-align: center;
  position: relative;
  padding-bottom: 18px;
  margin-bottom: 36px;
}

body.neda-luxe.home .custommenu-title-blog::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin: 16px auto 0;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--nl-primary-light),
    var(--nl-primary),
    var(--nl-primary-light),
    transparent
  );
}

/* Product cards — home & grids */
body.neda-luxe .product-inner {
  border-radius: var(--nl-radius);
  background: var(--nl-white);
  border: 1px solid rgba(229, 229, 229, 0.85);
  box-shadow: var(--nl-shadow-sm);
  transition: transform var(--nl-transition), box-shadow var(--nl-transition),
    border-color var(--nl-transition);
}

body.neda-luxe .product-inner:hover {
  transform: translateY(-6px);
  box-shadow: var(--nl-shadow-md);
  border-color: rgba(183, 106, 155, 0.35);
}

body.neda-luxe .product-inner .product-thumb img {
  border-radius: var(--nl-radius-sm);
  transition: transform 0.45s ease;
}

body.neda-luxe .product-inner:hover .product-thumb img {
  transform: scale(1.04);
}

body.neda-luxe .product-inner .price ins,
body.neda-luxe .product-inner .price {
  color: var(--nl-primary-dark);
  font-weight: 600;
}

body.neda-luxe .product-inner .price del {
  color: #a8a8a8;
}

/* Shop list rows (e.g. shop-list.php): equal-height JS used to stretch every card to the
   tallest in the list — content stayed top-aligned → large empty gap below. JS skips that
   for .style-list; add balanced padding and center cells vertically. */
body.neda-luxe .product-item.style-list .product-inner {
  padding: 22px 22px 24px;
  box-sizing: border-box;
  overflow: visible;
}

body.neda-luxe .product-item.style-list .product-thumb,
body.neda-luxe .product-item.style-list .product-info-left,
body.neda-luxe .product-item.style-list .product-info-right {
  vertical-align: middle;
}

body.neda-luxe .product-item.style-list .product-info-left {
  padding-top: 8px;
  padding-bottom: 8px;
}

/* Tabs */
body.neda-luxe .stelina-tabs .tab-link > li.active > a,
body.neda-luxe .stelina-tabs .tab-link > li > a:hover {
  color: var(--nl-primary-dark);
  border-color: var(--nl-primary);
}

body.neda-luxe .stelina-tabs .tab-link > li > a {
  font-family: var(--nl-font-body);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
}

/* Section titles helper */
body.neda-luxe .nl-section-eyebrow {
  display: block;
  font-family: var(--nl-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--nl-primary-dark);
  margin-bottom: 8px;
}

/* -------------------------------------------------------------------------
   Category collections (homepage)
   ------------------------------------------------------------------------- */
@keyframes nl-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.neda-luxe.home .nl-collections-section {
  padding: 56px 0 12px;
  animation: nl-rise 0.75s ease-out both;
}

body.neda-luxe .nl-collections-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

body.neda-luxe .nl-collections-head h3 {
  font-size: clamp(26px, 3vw, 34px);
  margin-bottom: 12px;
}

body.neda-luxe .nl-collections-head p {
  color: var(--nl-gray);
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

body.neda-luxe .nl-collection-card {
  display: block;
  position: relative;
  border-radius: var(--nl-radius);
  overflow: hidden;
  margin-bottom: 28px;
  min-height: 220px;
  box-shadow: var(--nl-shadow-sm);
  transition: transform var(--nl-transition), box-shadow var(--nl-transition);
}

body.neda-luxe .nl-collection-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--nl-shadow-md);
}

body.neda-luxe .nl-collection-card__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

body.neda-luxe .nl-collection-card:hover .nl-collection-card__media {
  transform: scale(1.06);
}

body.neda-luxe .nl-collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(15, 15, 15, 0.1) 35%,
    rgba(15, 15, 15, 0.75) 100%
  );
}

body.neda-luxe .nl-collection-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 22px 22px;
  z-index: 1;
}

body.neda-luxe .nl-collection-card__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--nl-primary-light);
}

body.neda-luxe .nl-collection-card__body h4 {
  font-family: var(--nl-font-heading);
  color: var(--nl-white);
  margin: 8px 0 0;
  font-size: 22px;
}

/* -------------------------------------------------------------------------
   Product detail page (Sephora / Fenty-inspired polish)
   ------------------------------------------------------------------------- */
body.neda-luxe.nl-pdp .main-content.main-content-details {
  padding-top: 24px;
  padding-bottom: 56px;
}

body.neda-luxe.nl-pdp .breadcrumb-trail a {
  color: var(--nl-gray);
}

body.neda-luxe.nl-pdp .breadcrumb-trail .trail-end {
  color: var(--nl-black);
  font-weight: 600;
}

body.neda-luxe.nl-pdp .details-product {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 48px;
}

body.neda-luxe.nl-pdp .details-thumd {
  flex: 1 1 320px;
  max-width: 520px;
}

body.neda-luxe.nl-pdp .details-infor {
  flex: 1 1 280px;
  max-width: 520px;
}

body.neda-luxe.nl-pdp .image-preview-container {
  border-radius: var(--nl-radius);
  overflow: hidden;
  border: 1px solid var(--nl-border);
  box-shadow: var(--nl-shadow-md);
  background: var(--nl-white);
}

body.neda-luxe.nl-pdp .image-preview-container img {
  transition: transform 0.4s ease;
}

body.neda-luxe.nl-pdp .image-preview-container:hover img {
  transform: scale(1.02);
}

body.neda-luxe.nl-pdp .btn-zoom {
  border-radius: 999px;
  background: var(--nl-white);
  box-shadow: var(--nl-shadow-sm);
}

body.neda-luxe.nl-pdp .product-preview .thumbnails_carousel a {
  border-radius: var(--nl-radius-sm);
  border: 2px solid transparent;
  overflow: hidden;
  transition: border-color var(--nl-transition), box-shadow var(--nl-transition);
}

body.neda-luxe.nl-pdp .product-preview .thumbnails_carousel a.active,
body.neda-luxe.nl-pdp .product-preview .thumbnails_carousel a:hover {
  border-color: var(--nl-primary);
  box-shadow: 0 0 0 2px rgba(183, 106, 155, 0.15);
}

body.neda-luxe.nl-pdp .details-infor .product-title {
  font-size: clamp(28px, 3.5vw, 38px);
  line-height: 1.2;
  margin-bottom: 8px;
}

body.neda-luxe.nl-pdp .details-infor .text-muted {
  color: var(--nl-gray);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.neda-luxe.nl-pdp .details-infor .price {
  font-family: var(--nl-font-heading);
  font-size: 28px;
  color: var(--nl-primary-dark);
  margin: 16px 0;
}

body.neda-luxe.nl-pdp .details-infor .price del {
  font-size: 20px;
  color: #a8a8a8;
  margin-right: 10px;
}

body.neda-luxe.nl-pdp .details-infor .availability a {
  color: var(--nl-primary-dark);
  font-weight: 600;
}

body.neda-luxe.nl-pdp .nl-pdp-cta-panel {
  margin-top: 28px;
  padding: 28px;
  border-radius: var(--nl-radius);
  background: linear-gradient(
    145deg,
    var(--nl-white) 0%,
    var(--nl-bg-soft) 100%
  );
  border: 1px solid rgba(183, 106, 155, 0.2);
  box-shadow: var(--nl-shadow-sm);
}

body.neda-luxe.nl-pdp .group-button .single_add_to_cart_button {
  min-width: 220px;
  padding: 16px 32px;
  font-size: 13px;
}

body.neda-luxe.nl-pdp .tab-details-product .tab-link > li.active > a {
  color: var(--nl-primary-dark);
  border-bottom-color: var(--nl-primary);
}

body.neda-luxe.nl-pdp .tab-details-product {
  margin-top: 8px;
}

body.neda-luxe.nl-pdp .related.products .product-grid-title {
  font-size: 26px;
  margin-bottom: 28px;
}

body.neda-luxe.nl-pdp .related.products .product-item {
  margin: 0 8px;
}

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */
body.neda-luxe .footer.style7 {
  background: linear-gradient(180deg, #1a1418 0%, var(--nl-black) 100%);
  color: rgba(255, 255, 255, 0.88);
}

body.neda-luxe .footer.style7 .widgettitle,
body.neda-luxe .footer.style7 h2,
body.neda-luxe .footer.style7 h3,
body.neda-luxe .footer.style7 .stelina-newsletter .title {
  color: var(--nl-white);
}

/* Theme sets menu li to #191919 — unreadable on dark footer */
body.neda-luxe .footer.style7 .menu .menu-item,
body.neda-luxe .footer.style7 .menu .menu-item a {
  color: rgba(255, 255, 255, 0.9);
}

body.neda-luxe .footer.style7 .menu .menu-item a:hover,
body.neda-luxe .footer.style7 .menu .menu-item a:focus {
  color: var(--nl-primary-light);
}

body.neda-luxe .footer.style7 a:hover,
body.neda-luxe .footer.style7 a:focus {
  color: var(--nl-primary-light);
}

body.neda-luxe .footer.style7 .stelina-newsletter.style1 .list {
  color: rgba(255, 255, 255, 0.85);
}

body.neda-luxe .footer.style7 .input-text {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--nl-white);
}

body.neda-luxe .footer.style7 .input-text::placeholder {
  color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

/* Theme social row uses #555 — too dark on this background */
body.neda-luxe .footer.style7 .stelina-socials li,
body.neda-luxe .footer.style7 .stelina-socials li a,
body.neda-luxe .footer.style7 .stelina-socials li a i {
  color: rgba(255, 255, 255, 0.92);
}

body.neda-luxe .footer.style7 .stelina-socials li a:hover,
body.neda-luxe .footer.style7 .stelina-socials li a:hover i {
  color: var(--nl-primary-light);
}

body.neda-luxe .footer.style7 .coppyright {
  color: rgba(255, 255, 255, 0.65);
}

body.neda-luxe .footer.style7 .coppyright a {
  color: var(--nl-primary-light);
}

body.neda-luxe .footer.style7 .coppyright a:hover {
  color: var(--nl-white);
}

body.neda-luxe .footer.style7 .footer-end {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* -------------------------------------------------------------------------
   Mobile header bar (shared partial)
   ------------------------------------------------------------------------- */
body.neda-luxe .header-device-mobile .header-searchform-box form {
  display: flex;
  gap: 10px;
  align-items: center;
}

body.neda-luxe .header-device-mobile .header-searchform-box .search-input {
  flex: 1;
  min-width: 0;
  width: auto !important;
}

body.neda-luxe .header-device-mobile .nl-mobile-search-submit {
  flex-shrink: 0;
  padding: 10px 18px;
  min-width: auto;
  font-size: 11px;
}

/* -------------------------------------------------------------------------
   Homepage hero — fluid layout between “desktop” and tablet breakpoints
   (base theme uses large fixed left padding that can clip copy on laptops)
   ------------------------------------------------------------------------- */
@media (max-width: 1399px) {
  body.neda-luxe.home .slider-item.style4 .slider-inner .slider-infor,
  body.neda-luxe.home .slider-item.style5 .slider-inner .slider-infor,
  body.neda-luxe.home .slider-item.style6 .slider-inner .slider-infor {
    padding-left: min(46vw, 520px);
  }
}

@media (max-width: 1199px) {
  body.neda-luxe.home .slider-item.style4 .slider-inner .slider-infor,
  body.neda-luxe.home .slider-item.style5 .slider-inner .slider-infor,
  body.neda-luxe.home .slider-item.style6 .slider-inner .slider-infor {
    padding-left: 28px;
    padding-right: 28px;
    float: none;
    text-align: center;
    max-width: 100%;
  }

  body.neda-luxe.home .slider-item.style4 .slider-inner,
  body.neda-luxe.home .slider-item.style5 .slider-inner,
  body.neda-luxe.home .slider-item.style6 .slider-inner {
    background-position: center center;
  }
}

/* -------------------------------------------------------------------------
   Shop & misc
   ------------------------------------------------------------------------- */
body.neda-luxe .shop-top-control .button {
  box-shadow: none;
  background: var(--nl-primary);
}

body.neda-luxe .slick-dots li button:before,
body.neda-luxe .slick-dots li.slick-active button:before {
  color: var(--nl-primary);
  opacity: 0.35;
}

body.neda-luxe .slick-dots li.slick-active button:before {
  opacity: 1;
}

/* -------------------------------------------------------------------------
   Minicart dropdown + auth cards — interior padding (avoid text flush to edges)
   ------------------------------------------------------------------------- */
/* View bag: theme keeps transparent bg while global `.button` forces white text → invisible.
   Both minicart CTAs use the same primary pill as `body.neda-luxe .button`. */
body.neda-luxe .shopcart-description .actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

body.neda-luxe .shopcart-description .actions .button-viewcart,
body.neda-luxe .shopcart-description .actions .button-checkout {
  float: none;
  width: auto;
  min-width: 0;
  flex: 1 1 auto;
  font-family: var(--nl-font-body);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.25;
  border-radius: 999px;
  border: none !important;
  padding: 12px 22px;
  text-align: center;
  background: linear-gradient(
    135deg,
    var(--nl-primary) 0%,
    var(--nl-primary-dark) 100%
  ) !important;
  color: var(--nl-white) !important;
  box-shadow: var(--nl-shadow-glow);
  transition: transform var(--nl-transition), box-shadow var(--nl-transition),
    filter var(--nl-transition);
}

body.neda-luxe .shopcart-description .actions .button-viewcart span,
body.neda-luxe .shopcart-description .actions .button-checkout span {
  color: inherit;
}

body.neda-luxe .shopcart-description .actions .button-viewcart:hover,
body.neda-luxe .shopcart-description .actions .button-viewcart:focus,
body.neda-luxe .shopcart-description .actions .button-checkout:hover,
body.neda-luxe .shopcart-description .actions .button-checkout:focus {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 18px 44px rgba(183, 106, 155, 0.35);
  color: var(--nl-white) !important;
  background: linear-gradient(
    135deg,
    var(--nl-primary) 0%,
    var(--nl-primary-dark) 100%
  ) !important;
}

body.neda-luxe .shopcart-description .content-wrap > p.text.nl-minicart-empty-msg,
body.neda-luxe .shopcart-description .content-wrap > p.nl-minicart-empty-msg {
  padding: 16px 20px;
  margin: 0;
  color: var(--nl-gray);
  box-sizing: border-box;
}

/* Shopping bag page: theme uses transparent .control-cart .button + #333; Neda forces white !important → invisible */
body.neda-luxe .shoppingcart-content .control-cart {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 28px;
}

body.neda-luxe .shoppingcart-content .control-cart .button.btn-cart-to-checkout {
  background: linear-gradient(
    135deg,
    var(--nl-primary) 0%,
    var(--nl-primary-dark) 100%
  ) !important;
  color: var(--nl-white) !important;
  border: none !important;
  box-shadow: var(--nl-shadow-glow);
  margin-left: 0;
  padding: 12px 24px;
}

body.neda-luxe .shoppingcart-content .control-cart .button.btn-cart-to-checkout:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 18px 44px rgba(183, 106, 155, 0.35);
  color: var(--nl-white) !important;
}

body.neda-luxe .shoppingcart-content .control-cart a.button.btn-continue-shopping,
body.neda-luxe .shoppingcart-content .control-cart button.button.btn-continue-shopping {
  background: var(--nl-white) !important;
  border: 2px solid rgba(183, 106, 155, 0.5) !important;
  color: var(--nl-primary-dark) !important;
  box-shadow: none !important;
  margin-left: 0;
  padding: 12px 22px;
}

body.neda-luxe .shoppingcart-content .control-cart a.button.btn-continue-shopping:hover,
body.neda-luxe .shoppingcart-content .control-cart button.button.btn-continue-shopping:hover {
  background: linear-gradient(
    135deg,
    var(--nl-primary) 0%,
    var(--nl-primary-dark) 100%
  ) !important;
  border-color: transparent !important;
  color: var(--nl-white) !important;
  box-shadow: var(--nl-shadow-glow) !important;
}

body.neda-luxe .shoppingcart-content .cart-qty-form .button {
  background: linear-gradient(
    135deg,
    var(--nl-primary) 0%,
    var(--nl-primary-dark) 100%
  ) !important;
  color: var(--nl-white) !important;
  border: none !important;
  box-shadow: var(--nl-shadow-sm);
  padding: 8px 16px;
  font-size: 11px;
}

body.neda-luxe .shoppingcart-content .cart-qty-form .button:hover {
  color: var(--nl-white) !important;
  filter: brightness(1.05);
}

body.neda-luxe .customer_login .register .nl-auth-intro,
body.neda-luxe .customer_login .login .nl-auth-intro {
  margin-top: 0;
  margin-bottom: 16px;
}

body.neda-luxe .customer_login .nl-auth-flash {
  padding: 12px 14px;
  margin: 0 0 16px;
  text-align: left;
  border-radius: var(--nl-radius-sm);
  box-sizing: border-box;
}

body.neda-luxe .customer_login .nl-auth-flash.nl-store-flash--error {
  border: 1px solid rgba(180, 40, 60, 0.25);
}

/* My account: content under each card title shares form horizontal padding */
body.neda-luxe .customer_login > .row > [class*="col-"] > .title-login ~ * {
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;
}

body.neda-luxe .customer_login > .row > [class*="col-"] > .title-login + * {
  padding-top: 20px;
}

body.neda-luxe .customer_login > .row > [class*="col-"] > .title-login ~ *:last-child {
  padding-bottom: 24px;
}

/* —— Premium currency picker (top bar) —— */
body.neda-luxe .nl-currency-wrap {
  display: inline-block;
  position: relative;
  z-index: 120;
}

body.neda-luxe .nl-currency-picker {
  position: relative;
}

body.neda-luxe .nl-currency-picker__trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 16px;
  border: 1px solid rgba(183, 106, 155, 0.35);
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(245, 230, 240, 0.65) 100%
  );
  box-shadow: 0 2px 12px rgba(142, 74, 118, 0.1);
  font-family: var(--nl-font-body);
  cursor: pointer;
  transition: border-color var(--nl-transition), box-shadow var(--nl-transition), transform 0.2s ease;
}

body.neda-luxe .nl-currency-picker__trigger:hover {
  border-color: var(--nl-primary);
  box-shadow: var(--nl-shadow-sm);
}

body.neda-luxe .nl-currency-picker.is-open .nl-currency-picker__trigger {
  border-color: var(--nl-primary);
  box-shadow: 0 8px 28px rgba(183, 106, 155, 0.2);
}

body.neda-luxe .nl-currency-picker__trigger-inner {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}

body.neda-luxe .nl-currency-picker__trigger-code {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nl-primary-dark);
}

body.neda-luxe .nl-currency-picker__trigger-sym {
  font-size: 15px;
  font-weight: 600;
  color: var(--nl-black);
}

body.neda-luxe .nl-currency-picker__chev {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--nl-primary);
  opacity: 0.75;
  transition: transform 0.25s ease;
}

body.neda-luxe .nl-currency-picker.is-open .nl-currency-picker__chev {
  transform: rotate(180deg);
}

body.neda-luxe .nl-currency-picker__panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: min(340px, calc(100vw - 32px));
  padding: 0;
  margin: 0;
  list-style: none;
  background: var(--nl-white);
  border: 1px solid var(--nl-border);
  border-radius: var(--nl-radius);
  box-shadow: var(--nl-shadow-md);
  overflow: hidden;
  display: none;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

body.neda-luxe .nl-currency-picker.is-open .nl-currency-picker__panel {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

body.neda-luxe .nl-currency-picker__panel-head {
  padding: 16px 18px 14px;
  background: linear-gradient(
    180deg,
    rgba(245, 230, 240, 0.5) 0%,
    rgba(255, 255, 255, 0.9) 100%
  );
  border-bottom: 1px solid rgba(233, 217, 227, 0.8);
}

body.neda-luxe .nl-currency-picker__panel-title {
  display: block;
  font-family: var(--nl-font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--nl-black);
  letter-spacing: 0.02em;
}

body.neda-luxe .nl-currency-picker__panel-hint {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--nl-gray);
}

body.neda-luxe .nl-currency-picker__list {
  margin: 0;
  padding: 8px;
  list-style: none;
  max-height: min(360px, 52vh);
  overflow-y: auto;
}

body.neda-luxe .nl-currency-picker__item {
  margin: 0;
  padding: 0;
}

body.neda-luxe .nl-currency-picker__form {
  margin: 0;
}

body.neda-luxe .nl-currency-picker__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 12px 14px;
  margin: 0 0 4px;
  border: 1px solid transparent;
  border-radius: var(--nl-radius-sm);
  background: rgba(255, 255, 255, 0.6);
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.2s ease;
}

body.neda-luxe .nl-currency-picker__option:hover {
  background: rgba(183, 106, 155, 0.08);
  border-color: rgba(183, 106, 155, 0.2);
}

body.neda-luxe .nl-currency-picker__option.is-active {
  background: linear-gradient(
    135deg,
    rgba(183, 106, 155, 0.14) 0%,
    rgba(245, 230, 240, 0.5) 100%
  );
  border-color: rgba(183, 106, 155, 0.35);
}

body.neda-luxe .nl-currency-picker__opt-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

body.neda-luxe .nl-currency-picker__opt-code {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nl-primary-dark);
}

body.neda-luxe .nl-currency-picker__opt-name {
  font-size: 13px;
  color: var(--nl-gray);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.neda-luxe .nl-currency-picker__opt-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
}

body.neda-luxe .nl-currency-picker__opt-amount {
  font-size: 15px;
  font-weight: 700;
  color: var(--nl-black);
  letter-spacing: -0.02em;
}

body.neda-luxe .nl-currency-picker__opt-note {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nl-gray);
  opacity: 0.85;
}

/* Respect motion */
@media (prefers-reduced-motion: reduce) {
  body.neda-luxe * {
    transition: none !important;
    animation: none !important;
  }
}
