/* ===================================================
   Woman_undergarments Theme - Feminine Pink/Rose UI
   Primary: #C2185B | Accent: #F48FB1 | BG: #FFF0F5
   =================================================== */

/* ---- CSS Variables ---- */
:root {
  --primary: #C2185B;
  --primary-dark: #880E4F;
  --primary-light: #F06292;
  --accent: #F8BBD0;
  --accent2: #FCE4EC;
  --text-dark: #2D2D2D;
  --text-mid: #5A5A5A;
  --text-light: #888;
  --white: #ffffff;
  --bg-light: #FFF5F8;
  --bg-section: #FFF0F5;
  --border: #F8C8D8;
  --shadow: 0 4px 20px rgba(194,24,91,0.08);
  --radius: 8px;
  --font: "Geologica", "Poppins", sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}
ul { padding: 0; margin: 0; list-style: none; }
a { text-decoration: none; color: inherit; transition: color .25s; }
p { margin: 0; padding: 0; }
h1,h2,h3,h4,h5,h6 { margin: 0; padding: 0; }
img { max-width: 100%; }

/* ---- WOW Slider ---- */
#wowslider-container1 .ws-title { display: none!important; }
#wowslider-container1 .ws_images { width: 100%!important; max-width: 100%; border: none; }
div#wowslider-container1 { max-width: unset; width: 100%!important; }

/* ---- Overlay (search) ---- */
.overlay {
  height: 100%; width: 100%; display: none;
  position: fixed; z-index: 99999; top: 0; left: 0;
  background: rgba(0,0,0,.85);
}
.overlay .closebtn {
  position: absolute; right: 27px; font-size: 60px;
  cursor: pointer; color: #fff; top: 30px;
}

/* ---- Top announcement bar ---- */
.topHeaderStrip {
  background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 8px 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.6px;
  overflow: hidden;
}
.topHeaderStrip .marquee-track {
  display: flex; align-items: center; gap: 60px;
  animation: marqueeScroll 28s linear infinite;
  white-space: nowrap; width: max-content;
}
.topHeaderStrip .marquee-track span { display: inline-flex; align-items: center; gap: 6px; }
.topHeaderStrip .marquee-track span::before { content: '✦'; font-size: 9px; opacity: .75; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.topHeaderStrip a { color: rgba(255,255,255,.9); font-weight: 700; text-decoration: none; background: rgba(255,255,255,.18); padding: 1px 8px; border-radius: 10px; margin-left: 6px; }
.topHeaderStrip a:hover { background: rgba(255,255,255,.32); }

/* ---- Header ---- */
.wuHeader {
  background: #fff;
  box-shadow: 0 2px 20px rgba(194,24,91,0.10);
  position: sticky; top: 0; z-index: 1050;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, transparent 0%, var(--primary) 30%, #E91E8C 60%, var(--primary-dark) 100%) 1;
}
.wuHeaderInner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; gap: 10px;
}
.wuLogo { flex: 0 0 auto; position: relative; }
.wuLogo img { max-height: 52px; width: auto; display: block; transition: transform .3s; }
.wuLogo:hover img { transform: scale(1.04); }
.wuLogo::after {
  content: ''; position: absolute; right: -16px; top: 20%; bottom: 20%;
  width: 1px; background: linear-gradient(to bottom, transparent, var(--border), transparent);
}

/* Navigation */
.wuNav { flex: 1 1 auto; display: flex; justify-content: center; }
.wuNavList { display: flex; list-style: none; gap: 1px; align-items: center; }
.wuNavList > li { position: static; }
.wuNavLink {
  font-size: 12px; font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase; letter-spacing: 0.4px;
  padding: 7px 10px; display: block;
  border-radius: 50px;
  transition: all .22s ease;
  white-space: nowrap; position: relative;
}
.wuNavLink::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; right: 50%;
  height: 2px; background: var(--primary); border-radius: 2px;
  transition: left .22s ease, right .22s ease;
}
.wuNavList > li:hover > .wuNavLink {
  color: var(--primary);
  background: linear-gradient(135deg, rgba(194,24,91,.08), rgba(233,30,140,.05));
}
.wuNavList > li:hover > .wuNavLink::after { left: 10px; right: 10px; }

