/* =============================================================
   HAPPY BABY – Tailwind-first Custom Components
   Replaces: style.css · app.css · responsive.css
   ============================================================= */

/* ---- 1. BASE ------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-size: 14px;
  margin: 0;
  padding: 0;
  font-family: 'Quicksand', sans-serif;
  color: #000000;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: #b45da2;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1.3;
}

p {
  margin: 0;
  line-height: 1.7;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Bootstrap container override */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-fluid {
  width: 100%;
  padding: 0 20px;
}

/* Bootstrap grid — keep working */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}

[class*="col-"] {
  padding: 0 12px;
  width: 100%;
}

.col-1 {
  width: 8.333%;
}

.col-2 {
  width: 16.666%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.333%;
}

.col-5 {
  width: 41.666%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.333%;
}

.col-8 {
  width: 66.666%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.333%;
}

.col-11 {
  width: 91.666%;
}

.col-12 {
  width: 100%;
}

@media (min-width: 576px) {
  .col-sm-1 {
    width: 8.333%;
  }

  .col-sm-2 {
    width: 16.666%;
  }

  .col-sm-3 {
    width: 25%;
  }

  .col-sm-4 {
    width: 33.333%;
  }

  .col-sm-5 {
    width: 41.666%;
  }

  .col-sm-6 {
    width: 50%;
  }

  .col-sm-7 {
    width: 58.333%;
  }

  .col-sm-8 {
    width: 66.666%;
  }

  .col-sm-9 {
    width: 75%;
  }

  .col-sm-10 {
    width: 83.333%;
  }

  .col-sm-11 {
    width: 91.666%;
  }

  .col-sm-12 {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .col-md-1 {
    width: 8.333%;
  }

  .col-md-2 {
    width: 16.666%;
  }

  .col-md-3 {
    width: 25%;
  }

  .col-md-4 {
    width: 33.333%;
  }

  .col-md-5 {
    width: 41.666%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-7 {
    width: 58.333%;
  }

  .col-md-8 {
    width: 66.666%;
  }

  .col-md-9 {
    width: 75%;
  }

  .col-md-10 {
    width: 83.333%;
  }

  .col-md-11 {
    width: 91.666%;
  }

  .col-md-12 {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .col-lg-1 {
    width: 8.333%;
  }

  .col-lg-2 {
    width: 16.666%;
  }

  .col-lg-3 {
    width: 25%;
  }

  .col-lg-4 {
    width: 33.333%;
  }

  .col-lg-5 {
    width: 41.666%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-7 {
    width: 58.333%;
  }

  .col-lg-8 {
    width: 66.666%;
  }

  .col-lg-9 {
    width: 75%;
  }

  .col-lg-10 {
    width: 83.333%;
  }

  .col-lg-11 {
    width: 91.666%;
  }

  .col-lg-12 {
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .col-xl-1 {
    width: 8.333%;
  }

  .col-xl-2 {
    width: 16.666%;
  }

  .col-xl-3 {
    width: 25%;
  }

  .col-xl-4 {
    width: 33.333%;
  }

  .col-xl-5 {
    width: 41.666%;
  }

  .col-xl-6 {
    width: 50%;
  }

  .col-xl-7 {
    width: 58.333%;
  }

  .col-xl-8 {
    width: 66.666%;
  }

  .col-xl-9 {
    width: 75%;
  }

  .col-xl-10 {
    width: 83.333%;
  }

  .col-xl-11 {
    width: 91.666%;
  }

  .col-xl-12 {
    width: 100%;
  }
}

/* Offset */
@media (min-width: 768px) {
  .offset-md-1 {
    margin-left: 8.333%;
  }
}

@media (min-width: 992px) {
  .offset-lg-2 {
    margin-left: 16.666%;
  }
}

/* Bootstrap utility shims */
.d-flex {
  display: flex !important;
}

.d-block {
  display: block !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-none {
  display: none !important;
}

.d-grid {
  display: grid !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-md-between {
  justify-content: flex-start !important;
}

.ms-auto {
  margin-left: auto !important;
}

.me-auto {
  margin-right: auto !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pt-70 {
  padding-top: 70px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-2 {
  margin-top: .5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.text-center {
  text-align: center !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-success {
  color: #16a34a !important;
}

.text-danger {
  color: #dc2626 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.bold {
  font-weight: 700;
}

.medium {
  font-weight: 500;
}

.semi-bold {
  font-weight: 600;
}

.w-auto {
  width: auto !important;
}

.full-width {
  width: 100% !important;
}

.p-0 {
  padding: 0 !important;
}

.m-0 {
  margin: 0 !important;
}

.position-relative {
  position: relative !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.z-index-1 {
  z-index: 1 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: 1px solid #e5e7eb !important;
}

.bg-white {
  background-color: #ffffff !important;
}

.none {
  display: none;
}

.flex {
  display: flex;
}

@media (min-width: 768px) {
  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .m-d-none {
    display: block;
  }
}

@media (max-width: 767px) {
  .m-d-none {
    display: none !important;
  }

  .mobile-pt-0 {
    padding-top: 0 !important;
  }
}

@media (min-width: 992px) {
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
}

/* ---- 2. SCROLLTOP ------------------------------------------ */
#scrolltop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #b45da2;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(180, 93, 162, .40);
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.22s ease,
    box-shadow 0.25s ease;
  will-change: transform;
}

#scrolltop:hover {
  background: #9a4d8b;
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 22px rgba(180, 93, 162, .50);
}

#scrolltop:active {
  transform: scale(0.93);
  transition-duration: 0.1s;
}

@media (max-width: 991px) {
  #scrolltop {
    bottom: 75px !important;
    right: 16px;
  }

  .wa-fab {
    bottom: 75px !important;
    left: 16px;
  }
}

/* ---- 2b. WHATSAPP FAB -------------------------------------- */
.wa-fab {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(37, 211, 102, .45);
  transition: transform .25s ease, box-shadow .25s ease;
  text-decoration: none;
}

.wa-fab:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 10px 30px rgba(37, 211, 102, .55);
  color: #fff;
  text-decoration: none;
}

.wa-fab-icon {
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

/* pulse ring */
.wa-fab-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: wa-pulse 2s ease-out infinite;
  pointer-events: none;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: .7;
  }

  70% {
    transform: scale(1.6);
    opacity: 0;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* ---- 3. TOPBAR ---------------------------------------------- */
.topbar {
  background: #1a1a2e;
  color: #d1d5db;
  font-size: inherit;
  font-weight: 500;
  padding: 8px 0;
}

.topbar a {
  color: #d1d5db;
}

.topbar a:hover {
  color: #b45da2;
}

.topbar .topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar .topbar-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar .topbar-item-list {
  display: flex;
  align-items: center;
}

.topbar .topbar-list-content p {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

.topbar .topbar-item-action {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Social icons in topbar */
.social-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-list li a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .08);
  color: #d1d5db;
  font-size: inherit;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.2s ease,
    box-shadow 0.22s ease,
    color 0.15s ease;
  will-change: transform;
}

.social-list li a:hover {
  background: #b45da2;
  color: #fff;
  transform: translateY(-3px) scale(1.15);
  box-shadow: 0 5px 14px rgba(180, 93, 162, .38);
}

.social-list li svg {
  pointer-events: none;
}

/* ---- 4. LANGUAGE DROPDOWN ---------------------------------- */
.language-option {
  position: relative;
}

.language-option .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 8px;
  padding: 4px 10px;
  color: #d1d5db;
  font-size: inherit;
  font-family: inherit;
  cursor: pointer;
  transition: background .2s;
}

.language-option .dropdown-toggle:hover {
  background: rgba(255, 255, 255, .15);
}

.language-option .dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 140px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
  padding: 6px;
  z-index: 9999;
  display: none;
}

.language-option .dropdown-menu.show {
  display: block;
}

.language-option .dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: inherit;
  color: #000000;
  cursor: pointer;
  transition: background .15s;
}

.language-option .dropdown-item:hover,
.language-option .dropdown-item.active {
  background: #f7e8f5;
  color: #b45da2;
}

.language-option .dropdown-item img {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
}

/* ---- 5. HEADER / NAVBAR ------------------------------------ */
header {
  position: relative;
  z-index: 200;
}

.fixed-top {
  position: relative;
  z-index: 1000;
}

@media (min-width: 992px) {
  .fixed-top.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    animation: navSlideDown .25s ease;
  }

  @keyframes navSlideDown {
    from {
      transform: translateY(-100%);
      opacity: 0;
    }

    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
}

.navbar-area {
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, .07);
  transition: box-shadow .3s;
}

.navbar-area.is-sticky {
  box-shadow: 0 4px 30px rgba(0, 0, 0, .12);
}

/* Top row of navbar (logo + search + icons) */
.navbar-top {
  padding: 12px 0;
  border-bottom: 1px solid #f3f4f6;
}

.navbar-top .container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.navbar-brand img {
  height: 52px;
  width: auto;
  flex-shrink: 0;
}

/* Search bar centered — takes all remaining space between logo and icons */
.navbar-top-action {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-right-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.navbar-right-item:first-child {
  flex: 1;
  display: flex;
  justify-content: center;
}

.navbar-right-item {
  display: flex;
  align-items: center;
}

/* Search bar */
.navbar-search form {
  display: flex;
  align-items: center;
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 50px;
  overflow: hidden;
  transition: border-color .2s;
}

.navbar-search form:focus-within {
  border-color: #b45da2;
}

.navbar-search select {
  border: none;
  background: transparent;
  padding: 10px 12px;
  font-size: inherit;
  font-family: inherit;
  color: #000000;
  outline: none;
  max-width: 150px;
  cursor: pointer;
  border-right: 1px solid #e5e7eb;
}

.navbar-search-input {
  flex: 1;
}

.navbar-search-input .form-group {
  display: flex;
  align-items: center;
  margin: 0;
}

.navbar-search-input input {
  border: none;
  background: transparent;
  padding: 10px 16px;
  font-size: inherit;
  font-family: inherit;
  color: #000000;
  outline: none;
  min-width: 380px;
}

.navbar-search-input .btn {
  background: linear-gradient(135deg, #c970bb, #b45da2);
  color: #fff;
  border: none;
  padding: 10px 18px;
  cursor: pointer;
  font-size: 15px;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.22s ease,
    box-shadow 0.22s ease;
  will-change: transform;
}

.navbar-search-input .btn:hover {
  background: linear-gradient(135deg, #a8508f, #9a4d8b);
  box-shadow: 0 4px 14px rgba(180, 93, 162, .38);
  transform: scale(1.04);
}

/* Nav action icons */
.navbar-right-action {
  display: flex;
  align-items: center;
  gap: 6px;
}

.navbar-right-action-item {
  position: relative;
}

.navbar-right-action-item a,
.navbar-right-action-item button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  color: #000000;
  font-size: 20px;
  transition: all .2s;
  position: relative;
  cursor: pointer;
}

.navbar-right-action-item a {
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.2s ease,
    color 0.15s ease !important;
}

.navbar-right-action-item a:hover {
  background: #f7e8f5;
  color: #b45da2;
  transform: translateY(-2px) scale(1.08);
  border-color: #d4a0cb;
}

.navbar-tooltip-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #b45da2;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  line-height: 1;
  padding: 0 2px;
}

/* Main nav row (category + links + auth btn) */
.navbar-main {
  padding: 0;
  background: #fff;
}

.navbar-main .container {
  display: flex;
  align-items: stretch;
  min-height: 50px;
}

.navbar-main .d-flex.full-width {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 0;
}

/* Category button + megamenu */
.navbar-category {
  position: relative;
  flex-shrink: 0;
}

.navbar-category button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: linear-gradient(135deg, #b45da2, #9a4d8b);
  color: #fff;
  font-size: inherit;
  font-weight: 600;
  font-family: inherit;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, box-shadow .2s;
  height: 100%;
  border-radius: 0;
}

.navbar-category button:hover {
  background: linear-gradient(135deg, #b45da2, #db2777);
  box-shadow: 0 4px 16px rgba(180, 93, 162, .30);
}

.navbar-category button>i:first-child {
  font-size: 18px;
}

/* Chevron arrow rotates when open */
.cat-arrow {
  font-size: 16px;
  margin-left: 2px;
  transition: transform .25s ease;
}

.navbar-category button[aria-expanded="true"] .cat-arrow {
  transform: rotate(180deg);
}

/* Dropdown panel */
.navbar-category-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 250px;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .12);
  z-index: 9999;
  display: none;
  overflow: hidden;

  /* Smooth open animation */
  transform-origin: top left;
  animation: catDropIn .2s ease forwards;
}

@keyframes catDropIn {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.navbar-category-dropdown.dropdown-menu.show {
  display: block;
}

/* Scrollable list — max height so it doesn't overflow screen */
.navbar-category-dropdown .hb-nav.hb-nav-vertical {
  max-height: 70vh;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #d4a0cb #f7e8f5;
}

.navbar-category-dropdown .hb-nav.hb-nav-vertical::-webkit-scrollbar {
  width: 4px;
}

.navbar-category-dropdown .hb-nav.hb-nav-vertical::-webkit-scrollbar-track {
  background: #f7e8f5;
}

.navbar-category-dropdown .hb-nav.hb-nav-vertical::-webkit-scrollbar-thumb {
  background: #d4a0cb;
  border-radius: 4px;
}

.navbar-category-dropdown ul {
  padding: 8px 0;
}

.hb-nav.hb-nav-vertical>li {
  position: relative;
}

.hb-nav.hb-nav-vertical>li>a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  font-size: inherit;
  font-weight: 600;
  color: #000000;
  transition: background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    padding-left 0.22s ease;
  border-left: 3px solid transparent;
}

.hb-nav.hb-nav-vertical>li>a:hover {
  background: #f7e8f5;
  color: #b45da2;
  border-left-color: #b45da2;
  padding-left: 22px;
}

/* Megamenu dropdown */
.hb-dropdown-menu {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
  z-index: 9991;
  padding: 20px;
  min-height: 100px;
}

.hb-event-hover:hover .hb-dropdown-menu {
  display: block;
}

.hb-sub-menu {
  padding: 0;
}

.hb-sub-menu li a {
  display: block;
  padding: 8px 0;
  font-size: inherit;
  color: #000000;
  font-weight: 600;
}

.hb-sub-menu li a:hover {
  color: #b45da2;
}

.sub-sub-menu {
  padding-left: 12px;
  margin-top: 4px;
}

.sub-sub-menu li a {
  font-size: 12.5px;
  font-weight: 500;
  color: #000000;
  padding: 5px 0;
}

.sub-sub-menu li a:hover {
  color: #b45da2;
}

/* Main navigation links */
.navbar-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 1;
  padding: 0 16px;
  list-style: none;
  margin: 0;
}

.navbar-nav.ms-auto {
  margin-left: 0;
}

.nav-item .nav-link {
  display: block;
  padding: 14px 14px;
  font-size: inherit;
  font-weight: 600;
  color: #000000;
  white-space: nowrap;
  position: relative;
  transition: color .2s;
}

.nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 3px;
  background: #b45da2;
  border-radius: 2px 2px 0 0;
  transition: left .2s, right .2s;
}

.nav-item .nav-link:hover,
.nav-item .nav-link.active {
  color: #b45da2;
}

.nav-item .nav-link.active::after,
.nav-item .nav-link:hover::after {
  left: 12px;
  right: 12px;
}

.nav-item.endirim .nav-link {
  color: #b45da2;
}

/* "Yeni" bubble badge on nav link */
.nav-link-badge {
  position: relative;
}

.nav-badge-bubble {
  position: absolute;
  top: 4px;
  right: -2px;
  background: #f59e0b;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  padding: 3px 6px;
  border-radius: 50px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(245, 158, 11, .4);
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

/* Auth button in nav */
.navbar-auth-btn .btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #c970bb 0%, #b45da2 55%, #9a4d8b 100%);
  color: #fff;
  border-radius: 50px;
  font-size: inherit;
  font-weight: 600;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s ease,
    background 0.22s ease;
  box-shadow: 0 4px 16px rgba(180, 93, 162, .32);
  white-space: nowrap;
  will-change: transform;
}

.navbar-auth-btn .btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #bf60b0 0%, #a8508f 55%, #8d3f7e 100%);
  box-shadow: 0 8px 24px rgba(180, 93, 162, .48);
}

.navbar-auth-btn .btn:active {
  transform: translateY(0) scale(0.97);
  transition-duration: 0.1s;
}

.navbar-auth-btn .btn i:last-child {
  display: none;
}

/* ---- 6. MOBILE NAV ----------------------------------------- */
.mobile-nav {
  display: none;
}

@media (max-width: 991px) {
  .main-nav {
    display: none;
  }

  .mobile-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 16px;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  /* Center logo absolutely so left/right buttons don't affect it */
  .mobile-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: auto;
  }

  .mobile-brand img {
    height: 55px;
    width: auto;
  }

  .mobile-navbar-option {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .mobile-lang-select {
    appearance: none;
    -webkit-appearance: none;
    background: #f9fafb;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
    color: #000000;
    cursor: pointer;
    outline: none;
    height: 34px;
  }

  .mobile-lang-select:focus {
    border-color: #d4a0cb;
  }

  .mobile-nav .navbar-right-action-item a,
  .mobile-nav .navbar-right-action-item button {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .mobile-nav-category button {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #b45da2;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: none;
    cursor: pointer;
  }

  .mobile-nav-category .dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 260px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
    padding: 10px;
    z-index: 9999;
    display: none;
  }

  .mobile-nav-category .dropdown-menu.show {
    display: block;
  }

  .navbar-category-dropdown ul li a {
    font-size: inherit;
    padding: 10px 12px;
    border-radius: 8px;
    display: block;
    font-weight: 600;
    color: #000000;
  }

  .topbar {
    display: none;
  }

  /* push content up so bottom nav doesn't overlap */
  body {
    padding-bottom: 72px;
  }
}

/* ---- 6b. MOBILE BOTTOM NAV --------------------------------- */
.mobile-bottom-nav {
  display: none;
}

@media (max-width: 991px) {
  .mobile-bottom-nav {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: #fff;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, .10);
    z-index: 1100;
    padding: 0 4px 6px;
    overflow: visible;
  }

  .mbn-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 3px;
    flex: 1;
    background: none;
    border: none;
    cursor: pointer;
    color: #000000;
    font-size: 10px;
    font-weight: 600;
    padding: 0 0 2px;
    text-decoration: none;
    transition: color .15s;
    position: relative;
  }

  .mbn-item i {
    font-size: 28px;
    line-height: 1;
    color: #000000;
  }

  .mbn-label {
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
  }

  .mbn-item:active,
  .mbn-item.active {
    color: #b45da2;
  }

  .mbn-icon-wrap {
    position: relative;
    display: inline-flex;
  }

  .mbn-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: #b45da2;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    line-height: 1;
  }

  /* Center shop button — raised above bar */
  .mbn-shop {
    flex: 1.2;
    color: #b45da2;
    gap: 3px;
    justify-content: flex-end;
  }

  .mbn-shop-circle {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #b45da2, #9a4d8b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(180, 93, 162, .45);
    border: 3px solid #fff;
    flex-shrink: 0;
  }

  .mbn-shop-circle i {
    font-size: 22px;
    color: #fff;
  }

  .mbn-shop .mbn-label {
    color: #b45da2;
    font-size: 10px;
  }
}