/* Mega dropdown */
.wuMegaDrop {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 12px 40px rgba(194,24,91,0.12);
  border-top: 2px solid var(--accent);
  z-index: 1200;
  padding: 30px 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .28s ease;
}
.wuNavList > li:hover > .wuMegaDrop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.wuMegaTitle {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .7px;
  margin-bottom: 14px;
}
.wuMegaSubList { list-style: none; padding: 0; margin: 0; }
.wuMegaSubList li { margin-bottom: 9px; }
.wuMegaSubList li a {
  font-size: 13px;
  color: var(--text-mid);
  transition: color .2s, padding-left .2s;
}
.wuMegaSubList li a:hover { color: var(--primary); padding-left: 4px; }
.wuMegaViewAll {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 12px;
  border-bottom: 1px solid var(--primary);
}
.megaProductCard {
  background: var(--bg-light);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
}
.megaProductCard:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.megaProductCard a { display: block; text-decoration: none; }
.megaCardImgWrap {
  position: relative;
  padding-top: 100%;
  background: var(--white);
}
.megaCardImgWrap img {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.megaProductCard .cardTitle {
  font-size: 11px; color: var(--text-dark);
  margin: 8px; text-align: center;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.megaProductsGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

/* Header Actions */
.wuActions { flex: 0 0 auto; display: flex; align-items: center; gap: 8px; }
.wuSearchWrap { width: 190px; }
.wuSearchInput {
  display: flex; background: var(--bg-light);
  border: 1.5px solid var(--border); border-radius: 50px;
  padding: 8px 8px 8px 16px; align-items: center;
  transition: all .25s; box-shadow: 0 1px 6px rgba(194,24,91,.06);
}
.wuSearchInput:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(194,24,91,.12);
  background: #fff;
}
.wuSearchInput input {
  border: none; background: transparent; font-size: 12px;
  width: 100%; outline: none; color: var(--text-dark); font-family: var(--font);
}
.wuSearchInput button {
  border: none; background: linear-gradient(135deg, var(--primary), #E91E8C);
  color: #fff; cursor: pointer; border-radius: 50%;
  width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
  font-size: 12px; flex-shrink: 0; transition: opacity .2s;
}
.wuSearchInput button:hover { opacity: .85; }
.wuActionIcons { display: flex; gap: 2px; align-items: center; }
.wuIconItem {
  display: flex; flex-direction: column; align-items: center;
  text-decoration: none; color: var(--text-dark); transition: all .2s;
  cursor: pointer; padding: 5px 8px; border-radius: 10px;
}
.wuIconItem:hover {
  color: var(--primary);
  background: linear-gradient(135deg, rgba(194,24,91,.07), rgba(233,30,140,.04));
}
.wuIconWrap { height: 26px; display: flex; align-items: center; position: relative; }
.wuIconItem svg { transition: stroke .2s; }
.wuIconItem:hover svg { stroke: var(--primary); }
.wuIconLabel { font-size: 10px; font-weight: 700; margin-top: 2px; color: var(--text-mid); letter-spacing: .3px; }
.wuIconItem:hover .wuIconLabel { color: var(--primary); }
.wuBadge {
  position: absolute; top: -6px; right: -8px;
  background: linear-gradient(135deg, var(--primary), #E91E8C);
  color: var(--white); font-size: 9px; font-weight: 800;
  border-radius: 50%; width: 16px; height: 16px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--white); box-shadow: 0 2px 6px rgba(194,24,91,.4);
}

/* Mobile header */
.wuMobileHeader {
  display: none;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(194,24,91,0.08);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1050;
}
.wuMobileHeaderInner { display: flex; align-items: center; justify-content: space-between; }
.wuMobileLogo img { max-height: 38px; }
.wuMobileActions { display: flex; align-items: center; gap: 14px; }
.wuMobileActions a, .wuMobileActions button {
  color: var(--text-dark);
  font-size: 18px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
}
.wuMobileActions a:hover { color: var(--primary); }
.mobileCartBadge {
  position: absolute; top: -6px; right: -8px;
  background: var(--primary); color: var(--white);
  border-radius: 50%; width: 16px; height: 16px;
  font-size: 9px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* Mobile sidebar */
.wuSidebarOverlay {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,.45);
  z-index: 1500;
  display: none;
}
.wuSidebarOverlay.show { display: block; }
.wuSidebar {
  position: fixed; top: 0; left: -320px;
  width: 300px; height: 100%;
  background: var(--white);
  z-index: 1600;
  transition: left .32s ease;
  overflow-y: auto;
}
.wuSidebar.open { left: 0; }
.wuSidebarHead {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wuSidebarHead img { max-height: 36px; filter: brightness(0) invert(1); }
.wuSidebarClose { background: none; border: none; color: var(--white); font-size: 22px; cursor: pointer; }
.wuSidebarNav { padding: 10px 0; }
.wuSidebarNav ul { list-style: none; }
.wuSidebarNav ul li { border-bottom: 1px solid var(--accent2); }
.wuSidebarNav ul li a {
  display: block; padding: 12px 20px;
  font-size: 14px; color: var(--text-dark); font-weight: 500;
}
.wuSidebarNav ul li a:hover { color: var(--primary); background: var(--bg-light); }
.wuSidebarSubList { display: none; padding-left: 20px; background: var(--bg-light); }
.wuSidebarSubList li a { font-size: 13px; padding: 9px 20px; color: var(--text-mid); }
.sidebarArrow { cursor: pointer; display: flex; align-items: center; justify-content: space-between; }
.sidebarArrow i { font-size: 14px; transition: transform .25s; }
.sidebarArrow.open i { transform: rotate(180deg); }

/* ---- Top announcement strip ---- */
.homeTopEventMain {
  background: linear-gradient(90deg, var(--primary-dark) 0%, #E91E8C 50%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 8px 0;
  text-align: center;
}
.homeTopEventText p { font-size: 12px; font-weight: 500; margin: 0; }
.homeTopEventText p b { font-weight: 700; }

/* ---- Hero Slider Wrapper ---- */
.wuHeroSlider { position: relative; }
.wuHeroSlider img { width: 100%; display: block; }

/* ---- Section Heading ---- */
.wuSectionHead {
  text-align: center;
  padding: 36px 0 20px;
}
.wuSectionHead h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.wuSectionHead h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 2px;
}
.wuSectionHead p { font-size: 14px; color: var(--text-mid); margin-top: 8px; }

/* ---- Category Section ---- */
.wuCategorySection { padding: 30px 0; background: var(--bg-light); }
.wuCategoryGrid { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.wuCategoryItem {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 8px 22px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  transition: all .25s;
  cursor: pointer;
}
.wuCategoryItem:hover, .wuCategoryItem.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(194,24,91,0.3);
}

/* homeCtg (top categories) */
.homeCtg {
  background: var(--bg-light);
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.category-box {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 6px;
  text-align: center;
  transition: all .25s;
  margin-bottom: 6px;
}
.category-box:hover { border-color: var(--primary); box-shadow: 0 4px 14px rgba(194,24,91,0.15); }
.category-box a {
  font-size: 12px; font-weight: 600;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: .4px;
}
.category-box:hover a { color: var(--primary); }

/* ---- Product Card ---- */
.homeProudctGrid {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: transform .25s, box-shadow .25s;
  margin-bottom: 16px;
}
.homeProudctGrid:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(194,24,91,0.14);
}
.homeProudctGrid > a {
  display: block;
  position: relative;
  overflow: hidden;
}
.homeProudctGrid > a img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform .4s;
}
.homeProudctGrid:hover > a img { transform: scale(1.05); }
.homeProductBadge {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 8px 10px;
  background: linear-gradient(0deg, rgba(0,0,0,.55) 0%, transparent 100%);
  color: var(--white);
}
.homeProductBadge span { font-size: 13px; font-weight: 600; }
.homeProductBadge span strike { opacity: .7; font-size: 11px; margin-left: 4px; }
.homeProudctGrid button, .homeProudctGrid .CartModalShowBtn {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), #E91E8C);
  color: var(--white);
  border: none;
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: .4px;
  transition: opacity .2s;
}
.homeProudctGrid button:hover, .homeProudctGrid .CartModalShowBtn:hover { opacity: .9; }

/* Product card (includes/productCard) */
.productBox {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  margin-bottom: 10px;
  position: relative;
}
.productBox:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(194,24,91,0.12); }
.productBox img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.productBadge {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(194,24,91,.75) 0%, transparent 100%);
  padding: 8px 10px;
}
.productBadge span { color: var(--white); font-size: 12px; font-weight: 600; }

/* ---- Featured Promotion ---- */
.homeLeargeCtg, .homeProduct { padding: 30px 0; }
.homeProudctLeft {
  display: block;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  min-height: 280px;
}
.homeProudctLeft img { width: 100%; height: 100%; object-fit: cover; display: block; }
.homeCgtTitle {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 18px;
  background: linear-gradient(0deg, rgba(0,0,0,.6) 0%, transparent 100%);
}
.homeCgtTitle span {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(0,0,0,.3);
}

/* ---- New Arrivals Section ---- */
.newArvialProduct { padding: 30px 0; background: var(--bg-section); }
.sectionHead { text-align: center; margin-bottom: 24px; }
.sectionHead h2 {
  font-size: 24px; font-weight: 700; color: var(--primary);
  position: relative; display: inline-block; padding-bottom: 10px;
}
.sectionHead h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 50px; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 2px;
}