/* ---- 6c. MOBILE OFFCANVAS ---------------------------------- */
.mob-oc-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  z-index: 1200;
  backdrop-filter: blur(2px);
}

.mob-oc-overlay.active {
  display: block;
}

.mob-offcanvas {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: #fff;
  z-index: 1300;
  transform: translateX(-100%);
  transition: transform .32s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  border-radius: 0 20px 20px 0;
  overflow: hidden;
  box-shadow: 4px 0 30px rgba(0, 0, 0, .15);
}

.mob-offcanvas.active {
  transform: translateX(0);
}

.mob-oc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #f3f4f6;
  flex-shrink: 0;
}

.mob-oc-header div {
  font-size: 15px;
  font-weight: 700;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .6px;
}

.mob-oc-header div i {
  font-size: 20px;
  color: #b45da2;
}

.mob-oc-close {
  width: 34px;
  height: 34px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  color: #000000;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.18s ease,
    color 0.15s ease,
    border-color 0.15s ease;
  will-change: transform;
}

.mob-oc-close:hover {
  background: #f7e8f5;
  color: #b45da2;
  border-color: #d4a0cb;
  transform: rotate(90deg) scale(1.1);
}

.mob-oc-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0;
  -webkit-overflow-scrolling: touch;
}

/* Menu nav links */
.mob-oc-nav {
  display: flex;
  flex-direction: column;
}

.mob-oc-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  font-size: 14.5px;
  font-weight: 600;
  color: #000000;
  text-decoration: none;
  border-bottom: 1px solid #f9fafb;
  transition: all .15s;
}

.mob-oc-nav a i {
  font-size: 20px;
  color: #9ca3af;
  transition: color .15s;
}

.mob-oc-nav a:hover {
  background: #faf0f8;
  color: #b45da2;
}

.mob-oc-nav a:hover i {
  color: #b45da2;
}

.mob-oc-footer {
  padding: 16px 20px;
  border-top: 1px solid #f3f4f6;
  margin-top: auto;
}

.mob-oc-footer .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Category list */
.mob-cat-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mob-cat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f3f4f6;
}

.mob-cat-row a {
  flex: 1;
  padding: 12px 20px;
  font-size: inherit;
  font-weight: 500;
  color: #000000;
  text-decoration: none;
  transition: color .15s;
}

.mob-cat-row a:hover {
  color: #b45da2;
}

.mob-cat-toggle {
  width: 42px;
  height: 42px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-size: 18px;
  transition: transform .25s, color .15s;
  flex-shrink: 0;
}

.mob-cat-toggle.open {
  transform: rotate(180deg);
  color: #b45da2;
}

.mob-sub-cat {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fafafa;
}

.mob-sub-cat.show {
  display: block;
}

.mob-sub-cat li a {
  display: block;
  padding: 10px 20px 10px 36px;
  font-size: inherit;
  color: #000000;
  text-decoration: none;
  border-bottom: 1px solid #f3f4f6;
  transition: color .15s;
}

.mob-sub-cat li a:hover {
  color: #b45da2;
  background: #faf0f8;
}

/* Hero slider custom animations */
@keyframes slideInFadeIn {
  0% {
    opacity: 0;
    transform: translateX(40px) scale(0.98);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes slideOutFadeOut {
  0% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateX(-40px) scale(0.98);
  }
}

.owl-carousel .slideInFadeIn {
  animation-name: slideInFadeIn;
  animation-duration: 900ms;
}

.owl-carousel .slideOutFadeOut {
  animation-name: slideOutFadeOut;
  animation-duration: 900ms;
}

/* Owl animateIn/animateOut — fade carousel needs absolute positioning on inactive items */
.owl-carousel .owl-item.active {
  position: relative;
}

.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.owl-carousel .fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* ---- 7. HERO SLIDER ---------------------------------------- */
.header-banner {
  background: linear-gradient(135deg, #f7e8f5 0%, #fdf2f8 100%);
  overflow: hidden;
}

.header-banner .container-fluid {
  padding: 0 80px;
  max-width: 1280px;
  margin: 0 auto;
}

.header-carousel .item {
  padding: 70px 0 36px;
}

.header-carousel .owl-nav {
  display: none !important;
}

.header-content-title>div {
  font-size: clamp(22px, 3.2vw, 40px);
  font-weight: 800;
  color: #000000;
  line-height: 1.25;
  margin-bottom: 14px;
}

.header-content-title>div span {
  display: block;
  color: #b45da2;
  font-size: 1em;
}

.header-content-title p {
  font-size: inherit;
  color: #000000;
  max-width: 420px;
  margin-bottom: 24px;
  line-height: 1.65;
}

.header-content-image {
  text-align: center;
}

.header-content-image img {
  max-height: 520px;
  width: auto;
  object-fit: contain;
  filter: none;
  border-radius: 20px;
}

.header-max-width {
  max-width: 560px;
}

@media (max-width: 768px) {
  .header-banner {
    overflow: hidden;
  }

  .header-banner .container-fluid {
    padding: 0;
  }

  /* Each slide: use product image as full background */
  .header-carousel .item {
    padding: 0;
    position: relative;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  /* Background image pulled from the img tag via JS */
  .header-carousel .item::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--slide-bg);
    background-size: cover;
    background-position: center top;
    z-index: 0;
  }

  /* Gradient overlay */
  .header-carousel .item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(255, 241, 242, .92) 0%,
        rgba(253, 242, 248, .80) 40%,
        rgba(253, 242, 248, .40) 100%);
    z-index: 1;
  }

  /* Hide the image column on mobile */
  .header-carousel .header-content-image {
    display: none;
  }

  /* Content centered over background */
  .header-carousel .row {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0;
    justify-content: center;
    padding: 28px 20px 24px;
  }

  .header-carousel .col-sm-12.col-lg-7 {
    width: 100%;
    padding: 0;
    text-align: center;
  }

  .header-max-width {
    max-width: 100%;
  }

  .header-content-title>div {
    font-size: 22px !important;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .header-content-title>div span {
    font-size: 20px !important;
  }

  .header-content-title p {
    max-width: 100%;
    font-size: 14px !important;
    line-height: 1.6;
    margin-bottom: 16px;
  }
}

/* Owl carousel dots override */
.header-carousel .owl-dots {
  margin-top: 0 !important;
}

.owl-dots {
  margin-top: 20px !important;
  padding-bottom: 24px;
  text-align: center;
}

.owl-dot span {
  width: 8px !important;
  height: 8px !important;
  background: #d4a0cb !important;
  border-radius: 50% !important;
  margin: 0 4px !important;
  transition: all .2s !important;
}

.owl-dot.active span {
  background: #b45da2 !important;
  width: 24px !important;
  border-radius: 4px !important;
}

/* ---- Owl Carousel core resets (prevent tailwind.css base overrides) ---- */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  -moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* Owl nav — side arrows, vertically centered on the slider */
.owl-carousel {
  position: relative;
}

.owl-nav {
  position: absolute !important;
  top: 50% !important;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex !important;
  justify-content: space-between;
  pointer-events: none;
  margin: 0 !important;
  width: 100%;
  padding: 0 8px;
  box-sizing: border-box;
}

.owl-nav button {
  pointer-events: all;
  background: #fff !important;
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .14) !important;
  color: #000000 !important;
  font-size: 22px !important;
  line-height: 1 !important;
  transition: background .2s, color .2s, box-shadow .2s !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0;
  margin: 0 !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, visibility .2s, background .2s, color .2s !important;
}

.owl-carousel:hover .owl-nav button {
  opacity: 1;
  visibility: visible;
}

.owl-nav button:hover {
  background: linear-gradient(135deg, #c970bb, #b45da2) !important;
  color: #fff !important;
  box-shadow: 0 6px 22px rgba(180, 93, 162, .38) !important;
  transform: scale(1.08) !important;
}

.owl-prev {
  transform: none;
}

.owl-next {
  transform: none;
}

/* hide nav on mobile */
@media (max-width: 767px) {
  .owl-nav {
    display: none !important;
  }
}

/* ---- 8. SECTION TITLES ------------------------------------- */
.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title small {
  display: inline-block;
  background: #f7e8f5;
  color: #b45da2;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title div {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: #000000;
}

.section-title-left {
  text-align: left;
}

/* Sub section title */
.sub-section-title h3 {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  padding-bottom: 12px;
  border-bottom: 2px solid #b45da2;
  display: inline-block;
  margin-bottom: 20px;
}

.sub-section-title.discount h3 {
  margin-bottom: 0;
}

/* ---- 9. PRODUCT CARD --------------------------------------- */
.product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, .06);
  transition: box-shadow .3s, transform .3s;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: 0 10px 40px rgba(180, 93, 162, .15);
  transform: translateY(-4px);
}

.product-card-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: #fafafa;
}

.product-card-thumb a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.product-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  transition: opacity .3s, transform .4s;
}

.product-main-thumb {
  position: absolute;
  inset: 0;
  object-fit: contain;
}

.product-hover-thumb {
  position: absolute;
  inset: 0;
  object-fit: contain;
  opacity: 0;
}

.product-card:hover .product-main-thumb {
  opacity: 0;
}

.product-card:hover .product-hover-thumb {
  opacity: 1;
}

.not-stock {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  background: #ef4444;
  padding: 4px 10px;
  border-radius: 0 8px 0 0;
  font-size: 11px;
  font-weight: 700;
  z-index: 2;
}

.discountPercent {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #b45da2;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 50px;
  z-index: 2;
}

.product-card-content {
  padding: 14px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-card-content .h3 {
  font-size: 15px;
  font-weight: 600;
  color: #000000;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Color swatches */
.product-color-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.product-color-list:empty {
  display: none;
}

.product-color-list li {
  list-style: none;
}

.custom-color-radio {
  cursor: pointer;
}

.custom-color-label {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e5e7eb;
  transition: border-color .2s;
  display: block;
}

.custom-color-label:hover {
  border-color: #b45da2;
}

/* Product price */
.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.product-price del {
  font-size: inherit;
  color: #000000;
  font-weight: 500;
}

.current-price {
  font-size: 17px;
  font-weight: 800;
  color: #b45da2;
}

.product-price span.current-price {
  font-size: 17px;
  font-weight: 800;
  color: #b45da2;
}

/* Review stars */
.review-star ul {
  display: flex;
  gap: 2px;
}

.review-star li {
  color: #fbbf24;
  font-size: inherit;
}

/* Product card buttons area */
.btn-area {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

/* Wishlist / quick view buttons overlay */
.product-card-button {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all .3s;
}

.product-card-button ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-card-button ul li {
  list-style: none;
}

.wishlist-redirect a,
.quickview-redirect a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .10);
  color: #374151;
  font-size: 16px;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.2s ease,
    box-shadow 0.22s ease,
    color 0.15s ease;
  will-change: transform;
}

.wishlist-redirect a:hover,
.quickview-redirect a:hover {
  background: #b45da2;
  color: #fff;
  transform: scale(1.18);
  box-shadow: 0 6px 18px rgba(180, 93, 162, .40);
}

.wishlist-redirect a.product-has-wishlist {
  background: #b45da2;
  color: #fff;
}

/* Tooltip */
.product-tooltip {
  position: absolute;
  right: 44px;
  top: 50%;
  transform: translateY(-50%);
  background: #000000;
  color: #fff;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}

.wishlist-redirect:hover .product-tooltip,
.quickview-redirect:hover .product-tooltip {
  opacity: 1;
}

/* ---- NEW PRODUCT SLIDER ITEM SPACING ----------------------- */
.new-product-carousel .item {
  padding: 0 8px;
}

/* ---- NEW PRODUCT SLIDER ITEM SPACING ----------------------- */
.new-product-carousel .item {
  padding: 0 8px;
}

/* ---- 10. BUTTONS ------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 50px;
  font-size: inherit;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s ease,
    background 0.22s ease,
    color 0.15s ease,
    border-color 0.15s ease;
  border: none;
  white-space: nowrap;
  text-decoration: none;
  will-change: transform;
  position: relative;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:active {
  transform: translateY(0) scale(0.97);
  transition-duration: 0.1s;
}

/* Primary gradient */
.btn-pink,
.btn-red {
  background: linear-gradient(135deg, #c970bb 0%, #b45da2 55%, #9a4d8b 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(180, 93, 162, .32);
}

.btn-pink:hover,
.btn-red:hover {
  background: linear-gradient(135deg, #bf60b0 0%, #a8508f 55%, #8d3f7e 100%);
  box-shadow: 0 8px 28px rgba(180, 93, 162, .50);
  color: #fff;
}

/* Black */
.btn-black {
  background: #1f2937;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .18);
}

.btn-black:hover {
  background: #111827;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .28);
  color: #fff;
}

/* Outlined/detail */
.btn-detail {
  background: #fff;
  color: #374151;
  border: 1.5px solid #e5e7eb;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .05);
}

.btn-detail:hover {
  border-color: #b45da2;
  color: #b45da2;
  box-shadow: 0 6px 18px rgba(180, 93, 162, .16);
}

/* WhatsApp */
.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, .28);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #20c05a, #0e7a6d);
  box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
  color: #fff;
}

.btn-whatsapp svg {
  flex-shrink: 0;
}

/* Icon-swap btn */
.btn-icon i:first-child {
  transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-icon i:last-child {
  position: absolute;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-icon:hover i:first-child {
  opacity: 0;
  transform: translateY(-6px);
}

.btn-icon:hover i:last-child {
  opacity: 1;
  transform: translateY(0);
}

/* Shadow helper */
.btn-shadow {
  box-shadow: 0 6px 22px rgba(180, 93, 162, .38) !important;
}

/* Success / Green */
.btn-success {
  background: linear-gradient(135deg, #4ade80, #16a34a);
  color: #fff;
  box-shadow: 0 4px 14px rgba(22, 163, 74, .30);
}

.btn-success:hover {
  background: linear-gradient(135deg, #22c55e, #15803d);
  box-shadow: 0 8px 22px rgba(22, 163, 74, .45);
  color: #fff;
}

/* Danger */
.btn-danger {
  background: linear-gradient(135deg, #f87171, #ef4444);
  color: #fff;
  box-shadow: 0 4px 14px rgba(239, 68, 68, .30);
}

.btn-danger:hover {
  background: linear-gradient(135deg, #f05252, #dc2626);
  box-shadow: 0 8px 22px rgba(239, 68, 68, .45);
  color: #fff;
}

/* ---- 11. FORM ELEMENTS ------------------------------------- */
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: inherit;
  font-family: inherit;
  color: #000000;
  background: #fff;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.form-control:focus {
  border-color: #b45da2;
  box-shadow: 0 0 0 4px rgba(180, 93, 162, .08);
}

.form-control::placeholder {
  color: #000000;
}

select.form-control {
  cursor: pointer;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-group {
  margin-bottom: 0;
  position: relative;
}

.input-group {
  display: flex;
  align-items: stretch;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s;
}

.input-group:focus-within {
  border-color: #b45da2;
}

.input-group .form-control {
  border: none;
  border-radius: 0;
  flex: 1;
}

.input-group .form-control:focus {
  box-shadow: none;
}

.input-group-prepend {
  display: flex;
  align-items: center;
  background: #fff;
}

.input-group-text {
  padding: 0 14px;
  color: #000000;
  font-size: 16px;
  border-right: 2px solid #e5e7eb;
  display: flex;
  align-items: center;
}

.input-group.success {
  border-color: #16a34a;
}

.input-group.error {
  border-color: #ef4444;
}

.input-group .btn {
  border-radius: 0;
  padding: 0 16px;
}

.default-box-shadow {
  box-shadow: 0 2px 15px rgba(0, 0, 0, .06);
}

/* Custom radio / checkbox */
.custom-control {
  display: flex;
  align-items: center;
  gap: 8px;
}

.custom-control-input {
  width: 16px;
  height: 16px;
  accent-color: #b45da2;
  cursor: pointer;
}

.custom-control-label {
  cursor: pointer;
  font-size: inherit;
  color: #000000;
}

/* ---- 12. HEADER PAGE (breadcrumb banner) ------------------- */
.header-page {
  background: linear-gradient(135deg, #f7e8f5 0%, #fdf2f8 100%);
  padding: 36px 0;
  border-bottom: 1px solid #edd5e9;
}

.header-padding {
  padding: 0;
}

.header-page-title h1 {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
  color: #000000;
  margin-bottom: 10px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  padding: 0;
  list-style: none;
  margin: 0;
}

.breadcrumb-item {
  font-size: inherit;
  color: #000000;
  font-weight: 500;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: '/';
  padding: 0 8px;
  color: #d1d5db;
}

.breadcrumb-item a {
  color: #000000;
}

.breadcrumb-item a:hover {
  color: #b45da2;
}

.breadcrumb-item.active {
  color: #b45da2;
  font-weight: 600;
}

/* ---- 13. SIDEBAR (product filter) -------------------------- */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  z-index: 900;
}

.sidebar-overlay.active {
  display: block;
}

.btn-toggle-sidebar {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #b45da2e3;
  color: #fff;
  padding: 12px 12px 12px 10px;
  border-radius: 0 10px 10px 0;
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  cursor: pointer;
  border: 2px solid #b45da2;
  font-family: inherit;
  box-shadow: 0 2px 8px rgba(180, 93, 162, .10);
  transition: background .2s, color .2s, box-shadow .2s;
  position: fixed;
  left: 0;
  top: 50%;
  z-index: 9;
  border-left: 0;
}

.btn-toggle-sidebar i {
  font-size: 18px;
  color: #ffffff;
}

.btn-toggle-sidebar:hover {
  background: #b45da2;
  color: #fff;
  box-shadow: 0 4px 14px rgba(180, 93, 162, .22);
}

.btn-toggle-sidebar:hover i {
  color: #fff;
}

#promoForm .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 12px;
  font-size: inherit;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  background: linear-gradient(135deg, #c970bb 0%, #b45da2 55%, #9a4d8b 100%);
  color: #fff;
  box-shadow: 0 3px 10px rgba(180, 93, 162, .28);
  transition: background 0.22s ease, box-shadow 0.22s ease, opacity 0.2s ease;
  border: none;
  white-space: nowrap;
  text-decoration: none;
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
}

#promoForm .btn:hover {
  background: linear-gradient(135deg, #bf60b0 0%, #a8508f 55%, #8d3f7e 100%);
  box-shadow: 0 6px 18px rgba(180, 93, 162, .44);
  opacity: .92;
}

#promoForm .btn.btn-success {
  background: linear-gradient(135deg, #4ade80, #16a34a);
  box-shadow: 0 4px 14px rgba(22, 163, 74, .30);
}

#promoForm .btn.btn-success:hover {
  background: linear-gradient(135deg, #22c55e, #15803d);
  box-shadow: 0 8px 22px rgba(22, 163, 74, .45);
  opacity: 1;
}

#promoForm .btn.btn-danger {
  background: linear-gradient(135deg, #f87171, #ef4444);
  box-shadow: 0 4px 14px rgba(239, 68, 68, .30);
}

#promoForm .btn.btn-danger:hover {
  background: linear-gradient(135deg, #f05252, #dc2626);
  box-shadow: 0 8px 22px rgba(239, 68, 68, .45);
  opacity: 1;
}

.promo-applied-msg {
  position: absolute;
}

@media (max-width: 767px) {
  .btn-toggle-sidebar {
    display: flex;
  }

  .sidebar-content-box {
    height: 100vh;
    overflow-y: auto;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: #fff;
    z-index: 1300;
    transform: translateX(-100%);
    transition: transform .32s cubic-bezier(.4, 0, .2, 1);
    border-radius: 0 20px 20px 0;
    box-shadow: 4px 0 30px rgba(0, 0, 0, .15);
  }

  .sidebar-content-box.active {
    transform: translateX(0);
  }
}

.close-sidebar-head {
  margin-bottom: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #f3f4f6;
  flex-shrink: 0;
  display: none;
}

@media (max-width: 767px) {
  .close-sidebar-head {
    display: flex;
  }
}

.close-sidebar-head span {
  font-size: 15px;
  font-weight: 700;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .6px;
}

.btn-close-sidebar:hover {
  background: #f7e8f5;
  color: #b45da2;
  border-color: #d4a0cb;
  transform: rotate(90deg) scale(1.1);
}

.btn-close-sidebar {
  width: 34px;
  height: 34px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  color: #000000;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.18s ease,
    color 0.15s ease,
    border-color 0.15s ease;
  will-change: transform;
  padding: 4px;
  line-height: 1;
}

/* Sidebar card */
.sidebar-item {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, .04);
}

/* Section title */
.sidebar-title {
  padding: 18px 16px;
  background: linear-gradient(135deg, #b45da2, #9a4d8b);
  border-bottom: none;
}

.sidebar-title div {
  font-size: inherit;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .6px;
  margin: 0;
}

/* Category list */
.sidebar-list {
  padding: 4px 0;
  margin: 0;
  list-style: none;
  width: 100%;
}

.sidebar-list>li {
  padding: 0;
  border-bottom: 1px solid #f3f4f6;
  width: 100%;
}

.sidebar-list>li:last-child {
  border-bottom: none;
}

.sidebar-list>li>a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 12px;
  font-size: inherit;
  color: #000000;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: background 0.18s ease, color 0.15s ease, border-color 0.15s ease, padding-left 0.2s ease;
  text-decoration: none;
  width: 100%;
}

.sidebar-list>li>a:hover {}

.sidebar-list>li>a.bold {
  color: #b45da2;
  font-weight: 700;
  background: #f7e8f5;
  border-left-color: #b45da2;
}

.sidebar-list>li>a i {
  font-size: 10px;
  color: #000000;
  cursor: pointer;
  transition: transform .2s, color .15s;
  min-width: 12px;
}

.sidebar-list>li>a i.toggle-active {
  color: #b45da2;
}

/* Children (sub-categories) */
.children {
  margin: 0 0 4px 28px;
  padding: 2px 0 2px 10px;
  border-left: 2px solid #edd5e9;
  list-style: none;
}

.children li {
  padding: 0;
  border-bottom: none !important;
  list-style: none;
}

.children li a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  font-size: inherit;
  color: #000000;
  font-weight: 400;
  border-radius: 8px;
  transition: all .15s;
  text-decoration: none;
}

.children li a::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d1d5db;
  flex-shrink: 0;
  transition: background .15s;
}

.children li a:hover {
  color: #b45da2;
  background: #faf0f8;
}

.children li a:hover::before {
  background: #b45da2;
}

.children li a.bold {
  color: #b45da2;
  font-weight: 600;
}

.children li a.bold::before {
  background: #b45da2;
}

/* Level 3 sub-sub */
.children .children {
  margin-left: 14px;
  border-left-color: #fecdd3;
}

.children .children li a {
  font-size: 12px;
  padding: 6px 8px;
}

.children .children li a::before {
  width: 4px;
  height: 4px;
  background: #e5e7eb;
}

/* Scrollable sidebar content wrapper */
.sidebar-content {
  max-height: 500px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #d4a0cb #f7e8f5;
}

.sidebar-content::-webkit-scrollbar {
  width: 4px;
}

.sidebar-content::-webkit-scrollbar-track {
  background: #f7e8f5;
  border-radius: 4px;
}

.sidebar-content::-webkit-scrollbar-thumb {
  background: #d4a0cb;
  border-radius: 4px;
}

.sidebar-content::-webkit-scrollbar-thumb:hover {
  background: #b45da2;
}

/* Brand list + Category list — unified */
.sidebar-input-check,
.widget_product_categories {
  padding: 4px 0 !important;
  width: 100%;
}

.sidebar-input-check li,
.widget_product_categories li {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  border-bottom: 1px solid #f3f4f6 !important;
  border-left: 3px solid transparent !important;
  transition: background 0.18s ease, border-color 0.15s ease, padding-left 0.2s ease;
  width: 100%;
}

.sidebar-input-check li:last-child,
.widget_product_categories li:last-child {
  border-bottom: none !important;
}

.sidebar-input-check li:hover,
.widget_product_categories li:hover {
  background: #faf0f8;
  border-left-color: #d4a0cb !important;
}

.sidebar-input-check li>a,
.widget_product_categories li>a {
  font-size: inherit;
  color: #000000;
  font-weight: 500;
  text-decoration: none;
  transition: color .15s;
  flex: 1;
}

.sidebar-input-check li>a:hover,
.widget_product_categories li>a:hover {
  color: #b45da2;
}

.sidebar-input-check li.chosen,
.widget_product_categories li.chosen {
  background: #f7e8f5;
  border-left-color: #b45da2 !important;
}

.sidebar-input-check li.chosen>a,
.widget_product_categories li.chosen>a {
  color: #b45da2 !important;
  font-weight: 700;
}


/* Size filter — pill toggles */
.sidebar-size {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 7px !important;
  padding: 14px 16px !important;
  list-style: none !important;
}

.sidebar-size li {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  border: 1.5px solid #e5e7eb !important;
  border-radius: 8px !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: #4b5563 !important;
  cursor: pointer;
  transition: all .15s;
  background: #fff;
  border-bottom: 1.5px solid #e5e7eb !important;
}

.sidebar-size li:hover {
  border-color: #b45da2 !important;
  color: #b45da2 !important;
  background: #f7e8f5;
}

.sidebar-size li .custom-control-input {
  display: none;
}

.sidebar-size li .custom-control-label {
  cursor: pointer;
  font-size: 13.5px !important;
  color: inherit;
  margin: 0;
  padding: 0;
  padding: 5px 11px !important;
}

/* checked / active state */
.sidebar-size li:has(input:checked),
.sidebar-size li.size-active {
  background: #b45da2 !important;
  border-color: #b45da2 !important;
  color: #fff !important;
}

.sidebar-size li:has(input:checked) .custom-control-label,
.sidebar-size li.size-active .custom-control-label {
  color: #fff !important;
}

/* jQuery UI Range Slider — fix dots visibility */
.ui-slider {
  border-radius: 50px !important;
  height: 6px !important;
  background: #e5e7eb !important;
  border: none !important;
  position: relative !important;
  margin: 10px 10px 20px !important;
}

.ui-slider-range {
  background: linear-gradient(90deg, #b45da2, #d4a0cb) !important;
  border-radius: 50px !important;
}

.ui-slider-handle {
  position: absolute !important;
  width: 20px !important;
  height: 20px !important;
  border-radius: 50% !important;
  background: #fff !important;
  border: 3px solid #b45da2 !important;
  box-shadow: 0 2px 10px rgba(180, 93, 162, .35) !important;
  top: -7px !important;
  margin-left: -10px !important;
  cursor: pointer !important;
  outline: none !important;
  z-index: 2 !important;
  transition: background .15s, transform .15s !important;
}

.ui-slider-handle:hover,
.ui-slider-handle:focus {
  background: #b45da2 !important;
  transform: scale(1.2) !important;
}

/* Price filter layout */
.price-range-bar {
  margin-bottom: 8px;
}

.price-range-content {
  padding: 16px 16px 12px;
}

.price-range-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 8px;
}

.price-range-filter-button .btn {
  padding: 8px 18px;
  background: linear-gradient(135deg, #c970bb 0%, #b45da2 55%, #9a4d8b 100%);
  color: #fff;
  font-size: inherit;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  box-shadow: 0 3px 10px rgba(180, 93, 162, .28);
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.22s ease,
    box-shadow 0.22s ease;
  will-change: transform;
}

.price-range-filter-button .btn:hover {
  background: linear-gradient(135deg, #bf60b0 0%, #a8508f 55%, #8d3f7e 100%);
  box-shadow: 0 6px 18px rgba(180, 93, 162, .45);
  transform: translateY(-2px);
}

#price-amount {
  border: none;
  background: transparent;
  font-size: inherit;
  color: #b45da2;
  font-weight: 700;
  width: 130px;
  text-align: right;
}

/* ---- ACTIVE FILTER CHIPS ----------------------------------- */
.active-filters-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 14px;
  background: #faf0f8;
  border: 1px solid #edd5e9;
  border-radius: 12px;
  margin-bottom: 16px;
}

.active-filters-label {
  font-size: 12px;
  font-weight: 600;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: .4px;
  white-space: nowrap;
}

.active-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  border: 1.5px solid #d4a0cb;
  color: #b45da2;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px 4px 8px;
  border-radius: 20px;
  text-decoration: none;
  transition: all .15s;
  white-space: nowrap;
}

.active-filter-chip i {
  font-size: 13px;
  background: #e8c4e0;
  color: #8b3a7d;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .15s, color .15s;
}

.active-filter-chip:hover i {
  background: rgba(255,255,255,0.3);
  color: #fff;
}

.active-filter-chip:hover {
  background: #b45da2;
  border-color: #b45da2;
  color: #fff;
}

.active-filter-remove {
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  margin-left: 2px;
  opacity: .7;
}

.active-filter-chip:hover .active-filter-remove {
  opacity: 1;
}

.active-filter-clear {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #000000;
  text-decoration: none;
  margin-left: 4px;
  transition: color .15s;
}

.active-filter-clear:hover {
  color: #b45da2;
}

.active-filter-clear i {
  font-size: inherit;
}

/* ---- 14. PRODUCT LIST HEADER ------------------------------- */
.product-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 12px 16px;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #f3f4f6;
}

.product-list-result p {
  font-size: inherit;
  color: #000000;
  font-weight: 500;
  margin: 0;
}

/* ---- 15. PAGINATION ---------------------------------------- */
.page-pagination {
  margin-top: 40px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.pagination .page-item .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 10px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  color: #000000;
  font-size: inherit;
  font-weight: 600;
  transition: all .2s;
  font-family: inherit;
}

.pagination .page-item .page-link:hover {
  background: #f7e8f5;
  border-color: #d4a0cb;
  color: #b45da2;
}

.pagination .page-item.active .page-link {
  background: #b45da2;
  border-color: #b45da2;
  color: #fff;
}

/* ---- 16. CATEGORY CARDS ------------------------------------ */
.trending-search-item {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #f3f4f6;
  text-align: center;
  padding: 20px 12px;
  transition: all .3s;
  height: 100%;
}

.trending-search-item:hover {
  border-color: #b45da2;
  box-shadow: 0 8px 25px rgba(180, 93, 162, .12);
  transform: translateY(-4px);
}

.trending-search-thumb {
  margin-bottom: 12px;
}

.trending-search-thumb img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin: 0 auto;
}

.trending-search-content h3 {
  font-size: inherit;
  font-weight: 700;
  color: #000000;
  line-height: 1.3;
}

.fluid-height {
  height: 100%;
  margin-bottom: 20px;
}

.full-height {
  height: 100%;
}

/* ---- 16b. CATEGORY ROW SLIDERS ----------------------------- */
.cat-slider-section {
  background: #f9fafb;
}

.cat-slider-row {
  overflow: hidden;
}

.cat-slider-row .owl-stage {
  display: flex;
  align-items: stretch;
}

.cat-slider-row.mt-20 {
  margin-top: 18px;
}

.cat-slide-item {
  padding: 4px;
}

.cat-slide-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 18px;
  border: 2px solid #f3f4f6;
  padding: 18px 10px 14px;
  text-align: center;
  text-decoration: none;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  gap: 10px;
}

.cat-slide-item a:hover {
  border-color: #b45da2;
  box-shadow: 0 8px 24px rgba(180, 93, 162, .13);
  transform: translateY(-4px);
  text-decoration: none;
}

.cat-slide-thumb {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cat-slide-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cat-slide-title {
  font-size: 12px;
  font-weight: 700;
  color: #000000;
  line-height: 1.3;
  margin: 0;
}

.cat-slide-item a:hover .cat-slide-title {
  color: #b45da2;
}


/* ---- 17. BLOG CARD ----------------------------------------- */
.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .07);
  transition: transform .3s ease, box-shadow .3s ease;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(180, 93, 162, .14);
  color: inherit;
  text-decoration: none;
}