/* ---- Brand/Feature section ---- */
.homeFavric {
  padding: 60px 0;
  background: linear-gradient(135deg, #fff0f5 0%, #fff 60%, #fce4ec 100%);
}
.homeFevricLeft h1 {
  font-size: 42px; font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 12px;
}
.homeFevricLeft h6 {
  font-size: 16px; color: var(--primary-dark); font-weight: 600; margin-bottom: 14px;
}
.homeFevricLeft p { font-size: 14px; color: var(--text-mid); line-height: 1.8; }
.homeFevricRight img { max-width: 100%; border-radius: 12px; box-shadow: 0 20px 50px rgba(194,24,91,0.15); }

/* ---- Popup Modal ---- */
.popup-overlay {
  display: none;
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,.6);
  z-index: 99999;
  align-items: center;
  justify-content: center;
}
.popup-content {
  background: var(--white);
  max-width: 480px;
  width: 90%;
  margin: auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  padding: 20px;
  text-align: center;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.popup-content img { max-width: 100%; border-radius: 8px; }
.popup-closeBtn {
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 22px; color: var(--text-dark);
  transition: color .2s;
}
.popup-closeBtn:hover { color: var(--primary); }

/* ---- Cart Sidebar ---- */
.CartRighBtn {
  position: absolute; top: 45%; left: -54px;
  z-index: 999; width: 54px; text-align: center;
  cursor: pointer;
}
.CartRighBtn .cart-count {
  padding: 2px 6px;
  background: var(--primary-dark); color: var(--white);
  display: inline-block; margin-top: 4px;
  min-width: 22px; height: 22px; line-height: 18px;
  font-size: 12px; font-weight: 700; border-radius: 11px;
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
}
.CartRighBtn .cart-shopping {
  padding: 12px 14px !important;
  background: linear-gradient(135deg, var(--primary), #E91E8C) !important;
  color: #fff !important;
  border-radius: 10px 0 0 10px !important;
  cursor: pointer;
  display: block;
  box-shadow: -3px 0 14px rgba(194,24,91,.45) !important;
  font-size: 20px;
  transition: opacity .2s;
}
.CartRighBtn .cart-shopping:hover { opacity: .85; }

/* ---- Cart Modal ---- */
.cart-icon {
  position: fixed; top: 50%; right: 0;
  transform: translateY(-50%);
  font-size: 28px;
  background: var(--primary); color: var(--white);
  padding: 5px 10px;
  box-shadow: 0 3px 8px rgba(194,24,91,0.4);
  cursor: pointer; z-index: 1100;
  transition: all .3s;
}
.cart-icon:hover { background: var(--primary-dark); transform: translateY(-50%) scale(1.1); }

/* ---- Checkout & Cart pages ---- */
.page-header { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); padding: 30px 0; }
.overlayPageHeaderNew { color: var(--white); }
.page-title { font-size: 28px; font-weight: 700; color: var(--white); margin: 0; }
.page-content { padding: 50px 0; }
.order_review {
  padding: 24px;
  background: var(--bg-light);
  border-radius: 10px;
  border: 1px solid var(--border);
}
.checkOut .form-control {
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 13px;
  transition: border-color .2s, box-shadow .2s;
  margin: 8px 0;
}
.checkOut .form-control:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(194,24,91,.12);
  outline: none;
}
.heading_s1 h4, .heading_s1 h5, .heading_s1 h6 { color: var(--primary-dark); font-weight: 700; margin-bottom: 10px; }
.order_review button {
  background: linear-gradient(135deg, var(--primary) 0%, #E91E8C 100%);
  border: none; color: var(--white); font-weight: 700;
  padding: 10px 28px; border-radius: 6px; margin-top: 16px;
  cursor: pointer; transition: opacity .2s;
}
.order_review button:hover { opacity: .9; }
.btn-success { background: linear-gradient(135deg, var(--primary) 0%, #E91E8C 100%)!important; border: none!important; }
.btn-success:hover { opacity: .9!important; }

/* Payment cards */
.pay-card {
  border: 2px solid var(--border);
  border-radius: 8px; padding: 12px; cursor: pointer;
  transition: all .2s; background: var(--white); text-align: center;
}
.pay-card:hover { box-shadow: 0 6px 20px rgba(194,24,91,.1); transform: translateY(-2px); }
.pay-input:checked+label .pay-card { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(194,24,91,.15); }
.check-badge {
  position: absolute; top: -10px; right: -10px;
  background: var(--primary); color: var(--white);
  width: 26px; height: 26px; border-radius: 50%;
  font-size: 13px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(194,24,91,.35);
  opacity: 0; transform: scale(.5); transition: all .15s;
}
.pay-input:checked+label .check-badge { opacity: 1; transform: scale(1); }
.pay-input { position: absolute; opacity: 0; pointer-events: none; }

/* ======================================
   Single Product Page — Pink/Rose Theme
   (same layout as Default Classic)
   ====================================== */
.singlePagePart { padding: 36px 0; background: var(--white); }
.singlePagePart > .container > .row { align-items: flex-start; }

/* Image gallery */
.productDetailImg { position: relative; }
.productDetailImg .swiper-button-next,
.productDetailImg .swiper-button-prev { color: var(--primary) !important; }
.productDetailImg .mySwiper2 { border-radius: 10px; overflow: hidden; border: 1px solid var(--border); margin-bottom: 8px; width: 100%; height: 100%; }
.productDetailImg .mySwiper2 img { display: block; width: 100%; height: 100%; object-fit: cover; }
.productDetailImg .mySwiper { padding: 3px 0; }
.productDetailImg .mySwiper .swiper-slide {
  border: 2px solid transparent; border-radius: 6px; overflow: hidden;
  cursor: pointer; opacity: .65; transition: all .25s ease; aspect-ratio: 1;
}
.productDetailImg .mySwiper .swiper-slide:hover { opacity: .9; transform: translateY(-1px); }
.productDetailImg .mySwiper .swiper-slide-thumb-active {
  border-color: var(--primary); opacity: 1;
  box-shadow: 0 4px 14px rgba(194,24,91,.3);
  transform: translateY(-2px);
}
.productDetailImg .mySwiper img { width: 100%; height: 100%; object-fit: cover; }

/* Product info */
/* ── Product Info Panel ── */
.singlePrductInfoGrid { padding: 0 0 0 20px; background: none; border: none; border-radius: 0; box-shadow: none; }
.singlePrductInfoGrid h3 { font-size: 22px; font-weight: 800; color: var(--text-dark); margin-bottom: 6px; line-height: 1.3; letter-spacing: -.2px; }

/* Price block */
.SingleProcutprice {
  padding: 0 !important; margin: 0 0 7px !important;
  background: none !important; border: none !important; border-left: none !important; border-radius: 0 !important;
  display: flex !important; align-items: center; flex-wrap: wrap; gap: 6px;
}
.SingleProcutprice span { font-size: 24px; font-weight: 900; color: var(--primary); }
.SingleProcutprice span del { color: var(--text-light); font-size: 14px; font-weight: 400; margin-right: 2px; }
.saveTk {
  display: inline-flex !important; align-items: center !important;
  background: #111 !important; color: #fff !important;
  font-size: 10px !important; font-weight: 300 !important;
  padding: 3px 7px !important; border-radius: 3px !important;
  vertical-align: middle !important; line-height: 1 !important;
  box-shadow: none !important; letter-spacing: 0 !important;
}

/* Stock */
.stockReady {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; margin-bottom: 8px;
  padding: 3px 10px; border-radius: 20px;
  background: #E8F5E9; border: 1px solid #A5D6A7; color: #1B5E20;
}
.stockReady::before { content: '●'; font-size: 8px; color: #2E7D32; }
.stockReady .stock { color: #1B5E20; }

/* Variation selectors */
.productSelector { margin-bottom: 8px; }
.color-label, .size-label {
  font-size: 11px; color: var(--text-mid); margin-bottom: 5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .4px;
}
.color-selector { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 2px; }
.color-option {
  width: 32px; height: 32px; border-radius: 50%; cursor: pointer;
  border: 2px solid transparent; transition: all .2s;
  box-shadow: 0 1px 4px rgba(0,0,0,.15);
}
.color-option.active, .color-option:hover { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(194,24,91,.2); transform: scale(1.1); }
.size-selector { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 2px; }
.size-option {
  padding: 5px 14px; border: 2px solid var(--border);
  border-radius: 50px; font-size: 12px; cursor: pointer; font-weight: 700;
  color: var(--text-dark); transition: all .2s; background: var(--white);
  box-shadow: 0 1px 3px rgba(0,0,0,.05);
}
.size-option.active, .size-option:hover {
  border-color: var(--primary); color: #fff;
  background: linear-gradient(135deg, var(--primary), #E91E8C);
  box-shadow: 0 3px 8px rgba(194,24,91,.3); transform: translateY(-1px);
}

/* Quantity + Action */
.productActionDiv { margin-top: 10px; }
.quntity { display: inline-flex; align-items: center; border: 1.5px solid var(--border); border-radius: 50px; overflow: hidden; }
.dcrementBtn, .incrementBtn {
  width: 36px; height: 36px; border: none;
  background: var(--accent2); color: var(--primary);
  font-size: 18px; font-weight: 700; cursor: pointer; transition: all .2s; line-height: 1;
}
.dcrementBtn { border-right: 1px solid var(--border) !important; border-radius: 50px 0 0 50px !important; }
.incrementBtn { border-left: 1px solid var(--border) !important; border-radius: 0 50px 50px 0 !important; }
.dcrementBtn:hover, .incrementBtn:hover { background: var(--primary); color: #fff; }
#quantity { width: 48px; height: 36px; text-align: center; border: none; font-size: 15px; font-weight: 800; color: var(--primary); background: var(--white); }

/* Add to Cart / Buy Now */
.btnAddToCart {
  display: block !important; width: 100% !important;
  background: #E53935 !important;
  color: #fff !important; border: none !important;
  padding: 11px 14px !important; font-size: 13px !important; font-weight: 700 !important;
  border-radius: 8px !important; cursor: pointer !important;
  transition: all .2s ease; text-align: center; margin-bottom: 2px;
  box-shadow: 0 3px 10px rgba(229,57,53,.25) !important;
}
.btnAddToCart:hover { opacity: .9 !important; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(229,57,53,.4) !important; }
.btnAddToCart.addTo {
  background: #111 !important; color: #fff !important; border: none !important;
  box-shadow: 0 3px 10px rgba(0,0,0,.15) !important;
}
.btnAddToCart.addTo:hover { background: #333 !important; opacity: 1 !important; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,.25) !important; }
.btnAddToCart.disallow { background: #E53935 !important; color: #fff !important; cursor: pointer !important; border: none !important; }
.btnAddToCart.disallow.addTo { background: #111 !important; color: #fff !important; border: none !important; }
.addTo { background: transparent !important; }

/* Order contact buttons */
.productCallOrder { margin-top: 8px; }
.productCallOrder .row { row-gap: 5px; }
.productCallOrder .btn {
  border-radius: 8px !important; font-weight: 700 !important;
  font-size: 12px !important; padding: 10px 10px !important;
  width: 100% !important; margin-bottom: 0 !important; border: none !important;
  display: block !important; text-align: center !important; color: #fff !important;
  transition: all .2s ease !important;
  box-shadow: 0 3px 8px rgba(0,0,0,.12) !important;
}
.productCallOrder .btn:hover { transform: translateY(-2px) !important; box-shadow: 0 6px 14px rgba(0,0,0,.2) !important; }
.productCallOrder .btn-call { background: linear-gradient(135deg,#1E88E5,#42A5F5) !important; }
.productCallOrder .btn-call:hover { background: linear-gradient(135deg,#1565C0,#1E88E5) !important; }
.productCallOrder .btn-whatsapp { background: linear-gradient(135deg,#25D366,#43e87b) !important; }
.productCallOrder .btn-whatsapp:hover { background: linear-gradient(135deg,#1a9e4e,#25D366) !important; }
.productCallOrder .btn-messenger { background: linear-gradient(135deg,#0084FF,#44b0ff) !important; }
.productCallOrder .btn-messenger:hover { background: linear-gradient(135deg,#005fcc,#0084FF) !important; }

/* Trust badges strip */
.wuTrustBadges { display: flex; align-items: center; flex-wrap: wrap; gap: 4px; margin: 8px 0; padding: 6px 10px; background: var(--bg-light); border-radius: 8px; border: 1px solid var(--border); }
.wuTrustBadge { display: flex; align-items: center; gap: 4px; font-size: 10.5px; color: var(--text-mid); font-weight: 600; flex: 1; min-width: 80px; }
.wuTrustBadge i { font-size: 12px; color: var(--primary); }
.wuProductDivider { border: none; border-top: 1px dashed var(--border); margin: 8px 0; }

/* Toggle / Accordion sections */
.toggle-section { margin-top: 8px; border: none; overflow: visible; }
.toggleButton {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; padding: 8px 0;
  background: none; border-bottom: 1px solid var(--border);
  transition: all .2s ease;
}
.toggleButton:hover .toggle-heading { color: var(--primary); }
.toggleTop { display: flex; align-items: center; gap: 9px; }
.toggleInfoIcon {
  width: 26px; height: 26px; border-radius: 6px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: #1a1a1a; color: #fff; font-size: 11px;
  transition: background .2s;
}
.toggleButton:hover .toggleInfoIcon { background: var(--primary); }
.toggle-heading { font-size: 13px; font-weight: 700; color: var(--text-dark); margin: 0; line-height: 1.2; transition: color .2s; }
.toggleButton p { font-size: 10.5px; color: var(--text-light); margin: 1px 0 0; line-height: 1.2; }
.toggle-content { display: none; padding: 8px 0; font-size: 13px; color: var(--text-mid); line-height: 1.6; background: none; }
.icon { font-size: 16px; color: #aaa; font-weight: 300; transition: color .2s; }
.toggleButton:hover .icon { color: var(--primary); }

/* Related products */
.relatedProductPart { padding: 40px 0; background: var(--bg-section); }
.relatedProductPart h3 { font-size: 22px; font-weight: 700; color: var(--primary); margin-bottom: 20px; }
.relatedGrid { margin-bottom: 16px; }

/* ---- Footer Top ---- */
.footerTop {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 36px 0;
}
.footerTopGrid { text-align: center; padding: 0 16px; }
.footerTopGrid i { font-size: 32px; color: rgba(255,255,255,.85); margin-bottom: 10px; display: block; }
.footerTopGrid h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.footerTopGrid p, .footerTopGrid h6 { font-size: 12px; color: rgba(255,255,255,.75); }
.footerTopGrid img { max-height: 40px; margin-top: 8px; filter: brightness(0) invert(1); opacity: .85; }

/* ---- Email Subscribe ---- */
.emailSubscirbeMain { background: #FFF0F5; padding: 40px 0; }
.emailSubscribeLeft h5 { font-size: 13px; font-weight: 700; color: var(--primary); margin-bottom: 14px; letter-spacing: .4px; }
.emailSubscribe .form-control {
  border: 1.5px solid var(--border); border-radius: 6px 0 0 6px;
  font-size: 13px; padding: 10px 14px;
}
.emailSubscribe .input-group-text {
  background: var(--primary); border: none; color: var(--white);
  font-weight: 700; border-radius: 0 6px 6px 0; cursor: pointer;
  padding: 0 18px;
  transition: opacity .2s;
}
.emailSubscribe .input-group-text:hover { opacity: .9; }
.emailSubscribeRight h5 { font-size: 13px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.emailSubscribeRight p { font-size: 13px; color: var(--text-mid); }

/* ---- Footer Main ---- */
footer { background: #1A0010; }
.footerMainPart { padding: 50px 0 30px; }
.footerGrid h5 { font-size: 14px; font-weight: 700; color: var(--accent); margin-bottom: 16px; letter-spacing: .5px; text-transform: uppercase; }
.footerGrid ul { list-style: none; }
.footerGrid ul li { margin-bottom: 10px; }
.footerGrid ul li a { font-size: 13px; color: rgba(255,255,255,.6); transition: color .2s, padding-left .2s; }
.footerGrid ul li a:hover { color: var(--primary-light); padding-left: 4px; }
.footerSocialLink ul { display: flex; gap: 10px; margin-top: 16px; }
.footerSocialLink ul li a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.7);
  font-size: 16px; transition: all .2s;
}
.footerSocialLink ul li a:hover { background: var(--primary); color: var(--white); }
.footerBottomPart {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px 0;
}
.copyText p { font-size: 12px; color: rgba(255,255,255,.4); text-align: center; }
.copyText p a { color: rgba(255,255,255,.5); }

/* ---- Mobile Fixed Footer Nav ---- */
.mobileFixedFooter {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--white);
  box-shadow: 0 -2px 12px rgba(194,24,91,0.12);
  z-index: 1100;
  display: none;
}
.mobileFixedFooter ul { display: flex; justify-content: space-around; padding: 6px 0; }
.mobileFixedFooter ul li a {
  display: flex; flex-direction: column; align-items: center;
  font-size: 10px; font-weight: 600; color: var(--text-mid);
  padding: 4px 8px; gap: 2px;
}
.mobileFixedFooter ul li a i { font-size: 18px; color: var(--text-mid); }
.mobileFixedFooter ul li a:hover i, .mobileFixedFooter ul li a:hover { color: var(--primary); }

/* ---- Cart / Sidebar Modals ---- */
.mobile-menu-side-modals {
  position: fixed; top: 0;
  height: 100%; z-index: 1300; overflow: visible;
  transition: transform .35s ease;
  background: var(--white);
  width: 320px;
  box-shadow: 4px 0 20px rgba(0,0,0,.15);
}
.mobile-menu-side-modals.left { left: 0; transform: translateX(-100%); }
.mobile-menu-side-modals.right { right: 0; transform: translateX(100%); }
.mobile-menu-side-modals.open-side { transform: translateX(0); }
.mobile-menu-side-modals2 {
  position: fixed; top: 0; right: 0;
  height: 100%; z-index: 1300; overflow-y: auto;
  transition: transform .35s ease;
  background: var(--white);
  width: 320px;
  box-shadow: -4px 0 20px rgba(0,0,0,.15);
  transform: translateX(100%);
}
.mobile-menu-side-modals2.open-side { transform: translateX(0); }
.cartAreaSection { padding: 0; height: 100%; }
.cartAreaSection1 { height: 100%; overflow: hidden; display: flex; flex-direction: column; }

/* ── Cart Panel ── */
.wuCartPanel { display: flex; flex-direction: column; height: 100%; }

/* Header */
.wuCartHead {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--primary-dark), #E91E8C);
  color: #fff;
  flex-shrink: 0;
}
.wuCartHeadLeft { display: flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 700; }
.wuCartHeadLeft .fa { font-size: 18px; }
.wuCartHeadBadge {
  background: #fff; color: var(--primary); font-size: 11px; font-weight: 800;
  border-radius: 50%; width: 20px; height: 20px; display: inline-flex;
  align-items: center; justify-content: center;
}
.wuCartClose {
  width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.2); border-radius: 50%; color: #fff;
  font-size: 15px; transition: background .2s;
}
.wuCartClose:hover { background: rgba(255,255,255,.35); color: #fff; }

/* Body */
.wuCartBody { flex: 1; overflow-y: auto; background: #fafafa; padding: 10px; }

/* Cart item */
.wuCartList { list-style: none; padding: 0; margin: 0; }
.wuCartItem {
  display: flex; gap: 10px; background: #fff; border-radius: 10px;
  padding: 10px; margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(194,24,91,.08);
  border: 1px solid var(--border);
}
.wuCartItemImg { width: 72px; height: 72px; flex-shrink: 0; border-radius: 8px; overflow: hidden; border: 1px solid var(--border); }
.wuCartItemImg img { width: 100%; height: 100%; object-fit: cover; }
.wuCartItemInfo { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.wuCartItemName { font-size: 12px; font-weight: 700; color: var(--text-dark); line-height: 1.4; }
.wuCartItemName:hover { color: var(--primary); }
.wuCartMeta { font-size: 11px; color: var(--text-light); display: inline-block; margin-right: 6px; }
.wuCartItemBottom { display: flex; align-items: center; gap: 6px; margin-top: 4px; }

/* Qty */
.wuCartQty { display: flex; align-items: center; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.wuQtyBtn {
  width: 24px; height: 24px; display: flex; align-items: center; justify-content: center;
  background: var(--accent2); cursor: pointer; font-size: 14px; font-weight: 700;
  color: var(--primary); user-select: none; transition: background .15s;
}
.wuQtyBtn:hover { background: var(--primary); color: #fff; }
.wuQtyInput { width: 30px; height: 24px; text-align: center; border: none; outline: none; font-size: 12px; font-weight: 700; background: #fff; }

/* Price & delete */
.wuCartItemPrice { flex: 1; text-align: right; font-size: 12px; color: var(--primary); font-weight: 700; }
.wuCartItemPrice del { color: var(--text-light); font-weight: 400; font-size: 11px; display: block; }
.wuCartDelete {
  width: 26px; height: 26px; display: flex; align-items: center; justify-content: center;
  background: #FFEBEE; border: none; border-radius: 6px; color: #e53935; cursor: pointer;
  font-size: 12px; transition: background .15s;
}
.wuCartDelete:hover { background: #e53935; color: #fff; }

/* Empty cart */
.wuCartEmpty { text-align: center; padding: 50px 20px; }
.wuCartEmpty img { width: 60%; max-width: 160px; margin-bottom: 14px; opacity: .8; }
.wuCartEmpty p { font-size: 14px; color: var(--text-mid); margin-bottom: 16px; }
.wuCartShopBtn {
  display: inline-block; padding: 10px 22px;
  background: linear-gradient(135deg, var(--primary), #E91E8C);
  color: #fff; border-radius: 8px; font-size: 13px; font-weight: 700;
  transition: opacity .2s;
}
.wuCartShopBtn:hover { opacity: .85; color: #fff; }

/* Footer */
.wuCartFoot {
  flex-shrink: 0; background: #fff;
  border-top: 2px solid var(--border);
  padding: 12px 14px 8px;
}
.wuCartSubtotal {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px; font-size: 14px;
}
.wuCartSubtotal span { color: var(--text-mid); }
.wuCartSubtotal strong { font-size: 18px; color: var(--primary); font-weight: 800; }
.wuCartCheckoutBtn {
  display: block; width: 100%; padding: 12px;
  background: linear-gradient(135deg, var(--primary), #E91E8C);
  color: #fff; border-radius: 8px; text-align: center;
  font-size: 15px; font-weight: 700; letter-spacing: .4px;
  transition: opacity .2s; margin-bottom: 8px;
  box-shadow: 0 4px 14px rgba(194,24,91,.35);
}
.wuCartCheckoutBtn:hover { opacity: .88; color: #fff; }
.wuCartTerms { font-size: 10px; color: var(--text-light); text-align: center; line-height: 1.5; }
.wuCartTerms a { color: var(--primary); font-weight: 600; }

/* Cart sidebar items */
.cartSiderHeader { background: var(--primary); color: var(--white); padding: 6px 14px; margin-bottom: 10px; }
.cartSideBarBody { background: var(--bg-light); padding: 10px; margin-bottom: 8px; border-radius: 6px; }
.cartProductTitle p, .cartProductTitle a { font-size: 13px; color: var(--text-dark); font-weight: 400; }
.cartSideBarProductInfo {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; border-top: 1px solid var(--border); padding: 5px;
}
.adsize { border: none; background: var(--primary); color: var(--white); padding: 4px 10px; font-size: 13px; border-radius: 4px; }
.cartDelet { border: none; background: #ef5350; color: var(--white); padding: 0 6px; font-size: 17px; border-radius: 4px; }
.cartBottomBtn a {
  background: linear-gradient(135deg, var(--primary), #E91E8C);
  color: var(--white); width: 100%; display: block;
  text-align: center; font-weight: 700; padding: 10px;
  border-radius: 6px;
}
.cartBottomBtn a:hover { opacity: .9; }
.sideBarCartTotal { width: 100%; text-align: center; font-size: 14px; background: var(--white); height: 40px; }
.cartSideBarBottom { position: fixed; bottom: 0; width: 100%; padding: 10px; background: var(--white); }

/* Product Image Swiper */
.productDetailImg .swiper { border-radius: 10px; overflow: hidden; }
.productDetailImg .mySwiper2 img { display: block; width: 100%; height: 100%; object-fit: cover; }
.productDetailImg .mySwiper { margin-top: 4px; }
.productDetailImg .mySwiper img { width: 100%; height: 100%; object-fit: cover; border-radius: 2px; }
.swiper-button-next, .swiper-button-prev { color: var(--primary)!important; }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 20px!important; }

/* ctgTag */
.ctgTag { margin-top: 6px; }
.ctgTag span { margin-bottom: 4px; color: var(--text-mid); display: block; font-size: 12px; }
.ctgTag span a { color: var(--text-light); }
.ctgTag span a:hover { color: var(--primary); }
.ctgTag span a.share {
  margin-right: 3px; border: 1px solid var(--border);
  border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; font-size: 12px; transition: all .2s;
}
.ctgTag span a.share:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }

/* Product category page */
.categoryPageTitle { padding: 30px 0 20px; }
.categoryPageTitle h2 { font-size: 26px; font-weight: 700; color: var(--primary); }
.filter-section { border: 1px solid var(--border); border-radius: 8px; padding: 16px; margin-bottom: 16px; }
.filter-section h6 { font-size: 13px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.ctgItem { display: flex; align-items: center; gap: 8px; padding: 5px 0; }
.ctgItem label { font-size: 13px; color: var(--text-mid); cursor: pointer; }
.ctgItem input[type=checkbox]:checked { accent-color: var(--primary); }

/* Breadcrumb */
.wuBreadcrumb { padding: 12px 0; background: var(--bg-light); border-bottom: 1px solid var(--border); }
.wuBreadcrumb ul { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.wuBreadcrumb ul li { font-size: 12px; color: var(--text-mid); }
.wuBreadcrumb ul li a { color: var(--primary); }
.wuBreadcrumb ul li::after { content: '›'; margin-left: 8px; color: var(--text-light); }
.wuBreadcrumb ul li:last-child::after { display: none; }

/* Alert styles */
.alert-danger { background: #FFEBEE; border: 1px solid #FFCDD2; color: #C62828; border-radius: 6px; }
.alert-success { background: #E8F5E9; border: 1px solid #C8E6C9; color: #2E7D32; border-radius: 6px; }

/* Cart page table */
.shop-table th { font-size: 12px; font-weight: 700; color: var(--text-mid); text-transform: uppercase; letter-spacing: .4px; }
.shop-table td { font-size: 13px; vertical-align: middle; }
.product-quantity .input-group { width: 100px!important; margin: 0 auto!important; }

/* Order Track / Payment */
.cartOrderPageCenter { text-align: center; padding: 60px 0; }
.cartTotalAmout p { font-size: 22px; margin-bottom: 28px; font-weight: 600; color: var(--primary); }
.cartLink a {
  background: linear-gradient(135deg, var(--primary), #E91E8C);
  color: var(--white); min-width: 300px;
  display: inline-block; padding: 12px; font-weight: 700; border-radius: 8px;
  margin-bottom: 16px; font-size: 15px;
  transition: opacity .2s;
}
.cartLink a:hover { opacity: .9; }

/* Form elements generic */
.form-control:focus { border-color: var(--primary)!important; box-shadow: 0 0 0 3px rgba(194,24,91,.1)!important; }
.btn-primary { background: var(--primary)!important; border-color: var(--primary)!important; }
.btn-primary:hover { background: var(--primary-dark)!important; }
.badge-primary, .bg-primary { background: var(--primary)!important; }

/* Customer Dashboard */
.wuDashboard { padding: 40px 0; background: var(--bg-light); min-height: 70vh; }
.wuDashboardSidebar { background: var(--white); border-radius: 10px; border: 1px solid var(--border); overflow: hidden; }
.wuDashboardSidebar ul { list-style: none; }
.wuDashboardSidebar ul li a {
  display: block; padding: 12px 18px; font-size: 13px;
  color: var(--text-mid); border-bottom: 1px solid var(--border);
  transition: all .2s;
}
.wuDashboardSidebar ul li a:hover, .wuDashboardSidebar ul li a.active {
  background: var(--bg-light); color: var(--primary); font-weight: 600;
  border-left: 3px solid var(--primary);
}

/* ── My Account Page ── */
.wuAccountPage { background: var(--bg-light); min-height: 80vh; padding-bottom: 50px; }

/* Hero */
.wuAccountHero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #E91E8C 60%, #F06292 100%);
  padding: 36px 0 28px; margin-bottom: 0;
}
.wuAccountHeroInner { display: flex; align-items: center; gap: 20px; }
.wuAccountAvatar {
  width: 70px; height: 70px; border-radius: 50%;
  background: rgba(255,255,255,.2); border: 3px solid rgba(255,255,255,.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; color: #fff; flex-shrink: 0;
}
.wuAccountHero h2 { color: #fff; font-size: 22px; font-weight: 700; margin: 0 0 4px; }
.wuAccountHero h2 span { color: #FFD6E8; }
.wuAccountHero p { color: rgba(255,255,255,.8); font-size: 13px; margin: 0; }

/* Nav tabs */
.wuDashNav {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 18px 0 10px;
}
.wuDashNavItem {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 600;
  background: #fff; color: var(--text-mid);
  border: 1.5px solid var(--border);
  transition: all .2s;
}
.wuDashNavItem i { font-size: 14px; }
.wuDashNavItem:hover { border-color: var(--primary); color: var(--primary); background: var(--accent2); }
.wuDashNavItem.active { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: 0 4px 12px rgba(194,24,91,.3); }
.wuDashNavItem.admin { background: #880E4F; color: #fff; border-color: #880E4F; }
.wuDashNavItem.logout { background: #FFEBEE; color: #e53935; border-color: #FFCDD2; }
.wuDashNavItem.logout:hover { background: #e53935; color: #fff; border-color: #e53935; }

/* Greeting */
.wuAccountGreeting { font-size: 13px; color: var(--text-mid); padding: 4px 0 16px; border-bottom: 1px solid var(--border); margin-bottom: 22px; }
.wuAccountGreeting strong { color: var(--text-dark); }
.wuLogoutLink { color: var(--primary); font-weight: 600; }

/* Dashboard Cards */
.wuDashCard {
  display: flex; align-items: center; gap: 16px;
  padding: 22px 20px; border-radius: 14px;
  background: #fff; border: 1.5px solid var(--border);
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  transition: all .25s; margin-bottom: 10px;
}
.wuDashCard:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(194,24,91,.18); border-color: var(--primary); }
.wuDashCardIcon {
  width: 60px; height: 60px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; flex-shrink: 0;
}
.wuDashCard.orders .wuDashCardIcon  { background: linear-gradient(135deg,#E91E8C,#F48FB1); color: #fff; }
.wuDashCard.account .wuDashCardIcon { background: linear-gradient(135deg,#7B1FA2,#CE93D8); color: #fff; }
.wuDashCard.wishlist .wuDashCardIcon { background: linear-gradient(135deg,#C2185B,#FF80AB); color: #fff; }
.wuDashCardBody h4 { font-size: 15px; font-weight: 700; color: var(--text-dark); margin: 0 0 3px; }
.wuDashCardBody p { font-size: 12px; color: var(--text-light); margin: 0; }
.wuDashCardArrow { margin-left: auto; color: var(--border); font-size: 13px; transition: color .2s, transform .2s; }
.wuDashCard:hover .wuDashCardArrow { color: var(--primary); transform: translateX(3px); }

/* Blog page */
.blogPage-content { padding: 40px 0; }
img.blogImg { display: block; width: 60%; }
.post-details { padding: 20px; background: var(--bg-light); margin-top: 20px; border-radius: 8px; }
.post-details p { font-size: 14px; line-height: 1.8; color: var(--text-mid); }
h2.post-title { margin-bottom: 12px; font-size: 24px; color: var(--primary); }

/* MobileTopHeader */
.mobileTopHeader { display: none; }

/* searchUlDiv */
.searchUlDiv, .searchUlDiv2 {
  position: absolute; top: 40px; z-index: 999; width: 100%;
}
.searchUlDiv ul, .searchUlDiv2 ul {
  background: var(--white);
  box-shadow: 0 8px 24px rgba(194,24,91,.1);
  border-radius: 8px; border: 1px solid var(--border);
}
.searchUlDiv ul li, .searchUlDiv2 ul li {
  border-bottom: 1px solid var(--bg-light); padding: 8px 14px;
}
.searchUlDiv ul li a, .searchUlDiv2 ul li a { font-size: 13px; color: var(--text-dark); }
.searchUlDiv ul li a:hover, .searchUlDiv2 ul li a:hover { color: var(--primary); }

/* scroll animation */
.clone { position: absolute; z-index: 9999; pointer-events: none; border-radius: 6px; }
.load-more-overlay {
  width: 18px; height: 18px;
  border: 2px solid var(--primary); border-bottom-color: transparent;
  border-radius: 50%; animation: rotation 1s linear infinite;
  display: none; position: absolute; left: 8px;
}
.load-more-overlay.loading { display: block; }
@keyframes rotation { 0%{transform:rotate(0deg)} 100%{transform:rotate(360deg)} }
.btn-cart { position: relative; }

/* Coupon section */
.discountApply input.form-control { border: 1.5px solid var(--border); border-radius: 6px 0 0 6px; }
.discountApply .apply {
  background: var(--primary); border: none; color: var(--white);
  padding: 8px 18px; font-weight: 700; border-radius: 0 6px 6px 0; cursor: pointer;
}
.discountApply .apply:hover { opacity: .9; }

/* Custom select (shipping) */
.custom_select label {
  display: block; border: 1.5px solid var(--border); padding: 10px 14px;
  border-radius: 6px; cursor: pointer; font-size: 13px; transition: border-color .2s, background .2s;
}
.custom_select label:has(input[type="radio"]:checked) { background: var(--accent2); border-color: var(--primary); }

/* MobileSidebar filter */
.MobileSidebar { padding: 16px; }
.MobileSidebar h3 { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 12px; border-bottom: 1px solid var(--border); padding-bottom: 8px; }
.price-input { display: flex; align-items: center; gap: 10px; font-size: 12px; margin-bottom: 10px; }
.price-input .field { display: flex; align-items: center; gap: 6px; }
.price-input input { width: 70px; border: 1px solid var(--border); padding: 4px 8px; font-size: 12px; border-radius: 4px; }
.slider { height: 4px; background: var(--border); border-radius: 2px; margin: 8px 0; position: relative; }
.slider .progress { height: 100%; background: var(--primary); border-radius: 2px; }
.range-input { display: flex; gap: -4px; }
.range-input input[type=range] { width: 50%; accent-color: var(--primary); }

/* orderNoteBox */
.orderNoteBox { border: 1px solid var(--border); padding: 18px; margin-top: 16px; background: var(--bg-light); text-align: center; border-radius: 8px; }

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .wuHeader { display: none; }
  .wuMobileHeader { display: block; }
  .mobileFixedFooter { display: block; }
  body { padding-bottom: 60px; }
  .mobileTopHeader { display: none; } /* we use wuMobileHeader */
  .homeFevricLeft h1 { font-size: 30px; }
  .homeProudctLeft { min-height: 180px; }
  .topHeaderStrip { font-size: 11px; padding: 6px 0; }
  .topHeaderStrip .marquee-track { gap: 40px; }
}
@media (max-width: 767px) {
  .singlePagePart { padding: 30px 0; }
  .productDetailImg .mySwiper2 { width: 100%; height: 100%; }
  .wuSectionHead h2 { font-size: 20px; }
  .homeFavric { padding: 40px 0; }
  .homeFevricLeft h1 { font-size: 26px; }
  .footerTopGrid { margin-bottom: 24px; }
  .mobileFixedFooter { display: block; }
  body { padding-bottom: 60px; }
  .singlePrductInfoGrid h3 { font-size: 20px; }
  .page-title { font-size: 22px; }
  .sticky-sidebar-wrapper { display: none; }
  .megaProductsGrid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .wuSectionHead h2 { font-size: 18px; }
  .homeProudctGrid > a img { aspect-ratio: 1; }
  .emailSubscirbeMain { padding: 24px 0; }
}

/* ---- Utility classes ---- */
.text-primary-wu { color: var(--primary)!important; }
.bg-primary-wu { background: var(--primary)!important; }
.border-primary-wu { border-color: var(--primary)!important; }
.rounded-wu { border-radius: var(--radius)!important; }

/* ---- Premium Product Card ---- */
.premium-product-card {
  background:#fff;
  border:1.5px solid var(--border);
  border-radius:16px;
  padding:0;
  position:relative;
  transition:all .3s cubic-bezier(.4,0,.2,1);
  display:flex; flex-direction:column; height:100%;
  overflow:hidden;
  box-shadow:0 2px 10px rgba(194,24,91,.07);
  margin-bottom:20px;
}
.premium-product-card:hover {
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(194,24,91,.18);
  border-color:var(--primary);
}

/* Image */
.premium-product-card .card-image-wrap {
  position:relative; width:100%; aspect-ratio:4/5;
  overflow:hidden; background:var(--bg-light);
}
.premium-product-card .card-image-wrap img {
  width:100%; height:100%; object-fit:cover;
  transition:transform .55s cubic-bezier(.4,0,.2,1);
  display:block;
}
.premium-product-card:hover .card-image-wrap img { transform:scale(1.08); }

/* Image link — full clickable area */
.premium-product-card .image-link {
  display: block; position: absolute; inset: 0; z-index: 1;
}

/* Hover overlay */
.premium-product-card .card-image-wrap::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(to top, rgba(136,14,79,.35) 0%, transparent 60%);
  opacity:0; transition:opacity .3s; pointer-events: none; z-index: 1;
}
.premium-product-card:hover .card-image-wrap::after { opacity:1; }

/* Discount badge */
.premium-product-card .discount-badge {
  position:absolute; top:10px; left:10px; z-index: 4;
  background:linear-gradient(135deg,#E91E8C,var(--primary));
  color:#fff; font-size:11px; font-weight:800;
  padding:4px 10px; border-radius:20px; z-index:3;
  box-shadow:0 3px 8px rgba(194,24,91,.4);
  letter-spacing:.3px;
}

/* Quick view */
.premium-product-card .quick-view-btn {
  position:absolute; top:10px; right:10px;
  width:34px; height:34px; border-radius:50%;
  background:rgba(255,255,255,.92); color:var(--primary)!important;
  display:flex; align-items:center; justify-content:center;
  font-size:13px; transition:all .2s; z-index:3; border:none; cursor:pointer;
  box-shadow:0 2px 8px rgba(0,0,0,.12);
}
.premium-product-card .quick-view-btn:hover {
  background:var(--primary); color:#fff!important; transform:scale(1.12);
}

/* Wishlist */
.premium-product-card .wishlist-btn {
  position:absolute; bottom:10px; right:10px;
  width:34px; height:34px; border-radius:50%;
  background:rgba(255,255,255,.92); border:none;
  box-shadow:0 2px 8px rgba(194,24,91,.2);
  color:var(--text-light);
  display:flex; align-items:center; justify-content:center;
  font-size:14px; transition:all .2s; z-index:3; cursor:pointer;
}
.premium-product-card .wishlist-btn:hover { transform:scale(1.12); color:var(--primary); background:#fff; }
.premium-product-card .wishlist-btn.active { color:var(--primary); background:#FFE4EF; }
.premium-product-card .wishlist-btn.active i::before { content:"\f004"; color:var(--primary); }

/* Card info */
.premium-product-card .card-info {
  display:flex; flex-direction:column; flex-grow:1;
  padding:12px 14px 14px;
}

/* Title */
.premium-product-card .product-title {
  font-size:13px; font-weight:700; line-height:1.45; margin:0 0 6px;
  height:38px; overflow:hidden;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical;
}
.premium-product-card .product-title a { color:var(--text-dark); text-decoration:none; transition:color .2s; }
.premium-product-card .product-title a:hover { color:var(--primary); }

/* Save badge */
.premium-product-card .save-badge {
  background:linear-gradient(90deg,#E8F5E9,#C8E6C9);
  color:#1B5E20; border:1px solid #A5D6A7;
  font-size:10px; font-weight:700; padding:3px 9px;
  border-radius:20px; align-self:flex-start; margin-bottom:9px;
  display:inline-flex; align-items:center; gap:4px;
}

/* Price + cart row */
.premium-product-card .price-cart-row {
  display:flex; align-items:center; justify-content:space-between;
  margin-top:auto; padding-top:2px;
  border-top:1px solid var(--border);
  padding-top:9px;
}
.premium-product-card .price-group { display:flex; align-items:baseline; flex-wrap:wrap; gap:5px; }
.premium-product-card .current-price { font-size:16px; font-weight:900; color:var(--primary); }
.premium-product-card .regular-price { font-size:11px; color:#bbb; text-decoration:line-through; }
.premium-product-card .discount-pct {
  font-size:10px; font-weight:800; color:#fff;
  background:var(--primary); padding:1px 5px; border-radius:4px;
}

/* Cart button */
.premium-product-card .cart-btn {
  width:38px; height:38px; border-radius:50%;
  background:linear-gradient(135deg,var(--primary),#E91E8C);
  border:none; color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:14px; cursor:pointer; transition:all .25s;
  box-shadow:0 4px 12px rgba(194,24,91,.4);
  flex-shrink:0;
}
.premium-product-card .cart-btn:hover {
  background:linear-gradient(135deg,var(--primary-dark),var(--primary));
  transform:scale(1.12);
  box-shadow:0 6px 18px rgba(194,24,91,.5);
}

@media(max-width:768px){
  .premium-product-card { border-radius:12px; margin-bottom:12px; }
  .premium-product-card .card-image-wrap { aspect-ratio:1/1; }
  .premium-product-card .card-info { padding:9px 10px 10px; }
  .premium-product-card .discount-badge { font-size:9px; padding:2px 7px; }
  .premium-product-card .product-title { font-size:11px; height:32px; }
  .premium-product-card .current-price { font-size:13px; }
  .premium-product-card .cart-btn { width:30px; height:30px; font-size:12px; }
  .premium-product-card .quick-view-btn,
  .premium-product-card .wishlist-btn { width:28px; height:28px; font-size:11px; }
}

/* ---- Category Products Page ---- */
.categoryTab .row { margin:0 -8px; }
.categoryTab .row .col-md-3 { padding:8px; }
@media(max-width:767px){
  .categoryTab .row { margin:0 -4px; }
  .categoryTab .row .col-md-3 { padding:4px; }
}

/* ---- Alerts ---- */
.alerts-section { margin-bottom:12px; }

/* ---- Cart page ---- */
.cartTotalSummery { background:var(--bg-light); padding:18px; text-align:center; border-radius:8px; border:1px solid var(--border); }
.cartTotalSummery tr th, .cartTotalSummery tr td { padding:6px; font-size:13px; }
.order_review .heading_s1 { display:flex; justify-content:space-between; align-items:center; }
.order_review .heading_s1 a { font-size:12px; color:var(--primary); }

/* ---- Checkout page ---- */
.overlayPageHeaderNew h1 { font-size:24px; font-weight:700; }
.orderSummryTable th { font-weight:600; font-size:13px; }
.orderSummryTable tr td { font-size:13px; vertical-align:middle; }

/* Make container-fluid responsive at desktop */
@media(min-width:992px){
  .container-fluid.px-lg-5 { padding-left:60px!important; padding-right:60px!important; }
}