.blog-card-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  flex-shrink: 0;
}

.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
  display: block;
}

.blog-card:hover .blog-card-thumb img {
  transform: scale(1.07);
}

.blog-card-category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, #b45da2, #9a4d8b);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(180, 93, 162, .35);
  pointer-events: none;
}

.blog-card-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.blog-card-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #000000;
  letter-spacing: .2px;
}

.blog-card-date i {
  font-size: inherit;
  color: #d4a0cb;
}

.blog-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
  margin: 0;
}

.blog-card:hover .blog-card-title {
  color: #b45da2;
}

.blog-card-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: inherit;
  font-weight: 700;
  color: #b45da2;
  transition: gap .2s ease;
  margin-top: 2px;
}

.blog-card:hover .blog-card-more {
  gap: 10px;
}

.blog-card-more i {
  font-size: 18px;
  transition: transform .2s ease;
}

.blog-card:hover .blog-card-more i {
  transform: translateX(4px);
}

/* legacy kept for any remaining old markup */
.blog-flat {
  display: none;
}

.blog-entry {
  display: flex;
  gap: 16px;
}

.blog-entry li {
  font-size: 12px;
  color: #000000;
  font-weight: 500;
}

.blog-link-redirect a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: inherit;
  font-weight: 700;
  color: #b45da2;
  transition: gap .2s;
}

.blog-link-redirect a:hover {
  gap: 10px;
}

/* ---- 18. SERVICE SECTION ----------------------------------- */
.service-section {
  background: linear-gradient(135deg, #f7e8f5 0%, #fdf2f8 100%);
  padding: 70px 0 80px;
  position: relative;
  overflow: hidden;
}

/* grid: stat card + 4 feature cards */
.service-grid {
  display: grid;
  grid-template-columns: 200px repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-stat-card {
    grid-column: span 3;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    justify-content: center;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-stat-card {
    grid-column: span 2;
  }
}

/* stat card */
.service-stat-card {
  background: linear-gradient(135deg, #b45da2, #9a4d8b);
  border-radius: 24px;
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  color: #fff;
}

.service-stat-number {
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
}

.service-stat-label {
  font-size: 16px;
  font-weight: 700;
  opacity: .9;
}

.service-stat-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: inherit;
  font-weight: 600;
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  margin-top: 8px;
  transition: color .2s;
}

.service-stat-link:hover {
  color: #fff;
  text-decoration: none;
}

.service-stat-link i {
  font-size: 15px;
}

/* feature cards */
.service-feat-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-feat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(180, 93, 162, .13);
}

.service-feat-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #f7e8f5, #fce7ea);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #b45da2;
  flex-shrink: 0;
  transition: background .25s ease;
}

.service-feat-card:hover .service-feat-icon {
  background: linear-gradient(135deg, #b45da2, #9a4d8b);
  color: #fff;
}

.service-feat-body .service-feat-title {
  font-size: 15px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 6px;
  line-height: 1.3;
}

.service-feat-body p {
  font-size: inherit;
  color: #000000;
  line-height: 1.6;
  margin: 0;
}

/* keep old class names working if referenced elsewhere */
.service-review h3 {
  font-size: 40px;
  font-weight: 800;
  color: #b45da2;
  line-height: 1;
}

.service-review-content h3 {
  font-size: inherit;
  font-weight: 700;
  color: #000000;
  margin-bottom: 4px;
}

.service-review-content p {
  font-size: 12.5px;
  color: #000000;
}

/* ---- 19. PARTNERS / BRANDS SECTION ------------------------- */
.partner-section {
  padding-bottom: 50px;
}

.partner-section-content {
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.partner-section-content .item {
  padding: 6px;
}

.partner-thumb {
  background: #fff;
  border: 1.5px solid #f0f0f0;
  border-radius: 20px;
  padding: 24px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .04);
}

.partner-thumb:hover {
  border-color: #d4a0cb;
  box-shadow: 0 12px 32px rgba(180, 93, 162, .13);
  transform: translateY(-6px);
}

.partner-thumb img {
  width: 120px;
  height: 60px;
  object-fit: contain;
  margin: 0 auto;
  filter: grayscale(50%);
  opacity: .7;
  transition: filter .3s, opacity .3s;
}

.partner-thumb:hover img {
  filter: none;
  opacity: 1;
}

.brand_title {
  font-size: 12.5px;
  text-align: center;
  color: #000000;
  font-weight: 600;
  letter-spacing: .2px;
  transition: color .25s;
  line-height: 1.3;
  padding: 0 4px;
  border-top: 1px solid #f3f4f6;
  padding-top: 10px;
  width: 100%;
}

.partner-thumb:hover .brand_title {
  color: #b45da2;
}

/* ---- 20. FOOTER -------------------------------------------- */
footer {
  background: #000000;
  color: #d1d5db;
}

.footer-upper {
  padding: 60px 0 40px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  height: 55px;
  width: auto;
}

.footer-details {
  font-size: inherit;
  line-height: 1.7;
  color: #000000;
}

.footer-social-logo {
  margin-top: 20px;
}

.footer-social-logo .social-list li a {
  background: rgba(255, 255, 255, .08);
  color: #9ca3af;
}

.footer-social-logo .social-list li a:hover {
  background: #b45da2;
  color: #fff;
  transform: translateY(-3px) scale(1.15);
  box-shadow: 0 5px 14px rgba(180, 93, 162, .38);
}

.footer-content-title div {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #b45da2;
  display: inline-block;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-list li a {
  font-size: inherit;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s, padding-left .2s;
}

.footer-list li a:hover {
  color: #b45da2;
  padding-left: 6px;
}

.footer-list li a::before {
  content: '';
  width: 5px;
  height: 5px;
  background: #b45da2;
  border-radius: 50%;
  flex-shrink: 0;
}

.footer-address {
  gap: 12px;
}

.footer-address li {
  font-size: inherit;
  color: #9ca3af;
  display: flex;
  gap: 6px;
  align-items: flex-start;
}

.footer-address li a {
  color: #9ca3af;
  display: inline;
  padding-left: 0;
}

.footer-address li a::before {
  display: none;
}

.footer-address li a:hover {
  color: #b45da2;
}

/* SEO Tags Ticker */
.seo-tags-ticker {
  overflow: hidden;
  margin-bottom: 40px;
  padding: 10px 0;
  display: flex;
  width: 100%;
}

.seo-tags-ticker:hover .seo-tags-track {
  animation-play-state: paused;
}

.seo-tags-track {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  animation: seoTagsScroll 35s linear infinite;
  padding-right: 8px;
}

@keyframes seoTagsScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.seo-tag-item {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  font-size: 12px;
  color: #9ca3af;
  padding: 5px 12px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 6px;
  white-space: nowrap;
  transition: color .2s, background .2s, border-color .2s;
  text-decoration: none;
}

.seo-tag-item:hover {
  color: #b45da2;
  background: rgba(180, 93, 162, .12);
  border-color: rgba(180, 93, 162, .25);
}

.seo_pages {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
  padding-top: 10px;
}

.seo_pages li a {
  font-size: 12px;
  color: #9ca3af;
  padding: 4px 10px;
  background: rgba(255, 255, 255, .05);
  border-radius: 6px;
  transition: all .2s;
}

.seo_pages li a:hover {
  color: #b45da2;
  background: rgba(180, 93, 162, .1);
}

.footer-lower {
  background: #111827;
  padding: 16px 0;
}

.footer-copyright-text p {
  font-size: inherit;
  color: #000000;
  margin: 0;
}

.footer-lower-payment {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-lower-payment li img {
  height: 24px;
  border-radius: 4px;
  width: auto;
}

/* ---- 21. CART MODAL ---------------------------------------- */
.cart-modal-wrapper {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  backdrop-filter: blur(3px);
}

.cart-modal-wrapper.active {
  opacity: 1;
  pointer-events: all;
}

.cart-modal {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  height: 100vh;
  background: #fff;
  z-index: 2001;
  overflow-y: auto;
  transition: right .35s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0, 0, 0, .15);
}

.cart-modal.active {
  right: 0;
}

.wish-modal {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  height: 100vh;
  background: #fff;
  z-index: 2001;
  overflow-y: auto;
  transition: right .35s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0, 0, 0, .15);
}

.wish-modal.active {
  right: 0;
}

.cart-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid #f3f4f6;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1;
}

.cart-modal-header div {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: .6px;
}

.cart-modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #000000;
  font-size: 18px;
  transition: background .2s;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
}

.cart-modal-body {
  padding: 16px 22px;
  flex: 1;
}

/* Cart items in modal */
.cart-modal-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f3f4f6;
}

.cart-modal-item:last-child {
  border-bottom: none;
}

.cart-modal-item img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 10px;
  background: #f9fafb;
  padding: 4px;
}

.cart-modal-item-info {
  flex: 1;
}

.cart-modal-item-info h4 {
  font-size: inherit;
  font-weight: 600;
  color: #000000;
  line-height: 1.3;
  margin-bottom: 4px;
}

.cart-modal-item-info p {
  font-size: inherit;
  font-weight: 700;
  color: #b45da2;
}

.cart-modal-delete a {
  width: 28px;
  height: 28px;
  background: #fee2e2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef4444;
  font-size: inherit;
  transition: background .2s;
  flex-shrink: 0;
}

.cart-modal-delete a:hover {
  background: #fecaca;
}

.wish-modal-delete a {
  width: 28px;
  height: 28px;
  background: #fee2e2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef4444;
  font-size: inherit;
  transition: background .2s;
  flex-shrink: 0;
}

.wish-modal-delete a:hover {
  background: #fecaca;
}

.cart-modal-footer {
  padding: 16px 22px;
  border-top: 1px solid #f3f4f6;
  background: #fff;
  position: sticky;
  bottom: 0;
}

.cart-modal-footer .total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 700;
  color: #000000;
}

.cart-modal-footer .total-row span:last-child {
  color: #b45da2;
}

/* ---- 22. PRODUCT DETAIL ------------------------------------ */
.product-details-section {
  padding: 50px 0;
}

.product-for-item {
  position: relative;
}

.product-gallery-trigger {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}

.product-gallery-trigger a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
  color: #000000;
  font-size: 16px;
  transition: all .2s;
}

.product-gallery-trigger a:hover {
  background: #b45da2;
  color: #fff;
}

.product-details-for img {
  width: 100%;
  border-radius: 16px;
  object-fit: contain;
  max-height: 400px;
}

.product-details-nav {
  margin-top: 12px;
}

.product-nav-item {
  padding: 4px;
}

.product-nav-item-inner {
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .2s;
}

.product-nav-item-inner:hover {
  border-color: #b45da2;
}

.product-nav-item-inner img {
  width: 100%;
  height: 70px;
  object-fit: contain;
  padding: 4px;
}

.slick-current .product-nav-item-inner {
  border-color: #b45da2;
}

.product-details-caption {}

/* ---- Brand + SKU meta row ---- */
.pd-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.brand-badge-link img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.brand-badge img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.pd-sku-badge {
  font-size: 11px;
  font-weight: 600;
  color: #9ca3af;
  background: #f3f4f6;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: .3px;
}

/* ---- Title ---- */
.pd-title {
  font-size: 22px;
  font-weight: 800;
  color: #111827;
  line-height: 1.3;
  margin-bottom: 10px;
}

/* ---- Rating row ---- */
.pd-rating-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.pd-review-count {
  font-size: 13px;
  color: #6b7280;
}

.pd-cat-pill {
  font-size: 11px;
  font-weight: 600;
  background: #fdf4ff;
  color: #b45da2;
  border: 1px solid #e9c5e3;
  padding: 3px 10px;
  border-radius: 20px;
  text-decoration: none;
  transition: background .15s;
}

.pd-cat-pill:hover {
  background: #b45da2;
  color: #fff;
}

/* ---- Price block ---- */
.pd-price-block {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.pd-price-current {
  font-size: 34px;
  font-weight: 800;
  color: #b45da2;
  line-height: 1;
}

.pd-price-old {
  font-size: 18px;
  color: #9ca3af;
  text-decoration: line-through;
  font-weight: 500;
}

.pd-discount-badge {
  font-size: 12px;
  font-weight: 700;
  background: #fef2f2;
  color: #ef4444;
  border: 1px solid #fecaca;
  padding: 3px 10px;
  border-radius: 20px;
}

.pd-out-of-stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #ef4444;
  background: #fef2f2;
  border: 1px solid #fecaca;
  padding: 6px 14px;
  border-radius: 8px;
  margin-bottom: 14px;
}

.pd-promo-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #7c3aed;
  background: #f5f3ff;
  border: 1px solid #ddd6fe;
  padding: 5px 12px;
  border-radius: 8px;
  margin-bottom: 12px;
}

/* ---- Short description ---- */
.pd-short-desc {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 4px;
}

/* ---- Divider ---- */
.pd-divider {
  border: none;
  border-top: 1px solid #f0f0f0;
  margin: 18px 0;
}

/* ---- Size / option group ---- */
.pd-option-group {
  margin-bottom: 18px;
}

.pd-option-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 8px;
}

.pd-select-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 280px;
}

.pd-select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  padding: 10px 40px 10px 14px;
  font-size: 14px;
  color: #374151;
  font-weight: 500;
  cursor: pointer;
  transition: border-color .2s;
  outline: none;
}

.pd-select:focus {
  border-color: #b45da2;
}

.pd-select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #9ca3af;
  pointer-events: none;
}

/* ---- Actions row (qty + cart + wish) ---- */
.pd-actions-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.pd-qty {
  flex-shrink: 0;
}

.pd-cart-btn {
  flex: 0 0 auto;
  min-width: 160px;
  max-width: 260px;
  background: linear-gradient(135deg, #b45da2, #d472bd);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
}

.pd-cart-btn:hover {
  opacity: .9;
  transform: translateY(-1px);
}

.pd-cart-btn:disabled {
  background: #e5e7eb;
  color: #9ca3af;
  cursor: not-allowed;
  transform: none;
}

.pd-wish-btn {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: #fdf4ff;
  border: 1.5px solid #e9c5e3;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #b45da2;
  font-size: 20px;
  transition: all .2s;
  position: relative;
  overflow: hidden;
}

.pd-wish-btn .flaticon-heart + .flaticon-heart {
  position: absolute;
  opacity: 0;
  transition: opacity .2s;
}

.pd-wish-btn:hover,
.pd-wish-btn.product-has-wishlist {
  background: #b45da2;
  border-color: #b45da2;
  color: #fff;
}

/* ---- WhatsApp wrap ---- */
.pd-whatsapp-wrap {
  margin-bottom: 20px;
}

/* ---- Social author bar ---- */
.pd-social-handle {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: #111827;
}

.pd-social-sub {
  font-size: 12px;
  color: #6b7280;
}

/* Legacy selectors kept for compatibility */
.product-details-caption h3 {
  font-size: 22px;
  font-weight: 800;
  color: #111827;
}

.product-details-caption h4 {
  font-size: inherit;
  color: #374151;
  font-weight: 500;
}

.product-details-price h4 {
  font-size: 34px;
  font-weight: 800;
  color: #b45da2;
}

.product-details-price h4 del {
  font-size: 18px;
  color: #9ca3af;
  font-weight: 500;
  margin-right: 8px;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-info li {
  color: #374151;
}

.product-info li strong {
  color: #111827;
}

.product-details-para p {
  color: #4b5563;
  line-height: 1.7;
}

/* Color picker */
.c-product__colors-title {
  font-size: inherit;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.c-product__colors-title b {
  color: #000000;
}

.c-product__colors-title span {
  color: #b45da2;
  font-weight: 600;
}

.c-product__colors-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.c-product__colors-link {
  background: none;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 6px;
  cursor: pointer;
  transition: all .2s;
  text-align: center;
}

.c-product__colors-link:hover,
.c-product__colors-link.is-active {
  border-color: #b45da2;
}

.c-product__colors-link:disabled {
  opacity: 1;
}

.c-product__colors-border {
  display: block;
}

.c-product__colors-img {
  display: block;
}

.c-product__colors-img img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
}

.c-product__colors-text {
  display: block;
  font-size: 11px;
  color: #000000;
  font-weight: 500;
  margin-top: 4px;
}

/* Product action (size + add to cart) */
.product-action-info h4 {
  font-size: inherit;
  font-weight: 600;
  color: #000000;
  margin-bottom: 8px;
}

/* Product tab (description, details, reviews) */
.product-details-tab-list {
  display: flex;
  border-bottom: 2px solid #f3f4f6;
  margin-bottom: 24px;
  gap: 4px;
}

.product-details-tab-list li {
  padding: 12px 20px;
  font-weight: 600;
  color: #000000;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all .2s;
  border-radius: 8px 8px 0 0;
}

.product-details-tab-list li:hover {
  color: #b45da2;
}

.product-details-tab-list li.active {
  color: #b45da2;
  border-bottom-color: #b45da2;
}

.product-tab-information-item {
  display: none;
}

.product-tab-information-item.active {
  display: block;
}

.product-tab-information-item p {
  color: #000000;
  line-height: 1.7;
}

/* Reviews */
.review-area {
  padding: 24px 0;
}

.single-review {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #f3f4f6;
}

.review-thumb img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #edd5e9;
}

.review-content h4 {
  font-size: 15px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 6px;
}

.review-content p {
  font-size: inherit;
  color: #000000;
  line-height: 1.6;
}

.review-date {
  font-size: 12px;
  color: #000000;
  margin-top: 4px;
}

/* Review form */
.review-form-area {
  background: #f9fafb;
  border-radius: 16px;
  padding: 24px;
  margin-top: 24px;
}

.review-form-area h3 {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 20px;
}

/* Related products */
.related-product {
  padding: 50px 0;
  border-top: 1px solid #f3f4f6;
}

/* ---- 23. CART PAGE ----------------------------------------- */
.cart-section {
  padding: 50px 0;
}

.cart-table {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid #f3f4f6;
  margin-bottom: 30px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, .05);
}

.cart-table table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table thead tr {
  background: linear-gradient(135deg, #f7e8f5, #fdf2f8);
}

.cart-table thead th {
  padding: 14px 20px;
  font-size: inherit;
  font-weight: 700;
  color: #000000;
  text-align: left;
  white-space: nowrap;
}

.cart-table tbody tr {
  border-bottom: 1px solid #f3f4f6;
  transition: background .15s;
}

.cart-table tbody tr:last-child {
  border-bottom: none;
}

.cart-table tbody tr:hover {
  background: #fafafa;
}

.cart-table tbody td {
  padding: 16px 20px;
  vertical-align: middle;
}

.product-table-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.product-table-thumb {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  overflow: hidden;
  background: #f9fafb;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-table-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.product-table-info span {
  font-size: inherit;
  font-weight: 600;
  color: #000000;
}

/* Quantity input */
.input-number {
  display: flex;
  align-items: center;
  border: 2px solid #e5e7eb;
  border-radius: 50px;
  overflow: hidden;
  width: fit-content;
}

.qu-btn {
  width: 34px;
  height: 34px;
  background: #f9fafb;
  color: #000000;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s;
  border: none;
  font-family: inherit;
}

.qu-btn:hover {
  background: #b45da2;
  color: #fff;
}

.qu-btn.deact {
  opacity: .4;
  cursor: not-allowed;
}

.qu-input {
  width: 40px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: inherit;
  font-weight: 700;
  color: #000000;
  font-family: inherit;
  outline: none;
}

.price-section {}

.original-price.strikethrough {
  text-decoration: line-through;
  color: #000000;
  font-size: inherit;
  display: block;
}

.discounted-price {
  color: #b45da2;
  font-weight: 700;
  font-size: 15px;
}

.discount-badge {
  display: inline-block;
  background: #b45da2;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 50px;
  margin-left: 4px;
}

.normal-price {
  font-size: 15px;
  font-weight: 700;
  color: #000000;
}

.discount-info small {
  font-size: 12px;
}

td.productTotal {
  font-size: 15px;
  font-weight: 700;
  color: #b45da2;
}

td.cancel a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #fee2e2;
  border-radius: 8px;
  color: #ef4444;
  font-size: 16px;
  transition: background .2s;
}

td.cancel a:hover {
  background: #fecaca;
}

/* Cart details box */
.cart-details {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, .06);
}

.cart-total-box {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cart-total-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #f3f4f6;
}

.cart-total-item:last-child {
  border-bottom: none;
}

.cart-total-item h4 {
  font-size: inherit;
  font-weight: 600;
  color: #000000;
}

.cart-total-item p {
  font-size: 15px;
  font-weight: 700;
  color: #000000;
}

.cart-total-item p strong {
  color: #b45da2;
}

.checkout-total-title {
  color: #000000 !important;
  font-size: 12px !important;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.cart-details .btn {
  width: 100%;
  margin-top: 16px;
  justify-content: center;
  padding: 14px;
  font-size: 15px;
}

/* Empty cart */
.emptyBasket {
  text-align: center;
  padding: 80px 20px;
}

.emptyBasket i {
  font-size: 64px;
  color: #d4a0cb;
  display: block;
  margin-bottom: 20px;
}

.emptyBasket p {
  font-size: 18px;
  color: #000000;
  font-weight: 500;
  margin-bottom: 24px;
}

/* No result box */
.no-result-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 24px;
  width: 100%;
}

.no-result-icon {
  width: 96px;
  height: 96px;
  background: linear-gradient(135deg, #f7e8f5 0%, #edd5e9 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.no-result-icon i {
  font-size: 48px;
  background: linear-gradient(135deg, #b45da2, #e879a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.no-result-box h3 {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
}

.no-result-box p {
  font-size: inherit;
  color: #000000;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ---- 24. CHECKOUT ------------------------------------------ */
.checkout-section {
  padding: 50px 0;
}

.checkout-item {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, .06);
  height: 100%;
}

.checkout-details {
  margin-bottom: 20px;
}

.checkout-payment-area {
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  padding: 20px;
}

/* ---- 25. AUTHENTICATION ------------------------------------ */
.authentication-section {
  min-height: 100vh;
}

.authentication-img-bg {
  background: linear-gradient(135deg, #f7e8f5 0%, #edd5e9 50%, #fdf2f8 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.authentication-img-bg::before {
  content: '👶🍼🧸🎀💕';
  font-size: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: .15;
  white-space: pre;
  line-height: 2;
  letter-spacing: 20px;
}

.authentication-item {
  min-height: 100vh;
}

.authentication-user-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto;
  padding: 40px 32px;
}



.authentication-user-header {
  text-align: center;
  margin-bottom: 32px;
}

.authentication-user-header img {
  height: 60px;
  width: auto;
  margin: 0 auto 12px;
}

.authentication-user-header h1 {
  font-size: 26px;
  font-weight: 800;
  color: #b45da2;
}

/* Auth tabs */
.authentication-tab {
  display: flex;
  background: #f9fafb;
  border-radius: 14px;
  padding: 4px;
  margin-bottom: 28px;
  gap: 4px;
}

.authentication-tab-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: inherit;
  font-weight: 600;
  color: #000000;
  cursor: pointer;
  transition: all .2s;
}

.authentication-tab-item i {
  font-size: 16px;
}

.authentication-tab-active {
  background: #fff;
  color: #b45da2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}

.authentication-tab-details-item {
  display: none;
}

.authentication-tab-details-active {
  display: block;
}

.authentication-account-access {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.authentication-link a {
  font-size: inherit;
  color: #b45da2;
  font-weight: 600;
}

.authentication-link a:hover {
  color: #9a4d8b;
}

/* ---- 26. USER PROFILE -------------------------------------- */
.account-sidebar {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, .06);
}

.account-sidebar .sub-section-title h3 {
  font-size: 15px;
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.account-sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.account-nav__item a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 12px;
  font-size: inherit;
  font-weight: 500;
  color: #000000;
  transition: all .2s;
}

.account-nav__item a:hover {
  background: #f7e8f5;
  color: #b45da2;
}

.account-nav__item.active a {
  background: #f7e8f5;
  color: #b45da2;
  font-weight: 600;
}

.account-nav__divider {
  height: 1px;
  background: #f3f4f6;
  margin: 8px 0;
}

/* Profile content */
.account-content {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, .06);
}

/* Order history table */
.history-table {
  overflow-x: auto;
}

.history-table table {
  width: 100%;
  border-collapse: collapse;
}

.history-table thead th {
  padding: 12px 16px;
  background: #f9fafb;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #000000;
  text-align: left;
  border-bottom: 1px solid #f3f4f6;
}

.history-table tbody td {
  padding: 14px 16px;
  font-size: inherit;
  border-bottom: 1px solid #f3f4f6;
}

.history-table tbody tr:last-child td {
  border-bottom: none;
}

.history-table tbody tr:hover {
  background: #fafafa;
}

.order-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

.order-badge.pending {
  background: #fef3c7;
  color: #d97706;
}

.order-badge.success {
  background: #d1fae5;
  color: #059669;
}

.order-badge.cancelled {
  background: #fee2e2;
  color: #dc2626;
}

/* ---- 27. BLOG PAGES ---------------------------------------- */
.blog-section {
  padding: 50px 0;
}

.blog-view {
  padding: 50px 0;
}

.blog-view-content h1 {
  font-size: 28px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 20px;
}

.blog-view-content img {
  border-radius: 16px;
  margin: 20px 0;
}

.blog-view-content p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ---- 28. CONTACT PAGE -------------------------------------- */
.contact-grid-section {
  padding: 50px 0;
}

.contact-grid-para {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-grid-para i {
  font-size: 20px;
  color: #b45da2;
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-grid-para p {
  font-size: inherit;
  color: #000000;
  line-height: 1.7;
}

.contact-grid-para p a {
  color: #000000;
}

.contact-grid-para p a:hover {
  color: #b45da2;
}

.contact-form-section {
  padding-bottom: 60px;
}

/* Contact info card */
.contact-info-card {
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(180, 93, 162, 0.12);
  border: 1px solid rgba(180, 93, 162, 0.1);
  display: flex;
  flex-direction: column;
}

.contact-info-card-header {
  background: linear-gradient(135deg, #c970bb 0%, #b45da2 55%, #9a4d8b 100%);
  padding: 32px 28px 28px;
  color: #fff;
}

.contact-info-card-header h2 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.contact-info-card-header p {
  font-size: inherit;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  margin: 0;
}

.contact-info-card-body {
  background: #fff;
  padding: 8px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 28px;
  border-bottom: 1px solid #f7e8f5;
  transition: background 0.2s ease;
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-item:hover {
  background: #fdf4fb;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #edd5e9 0%, #f7e8f5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b45da2;
  font-size: 20px;
  transition: background 0.22s ease, transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-info-item:hover .contact-info-icon {
  background: linear-gradient(135deg, #c970bb 0%, #b45da2 100%);
  color: #fff;
  transform: scale(1.08);
}

.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 2px;
}

.contact-info-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b45da2;
}

.contact-info-text a,
.contact-info-text span:not(.contact-info-label) {
  font-size: 14.5px;
  color: #333;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.18s ease;
}

.contact-info-text a:hover {
  color: #b45da2;
}

.contact-info-secondary {
  font-size: 13px !important;
  color: #888 !important;
  font-weight: 400 !important;
}

.contact-map {
  height: 100%;
  min-height: 320px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(180, 93, 162, 0.12);
  border: 1px solid rgba(180, 93, 162, 0.1);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
  border: none;
  border-radius: 0;
}

.comment-area {}

.comment-input-area {
  background: #f9fafb;
  border-radius: 20px;
  padding: 32px;
}

/* ---- 29. ABOUT PAGE ---------------------------------------- */
.about-section {
  padding: 80px 0;
}

/* Image slider */
.about-img-slider {
  border-radius: 20px;
  overflow: hidden;
}

.about-slide-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 480px;
}

.about-slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-img-slider .owl-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}

.about-img-slider .owl-dot span {
  background: rgba(255, 255, 255, 0.5) !important;
  width: 8px !important;
  height: 8px !important;
  margin: 0 4px !important;
}

.about-img-slider .owl-dot.active span {
  background: #fff !important;
  width: 24px !important;
  border-radius: 4px !important;
}

.about-img-slider .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  margin: 0;
}

.about-img-slider .owl-nav button {
  pointer-events: all;
  background: rgba(255, 255, 255, 0.85) !important;
  color: #b45da2 !important;
  width: 36px;
  height: 36px;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin: 0 10px !important;
  font-size: 18px !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: background 0.2s;
}

.about-img-slider .owl-nav button:hover {
  background: #fff !important;
}

.about-img-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-badge-number {
  font-size: 22px;
  font-weight: 800;
  color: #b45da2;
}

.about-badge-label {
  font-size: 11px;
  color: #000;
  font-weight: 500;
}

/* Text side */
.about-info {
  padding-left: 10px;
}

.about-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f8eef6;
  color: #b45da2;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.about-badge-pill i {
  font-size: inherit;
}

.about-title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin-bottom: 16px;
}

.about-body {
  font-size: inherit;
  color: #000;
  line-height: 1.8;
  margin-bottom: 28px;
  max-height: 180px;
  overflow-y: auto;
  padding-right: 4px;
}

.about-body::-webkit-scrollbar {
  width: 4px;
}

.about-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.about-body::-webkit-scrollbar-thumb {
  background: #d4a0cc;
  border-radius: 4px;
}

/* Stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.about-stat-item {
  background: #faf6fc;
  border: 1px solid #f0e0ef;
  border-radius: 14px;
  padding: 16px 10px;
  text-align: center;
}

.about-stat-number {
  font-size: 22px;
  font-weight: 800;
  color: #b45da2;
  line-height: 1;
  margin-bottom: 4px;
}

.about-stat-label {
  font-size: 11px;
  color: #777;
  font-weight: 500;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: inherit;
}

.about-cta i {
  font-size: 16px;
}

.mb-16 {
  margin-bottom: 14px;
}

.service-review-grid {
  border-radius: 20px;
  overflow: hidden;
}

.service-section-two {
  background: #fff;
  border-radius: 24px;
  padding: 20px;
}

.border-radius-3 {
  border-radius: 24px;
}

/* ---- 30. STORES PAGE --------------------------------------- */
.stores-section {
  padding: 50px 0;
}

.store-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, .06);
  transition: all .3s;
}

.store-card:hover {
  box-shadow: 0 10px 35px rgba(180, 93, 162, .12);
  transform: translateY(-4px);
}

.store-card-map iframe {
  width: 100%;
  height: 220px;
  display: block;
}

.store-card-info {
  padding: 20px;
}

.store-card-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 12px;
}

.store-card-info p {
  font-size: inherit;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.store-card-info p i {
  color: #b45da2;
}

/* ---- 31. MODALS (Bootstrap JS) ----------------------------- */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1055;
  overflow-y: auto;
  background: rgba(0, 0, 0, .5);
  align-items: center;
  justify-content: center;
}

.modal.show {
  display: flex;
}

.modal-dialog {
  width: 100%;
  max-width: 700px;
  margin: 20px auto;
  padding: 0 16px;
}

.modal-content {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .2);
}

.modal-body {
  padding: 24px;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #f3f4f6;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 16px 24px;
  border-top: 1px solid #f3f4f6;
}

.btn-close {
  width: 30px;
  height: 30px;
  background: #fee2e2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ef4444;
  border: none;
  font-size: inherit;
}

/* ---- 31b. QUICK VIEW MODAL --------------------------------- */
.qv-dialog {
  max-width: 960px;
}

.qv-content {
  border: none !important;
  border-radius: 28px !important;
  overflow: hidden;
  background: #fff !important;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .18) !important;
  position: relative;
}

/* backdrop blur overlay */
.modal-backdrop.show {
  backdrop-filter: blur(4px);
  background: rgba(15, 15, 15, .55);
}

/* close button */
.qv-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #f3f4f6;
  color: #000000;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, color .2s, transform .2s;
  line-height: 1;
}

.qv-close:hover {
  background: #b45da2;
  color: #fff;
  transform: rotate(90deg);
}

/* loading state */
.qv-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 80px 0;
  color: #000000;
  font-size: inherit;
}

.qv-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid #f3f4f6;
  border-top-color: #b45da2;
  border-radius: 50%;
  animation: qv-spin .7s linear infinite;
  display: block;
}

@keyframes qv-spin {
  to {
    transform: rotate(360deg);
  }
}

/* legacy .product-popup-image still used in some places */
.product-popup-image {
  display: none;
}

.product-popup-details {
  display: none;
}

/* ---- 32. ALERTS / FLASH ------------------------------------ */
.alert {
  padding: 14px 18px;
  border-radius: 12px;
  font-size: inherit;
  font-weight: 500;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.alert-success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.alert-danger {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.alert-warning {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}

.alert-primary {
  background: #eff6ff;
  color: #1e40af;
  border: 1px solid #bfdbfe;
}

/* ---- 33. MAGNIFIC POPUP / QUICK VIEW ----------------------- */
.mfp-bg {
  background: rgba(10, 10, 20, .7) !important;
  backdrop-filter: blur(6px);
}

.mfp-container {
  padding: 16px !important;
}

/* hide default mfp close — we use our own */
.mfp-close {
  display: none !important;
}

/* Popup wrapper */
.qv-popup {
  background: #fff;
  border-radius: 28px;
  overflow: visible;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .25);
}

/* Custom X close button — floats outside top-right corner */
.qv-mfp-close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 200;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #000000;
  font-size: 26px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, color .2s, transform .25s;
  line-height: 1;
  padding: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .18);
}

.qv-mfp-close:hover {
  background: #b45da2;
  color: #fff;
  transform: rotate(90deg);
}

/* product-popup-inner — plain block, no grid of its own */
.product-popup-inner {
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100%;
}

/* two-column body 40/60 */
.qv-body {
  display: grid !important;
  grid-template-columns: 40% 60%;
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  width: 100%;
}

/* Left — image */
.qv-img-col {
  position: relative;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px 36px;
  border-right: 1px solid #f3f4f6;
}

.qv-img-col img {
  max-height: 380px;
  width: 100%;
  object-fit: contain;
}

.qv-discount-badge,
.qv-new-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: .3px;
}

.qv-discount-badge {
  background: #b45da2;
  color: #fff;
}

.qv-new-badge {
  background: #10b981;
  color: #fff;
}

/* Right — info */
.qv-info-col {
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
  max-height: 85vh;
}

.qv-stock {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  width: fit-content;
}

.qv-stock i {
  font-size: 15px;
}

.qv-stock-in {
  background: #d1fae5;
  color: #065f46;
}

.qv-stock-out {
  background: #fee2e2;
  color: #991b1b;
}

.qv-title {
  font-size: 21px;
  font-weight: 800;
  color: #000000;
  line-height: 1.35;
  margin: 0;
}

.qv-stars {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qv-stars-filled {
  color: #fbbf24;
  font-size: 16px;
  letter-spacing: 1px;
}

.qv-review-count {
  font-size: inherit;
  color: #000000;
}

.qv-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.qv-price-current {
  font-size: 30px;
  font-weight: 900;
  color: #b45da2;
  line-height: 1;
}

.qv-price-old {
  font-size: 16px;
  color: #000000;
  text-decoration: line-through;
  font-weight: 500;
}

.qv-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.qv-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.qv-label {
  font-size: inherit;
  font-weight: 700;
  color: #000000;
}

.qv-select {
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: inherit;
  font-family: inherit;
  color: #000000;
  background: #fff;
  outline: none;
  transition: border-color .2s;
  cursor: pointer;
}

.qv-select:focus {
  border-color: #b45da2;
}

.qv-qty-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.qv-qty {
  flex-shrink: 0;
}

.qv-cart-btn {
  flex: 1;
  justify-content: center;
  min-width: 160px;
  gap: 8px;
}

.qv-cart-btn i {
  font-size: 20px;
}

/* extra qv elements */
.qv-brand-logo {
  position: absolute;
  top: 16px;
  left: 16px;
}

.qv-brand-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  padding: 4px 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}

.qv-main-img {
  max-height: 360px;
  width: 100%;
  object-fit: contain;
}

.qv-sku {
  font-size: 12px;
  color: #000000;
}

.qv-sku strong {
  color: #000000;
}

.qv-meta {
  font-size: inherit;
  color: #000000;
}

.qv-meta-link {
  color: #b45da2;
  font-weight: 600;
  text-decoration: none;
}

.qv-meta-link:hover {
  text-decoration: underline;
}

.qv-desc {
  font-size: inherit;
  color: #000000;
  line-height: 1.65;
  margin: 0;
  border-top: 1px solid #f3f4f6;
  padding-top: 12px;
}

.qv-wa-btn {
  width: 100%;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  padding: 14px;
  border-radius: 14px !important;
}

.qv-full-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: inherit;
  font-weight: 700;
  color: #000000;
  transition: color .2s, gap .2s;
  text-decoration: none;
  border-top: 1px solid #f3f4f6;
  padding-top: 14px;
  margin-top: 4px;
}

.qv-full-link:hover {
  color: #b45da2;
  gap: 9px;
  text-decoration: none;
}

.qv-full-link i {
  font-size: 18px;
}

/* Loading */
.qv-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 100px 0;
  color: #000000;
  font-size: inherit;
}

.qv-spinner {
  width: 38px;
  height: 38px;
  border: 3px solid #f3f4f6;
  border-top-color: #b45da2;
  border-radius: 50%;
  animation: qv-spin .7s linear infinite;
  display: block;
}

@keyframes qv-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 767px) {
  .qv-popup {
    border-radius: 20px;
    max-width: 98vw;
  }

  .qv-body {
    grid-template-columns: 1fr;
  }

  .qv-img-col {
    border-right: none;
    border-bottom: 1px solid #f3f4f6;
    padding: 28px 20px;
  }

  .qv-info-col {
    padding: 24px 20px;
    max-height: none;
  }

  .qv-title {
    font-size: 18px;
  }
}

/* ---- 34. PAGE / SEO content -------------------------------- */
.page-section {
  padding: 50px 0;
}

.contentarea {
  padding: 30px 0;
}

.contentarea h1,
.contentarea h2,
.contentarea h3 {
  color: #000000;
  font-weight: 700;
  margin-bottom: 12px;
}

.contentarea p {
  color: #000000;
  line-height: 1.7;
  margin-bottom: 12px;
}

.contentarea a {
  color: #b45da2;
}

/* SEO text expand/collapse */
.seo-text-block {
  padding: 24px 0 8px;
}

.seo-text-content {
  line-height: 1.75;
  color: #000000;
}

.seo-text-content h1,
.seo-text-content h2,
.seo-text-content h3 {
  color: #000000;
  font-weight: 700;
  margin-bottom: 12px;
}

.seo-text-content p {
  color: #000000;
  margin-bottom: 12px;
}

.seo-text-content a {
  color: #b45da2;
}

.seo-text-content.collapsed {
  max-height: 100px;
  overflow: hidden;
  position: relative;
}

.seo-text-content.collapsed::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, #fff);
  pointer-events: none;
}

.seo-text-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  background: none;
  border: 1.5px solid #d4a0cb;
  color: #b45da2;
  font-size: inherit;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all .2s;
}

.seo-text-toggle:hover {
  background: #f7e8f5;
}

.seo-text-toggle i {
  font-size: 16px;
  transition: transform .3s;
}

.seo-text-toggle.open i {
  transform: rotate(180deg);
}

/* ---- 35. NOT FOUND ----------------------------------------- */
.not-found-section {
  text-align: center;
  padding: 100px 20px;
}

.not-found-section h1 {
  font-size: 120px;
  font-weight: 900;
  color: #b45da2;
  opacity: .15;
  line-height: 1;
}

.not-found-section h2 {
  font-size: 28px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 12px;
}

.not-found-section p {
  font-size: 16px;
  color: #000000;
  margin-bottom: 28px;
}

/* ---- 36. COMPANIES / BRANDS PAGE --------------------------- */
.companies-list {
  padding: 50px 0;
}

.company-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 2px 15px rgba(0, 0, 0, .05);
  transition: all .3s;
}

.company-card:hover {
  box-shadow: 0 8px 25px rgba(180, 93, 162, .12);
  transform: translateY(-3px);
}

.company-card img {
  height: 80px;
  object-fit: contain;
  margin: 0 auto 14px;
}

.company-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #000000;
}

/* ---- 37. PAYMENT PAGES ------------------------------------- */
.pay-section {
  padding: 50px 0;
  text-align: center;
}

.pay-section .icon-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  margin: 0 auto 24px;
}

.pay-success .icon-wrap {
  background: #d1fae5;
  color: #059669;
}

.pay-fail .icon-wrap {
  background: #fee2e2;
  color: #ef4444;
}

.pay-section h2 {
  font-size: 28px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 12px;
}

.pay-section p {
  font-size: 15px;
  color: #000000;
  margin-bottom: 28px;
}

/* ---- 38. MISC UTILITIES ------------------------------------ */
.bg-off-white {
  background-color: #f9fafb;
}

.bg-light-pink-border {
  border: 2px solid #edd5e9;
}

.bg-pink {
  background: linear-gradient(135deg, #f7e8f5, #fdf2f8);
}

.bg-one-fourth {
  background: linear-gradient(135deg, #f7e8f5 0%, #fdf2f8 100%);
}

.r-relative {
  position: relative;
}

.proImg-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dropdown – Bootstrap JS compat */
.dropdown-menu {
  display: none;
}

.dropdown-menu.show {
  display: block;
}

/* Collapse – Bootstrap JS compat (exclude navbar-collapse so nav links stay visible) */
.collapse:not(.show):not(.navbar-collapse) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height .35s ease;
}

/* Navbar collapse — always visible on desktop.
   NOTE: Tailwind CDN generates "visibility:collapse" for any element with class="collapse".
   We override both display AND visibility here. */
.navbar-collapse {
  display: flex !important;
  visibility: visible !important;
  flex: 1;
}

/* Fade */
.fade:not(.show) {
  opacity: 0;
}

.fade {
  transition: opacity .15s linear;
}

/* ---- 39. RESPONSIVE ---------------------------------------- */
@media (max-width: 1059px) {
  .main-nav {
    display: none;
  }
}

@media (min-width: 1060px) {
  .mobile-nav {
    display: none;
  }
}

@media (max-width: 992px) {
  .navbar-top {
    padding: 10px 0;
  }

  .navbar-search-input input {
    min-width: 160px;
  }

  .partner-section-content {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 14px;
  }

  .row {
    margin: 0 -8px;
  }

  [class*="col-"] {
    padding: 0 8px;
  }

  .pt-100 {
    padding-top: 50px !important;
  }

  .pb-100 {
    padding-bottom: 50px !important;
  }

  .pt-70 {
    padding-top: 36px !important;
  }

  .pb-70 {
    padding-bottom: 36px !important;
  }

  .cart-modal,
  .wish-modal {
    width: 100%;
    right: -100%;
  }

  .product-details-tab-list {
    overflow-x: auto;
  }

  .about-slide-item {
    height: 260px;
  }

  .about-info {
    padding-left: 0;
    margin-top: 20px;
  }

  .section-title {
    margin-bottom: 28px;
  }

  footer .footer-content-item {
    margin-bottom: 32px;
  }
}

@media (max-width: 575px) {
  .col-6 {
    width: 50%;
  }

  .authentication-user-panel {
    padding: 30px 20px;
  }
}

/* ---- 40. TOASTR, SWEETALERT overrides ---------------------- */
.toast-top-right {
  top: 20px !important;
  right: 20px !important;
}

.toast-bottom-center {
  bottom: 20px !important;
}

.toast {
  border-radius: 12px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12) !important;
}

@media (max-width: 991px) {
  .toast-bottom-center {
    bottom: 80px !important;
  }
}

/* ---- 41. BTN default background ---------------------------- */
.btn:not(.btn-pink):not(.btn-red):not(.btn-black):not(.btn-detail):not(.btn-whatsapp):not(.btn-danger):not(.btn-sm):not(.btn-secondary) {
  background: linear-gradient(135deg, #c970bb 0%, #b45da2 55%, #9a4d8b 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(180, 93, 162, .32);
}

.btn:not(.btn-pink):not(.btn-red):not(.btn-black):not(.btn-detail):not(.btn-whatsapp):not(.btn-danger):not(.btn-sm):not(.btn-secondary):hover {
  background: linear-gradient(135deg, #bf60b0 0%, #a8508f 55%, #8d3f7e 100%);
  box-shadow: 0 8px 28px rgba(180, 93, 162, .50);
  color: #fff;
}

.btn-sm {
  padding: 7px 16px;
  font-size: 12.5px;
  background: linear-gradient(135deg, #c970bb 0%, #b45da2 55%, #9a4d8b 100%);
  color: #fff;
  box-shadow: 0 3px 10px rgba(180, 93, 162, .28);
}

.btn-sm:hover {
  background: linear-gradient(135deg, #bf60b0 0%, #a8508f 55%, #8d3f7e 100%);
  box-shadow: 0 6px 18px rgba(180, 93, 162, .45);
  color: #fff;
}

.btn-secondary {
  background: #f3f4f6;
  color: #374151;
  border: 1.5px solid #e5e7eb;
  box-shadow: none;
}

.btn-secondary:hover {
  background: #fff;
  border-color: #b45da2;
  color: #b45da2;
  box-shadow: 0 4px 14px rgba(180, 93, 162, .14);
}

/* ---- 42. MISSING UTILITIES --------------------------------- */
.p-tb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pt-50 {
  padding-top: 50px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

/* ---- 43. RELATED PRODUCTS / TRENDING ----------------------- */
.trending-product-section {
  padding: 50px 0;
  background: #f9fafb;
}

.section-title-two {
  text-align: center;
  margin-bottom: 36px;
}

.section-title-two h2 {
  font-size: clamp(20px, 3.5vw, 30px);
  font-weight: 800;
  color: #000000;
}

.round-carousel-button .owl-nav button {
  border-radius: 50% !important;
}

.arrival-product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, .06);
  transition: box-shadow .3s, transform .3s;
  position: relative;
}

.arrival-product-card:hover {
  box-shadow: 0 10px 35px rgba(180, 93, 162, .15);
  transform: translateY(-4px);
}

.arrival-product-card .product-card-thumb {
  aspect-ratio: 1/1;
  background: #fafafa;
}

.arrival-product-card .product-card-content {
  padding: 14px 16px;
}

.arrival-product-card .product-card-content .h3 {
  font-weight: 600;
  color: #000000;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 8px;
}

.arrival-product-card .product-add-cart {
  margin-top: 10px;
}

.arrival-product-card .product-card-button {
  position: absolute;
  top: 15px;
  right: 15px;
  transition: all .3s;
}

/* ---- 44. PRODUCT DETAIL EXTRAS ----------------------------- */
.product-quantity {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.product-quantity-item {}

.cart-quantity {
  display: flex;
  align-items: center;
}

.product-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid #f3f4f6;
  margin-top: 12px;
}

.product-author-info h4 {
  font-size: inherit;
  font-weight: 700;
  color: #000000;
}

.product-author-info p {
  font-size: 12px;
  color: #000000;
}

.share-social-link {
  display: flex;
  gap: 8px;
}

.share-social-link li a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-size: 16px;
  transition: all .2s;
}

.share-social-link li a:hover {
  background: #b45da2;
  color: #fff;
}

/* Reviews */
.product-review-box {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #edd5e9;
  margin-bottom: 24px;
}

.product-review-item {
  padding: 20px 22px;
  border-bottom: 1px solid #f7e8f5;
  background: #fff;
  transition: background 0.18s ease;
}

.product-review-item:last-child {
  border-bottom: none;
}

.product-review-item:hover {
  background: #fdf4fb;
}

.product-review-item>p {
  font-size: inherit;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 12px;
}

.product-review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-review-author-info h3 {
  font-size: inherit;
  font-weight: 700;
  color: #000000;
}

/* Star rating fieldset */
.form-review {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 20px;
  padding: 16px 20px;
  background: #fdf4fb;
  border-radius: 14px;
  border: 1px solid #edd5e9;
}

.rating-label {
  font-size: inherit;
  font-weight: 600;
  color: #7d3a72;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
}

.rating {
  direction: rtl;
  display: inline-flex;
  gap: 2px;
  border: 0;
  padding: 0;
  margin: 0;
}

.rating input {
  display: none;
}

.rating label {
  cursor: pointer;
  color: #d1d5db;
  font-size: 34px;
  line-height: 1;
  transition: color 0.15s ease, transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-block;
}

.rating label:hover {
  transform: scale(1.18);
}

.rating input:checked~label,
.rating label:hover,
.rating label:hover~label {
  color: #fbbf24;
}

/* Input error */
.input-error {
  border-color: #ef4444 !important;
}

/* ---- 45. ACCOUNT PAGE -------------------------------------- */
.account-page-section {
  padding: 50px 0;
}

.account-info {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, .06);
}

.account-setting-item {
  margin-bottom: 20px;
}

.account-setting-item:last-child {
  margin-bottom: 0;
}

.account-setting-item label {
  display: block;
  font-size: inherit;
  font-weight: 500;
  color: #000000;
  margin-bottom: 6px;
}

.account-setting-avatar .sub-section-title {
  margin-bottom: 16px;
}

.account-setting-button {
  padding-top: 8px;
}

.input-group-append {
  display: flex;
  align-items: center;
}

.input-group-append .input-group-text {
  border-left: 2px solid #e5e7eb;
  border-right: none;
  cursor: pointer;
}

/* ---- 46. PRODUCT TABLE LISTING (old-style view compat) ----- */
.product-list-table {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid #f3f4f6;
  box-shadow: 0 2px 15px rgba(0, 0, 0, .05);
  margin-bottom: 30px;
}

.product-list-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.product-list-table thead tr {
  background: linear-gradient(135deg, #f7e8f5, #fdf2f8);
}

.product-list-table thead th {
  padding: 13px 14px;
  font-size: 12px;
  font-weight: 700;
  color: #000000;
  text-align: left;
  white-space: nowrap;
}

.product-list-table tbody tr {
  border-bottom: 1px solid #f3f4f6;
  transition: background .15s;
}

.product-list-table tbody tr:last-child {
  border-bottom: none;
}

.product-list-table tbody tr:hover {
  background: #fafafa;
}

.product-list-table tbody td {
  padding: 12px 14px;
  vertical-align: middle;
  font-size: inherit;
}

.product-list-table .product-thumb-cell img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 10px;
  background: #f9fafb;
  padding: 4px;
}

.product-list-table .product-title-cell a {
  font-weight: 600;
  color: #000000;
  font-size: inherit;
}

.product-list-table .product-title-cell a:hover {
  color: #b45da2;
}

.product-list-table .price-cell {
  font-weight: 700;
  color: #b45da2;
  font-size: 15px;
}

.product-list-table .price-old-cell {
  font-size: 12px;
  color: #000000;
  text-decoration: line-through;
}

/* Availability badge */
.avail-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
}

.avail-badge.out {
  background: #fee2e2;
  color: #dc2626;
}

.avail-badge.low {
  background: #fef3c7;
  color: #d97706;
}

.avail-badge.in {
  background: #d1fae5;
  color: #059669;
}

/* qty input in table */
.qty-input-table {
  display: flex;
  align-items: center;
  border: 2px solid #e5e7eb;
  border-radius: 50px;
  overflow: hidden;
  width: fit-content;
}

.qty-input-table input {
  width: 40px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: inherit;
  font-weight: 700;
  color: #000000;
  font-family: inherit;
  outline: none;
  padding: 6px 2px;
}

.product-card__addtocart-full {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 16px;
  background: linear-gradient(135deg, #b45da2, #9a4d8b);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all .2s;
  box-shadow: 0 4px 12px rgba(180, 93, 162, .25);
  white-space: nowrap;
}

.product-card__addtocart-full:hover {
  box-shadow: 0 6px 18px rgba(180, 93, 162, .40);
  transform: translateY(-1px);
}

.product-card__addtocart-full[disabled] {
  opacity: .5;
  cursor: not-allowed;
  transform: none;
}

.product-card__addtocart-icon {
  display: none;
}

/* ---- 47. PRODUCT LIST HEADER COUNT ------------------------- */
.blog-details-section {
  padding: 50px 0;
}

.shop-page-content {
  padding: 50px 0;
}

/* Cart modal ajax inner items */
.cart-modal-product {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f3f4f6;
}

.cart-modal-product:last-of-type {
  border-bottom: none;
}

.cart-modal-thumb {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  background: #f9fafb;
}

.cart-modal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-modal-content {
  flex: 1;
}

.cart-modal-content .h4 {
  font-size: inherit;
  font-weight: 600;
  color: #000000;
  line-height: 1.4;
  margin-bottom: 8px;
}

.cart-modal-content .h4 a {
  color: #000000;
}

.cart-modal-content h4 a:hover {
  color: #b45da2;
}

.cart-modal-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-modal-quantity {
  display: flex;
  align-items: center;
  gap: 4px;
}

.cart-modal-quantity p {
  font-size: inherit;
  font-weight: 600;
  color: #000000;
  margin: 0;
}

.cart-quantity-price {
  color: #b45da2 !important;
  font-weight: 700 !important;
}

.cart-modal-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f3f4f6;
}

.cart-modal-total h3 {
  font-size: inherit;
  font-weight: 600;
  color: #000000;
}

.cart-modal-total p {
  font-size: 15px;
  font-weight: 700;
  color: #b45da2;
  margin: 0;
}

.cart-modal-button {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 0 0;
}

.cart-modal-button .btn {
  width: 100%;
  justify-content: center;
}

.product-count-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #f3f4f6;
  margin-bottom: 20px;
  font-size: inherit;
  color: #000000;
  font-weight: 500;
}

/* ---- 48. ACCOUNT LAYOUT (sidebar + main col flex wrapper) --- */
.account-layout {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.account-sidebar-col {
  flex-shrink: 0;
  width: 260px;
}

.account-main-col {
  flex: 1;
  min-width: 0;
}

@media (max-width: 991px) {
  .account-layout {
    flex-direction: column;
  }

  .account-sidebar-col {
    width: 100%;
  }
}

/* ---- 49. ACCOUNT CARD -------------------------------------- */
.account-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 20px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, .06);
  overflow: hidden;
}

.account-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #f9fafb;
  background: linear-gradient(135deg, #f7e8f5, #fdf2f8);
}

.account-card-head h3 {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin: 0;
}


/* ---- 50. BRANDS / COMPANY GRID ----------------------------- */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
}

.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 16px;
  background: #fff;
  border: 2px solid #f3f4f6;
  border-radius: 16px;
  text-decoration: none;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

.brand-card:hover {
  border-color: #d4a0cb;
  box-shadow: 0 8px 24px rgba(180, 93, 162, .12);
  transform: translateY(-3px);
}

.brand-card-img {
  width: 100px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-card-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.brand-card-name {
  font-size: inherit;
  font-weight: 600;
  color: #000000;
  text-align: center;
}

/* ---- 51. STORE CARD ---------------------------------------- */
.stores-section {
  padding: 50px 0;
}

.store-card {
  background: #fff;
  border: 2px solid #f3f4f6;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow .3s, transform .2s;
}

.store-card:hover {
  box-shadow: 0 10px 30px rgba(180, 93, 162, .12);
  transform: translateY(-4px);
}

.store-card-img img {
  transition: transform .4s;
}

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

.store-card-info {
  padding: 16px;
}

.store-card-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin: 0;
}

/* ---- 52. STORE DETAIL PAGE --------------------------------- */
.sub-menuList {
  list-style: none;
  padding: 0;
  background: #fff;
  border: 2px solid #f3f4f6;
  border-radius: 16px;
  overflow: hidden;
}

.sub-menuList li a {
  display: block;
  padding: 12px 18px;
  font-size: inherit;
  font-weight: 500;
  color: #000000;
  border-bottom: 1px solid #f9fafb;
  transition: background .15s, color .15s;
  text-decoration: none;
}

.sub-menuList li:last-child a {
  border-bottom: none;
}

.sub-menuList li a:hover,
.sub-menuList li.active a {
  background: #f7e8f5;
  color: #b45da2;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  font-size: inherit;
  color: #000000;
  border-bottom: 1px solid #f9fafb;
}

.contact-info li:last-child {
  border-bottom: none;
}

.contact-info li i {
  font-size: 18px;
  color: #b45da2;
  margin-top: 1px;
  flex-shrink: 0;
}

.contact-info li a {
  color: #000000;
  text-decoration: none;
}

.contact-info li a:hover {
  color: #b45da2;
}

.map {
  border-radius: 16px;
  overflow: hidden;
  margin-top: 16px;
}

.map iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

/* ---- 53. BLOG DETAIL CSS ----------------------------------- */
.blog-details-content {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}

.blog-details-image {
  width: 100%;
  max-height: 420px;
  overflow: hidden;
}

.blog-details-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-details-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  margin: 16px 0 12px;
  line-height: 1.4;
}

.blog-details-content .blog-entry {
  padding: 12px 0 4px;
  margin: 0;
  gap: 14px;
  border-bottom: 1px solid #f3f4f6;
}

.blog-details-action {
  padding: 0;
}

.blog-action-category ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.blog-action-category ul li a {
  display: inline-block;
  padding: 4px 14px;
  background: #f7e8f5;
  color: #b45da2;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
}

.blog-action-category ul li a:hover {
  background: #fecdd3;
}

/* Blog recent sidebar */
.blog-recent-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-recent-content-item {
  display: flex;
  gap: 12px;
  padding: 10px 15px;
  padding-bottom: 0;
}

.blog-recent-content-item:last-child {
  padding-bottom: 15px;
}

.blog-recent-content-image {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
}

.blog-recent-content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-recent-content-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
}

.blog-recent-content-details h3 {
  font-size: inherit;
  font-weight: 600;
  color: #000000;
  line-height: 1.4;
  margin: 4px 0 0;
}

.blog-recent-content-details h3 a {
  color: #000000;
  text-decoration: none;
}

.blog-recent-content-details h3 a:hover {
  color: #b45da2;
}

.blog-entry-holder {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 8px;
}

.blog-holder-date {
  font-size: 11px;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ---- 54. MODAL DIALOG SIZE --------------------------------- */
.modal-dialog.modal-lg {
  max-width: 860px;
}

.modal-dialog.modal-sm {
  max-width: 480px;
}

/* ---- 55. CONTACT PAGE -------------------------------------- */
.contact-information {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ---- 56. SHOP PAGE CONTENT (stores/show.php) --------------- */
.shop-page-content {
  padding: 50px 0;
}

.shop-page-content article h3 {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 16px;
}

/* ---- 57. MISC UTILITY CLASSES ------------------------------ */
.w-100 {
  width: 100% !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.text-center {
  text-align: center !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-right {
  text-align: right !important;
}

.strong,
.bold {
  font-weight: 700;
}

.border-top {
  border-top: 1px solid #f3f4f6 !important;
}

.full-width {
  width: 100% !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.medium {
  font-weight: 500;
}

.no-gutters {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
  margin-right: 0;
  margin-left: 0;
}

.no-gutters>[class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.d-print-none {
  display: block;
}

@media print {
  .d-print-none {
    display: none !important;
  }
}

div#installment-options {
  flex-direction: column;
  gap: 8px;
}

div#installment-options div {
  display: flex;
  align-items: center;
  gap: 6px;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.checkout-form .notrow {
  margin: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}