 
/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --brand: #0068AD;
  --brand-dark: #004f85;
  --brand-light: #0078C8;
  --secondary-bg: #E9F1FC;
  --text-main: rgba(0,0,0,0.8);
  --text-muted: rgba(0,0,0,0.55);
  --white: #ffffff;
  --card-gradient: linear-gradient(90deg, #090B0F 41%, #0078C8 97%);
  --font-heading: 'Montserrat', sans-serif;
  --font-body: "Lato", sans-serif;
  --transition: 0.25s ease;
  --shadow-sm: 0 2px 8px rgba(0,104,173,0.10);
  --shadow-md: 0 6px 24px rgba(0,104,173,0.15);
  --shadow-lg: 0 12px 40px rgba(0,104,173,0.18);
  --radius: 10px;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--white);
  overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }

h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar-cashnet {
  background: var(--white);
  border-bottom: 2px solid var(--secondary-bg);
  position: sticky;
  top: 0;
  z-index: 1050;
  box-shadow: 0 2px 12px rgba(0,104,173,0.08);
}

.navbar-cashnet .navbar-brand img {
  height: 48px;
}

/* Nav links */
.navbar-cashnet .nav-link {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main) !important;
  padding: 0.5rem 1.5rem !important;
  position: relative;
  transition: color var(--transition);
  letter-spacing: 0.01em;
}

.navbar-cashnet .nav-link:hover,
.navbar-cashnet .nav-link.active {
  color: var(--brand) !important;
}

.navbar-cashnet .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0.9rem;
  right: 0.9rem;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.navbar-cashnet .nav-link:hover::after { transform: scaleX(1); }

/* Dropdown */
.navbar-cashnet .dropdown-menu {
  border: 1px solid rgba(0,104,173,0.15);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;
  min-width: 220px;
  font-family: var(--font-body);
}

.navbar-cashnet .dropdown-item {
  font-size: 0.85rem;
  color: var(--text-main);
  padding: 0.45rem 1.2rem;
  transition: background var(--transition), color var(--transition);
}

.navbar-cashnet .dropdown-item:hover {
  background: var(--secondary-bg);
  color: var(--brand);
}

.navbar-cashnet .dropdown-submenu { position: relative; }

.navbar-cashnet .dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -4px;
  display: none;
}

.navbar-cashnet .dropdown-submenu:hover > .dropdown-menu { display: block; }

.navbar-cashnet .dropdown-submenu > a::after {
  content: ' ›';
  float: right;
  font-weight: 700;
}

/* Nav icons */
.nav-icons-group {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem 0.5rem;
  color: var(--text-main);
  font-size: 1.15rem;
  border-radius: 50%;
  transition: background var(--transition), color var(--transition);
  position: relative;
  line-height: 1;
}

.nav-icon-btn:hover {
  background: var(--secondary-bg);
  color: var(--brand);
}

.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--brand);
  color: var(--white);
  font-size: 0.55rem;
  font-weight: 700;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   SEARCH POPUP
   ============================================================ */
#searchOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(9,11,15,0.65);
  z-index: 2000;
  align-items: flex-start;
  justify-content: center;
  padding-top: 90px;
}

#searchOverlay.active { display: flex; }

.search-panel-wrapper {
  width: 100%;
  max-width: 820px;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.search-bar-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-lg);
}

.search-bar-panel input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--text-main);
}

.search-bar-panel input::placeholder { color: rgba(0,0,0,0.4); }

.search-bar-panel .btn-search-go {
  background: var(--brand);
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 0.55rem 1.4rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background var(--transition);
}

.search-bar-panel .btn-search-go:hover { background: var(--brand-dark); }

.search-categories-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
}

.search-categories-panel h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.cat-item {
  border: 1px solid rgba(0,104,173,0.15);
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}

.cat-item:hover {
  background: var(--secondary-bg);
  border-color: var(--brand);
}

.cat-item .cat-icon {
  width: 32px;
  height: 32px;
  background: var(--secondary-bg);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 1rem;
  flex-shrink: 0;
}

.cat-item-text strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-main);
  font-family: var(--font-heading);
}

.cat-item-text span {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.search-categories-panel .see-all-btn {
  display: block;
  margin: 1rem auto 0;
  border: 1.5px solid var(--brand);
  border-radius: 50px;
  background: transparent;
  color: var(--brand);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.45rem 1.6rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.search-categories-panel .see-all-btn:hover {
  background: var(--brand);
  color: var(--white);
}

/* ============================================================
   ACCOUNT DROPDOWN POPUP
   ============================================================ */
#accountDropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,104,173,0.12);
  padding: 1.25rem;
  min-width: 260px;
  z-index: 1100;
}

#accountDropdown.active { display: block; }

.account-popup-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.account-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.account-option-card {
  background: var(--secondary-bg);
  border-radius: 8px;
  padding: 1rem 0.8rem;
  text-align: center;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition);
  position: relative;
}

.account-option-card:hover { background: rgba(0,104,173,0.12); box-shadow: var(--shadow-sm); }

.account-option-card i { font-size: 1.5rem; color: var(--brand); margin-bottom: 0.4rem; }

.account-option-card p {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--text-main);
}

.account-option-card .arrow-link {
  color: var(--brand);
  font-size: 1rem;
  font-weight: 700;
}

.account-popup-close {
  position: absolute;
  top: 0.5rem;
  right: 0.7rem;
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: var(--text-muted);
}

/* ============================================================
   CART DRAWER
   ============================================================ */
#cartDrawer {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(9,11,15,0.55);
  z-index: 2000;
  justify-content: flex-end;
}

#cartDrawer.active { display: flex; }

.cart-drawer-inner {
  background: var(--white);
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  animation: slideInRight 0.28s ease;
}

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--secondary-bg);
}

.cart-drawer-header h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--text-main);
}

.cart-close-btn {
  background: none;
  border: none;
  font-size: 2.4rem;
  cursor: pointer;
  color: var(--text-main);
}

.cart-empty-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.cart-empty-icon {
  width: 90px;
  height: 90px;
  background: #f0f4f8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--brand);
}

.cart-empty-body p {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ============================================================
   HERO SLIDER  (Owl-like using Bootstrap carousel)
   ============================================================ */
.hero-slider {
  position: relative;
  overflow: hidden;
}

.hero-slider .carousel-item {
  min-height: 750px;
  background: linear-gradient(120deg, #060810 0%, #0068AD 100%);
  display: flex;
  align-items: center;
}

.hero-slide-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3.5rem 0;
  gap: 2rem;
}

.hero-text { flex: 0 0 55%; max-width: 55%; }

.hero-text .badge-tag {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 0.3rem 0.9rem;
  margin-bottom: 1rem;
}

.hero-text h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15; text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 440px;
}

.btn-hero-primary {
    background: var(--white);
    color: var(--brand);
    border: none;
    border-radius: 7px;
    padding: 0.75rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), transform var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-hero-primary:hover {
  background: var(--brand);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-img-col { flex: 0 0 42%; text-align: center; }

.hero-img-col img {
  max-height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.4));
  margin: 0 auto;
}

/* Carousel controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

.hero-slider .carousel-indicators button {
  width:20px;
  height:20px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  border: none;
}

.hero-slider .carousel-indicators button.active {
  background: var(--brand);
}

.carousel-indicators {
    width: fit-content;
    background: #fff;
    padding: 10px;
    border-radius: 50px;
    margin-left: 6%;
    margin-bottom: 3rem;
} 
/* ============================================================
   QUICK TABS  (below banner)
   ============================================================ */
.quick-tabs-bar {
    background: var(--secondary-bg);
    padding: .5rem 0;
}

.tabs-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tabs-scroll {
    overflow-x: auto;
    scrollbar-width: none;
    flex: 1;
}

.tabs-scroll::-webkit-scrollbar {
    display: none;
}

.quick-tabs-bar .nav-tabs {
    border: none;
    flex-wrap: nowrap; /* single row */
    gap: 0.6rem;
    width: max-content;margin: 10px auto ;
}

.quick-tabs-bar .nav-item {
    flex-shrink: 0;
}

.quick-tabs-bar .nav-tabs .nav-link {
    border: 1px solid var(--brand);
    color: var(--brand);
    border-radius: 50px;
    padding: 0.42rem 1.3rem;
    font-family: var(--font-body);
    font-size: 1em;
    font-weight: 500;
    background: transparent;
    white-space: nowrap;
    transition: background var(--transition), color var(--transition);
}

.quick-tabs-bar .nav-tabs .nav-link:hover,
.quick-tabs-bar .nav-tabs .nav-link.active {
    background: var(--brand);
    color: var(--white);
    border-color: var(--brand);
}

.tab-arrow {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.tab-arrow:hover {
    opacity: 0.9;
}
/* ============================================================
   AT CASHNET SECTION
   ============================================================ */
.at-cashnet-section { padding: 5rem 0; }

.at-cashnet-section .section-headline {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.4;
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.at-cashnet-section .section-headline span { color: var(--brand); }

.at-cashnet-section .section-sub {
    text-align: center;
    color: #000;
    max-width: 953px;
    margin: 0 auto 0rem;
    font-weight: 500;
    font-size: 1.189rem;
    line-height: 1.7;
}

.cashnet-feature-row {
  display: grid; 
  gap: 2.5rem;position:relative;
  align-items: center;
  margin-top: 1rem;
}

.cashnet-feature-row img {
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    width: 100%;
    height: 592px;
    object-fit: cover;
    margin-top: 40px;
}

.cashnet-feature-text h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.cashnet-feature-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

/* Pre-owned card */
.pre-owned-card {
  background: var(--brand);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pre-owned-card i { font-size: 1.6rem; }
.pre-owned-card h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
}

.pre-owned-card p { font-size: 0.82rem; opacity: 0.88; line-height: 1.6; }

.btn-outline-white {
  border: 1.5px solid var(--white);
  border-radius: 6px;
  color: var(--white);
  background: transparent;
  padding: 0.45rem 1.1rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-outline-white:hover { background: var(--white); color: var(--brand); }

/* ============================================================
   CHOOSE SERVICE SECTION
   ============================================================ */
.choose-service-section {
  background: var(--secondary-bg);
  padding: 5rem 0;padding-left:6%;
}

.section-title-sm {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand);
  margin-bottom: 0.4rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.5vw, 2.5rem);
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: .8rem;
    text-transform: uppercase;
    letter-spacing: -3%;
}

.section-title span { color: var(--brand); }

/* Service Cards Slider */
.service-slider-wrapper { position: relative; }

.service-cards-track {
  display: flex;
  gap: 1.25rem;
  overflow: hidden;
  cursor: grab;
  user-select: none;padding-top: 30px;
}

.service-cards-track:active { cursor: grabbing; }

.service-card {
    background: var(--card-gradient);
    border-radius: 12px;
    padding: .75rem;
    color: var(--white);
    min-width: calc(44% - 0.85rem);  
    display: flex;
    min-height: 320px;
    flex-direction: row-reverse;
    gap: 0.75rem;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: var(--shadow-md);
}


.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.service-card-thumb {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 0;
}


.service-card h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.service-card p {
    font-size: 16px;
    opacity: 1;
    line-height: 1.65; font-weight: 400;
}


.service-card  .btn-hero-primary {
    background: var(--white);
    color: var(--brand);
    border: none;
    border-radius: 7px;
    padding: 0.50rem 1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.rem;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), transform var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.service-card-thumb + div {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.btn-card-link {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 6px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: background var(--transition);
  align-self: flex-start;
}

.btn-card-link:hover { background: rgba(255,255,255,0.12); }

/* Slider nav arrows */
.slider-arrows {
    display: flex;
    gap: 0.6rem;
    justify-content: flex-end;
    margin-bottom: 1rem;
    margin-top: 1.2rem;
    position: absolute;
    right: 15%;
    bottom: -86px;
}

.slider-arrow-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--brand);
  background: var(--white);
  color: var(--brand);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.slider-arrow-btn:hover { background: var(--brand); color: var(--white); }

.cant-decide {
    margin-top: 1.5rem;
    font-size: 1.5rem;
    color: var(--text-body);
}

.cant-decide a { color: var(--brand); font-weight: 500; text-decoration: underline; }

/* ============================================================
   WHY CASHNET
   ============================================================ */
.why-cashnet-section { padding: 5rem 0; }

.why-card {
  text-align: start; 
}

.why-card-img {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 1.2rem;
}

.why-card h5 {    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 0.6rem;
}

.why-card p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.5;
  margin-bottom: 0.9rem;
}

.btn-learn-more {
  background: none;
  border: none;
  color: var(--brand);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--transition);
}

.btn-learn-more:hover { gap: 0.55rem; }

button.btn-learn-more {
    display: flex;
    align-items: center;
}

button.btn-learn-more i {
    line-height: 0;
}
/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(120deg, #060810 0%, #004f85 60%, #0068AD 100%);
  padding: 10rem 0;
  position: relative;
  overflow: hidden;
} 

.cta-band h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 0.9rem;
    text-transform: uppercase;
}

.cta-band p {
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: 1.75rem;
}
.btn-cta-primary {
  background: var(--white);
  color: var(--brand);
  border: none;
  border-radius: 7px;
  padding: 0.8rem 2.2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}


.btn-cta-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

.cta-trust-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
}

.trust-badge div {
    background: #F5FFEA;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #212121;
}

.cta-band-img {
  max-height: 420px;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
}

/* ============================================================
   FEE DISCLOSURE
   ============================================================ */
.fee-disclosure-section { padding: 5rem 0; }

.fee-disclosure-section h2.section-main-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  color: var(--text-main);
  margin-bottom: 2.5rem;
}

.fee-disclosure-section h2.section-main-title span { color: var(--brand); }

 

.fee-card-img-col img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;border-radius: 12px;
}

.fee-card-body {
  padding: 0rem 2.5rem;
}

.fee-card-body p {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #F7F7F7;
  color: var(--text-main);
}

.footer-top {
  padding: 3.5rem 0 2rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.footer-brand img { height: 60px; margin-bottom: 1rem; }

.footer-brand p {
  font-size: 0.82rem;
  color: var(--text-main);
  line-height: 1.7;
  max-width: 240px;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}

.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  font-size: 0.85rem;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  cursor: pointer;
}

.social-icon:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}

/* Desktop footer columns — plain links, no accordion */
.footer-col-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  display: block;
}

.footer-link {
  display: block;
  color: var(--text-main);
  font-size: 0.89rem;
  padding: 0.22rem 0;
  transition: color var(--transition);
  cursor: pointer;
  font-family: var(--font-body);
}

.footer-link:hover { color: var(--brand); }

/* Mobile footer accordion (visible only on mobile) */
.footer-accordion-mobile .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.footer-accordion-mobile .accordion-button {
  background: transparent;
  color: var(--brand);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.75rem 0;
  box-shadow: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-accordion-mobile .accordion-button:not(.collapsed) { color: var(--brand); }

.footer-accordion-mobile .accordion-button::after {
  filter: none;
}

.footer-accordion-mobile .accordion-body {
  background: transparent;
  padding: 0.25rem 0 0.75rem;
}

/* Footer CTA bar */
.footer-cta-bar {
  background: linear-gradient(90deg, #003a60 0%, #0068AD 100%);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-cta-bar p {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
}

.footer-cta-bar .btn-cta-outline {
  border: 1.5px solid rgba(255,255,255,0.7);
  border-radius: 50px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.5rem 1.4rem;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}

.footer-cta-bar .btn-cta-outline:hover { background: var(--white); color: var(--brand); }

/* Warning button */
.btn-warning-borrow {
  border: 1.5px solid rgba(0,0,0,0.25);
  border-radius: 6px;
  background: transparent;
  color: var(--text-main);
  font-size: 0.78rem;
  font-family: var(--font-body);
  padding: 0.4rem 1rem;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.btn-warning-borrow:hover {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

/* Warning button inside CTA bar (white background) */
.footer-cta-bar .btn-warning-borrow {
  border-color: rgba(255,255,255,0.5);
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.07);
}

.footer-cta-bar .btn-warning-borrow:hover {
  background: rgba(255,255,255,0.2);
  color: var(--white);
  border-color: var(--white);
}

.footer-bottom {
  padding: 1.25rem 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p {
  font-size: 0.76rem;
  color: var(--text-main);
  margin: 0;
}

/* ============================================================
   WARNING MODAL
   ============================================================ */
.modal-warning .modal-header { border-bottom: none; padding-bottom: 0; }

.modal-warning .modal-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-main);
}

.modal-warning .modal-body {
  font-size: 0.85rem;
  color: var(--text-main);
  line-height: 1.75;
}

.modal-warning .modal-body ul { padding-left: 1.2rem; }

.modal-warning .modal-body ul li { margin-bottom: 0.5rem; }

.modal-warning .modal-footer {
  border-top: none;
  justify-content: flex-start;
  padding-top: 0;
}

.modal-warning .modal-footer small {
  color: var(--text-muted);
  font-size: 0.76rem;
}

/* ============================================================
   NAVIGATION DROPDOWN ARROW
   ============================================================ */
.navbar-cashnet .nav-link.dropdown-toggle::after {
  display: inline-block;
  content: '';
  border: none;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  vertical-align: middle;
  margin-left: 5px;
  transition: transform var(--transition);
}

.navbar-cashnet .nav-item.dropdown.show > .nav-link.dropdown-toggle::after {
  transform: rotate(180deg);
}

/* ============================================================
   OFFCANVAS MOBILE MENU  — opens from RIGHT
   ============================================================ */
.offcanvas-cashnet { width: 300px !important; }

.offcanvas-cashnet .offcanvas-header {
  border-bottom: 1px solid var(--secondary-bg);
  padding: 1rem 1.25rem;
}

.offcanvas-cashnet .offcanvas-body { padding: 0; }

.mobile-nav-item {
  border-bottom: 1px solid var(--secondary-bg);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
}

.mobile-nav-link:hover { color: var(--brand); background: var(--secondary-bg); }

.mobile-sub-menu {
  display: none;
  background: var(--secondary-bg);
  padding: 0.5rem 0;
}

.mobile-sub-menu.open { display: block; }

.mobile-sub-link {
  display: block;
  padding: 0.5rem 2rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition);
}

.mobile-sub-link:hover { color: var(--brand); }

/* ============================================================
   UTILITIES
   ============================================================ */
.btn-brand {
  background: var(--brand);
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 0.6rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-brand:hover { background: var(--brand-dark); transform: translateY(-1px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Desktop: show plain footer columns, hide mobile accordion */
@media (min-width: 768px) {
  .footer-desktop-cols { display: flex !important; }
  .footer-mobile-accordion { display: none !important; }
}

/* Mobile: hide plain cols, show accordion */
@media (max-width: 767.98px) {
  .footer-desktop-cols { display: none !important; }
  .footer-mobile-accordion { display: block !important; }
}

@media (max-width: 991.98px) {
  .hero-slide-inner { flex-direction: column; text-align: center; padding: 2.5rem 0; }
  .hero-text { flex: 0 0 100%; max-width: 100%; }
  .hero-img-col { display: none; }
  .cashnet-feature-row { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .service-card { min-width: calc(50% - 0.65rem); }
}

@media (max-width: 767.98px) {
  .hero-slider .carousel-item { min-height: 380px; }
  .cat-grid { grid-template-columns: 1fr; }
  .service-card { min-width: calc(100% - 0); }
  .footer-cta-bar { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-text h1 { font-size: 1.6rem; }
  .account-options { grid-template-columns: 1fr 1fr; }
  #accountDropdown { right: -20px; min-width: 240px; }
}

@media (max-width: 575.98px) {
  .quick-tabs-bar .nav-tabs { gap: 0.4rem; }
  .quick-tabs-bar .nav-tabs .nav-link { font-size: 0.72rem; padding: 0.35rem 0.9rem; }
}
 
@media (min-width: 1700px) {
.container-fluid {
    max-width: 1700px;
}

.hero-text {
    flex: 0 0 55%;
    max-width: 800px;
}

.hero-text p {
    font-size: 22px;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 1.75rem;
    max-width: 650px;
}}
button.btn-hero-primary i.bi.bi-arrow-right {
    font-size: 20px;
}

.shop-box {
    max-width: 301px;
    background: linear-gradient(90deg, #0078C8 41%, #00609F 97%);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    color: #fff;
    position: absolute;
    z-index: 9;
    right: 5%;
    bottom: -140px;
}

@media(min-width:1799px){
  
.shop-box { 
    right: -150px; 
}
}
.shop-box h6 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;text-transform: uppercase;line-height: 1.3;
}
.shop-box p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;font-family: var(--font-body);
}

.shop-box .cart-icon {
    width: 80px;
    display: flex;
    height: 80px;
    background: #fff;
    color: #016EB8;
    text-align: center;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    font-size: 32px;
    margin: 0 auto 20px;
}


.why-cashnet-subtitle{
  text-align: center;
    color: #000;
    max-width: 953px;
    margin: 0 auto 0rem;
    font-weight: 500;
    font-size: 1.189rem;
    line-height: 1.7;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.90rem;
    font-size: 1rem;
    color: #fff;
}
@media (min-width:767px) and (max-width: 1699.98px) {
.container-fluid {
    max-width: calc(100vw - 15%);
}}

@media(min-width:768px) and (max-width:1025px){
  .hero-slider .carousel-item {
    min-height: 768px; 
}
    .hero-slider .carousel-item {
        min-height: 750px;
        background: linear-gradient(120deg, #060810 0%, #0068AD 100%);
        display: flex;
        align-items: start;
        justify-content: center; 
    }
.hero-text p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin: auto;
    margin-bottom: 1.75rem;
    max-width: 440px;
}
.btn-hero-primary { 
    font-size: 1rem; 
}
    .hero-slide-inner {
        flex-direction: column;
        text-align: center;
        padding: 5rem 0 2.5rem 0;
    }

    .hero-slider .carousel-indicators button {
    width: 14px;
    height: 14px; 
}
.at-cashnet-section .section-sub { 
    font-size: 1rem;
    line-height: 1.5;
}
.cashnet-feature-row img { 
    height: 330px; 
}
.shop-box i.cart-icon {
    width: 50px; 
    height: 50px; 
    font-size: 24px;
    margin: 0 auto 20px;
}
.shop-box h6 { 
    font-size: 1rem; 
}
.shop-box {
    max-width: 260px;  
    z-index: 9;
    right: 5%;
    bottom: -155px;
}
.service-card { 
    flex-direction: column;
}
.service-card h4 { 
    font-size: 1.2rem;  
}
.service-card p {
    font-size: 14px;
    opacity: 1;
    line-height: 1.50;
    font-weight: 300;
}
.service-card  .btn-hero-primary { 
    font-size: 1rem;
}
.why-card h5 { 
    font-size: 1rem; 
}
.why-card p {
    font-size: 14px; 
}
.fee-card-body {
    padding: 0rem 1.5rem;
}
}

@media(max-width:767px){
  .fee-card-body {
    padding: 0rem 0;
}
    .hero-slider .carousel-item {
        min-height: 680px;
    }
.hero-slider .carousel-item {
        min-height: 750px;
        background: linear-gradient(120deg, #060810 0%, #0068AD 100%);
        display: flex;
        align-items: start;
        width: 100%;
        background-size: cover !important;
    }
.hero-slider .carousel-indicators button {
    width: 12px;
    height: 12px;  
}
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .tab-arrow {
    width: 30px;
    height: 30px; 
}
.at-cashnet-section {
    padding: 3rem 0;
}
.at-cashnet-section .section-headline { 
    font-size: clamp(1.2rem, 3vw, 2.5rem); 
}
.at-cashnet-section .section-sub { 
    font-size: 1rem; 
}
.cashnet-feature-row img {  
    height: 292px; 
}
.shop-box { 
    position: relative; 
    right: 0;
    bottom: 0;
    margin: auto;
    margin-top: -150px;
}
.shop-box h6 {
    font-family: var(--font-heading);
    font-size: 1.1rem; 
}
.shop-box p {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 15px; 
}
.btn-hero-primary { 
    padding: 0.75rem 1rem; 
}
.choose-service-section {
    background: var(--secondary-bg);
    padding: 3rem 0;
    padding-left: 6%;
}
.service-card { 
    flex-direction: column; 
}
.service-card h4 {
    font-size: 1rem; margin-bottom: 0.75rem;
}
.service-cards-track { 
    padding-top: 0;
}
.service-card p {
    font-size: 14px; 
}
    .service-card .btn-hero-primary {
        font-size: 1rem;
        padding: 10px;
    }
.cant-decide { 
    font-size: 1.2rem; 
}
.slider-arrows {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    margin-bottom: 1rem;
    margin-top: 1.2rem;
    position: unset;
    right: 0;
    bottom: 0;
}
    .service-card {
        min-width: calc(75% - 0.65rem);
    }
    .why-cashnet-subtitle { 
    font-size: 1rem; 
}
.why-card h5 { 
    font-size: 1rem; 
}
.why-card {
    text-align: start;
    width: 75%;
    margin: auto;
}
.banner-1{ background: url('../images/homepage/mobile-banner-1.png') center center no-repeat!important;
}
.banner-2{ background: url('../images/homepage/mobile-banner-2.png') center center no-repeat!important;
}
.hero-text p {
    font-size: 1rem;
    color: rgb(255, 255, 255);
    margin: auto;
    line-height: 1.7;
    margin-bottom: 1rem;
    max-width: 440px;
}
.cashnet-feature-row img { 
    margin-top:  0px;
}
.cta-band {
        background: url(../images/homepage/cta-mobile.png) center center no-repeat !important;
        padding: 50px 0;
        min-height: 768px;
        width: 100%;
        background-size: cover !important;
    }
    .cta-band p {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.5; 
}
.fee-disclosure-section {
    padding: 3rem 0;
}
.service-card-thumb {
    width: 100%;
    height: 150px; 
}
}




/* product page css */ 


/* ============================================================
   PRODUCT INNER PAGE – product-inner.css
   Uses only existing CSS variables from style.css
   Paste this entire file at the end of style.css
============================================================ */

/* ============================================================
   SHOP HERO BANNER
============================================================ */
.shop-hero-banner {
  background: linear-gradient(120deg, #060810 0%, #0068AD 100%);
  padding: 4rem 0 3.5rem;
  overflow: hidden;
}

.shop-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.shop-hero-text {
  flex: 0 0 55%;
  max-width: 55%;
}

.shop-hero-text h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.shop-hero-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 1);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    max-width: 440px;
}
.shop-hero-img {
  flex: 0 0 42%;
  text-align: right;
}

.shop-hero-img img {
  max-height: 320px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   SHOP TABS BAR (extends existing quick-tabs-bar)
============================================================ */
.shop-tabs-bar {
  padding: 0.6rem 0;
}

.shop-tabs-bar .tabs-wrapper {
  gap: 8px;
  flex-wrap: nowrap;
}

.btn-search-top-cat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--brand);
    color: var(--white);
    border: none;
    border-radius: 7px;
    padding: 1rem 1.2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--transition);
    flex-shrink: 0;
}
.btn-search-top-cat:hover { background: var(--brand-dark); }

/* ============================================================
   SORT BAR
============================================================ */
.shop-sort-bar {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--secondary-bg);
}

.sort-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.shop-breadcrumb {
  font-family: var(--font-body);
  font-size: 0.85rem;
}

.shop-breadcrumb .breadcrumb-item a {
  color: var(--brand);
  text-decoration: none;
}

.shop-breadcrumb .breadcrumb-item.active { color: var(--text-muted); }

.shop-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: '›';
  color: var(--text-muted);
}

.sort-right-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.results-count {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.sort-select-wrap {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.sort-select-wrap label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.sort-select {
  border: 1px solid rgba(0, 104, 173, 0.2);
  border-radius: 6px;
  padding: 0.35rem 2rem 0.35rem 0.7rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-main);
  background: var(--white);
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16'%3E%3Cpath fill='%230068AD' d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
  transition: border-color var(--transition);
}

.sort-select:focus { border-color: var(--brand); }

/* ============================================================
   SHOP MAIN LAYOUT
============================================================ */
.shop-main-layout {
    padding: 5rem 0 4rem;
}

.shop-layout-row {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

/* ============================================================
   SIDEBAR FILTERS
============================================================ */
.shop-sidebar {
    width: 360px;
    flex-shrink: 0;
    border: 1px solid #E5E5E5;
    position: sticky;
    background: #FFFFFF;
    top: 80px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 104, 173, 0.2) transparent;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 14px 18px 57px #00000012;
}
.shop-sidebar::-webkit-scrollbar { width: 4px; }
.shop-sidebar::-webkit-scrollbar-track { background: transparent; }
.shop-sidebar::-webkit-scrollbar-thumb { background: rgba(0, 104, 173, 0.2); border-radius: 4px; }

.sidebar-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.active-filters-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.filter-count-badge {
  background: var(--brand);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.clear-all-btn {
  background: none;
  border: none;
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  transition: color var(--transition);
}

.clear-all-btn:hover { color: var(--brand-dark); }

/* Filter Groups (Accordion) */
.filter-accordion { display: flex; flex-direction: column; }

.filter-group {
  border-bottom: 1px solid rgba(0, 104, 173, 0.1);
}

.filter-group-toggle {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  cursor: pointer;
  text-align: left;
  gap: 0.5rem;
}

.filter-group-toggle > span {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
}

.filter-group-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: rgb(var(--text-main),0.80);
}

.filter-group-sub {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: #C2042E;
}

.filter-active-tag {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: #C2042E;
  font-weight: 600;
}

.filter-chevron {
  font-size: 0.7rem;
  color: var(--text-body);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.filter-group-body {
  display: none;
  padding-bottom: 0.75rem;
}

.filter-group-body.open { display: block; }

/* Subgroups within location */
.filter-subgroup-header { margin-bottom: 0.25rem; }

.filter-subgroup-toggle {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.45rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  text-align: left;
}

.filter-subgroup-toggle i { font-size: 0.7rem; color: var(--text-muted); }

.filter-subgroup-body {
  display: none;
  padding-left: 0.75rem;
}

.filter-subgroup-body.open { display: block; }

.filter-subgroup-toggle.collapsed i {
  transform: none;
}

/* Filter Options */
.filter-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.3rem 0;
}

.filter-option-check { gap: 0.5rem; }

.filter-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-main);
  cursor: pointer;
  flex: 1;
}

.filter-checkbox-label input[type="checkbox"] {
  width: 14px;
  height: 14px;
  accent-color: var(--brand);
  cursor: pointer;
  flex-shrink: 0;
}

.filter-all-row .filter-checkbox-label { font-weight: 700; }

.filter-count {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* Price Range Inputs */
.price-range-inputs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.price-input-group {
  display: flex;
  align-items: center;
  border: 1px solid rgba(0, 104, 173, 0.2);
  border-radius: 6px;
  padding: 0.3rem 0.5rem;
  gap: 0.25rem;
  flex: 1;
}

.price-input-group span {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.price-input-group input {
  border: none;
  outline: none;
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-main);
}

.price-range-dash {
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* Filter text input */
.filter-text-input {
  width: 100%;
  border: 1px solid rgba(0, 104, 173, 0.2);
  border-radius: 6px;
  padding: 0.4rem 0.7rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-main);
  outline: none;
  transition: border-color var(--transition);
}

.filter-text-input:focus { border-color: var(--brand); }

/* Apply Button */
.btn-apply-filters {
  background: var(--brand);
  color: var(--white);
  border: none;
  border-radius: 7px;
  padding: 0.65rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  width: 100%;
  margin-top: 1.25rem;
  transition: background var(--transition);
}

.btn-apply-filters:hover { background: var(--brand-dark); }

/* ============================================================
   PRODUCT GRID
============================================================ */
.shop-products-area {
  flex: 1;
  min-width: 0;
}

.btn-mobile-filter {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: var(--brand);
  color: var(--white);
  border: none;
  border-radius: 7px;
  padding: 0.55rem 1.2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  margin-bottom: 1.25rem;
  position: relative;
  transition: background var(--transition);
}

.btn-mobile-filter:hover { background: var(--brand-dark); }

.mobile-filter-badge {
  background: #f5c000;
  color: #222;
  font-size: 0.65rem;
  font-weight: 800;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

/* Product Card */
.product-card {
  background: #E9F1FC;
  border: 1px solid rgba(0, 104, 173, 0.1);
  border-radius: var(--radius);padding: 10px;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.product-card.hidden { display: none; }

/* Product Image */
.product-card-img-wrap {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--secondary-bg);
    max-height: 172px;
    border-radius: 10px;
}

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

.product-img.loaded { opacity: 1; }

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

/* Lazy loading placeholder shimmer */
.lazy-img:not(.loaded) {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Discount Badge */
.product-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  z-index: 2;
}

.discount-badge {
  background: var(--brand);
  color: var(--white);
}

/* Wishlist Button */
.product-wishlist-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  background: #E1A325;
  border: 1px solid  #E1A325;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  color: #fff;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  box-shadow: var(--shadow-sm);
}

.product-wishlist-btn:hover,
.product-wishlist-btn.active {
  background: var(--brand);
  color: var(--white);
  border-color:  #E1A325;;
}

.product-wishlist-btn.active svg path {
  fill: var(--white);
  stroke: var(--white);
}

/* Product Card Body */
.product-card-body {
    padding: 12px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: #000000;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-location {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgb(var(--text-body), 0.80);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.2rem;
}

.product-price-current {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--brand);
}

.price-cents {
  font-size: 0.85rem;
  font-weight: 700;
}

.product-price-was {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.product-postage {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--text-muted);
  margin: 0;
}

.btn-view-product {
  display: block;
  background: var(--brand);
  color: var(--white);
  text-align: center;
  border: none;
  border-radius: 6px;
  padding: 0.55rem 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  margin-top: auto;
  padding-top: 0.55rem;
  transition: background var(--transition);
  text-decoration: none;
}

.btn-view-product:hover {
  background: var(--brand-dark);
  color: var(--white);
}

/* No Results */
.no-results-msg {
  text-align: center;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.no-results-msg p {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-muted);
}

/* ============================================================
   MOBILE FILTER OFFCANVAS
============================================================ */
.mobile-filter-header {
  border-bottom: 1px solid var(--secondary-bg);
}

.mobile-filter-header .offcanvas-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
}

.mobile-filter-body { padding: 1rem 1.25rem; }

.mobile-filter-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--secondary-bg);
  margin-top: 1rem;
}
    /* ── MOBILE FILTER OFFCANVAS SCOPED TO SHOP LAYOUT ── */
    .shop-main-layout {
      position: relative;
      overflow: hidden;
    }

    #mobileFilterOffcanvas {
      position: absolute;
      top: 0;
      bottom: 0;
      right: -100%;
      width: 320px;
      max-width: 90vw;
      height: 100%;
      background: #fff;
      z-index: 1045;
      display: flex;
      flex-direction: column;
      transition: right 0.3s ease;
      box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    }

    #mobileFilterOffcanvas.show {
      right: 0;
    }

    #mobileFilterBackdrop {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 1044;
      display: none;
    }

    #mobileFilterBackdrop.show {
      display: block;
    }

    /* ── MOBILE FILTER HEADER ── */
    .mobile-filter-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 20px;
      border-bottom: 1px solid #eee;
      flex-shrink: 0;
    }

    .mobile-filter-header .offcanvas-title {
      margin: 0;
      font-weight: 700;
      font-size: 16px;
    }

    .mobile-filter-close-btn {
      background: none;
      border: none;
      font-size: 22px;
      line-height: 1;
      cursor: pointer;
      color: #333;
      padding: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .mobile-filter-close-btn:hover {
      color: #000;
    }

    /* ── MOBILE FILTER BODY SCROLLABLE ── */
    .mobile-filter-body {
      flex: 1;
      overflow-y: auto;
      padding: 0 20px 20px;
    }

    /* ── MOBILE FILTER FOOTER ── */
    .mobile-filter-footer {
      padding: 16px 20px;
      border-top: 1px solid #eee;
      flex-shrink: 0;
    }

    /* ── FILTER ACCORDION BODY OPEN/CLOSE ── */
    .filter-group-body {
      display: none;
    }

    .filter-group-body.open {
      display: block;
    }

    /* ── FILTER SUBGROUP BODY ── */
    .filter-subgroup-body {
      display: none;
      padding-left: 12px;
    }

    .filter-subgroup-body.open {
      display: block;
    }

/* ============================================================
   WISHLIST POPUP
============================================================ */
.wishlist-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(9, 11, 15, 0.55);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  animation: fadeInOverlay 0.2s ease;
}

.wishlist-popup-overlay.active { display: flex; }

@keyframes fadeInOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}

.wishlist-popup {
  background: var(--white);
  border-radius: 14px;
  padding: 2rem 2rem 1.75rem;
  max-width: 360px;
  width: calc(100% - 2rem);
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: popupSlideUp 0.25s ease;
}

@keyframes popupSlideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.wishlist-popup-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  padding: 0.2rem;
  transition: color var(--transition);
}

.wishlist-popup-close:hover { color: var(--text-main); }

.wishlist-popup-icon {
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: center;
}

.wishlist-popup-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0;
}

.wishlist-popup-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin: 1rem 0;
}

.wishlist-popup-text {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.btn-wishlist-login {
  display: block;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  transition: background var(--transition);
  text-decoration: none;
  margin-bottom: 0.75rem;
}

.btn-wishlist-login:hover { background: #e0b000; color: #222; }

.btn-wishlist-later {
  background: none;
  border: none;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  transition: color var(--transition);
}

.btn-wishlist-later:hover { color: var(--brand); }

/* ============================================================
   RESPONSIVE – PRODUCT INNER PAGE
============================================================ */
@media (max-width: 1399.98px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1199.98px) {
  .shop-sidebar { width: 230px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991.98px) {
  .shop-sidebar { display: none; }
  .btn-mobile-filter { display: flex; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .shop-hero-inner { flex-direction: column; text-align: center; }
  .shop-hero-text { flex: 0 0 100%; max-width: 100%; }
  .shop-hero-text p { margin: 0 auto 1.75rem; }
  .shop-hero-img { display: none; }
}

@media (max-width: 767.98px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .sort-bar-inner { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .sort-right-group { width: 100%; justify-content: space-between; }
  .shop-hero-banner { padding: 2.5rem 0 2rem; }
  .shop-hero-text h1 { font-size: 1.5rem; }
  .btn-search-top-cat { display: none; }
}

@media (max-width: 575.98px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .product-card-body { padding: 0.6rem; }
  .product-name { font-size: 0.72rem; }
  .product-price-current { font-size: 1rem; }
  .btn-view-product { font-size: 0.75rem; padding: 0.45rem 0.5rem; }
  .wishlist-popup { padding: 1.5rem 1.25rem; }
}



   /* ===== NAVBAR ===== */
    .navbar-cashnet{background:var(--white);border-bottom:2px solid var(--secondary-bg);position:sticky;top:0;z-index:1050;box-shadow:0 2px 12px rgba(0,104,173,0.08);}
    .navbar-cashnet .navbar-brand img{height:48px;}
    .navbar-cashnet .nav-link{font-family:var(--font-heading);font-size:1rem;font-weight:600;color:var(--text-main)!important;padding:0.5rem 1.5rem!important;position:relative;transition:color var(--transition);letter-spacing:0.01em;}
    .navbar-cashnet .nav-link:hover,.navbar-cashnet .nav-link.active{color:var(--brand)!important;}
    .navbar-cashnet .nav-link::after{content:'';position:absolute;bottom:-2px;left:0.9rem;right:0.9rem;height:2px;background:var(--brand);transform:scaleX(0);transform-origin:left;transition:transform var(--transition);}
    .navbar-cashnet .nav-link:hover::after{transform:scaleX(1);}
    .navbar-cashnet .dropdown-menu{border:1px solid rgba(0,104,173,0.15);border-radius:var(--radius);box-shadow:var(--shadow-md);padding:0.5rem 0;min-width:220px;}
    .navbar-cashnet .dropdown-item{font-size:0.85rem;color:var(--text-main);padding:0.45rem 1.2rem;transition:background var(--transition),color var(--transition);}
    .navbar-cashnet .dropdown-item:hover{background:var(--secondary-bg);color:var(--brand);}
    .navbar-cashnet .nav-link.dropdown-toggle::after{display:inline-block;content:'';border:none;width:0;height:0;border-left:4px solid transparent;border-right:4px solid transparent;border-top:5px solid currentColor;vertical-align:middle;margin-left:5px;transition:transform var(--transition);}
    .navbar-cashnet .nav-item.dropdown.show>.nav-link.dropdown-toggle::after{transform:rotate(180deg);}
    .nav-icons-group{display:flex;align-items:center;gap:0.25rem;}
    .nav-icon-btn{background:none;border:none;cursor:pointer;padding:0.4rem 0.5rem;color:var(--text-main);font-size:1.15rem;border-radius:50%;transition:background var(--transition),color var(--transition);position:relative;line-height:1;}
    .nav-icon-btn:hover{background:var(--secondary-bg);color:var(--brand);}
    .cart-badge,.wishlist-badge{position:absolute;top:2px;right:2px;background:var(--brand);color:var(--white);font-size:0.55rem;font-weight:700;width:14px;height:14px;border-radius:50%;display:flex;align-items:center;justify-content:center;}
    .wishlist-badge{background:#E1A325;}

    /* ===== SEARCH OVERLAY ===== */
    #searchOverlay{display:none;position:fixed;inset:0;background:rgba(9,11,15,0.65);z-index:2000;align-items:flex-start;justify-content:center;padding-top:90px;}
    #searchOverlay.active{display:flex;}
    .search-panel-wrapper{width:100%;max-width:820px;padding:0 1rem;display:flex;flex-direction:column;gap:14px;}
    .search-bar-panel{background:var(--white);border-radius:var(--radius);padding:1rem 1.25rem;display:flex;align-items:center;gap:0.75rem;box-shadow:var(--shadow-lg);}
    .search-bar-panel input{flex:1;border:none;outline:none;font-size:1rem;font-family:var(--font-body);color:var(--text-main);}
    .search-bar-panel input::placeholder{color:rgba(0,0,0,0.4);}
    .search-bar-panel .btn-search-go{background:var(--brand);color:var(--white);border:none;border-radius:6px;padding:0.55rem 1.4rem;font-family:var(--font-heading);font-weight:600;font-size:0.9rem;cursor:pointer;transition:background var(--transition);}
    .search-bar-panel .btn-search-go:hover{background:var(--brand-dark);}

    /* ===== ACCOUNT DROPDOWN ===== */
    #accountDropdown{display:none;position:absolute;top:calc(100% + 10px);right:0;background:var(--white);border-radius:var(--radius);box-shadow:var(--shadow-lg);border:1px solid rgba(0,104,173,0.12);padding:1.25rem;min-width:260px;z-index:1100;}
    #accountDropdown.active{display:block;}
    .account-popup-title{font-family:var(--font-heading);font-weight:700;font-size:0.95rem;text-align:center;margin-bottom:1rem;color:var(--text-main);}
    .account-options{display:grid;grid-template-columns:1fr 1fr;gap:0.75rem;}
    .account-option-card{background:var(--secondary-bg);border-radius:8px;padding:1rem 0.8rem;text-align:center;cursor:pointer;transition:background var(--transition),box-shadow var(--transition);position:relative;}
    .account-option-card:hover{background:rgba(0,104,173,0.12);box-shadow:var(--shadow-sm);}
    .account-option-card i{font-size:1.5rem;color:var(--brand);margin-bottom:0.4rem;}
    .account-option-card p{font-family:var(--font-heading);font-size:0.8rem;font-weight:600;margin-bottom:0.3rem;color:var(--text-main);}
    .account-option-card .arrow-link{color:var(--brand);font-size:1rem;font-weight:700;}
    .account-popup-close{position:absolute;top:0.5rem;right:0.7rem;background:none;border:none;font-size:1rem;cursor:pointer;color:var(--text-muted);}

    /* ===== CART DRAWER ===== */
    #cartDrawer{display:none;position:fixed;inset:0;background:rgba(9,11,15,0.55);z-index:2000;justify-content:flex-end;}
    #cartDrawer.active{display:flex;}
    .cart-drawer-inner{background:var(--white);width:100%;max-width:100%;height:100%;display:flex;flex-direction:column;animation:slideInRight 0.28s ease;}
    @keyframes slideInRight{from{transform:translateX(100%)}to{transform:translateX(0)}}
    .cart-drawer-header{display:flex;align-items:center;justify-content:space-between;padding:1.25rem 1.5rem;border-bottom:1px solid var(--secondary-bg);}
    .cart-drawer-header h4{font-family:var(--font-heading);font-weight:800;font-size:1.1rem;letter-spacing:0.05em;color:var(--text-main);}
    .cart-close-btn{background:none;border:none;font-size:2.4rem;cursor:pointer;color:var(--text-main);line-height:1;padding:0;}

    /* Cart two-column body */
    .cart-drawer-body-layout{display:flex;flex:1;overflow:hidden;min-height:0;padding:40px 0}

    /* LEFT items area */
    .cart-items-area{flex:1;overflow-y:auto;padding:1.25rem 1.5rem;scrollbar-width:thin;scrollbar-color:rgba(0,104,173,0.2) transparent;border-right:1px solid var(--secondary-bg);}
    .cart-items-area::-webkit-scrollbar{width:4px;}
    .cart-items-area::-webkit-scrollbar-thumb{background:rgba(0,104,173,0.2);border-radius:4px;}

    /* Empty state */
    .cart-empty-body{flex:1;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:1rem;padding:3rem 1.5rem;}
    .cart-empty-icon{width:90px;height:90px;background:#f0f4f8;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:2.2rem;color:var(--brand);}
    .cart-empty-body p{font-family:var(--font-heading);font-size:0.95rem;color:var(--text-muted);}

    /* Store group */
    .cart-store-group{margin-bottom:1.5rem;}
    .cart-store-group:last-child{margin-bottom:0;}
.cart-store-label {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--secondary-bg);
    background: #e9f1fc;
    padding: 10px;
}
.cart-store-group {
    border: 1px solid var(--secondary-bg);
    border-radius: 7px;
    overflow: hidden;
}

    /* Cart item row */
    .cart-item{display:flex;align-items:flex-start;gap:1rem;padding:0.85rem 20px;border-bottom:1px solid var(--secondary-bg);}
    .cart-item:last-child{border-bottom:none;}
    .cart-item-img{width:72px;height:72px;border-radius:8px;object-fit:cover;flex-shrink:0;background:var(--secondary-bg);border:1px solid rgba(0,104,173,0.1);}
    .cart-item-details{flex:1;min-width:0;}
    .cart-item-name{font-family:var(--font-heading);font-size:0.88rem;font-weight:600;color:var(--brand);line-height:1.4;margin-bottom:0.2rem;text-decoration:underline;cursor:pointer;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;}
    .cart-item-type{font-family:var(--font-body);font-size:0.8rem;color:var(--text-muted);margin-bottom:0.2rem;}
    .cart-item-remove-link{background:none;border:none;padding:0;font-family:var(--font-body);font-size:0.8rem;color:var(--text-muted);cursor:pointer;text-decoration:underline;transition:color var(--transition);}
    .cart-item-remove-link:hover{color:#c0392b;}
    .cart-item-price-col{flex-shrink:0;text-align:right;padding-top:0.1rem;}
    .cart-item-price{font-family:var(--font-heading);font-size:0.95rem;font-weight:700;color:var(--text-main);}

    /* RIGHT summary panel */
    .cart-summary-panel{width:280px;flex-shrink:0;display:flex;flex-direction:column;padding:1.25rem 1.5rem;background:var(--white);overflow-y:auto;gap:0.75rem;}
    .cart-summary-row{display:flex;justify-content:space-between;align-items:baseline;}
    .cart-summary-item-count{font-family:var(--font-body);font-size:0.85rem;color:var(--text-body);}
    .cart-summary-total{font-family:var(--font-heading);font-size:1.1rem;font-weight:800;color:var(--text-main);}
    .cart-summary-store-note{font-family:var(--font-body);font-size:0.75rem;color:var(--text-muted);}
.cart-payin4-row {
    background: var(--secondary-bg);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin: 15px 0;
}
    .cart-payin4-row .pp-logo{font-family:var(--font-heading);font-size:0.92rem;font-weight:800;color:#003087;}
    .cart-payin4-row span{font-family:var(--font-body);font-size:0.78rem;color:var(--text-body);}
    .cart-payin4-row .pp-logo svg {
    max-width: 27px;
    height: auto;
    object-fit: contain;
}
    .cart-payin4-row a{font-family:var(--font-body);font-size:0.78rem;color:var(--brand);font-weight:600;}
    .btn-checkout-cart{display:block;width:100%;background:var(--brand);color:#fff;border:none;border-radius:7px;padding:0.9rem 1.5rem;font-family:var(--font-heading);font-weight:700;font-size:1rem;cursor:pointer;text-align:center;transition:background var(--transition);text-decoration:none;margin-top:auto;}
    .btn-checkout-cart:hover{background:var(--brand);color:#fff;}

    /* Responsive */
    @media(max-width:767.98px){
      .cart-drawer-body-layout{flex-direction:column;
        padding: 0;}
      .cart-items-area{border-right:none;border-bottom:1px solid var(--secondary-bg);}
      .cart-summary-panel{width:100%;flex-shrink:unset;}
    }
 

    /* ===== WISHLIST DRAWER ===== */
    #wishlistDrawer{display:none;position:fixed;inset:0;background:rgba(9,11,15,0.55);z-index:2000;justify-content:flex-end;}
    #wishlistDrawer.active{display:flex;}
    .wishlist-drawer-topbar{display:flex;align-items:center;justify-content:space-between;padding:0.65rem 1.25rem;border-bottom:1px solid var(--secondary-bg);flex-wrap:wrap;gap:0.5rem;background:#fafcff;}
    .wishlist-breadcrumb{display:flex;align-items:center;gap:0.3rem;font-family:var(--font-body);font-size:0.82rem;color:var(--text-muted);}
    .wishlist-breadcrumb a{color:var(--brand);}
    .wishlist-topbar-right{display:flex;align-items:center;gap:0.6rem;flex-wrap:wrap;}
    .btn-cleanup{background:var(--white);border:1.5px solid rgba(0,104,173,0.25);border-radius:6px;padding:0.3rem 0.9rem;font-family:var(--font-heading);font-size:0.78rem;font-weight:600;color:var(--text-main);cursor:pointer;transition:background var(--transition),border-color var(--transition);}
    .btn-cleanup:hover{border-color:var(--brand);color:var(--brand);}
    .wishlist-sort-wrap{display:flex;align-items:center;gap:0.35rem;}
    .wishlist-sort-wrap label{font-family:var(--font-body);font-size:0.78rem;color:var(--text-muted);white-space:nowrap;}
    .wishlist-sort-select{border:1px solid rgba(0,104,173,0.2);border-radius:6px;padding:0.28rem 1.8rem 0.28rem 0.55rem;font-family:var(--font-body);font-size:0.78rem;color:var(--text-main);background:var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 16 16'%3E%3Cpath fill='%230068AD' d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") no-repeat right 0.5rem center;-webkit-appearance:none;appearance:none;cursor:pointer;outline:none;}
.wishlist-items-list {
    flex: 1;
    overflow: auto;
    padding: 0.75rem 1.25rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 104, 173, 0.2) transparent;
    display: flex;
    flex-direction: row;
    gap: 0.9rem;
    display: grid!important;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    max-height: 90vh;padding-bottom:50px;
}

@media (max-width: 575.98px) {
  .wishlist-items-list  {
        grid-template-columns: repeat(1, 1fr);
        gap: 0.6rem;
    }
}

    .alerts-toggle{position:relative;display:inline-block;width:36px;height:20px;}
    .alerts-toggle input{opacity:0;width:0;height:0;}
    .alerts-slider{position:absolute;cursor:pointer;inset:0;background:#ccc;border-radius:20px;transition:0.3s;}
    .alerts-slider::before{position:absolute;content:'';height:14px;width:14px;left:3px;bottom:3px;background:white;border-radius:50%;transition:0.3s;}
    .alerts-toggle input:checked+.alerts-slider{background:var(--brand);}
    .alerts-toggle input:checked+.alerts-slider::before{transform:translateX(16px);}
    .wishlist-alerts-row{display:flex;align-items:center;gap:0.5rem;font-family:var(--font-body);font-size:0.78rem;color:var(--text-muted);}

    /* Wishlist card */
.wl-card {
    background: var(--secondary-bg);
    border: 1px solid rgba(0,104,173,0.1);
    border-radius: var(--radius);
    padding: 10px;
    display: flex;
    gap: 0.85rem;
    position: relative;
    flex-direction: column;
    transition: box-shadow var(--transition);
}
    .wl-card:hover{box-shadow:var(--shadow-sm);}
   .wl-card-img-wrap {
    position: relative;
    width: 100%;
    min-width: 100px;
    height: 240px;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}
    .wl-card-img{width:100%;height:100%;object-fit:cover;border-radius:8px;}
    .wl-discount-badge{position:absolute;top:5px;left:5px;background:var(--brand);color:var(--white);font-family:var(--font-heading);font-size:0.62rem;font-weight:700;padding:0.15rem 0.4rem;border-radius:4px;z-index:2;}
    .wl-card-body{flex:1;min-width:0;display:flex;flex-direction:column;gap:0.2rem;justify-content:space-between;}
    .wl-card-name{font-family:var(--font-heading);font-size:0.85rem;font-weight:600;color:#000;line-height:1.35;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;}
    .wl-card-type{font-family:var(--font-body);font-size:0.72rem;color:var(--text-muted);}
    .wl-card-location{font-family:var(--font-body);font-size:0.75rem;color:var(--text-muted);display:flex;align-items:center;gap:0.2rem;}
    .wl-price-row{display:flex;align-items:baseline;gap:0.4rem;flex-wrap:wrap;margin-top:0.15rem;}
    .wl-price-current{font-family:var(--font-heading);font-size:1.25rem;font-weight:700;color:var(--brand);}
    .wl-price-was{font-family:var(--font-body);font-size:0.7rem;color:var(--text-muted);text-decoration:line-through;}
    .wl-postage{font-family:var(--font-body);font-size:0.7rem;color:var(--text-muted);}
    .wl-card-actions{display:flex;align-items:center;gap:0.5rem;margin-top:0.4rem;flex-wrap:wrap;}
    .btn-wl-add-cart{flex:1;min-width:90px;background:var(--brand);color:var(--white);border:none;border-radius:6px;padding:0.4rem 0.7rem;font-family:var(--font-heading);font-weight:700;font-size:0.75rem;cursor:pointer;transition:background var(--transition);text-align:center;}
    .btn-wl-add-cart:hover{background:var(--brand-dark);}
    .btn-wl-add-cart.in-cart{background:#aaa;cursor:default;}
    .btn-wl-remove{background:none;border:1px solid rgba(0,104,173,0.2);border-radius:6px;padding:0.4rem 0.7rem;font-family:var(--font-body);font-size:0.75rem;font-weight:600;color:var(--text-muted);cursor:pointer;display:flex;align-items:center;gap:0.25rem;transition:border-color var(--transition),color var(--transition);}
    .btn-wl-remove:hover{border-color:#c0392b;color:#c0392b;}

    /* ===== MOBILE OFFCANVAS ===== */
    .offcanvas-cashnet{width:300px!important;}
    .offcanvas-cashnet .offcanvas-header{border-bottom:1px solid var(--secondary-bg);padding:1rem 1.25rem;}
    .offcanvas-cashnet .offcanvas-body{padding:0;}
    .mobile-nav-item{border-bottom:1px solid var(--secondary-bg);}
    .mobile-nav-link{display:flex;align-items:center;justify-content:space-between;padding:0.85rem 1.25rem;font-family:var(--font-heading);font-size:0.88rem;font-weight:600;color:var(--text-main);cursor:pointer;transition:color var(--transition),background var(--transition);}
    .mobile-nav-link:hover{color:var(--brand);background:var(--secondary-bg);}
    .mobile-sub-menu{display:none;background:var(--secondary-bg);padding:0.5rem 0;}
    .mobile-sub-menu.open{display:block;}
    .mobile-sub-link{display:block;padding:0.5rem 2rem;font-size:0.82rem;color:var(--text-muted);cursor:pointer;transition:color var(--transition);}
    .mobile-sub-link:hover{color:var(--brand);}

    /* ===== HERO BANNER ===== */
    .shop-hero-banner{background:linear-gradient(120deg,#060810 0%,#0068AD 100%);padding:4rem 0 3.5rem;overflow:hidden;}
    .shop-hero-inner{display:flex;align-items:center;justify-content:space-between;gap:2rem;}
    .shop-hero-text{flex:0 0 55%;max-width:55%;}
    .shop-hero-text h1{font-family:var(--font-heading);font-size:clamp(1.6rem,3vw,2.8rem);font-weight:700;color:var(--white);line-height:1.15;text-transform:uppercase;margin-bottom:1rem;}
    .shop-hero-text p{font-size:1.2rem;color:#fff;line-height:1.5;margin-bottom:1.5rem;max-width:440px;}
    .btn-hero-primary{background:var(--white);color:var(--brand);border:none;border-radius:7px;padding:0.75rem 2rem;font-family:var(--font-heading);font-weight:600;font-size:1.125rem;cursor:pointer;transition:background var(--transition),color var(--transition),transform var(--transition);display:inline-flex;align-items:center;gap:0.5rem;}
    .btn-hero-primary:hover{background:var(--brand);color:var(--white);transform:translateY(-2px);}

    /* ===== QUICK TABS ===== */
    .quick-tabs-bar{background:var(--secondary-bg);padding:.5rem 0;}
    .tabs-wrapper{display:flex;align-items:center;gap:10px;}
    .tabs-scroll{overflow-x:auto;scrollbar-width:none;flex:1;}
    .tabs-scroll::-webkit-scrollbar{display:none;}
    .quick-tabs-bar .nav-tabs{border:none;flex-wrap:nowrap;gap:0.6rem;width:max-content;margin:10px auto;}
    .quick-tabs-bar .nav-item{flex-shrink:0;}
    .quick-tabs-bar .nav-tabs .nav-link{border:1px solid var(--brand);color:var(--brand);border-radius:50px;padding:0.42rem 1.3rem;font-family:var(--font-body);font-size:1em;font-weight:500;background:transparent;white-space:nowrap;transition:background var(--transition),color var(--transition);}
    .quick-tabs-bar .nav-tabs .nav-link:hover,.quick-tabs-bar .nav-tabs .nav-link.active{background:var(--brand);color:var(--white);border-color:var(--brand);}
    .tab-arrow{width:40px;height:40px;border:none;border-radius:50%;background:var(--brand);color:#fff;display:flex;align-items:center;justify-content:center;cursor:pointer;}
    .btn-search-top-cat{display:flex;align-items:center;gap:0.5rem;background:var(--brand);color:var(--white);border:none;border-radius:7px;padding:.5rem 1.2rem;font-family:var(--font-body);font-size:1rem;font-weight:600;cursor:pointer;white-space:nowrap;transition:background var(--transition);flex-shrink:0;}
    .btn-search-top-cat:hover{background:var(--brand-dark);}

    /* ===== SORT BAR ===== */
    .shop-sort-bar{padding:0.6rem 0;border-bottom:1px solid var(--secondary-bg);}
    .sort-bar-inner{display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap;}
    .shop-breadcrumb{font-family:var(--font-body);font-size:0.85rem;}
    .shop-breadcrumb .breadcrumb-item a{color:var(--brand);}
    .shop-breadcrumb .breadcrumb-item.active{color:var(--text-muted);}
    .shop-breadcrumb .breadcrumb-item+.breadcrumb-item::before{content:'›';color:var(--text-muted);}
    .sort-right-group{display:flex;align-items:center;gap:1rem;}
    .results-count{font-family:var(--font-body);font-size:0.85rem;color:var(--text-muted);}
    .sort-select-wrap{display:flex;align-items:center;gap:0.4rem;}
    .sort-select-wrap label{font-family:var(--font-body);font-size:0.85rem;color:var(--text-muted);white-space:nowrap;}
    .sort-select{border:1px solid rgba(0,104,173,0.2);border-radius:6px;padding:0.35rem 2rem 0.35rem 0.7rem;font-family:var(--font-body);font-size:0.85rem;color:var(--text-main);background:var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16'%3E%3Cpath fill='%230068AD' d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") no-repeat right 0.6rem center;-webkit-appearance:none;appearance:none;cursor:pointer;outline:none;transition:border-color var(--transition);}
    .sort-select:focus{border-color:var(--brand);}

    /* ===== SHOP LAYOUT ===== */
    .shop-main-layout{padding:5rem 0 4rem;position:relative;overflow:hidden;}
    .shop-layout-row{display:flex;gap:2rem;align-items:flex-start;}

    /* ===== SIDEBAR ===== */
    .shop-sidebar{width:360px;flex-shrink:0;border:1px solid #E5E5E5;position:sticky;background:#fff;max-height:calc(100vh - 100px);overflow-y:auto;scrollbar-width:thin;scrollbar-color:rgba(0,104,173,0.2) transparent;padding:20px;border-radius:10px;box-shadow:14px 18px 57px #00000012;}
    .shop-sidebar::-webkit-scrollbar{width:4px;}
    .shop-sidebar::-webkit-scrollbar-thumb{background:rgba(0,104,173,0.2);border-radius:4px;}
    .sidebar-header-row{display:flex;align-items:center;justify-content:space-between;margin-bottom:1rem;background:#fff;position:sticky;top:-20px;padding:14px 14px;border-bottom:1px solid #ccc;}
    .active-filters-label{font-family:var(--font-body);font-size:0.85rem;color:var(--text-main);display:flex;align-items:center;gap:0.4rem;}
    .filter-count-badge{background:var(--brand);color:var(--white);font-size:0.7rem;font-weight:700;width:18px;height:18px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;}
    .clear-all-btn{background:none;border:none;color:var(--text-muted);font-family:var(--font-body);font-size:1rem;font-weight:500;cursor:pointer;padding:0;transition:color var(--transition);}
    .clear-all-btn:hover{color:var(--brand-dark);}
    .filter-accordion{display:flex;flex-direction:column;}
    .filter-group{border-bottom:1px solid rgba(0,104,173,0.1);}
    .filter-group-toggle{width:100%;background:none;border:none;display:flex;align-items:center;justify-content:space-between;padding:0.9rem 0;cursor:pointer;text-align:left;gap:0.5rem;}
    .filter-group-toggle>span{display:flex;flex-direction:column;gap:0.15rem;flex:1;}
    .filter-group-title{font-family:var(--font-heading);font-size:0.88rem;font-weight:700;color:var(--text-main);}
    .filter-group-sub{font-family:var(--font-body);font-size:0.75rem;color:#C2042E;}
    .filter-active-tag{font-family:var(--font-body);font-size:0.72rem;color:#C2042E;font-weight:600;}
    .filter-chevron{font-size:0.7rem;color:var(--text-muted);transition:transform var(--transition);flex-shrink:0;}
    .filter-group-body{display:none;padding-bottom:0.75rem;}
    .filter-group-body.open{display:block;}
    .filter-subgroup-toggle{background:none;border:none;display:flex;align-items:center;justify-content:space-between;width:100%;padding:0.45rem 0;font-family:var(--font-body);font-size:1rem;font-weight:700;color:var(--text-main);cursor:pointer;text-align:left;}
    .filter-subgroup-toggle i{font-size:0.7rem;color:var(--text-muted);}
    .filter-subgroup-body{display:none;padding-left:0.75rem;}
    .filter-subgroup-body.open{display:block;}
    .filter-option{display:flex;align-items:center;justify-content:space-between;padding:0.3rem 0;}
    .filter-option-check{gap:0.5rem;}
    .filter-checkbox-label{display:flex;align-items:center;gap:0.5rem;font-family:var(--font-body);font-size:0.95rem;color:var(--text-main);cursor:pointer;flex:1;}
    .filter-checkbox-label input[type="checkbox"]{width:14px;height:14px;accent-color:var(--brand);cursor:pointer;flex-shrink:0;}
    .filter-all-row .filter-checkbox-label{font-weight:700;}
    .filter-count{font-family:var(--font-body);font-size:0.75rem;color:var(--text-muted);flex-shrink:0;}
    .price-range-inputs{display:flex;align-items:center;gap:0.5rem;margin-top:0.25rem;}
    .price-input-group{display:flex;align-items:center;border:1px solid rgba(0,104,173,0.2);border-radius:6px;padding:0.3rem 0.5rem;gap:0.25rem;flex:1;}
    .price-input-group span{font-family:var(--font-body);font-size:0.82rem;color:var(--text-muted);}
    .price-input-group input{border:none;outline:none;width:100%;font-family:var(--font-body);font-size:0.82rem;color:var(--text-main);}
    .price-range-dash{font-size:0.85rem;color:var(--text-muted);flex-shrink:0;}
    .filter-text-input{width:100%;border:1px solid rgba(0,104,173,0.2);border-radius:6px;padding:0.4rem 0.7rem;font-family:var(--font-body);font-size:0.82rem;color:var(--text-main);outline:none;transition:border-color var(--transition);}
    .filter-text-input:focus{border-color:var(--brand);}
    .btn-apply-filters{background:var(--brand);color:var(--white);border:none;border-radius:7px;padding:0.65rem 1.5rem;font-family:var(--font-heading);font-weight:700;font-size:0.9rem;cursor:pointer;width:100%;margin-top:1.25rem;transition:background var(--transition);}
    .btn-apply-filters:hover{background:var(--brand-dark);}

    /* ===== PRODUCT GRID ===== */
    .shop-products-area{flex:1;min-width:0;}
    .btn-mobile-filter{display:none;align-items:center;gap:0.5rem;background:var(--brand);color:var(--white);border:none;border-radius:7px;padding:0.55rem 1.2rem;font-family:var(--font-heading);font-weight:600;font-size:0.9rem;cursor:pointer;margin-bottom:1.25rem;position:relative;transition:background var(--transition);}
    .btn-mobile-filter:hover{background:var(--brand-dark);}
    .mobile-filter-badge{background:#f5c000;color:#222;font-size:0.65rem;font-weight:800;width:16px;height:16px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;}
    .product-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.25rem;}
    .product-card{background:#E9F1FC;border:1px solid rgba(0,104,173,0.1);border-radius:var(--radius);padding:10px;overflow:hidden;transition:box-shadow var(--transition),transform var(--transition);display:flex;flex-direction:column;}
    .product-card:hover{box-shadow:var(--shadow-md);transform:translateY(-3px);}
    .product-card.hidden{display:none;}
    .product-card-img-wrap{position:relative;aspect-ratio:1/1;overflow:hidden;background:var(--secondary-bg);max-height:172px;border-radius:10px;}
    .product-img{width:100%;height:100%;object-fit:cover;transition:transform 0.35s ease,opacity 0.4s ease;opacity:1;}
    .product-img.loaded{opacity:1;}
    .product-card:hover .product-img{transform:scale(1.04);}
    .lazy-img:not(.loaded){background:linear-gradient(90deg,#f0f0f0 25%,#e0e0e0 50%,#f0f0f0 75%);background-size:200% 100%;animation:shimmer 1.4s infinite;}
    @keyframes shimmer{0%{background-position:200% 0}100%{background-position:-200% 0}}
    .product-badge{position:absolute;top:8px;left:8px;font-family:var(--font-heading);font-size:0.7rem;font-weight:700;padding:0.2rem 0.55rem;border-radius:4px;z-index:2;}
    .discount-badge{background:var(--brand);color:var(--white);}
    .product-wishlist-btn{position:absolute;top:8px;right:8px;width:32px;height:32px;background:#E1A325;border:1px solid #E1A325;border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;z-index:2;color:#fff;transition:background var(--transition),color var(--transition),border-color var(--transition);box-shadow:var(--shadow-sm);}
    .product-wishlist-btn:hover,.product-wishlist-btn.active{background:#c8880e;border-color:#c8880e;}
    .product-wishlist-btn.active svg path{fill:var(--white);stroke:var(--white);}
    .product-card-body{padding:12px 0 0 0;display:flex;flex-direction:column;gap:0.3rem;flex:1;justify-content:space-between;}
    .product-name{font-family:var(--font-heading);font-size:1rem;font-weight:500;color:#000;line-height:1.4;margin:0;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;}
    .product-location{font-family:var(--font-body);font-size:0.85rem;color:var(--text-muted);margin:0;display:flex;align-items:center;gap:0.25rem;}
    .product-price-row{display:flex;align-items:baseline;gap:0.5rem;flex-wrap:wrap;margin-top:0.2rem;}
    .product-price-current{font-family:var(--font-heading);font-size:1.6rem;font-weight:600;color:var(--brand);}
    .price-cents{font-size:0.85rem;font-weight:700;}
    .product-price-was{font-family:var(--font-body);font-size:0.72rem;color:var(--text-muted);text-decoration:line-through;}
    .product-postage{font-family:var(--font-body);font-size:0.72rem;color:var(--text-muted);margin:0;}
    .btn-view-product{display:block;background:var(--brand);color:var(--white);text-align:center;border:none;border-radius:6px;padding:0.55rem 0.75rem;font-family:var(--font-heading);font-weight:600;font-size:0.82rem;cursor:pointer;transition:background var(--transition);text-decoration:none;}
    .btn-view-product:hover{background:var(--brand-dark);color:var(--white);}

    /* Add to Cart button on card — two states */
    .btn-add-to-cart-card{display:block;background:#fff;color:var(--brand);border:1.5px solid var(--brand);text-align:center;border-radius:6px;padding:0.45rem 0.6rem;font-family:var(--font-heading);font-weight:600;font-size:0.76rem;cursor:pointer;transition:background var(--transition),color var(--transition);width:100%;}
    .btn-add-to-cart-card:hover{background:var(--brand);color:#fff;}
    /* IN CART state — yellow/gold like the checkout button, clearly different */
.btn-add-to-cart-card.in-cart {
    background: #d5d5d5;
    color: #575757;
    border-color: #d5d5d5;
    cursor: default;
    opacity: .9;
}
    .btn-add-to-cart-card.in-cart:hover{background:#d5d5d5;color:#575757;}

    /* Card buttons row */
    .product-card-btns{display:grid;grid-template-columns:1fr 1fr;gap:0.4rem;margin-top:0.4rem;}

    /* No results */
    .no-results-msg{text-align:center;padding:4rem 2rem;display:flex;flex-direction:column;align-items:center;gap:1rem;}
    .no-results-msg p{font-family:var(--font-heading);font-size:1rem;color:var(--text-muted);}
    .btn-brand{background:var(--brand);color:var(--white);border:none;border-radius:6px;padding:0.6rem 1.5rem;font-family:var(--font-heading);font-weight:600;font-size:0.88rem;cursor:pointer;transition:background var(--transition),transform var(--transition);display:inline-flex;align-items:center;gap:0.4rem;}
    .btn-brand:hover{background:var(--brand-dark);transform:translateY(-1px);}

    /* ===== MOBILE FILTER OFFCANVAS ===== */
    #mobileFilterOffcanvas{position:absolute;top:0;bottom:0;right:-100%;width:320px;max-width:90vw;height:100%;background:#fff;z-index:1045;display:flex;flex-direction:column;transition:right 0.3s ease;box-shadow:-4px 0 20px rgba(0,0,0,.15);}
    #mobileFilterOffcanvas.show{right:0;}
    #mobileFilterBackdrop{position:absolute;inset:0;background:rgba(0,0,0,0.5);z-index:1044;display:none;}
    #mobileFilterBackdrop.show{display:block;}
    .mobile-filter-header{display:flex;align-items:center;justify-content:space-between;padding:16px 20px;border-bottom:1px solid #eee;flex-shrink:0;}
    .mobile-filter-header .offcanvas-title{margin:0;font-weight:700;font-size:16px;}
    .mobile-filter-close-btn{background:none;border:none;font-size:22px;line-height:1;cursor:pointer;color:#333;padding:4px;display:flex;align-items:center;justify-content:center;}
    .mobile-filter-close-btn:hover{color:#000;}
    .mobile-filter-body{flex:1;overflow-y:auto;padding:0 20px 20px;}
    .mobile-filter-footer{padding:16px 20px;border-top:1px solid #eee;flex-shrink:0;}

    /* ===== WISHLIST POPUP ===== */
    .wishlist-popup-overlay{display:none;position:fixed;inset:0;background:rgba(9,11,15,0.55);z-index:3000;align-items:center;justify-content:center;}
    .wishlist-popup-overlay.active{display:flex;}
    .wishlist-popup{background:var(--white);border-radius:14px;padding:2rem 2rem 1.75rem;max-width:360px;width:calc(100% - 2rem);text-align:center;position:relative;box-shadow:var(--shadow-lg);animation:popupSlideUp 0.25s ease;}
    @keyframes popupSlideUp{from{transform:translateY(20px);opacity:0}to{transform:translateY(0);opacity:1}}
    .wishlist-popup-close{position:absolute;top:0.75rem;right:0.75rem;background:none;border:none;font-size:1.2rem;color:var(--text-muted);cursor:pointer;line-height:1;padding:0.2rem;transition:color var(--transition);}
    .wishlist-popup-close:hover{color:var(--text-main);}
    .wishlist-popup-icon{margin-bottom:0.75rem;display:flex;justify-content:center;}
    .wishlist-popup-title{font-family:var(--font-heading);font-size:1.15rem;font-weight:700;color:var(--text-main);margin-bottom:0;}
    .wishlist-popup-divider{height:1px;background:rgba(0,0,0,0.08);margin:1rem 0;}
    .wishlist-popup-text{font-family:var(--font-body);font-size:0.88rem;color:var(--text-muted);line-height:1.65;margin-bottom:1.5rem;}
    .btn-wishlist-login{display:block;background:var(--brand);color:#fff;border:none;border-radius:8px;padding:0.85rem 1.5rem;font-family:var(--font-heading);font-weight:700;font-size:1rem;cursor:pointer;width:100%;transition:background var(--transition);text-decoration:none;margin-bottom:0.75rem;}
    .btn-wishlist-login:hover{background:var(--brand-dark);}
    .btn-wishlist-later{background:none;border:none;color:var(--text-main);font-family:var(--font-body);font-size:0.9rem;font-weight:600;cursor:pointer;text-decoration:underline;padding:0;transition:color var(--transition);}
    .btn-wishlist-later:hover{color:var(--brand);}

    /* ===== CLEANUP MODAL ===== */
    .cleanup-modal-overlay{display:none;position:fixed;inset:0;background:rgba(9,11,15,0.55);z-index:4000;align-items:center;justify-content:center;}
    .cleanup-modal-overlay.active{display:flex;}
    .cleanup-modal-box{background:var(--white);border-radius:12px;padding:2rem;max-width:380px;width:calc(100% - 2rem);box-shadow:var(--shadow-lg);animation:popupSlideUp 0.22s ease;}
    .cleanup-modal-box h4{font-family:var(--font-heading);font-weight:800;font-size:1.1rem;margin-bottom:0.75rem;color:var(--text-main);}
    .cleanup-modal-box p{font-family:var(--font-body);font-size:0.9rem;color:var(--text-muted);line-height:1.6;margin-bottom:1.5rem;}
    .cleanup-modal-actions{display:flex;gap:0.75rem;justify-content:flex-end;}
    .btn-cleanup-cancel{background:none;border:1.5px solid rgba(0,104,173,0.2);border-radius:7px;padding:0.6rem 1.4rem;font-family:var(--font-heading);font-weight:600;font-size:0.9rem;color:var(--text-main);cursor:pointer;transition:border-color var(--transition);}
    .btn-cleanup-cancel:hover{border-color:var(--brand);color:var(--brand);}
    .btn-cleanup-ok{background:var(--brand);color:#fff;border:none;border-radius:7px;padding:0.6rem 1.4rem;font-family:var(--font-heading);font-weight:700;font-size:0.9rem;cursor:pointer;transition:background var(--transition);}
    .btn-cleanup-ok:hover{background:var(--brand-dark);}

    /* ===== CART TOAST ===== */
    .cart-toast{position:fixed;bottom:2rem;right:2rem;z-index:5000;transform:translateY(120%);opacity:0;transition:transform 0.3s ease,opacity 0.3s ease;pointer-events:none;}
    .cart-toast.show{transform:translateY(0);opacity:1;}
    .cart-toast-inner{background:var(--text-main);color:var(--white);border-radius:10px;padding:0.75rem 1.25rem;display:flex;align-items:center;gap:0.6rem;box-shadow:var(--shadow-lg);font-family:var(--font-heading);font-size:0.88rem;font-weight:600;}
    .cart-toast-icon{color:#4ade80;font-size:1.1rem;}

   
    /* ===== RESPONSIVE ===== */ 
    @media(min-width:767px) and (max-width:1699.98px){.container-fluid{max-width:calc(100vw - 15%);}}
    @media(min-width:1700px){.container-fluid{max-width:1700px;}}
    @media(max-width:1399.98px){.product-grid{grid-template-columns:repeat(3,1fr);}}
    @media(max-width:1199.98px){.shop-sidebar{width:230px;}.product-grid{grid-template-columns:repeat(3,1fr);}}
    @media(max-width:991.98px){.shop-sidebar{display:none;}.btn-mobile-filter{display:flex;}.product-grid{grid-template-columns:repeat(3,1fr);}.shop-hero-inner{flex-direction:column;text-align:center;}.shop-hero-text{flex:0 0 100%;max-width:100%;}}
    @media(max-width:767.98px){.product-grid{grid-template-columns:repeat(2,1fr);gap:0.75rem;}.sort-bar-inner{flex-direction:column;align-items:flex-start;gap:0.5rem;}.sort-right-group{width:100%;justify-content:space-between;}.btn-search-top-cat{display:none;}.cart-drawer-inner{width:100%;}}
    @media(max-width:575.98px){.product-grid{grid-template-columns:repeat(2,1fr);gap:0.6rem;}.product-name{font-size:0.72rem;}.product-price-current{font-size:1rem;}.btn-view-product{font-size:0.75rem;}}
    @media(max-width:992px){.shop-hero-banner-product-page{background:url(images/shop/mobile-banner-image.jpg) center/cover no-repeat!important;min-height:700px;}}
    @media (max-width: 1200px) {
  .wishlist-items-list  {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
    .my-card-header-details {
        flex-wrap: wrap;
        flex-direction: row;
        align-items: flex-start !important;
        gap: 0.5rem;
    }
    .cart-close-btn {  
    font-size: 1.4rem;  
}
    .product-card-btns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.4rem;
    margin-top: 0.4rem;
}
.wishlist-topbar-right {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    justify-content: space-between;
}
}

/* Replace existing .cart-item-remove-link rule */
.cart-item-remove-link {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  cursor: pointer;
  text-decoration: none;
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.cart-item-remove-link::before {
  content: "\F5DE"; /* bootstrap-icons trash3 */
  font-family: "bootstrap-icons";
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-block;
}
.cart-item-remove-link:hover { color: #c0392b; }

/* Show nav icons on mobile */
@media (max-width: 991.98px) {
  .nav-icons-group {
    display: flex !important;
  } 
  .navbar-cashnet .navbar-toggler {
    order: 3;
  }
  .navbar-cashnet .nav-icons-group {
    order: 2;
  }
}
/* Navbar layout for mobile — keep icons always visible */
@media (max-width: 991.98px) {
  .navbar-cashnet .container-fluid {
    flex-wrap: nowrap;
  }
  .navbar-cashnet .navbar-brand {
    flex: 1;
  }
  /* Hide the icons copy inside the collapse on all viewports — it's now outside */
  #mainNav .nav-icons-group {
    display: none !important;
  }
}
@media (max-width: 991.98px) {
  #accountDropdown {
    position: fixed;
    top: 64px;
    right: 1rem;
    left: 1rem;
    min-width: unset;
  }
}


/* ============================================================
   PRODUCT DETAIL PAGE – product-detail.css  */

/* ============================================================
   SEARCH ICON SVG – utility
============================================================ */
.search-icon-svg {
  flex-shrink: 0;
  opacity: 0.5;
}

/* ============================================================
   BREADCRUMB BAR
============================================================ */
.detail-breadcrumb-bar {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--secondary-bg);
  background: var(--secondary-bg);
}

/* ============================================================
   PRODUCT DETAIL MAIN LAYOUT
============================================================ */
.pd-main {
  padding: 2.5rem 0 3rem;
}

.pd-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: flex-start;
}

/* ============================================================
   GALLERY – LEFT COLUMN
============================================================ */
.pd-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Main image wrapper */
.pd-main-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--secondary-bg);
  aspect-ratio: 1 / 1;
  cursor: zoom-in;
}

.pd-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease, opacity 0.3s ease;
}

.pd-main-img-wrap:hover .pd-main-img {
  transform: scale(1.03);
}

/* Discount badge on main image */
.pd-discount-badge {
    position: absolute;
    top: -40px;
    left: -40px;
    background: var(--brand);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    width: 150px;
    z-index: 2;
    background: url(../images/shop/discount-background.svg) no-repeat center center;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Zoom trigger button */
.pd-zoom-trigger {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 104, 173, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  color: var(--brand);
  font-size: 1rem;
  transition: background var(--transition), color var(--transition);
  box-shadow: var(--shadow-sm);
}

.pd-zoom-trigger:hover {
  background: var(--brand);
  color: var(--white);
}

/* Thumbnails strip */
.pd-thumbs {
  display: flex;
  gap: 0.6rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.pd-thumbs::-webkit-scrollbar { display: none; }

.pd-thumb {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(0, 104, 173, 0.15);
  cursor: pointer;
  background: var(--secondary-bg);
  padding: 0;
  transition: border-color var(--transition), box-shadow var(--transition);
}

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

.pd-thumb:hover img { transform: scale(1.06); }

.pd-thumb.active {
  border-color: var(--brand);
  box-shadow: 0 0 0 2px rgba(0, 104, 173, 0.25);
}


/* Thumbnail Slider Wrapper */
.pd-thumbs-slider {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.pd-thumbs-viewport {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}

/* Keep your existing .pd-thumbs but change layout */
.pd-thumbs {
  display: flex;
  flex-direction: row;       /* horizontal scroll */
  gap: 8px;
  transition: transform 0.3s ease;
  will-change: transform;
}

/* Arrow buttons — hidden by default */
.pd-thumb-arrow {
  display: none;             /* hidden unless overflow detected */
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-size: 13px;
  color: #555;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
  padding: 0;
}

.pd-thumb-arrow:hover {
  background: #f5f5f5;
  border-color: #bbb;
}

.pd-thumb-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

/* Show arrows only when JS adds this class */
.pd-thumbs-slider.has-overflow .pd-thumb-arrow {
  display: flex;
}
/* Afterpay notice block */
.pd-afterpay-notice {
  background: var(--white);
  border: 1px solid rgba(0, 104, 173, 0.1);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  margin-top: 0.5rem;
}

.pd-afterpay-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.pd-afterpay-sub {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.pd-afterpay-subtitle {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

.pd-afterpay-list {
  margin: 0;
  padding-left: 1.2rem;
}

.pd-afterpay-list li {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.25rem;
}

/* ============================================================
   PRODUCT INFO – RIGHT COLUMN
============================================================ */
.pd-info {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.pd-title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
  margin: 0;
}

.pd-location-line {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin: 0;
}

.pd-description {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgb(var(--text-main), 0.85);
  line-height: 1.75;
  margin: 0;
}

/* Price block */
.pd-price-block {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.pd-price {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
}

.pd-price-amount {
  font-size: 2.4rem;
}

.pd-price-cents {
  font-size: 1.4rem;
  font-weight: 700;
}

/* Action buttons */
.pd-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-add-to-cart {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--brand);
  color: var(--white);
  border: none;
  border-radius: 7px;
  padding: 0.8rem 1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  flex: 1;
  justify-content: center;
}

.btn-add-to-cart:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.btn-add-to-cart.added {
  background: #1a8a40;
}

.btn-add-to-wishlist {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  border: 1.5px solid rgba(0, 104, 173, 0.25);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.btn-add-to-wishlist:hover,
.btn-add-to-wishlist.active {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}

.btn-add-to-wishlist.active svg path {
  fill: var(--white);
  stroke: var(--white);
}

/* Delivery box */
.pd-delivery-box {
  border: 1px solid rgba(0, 104, 173, 0.15);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  background: var(--white);
}

.pd-delivery-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.65rem;
}

.pd-delivery-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.3rem 0;
  border-top: 1px solid rgba(0, 104, 173, 0.07);
}

.pd-delivery-row:first-of-type { border-top: none; }

.pd-delivery-label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  white-space: nowrap;
  min-width: 120px;
}

.pd-delivery-value {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.5;
}
.pd-details-section {
    margin-top: 0.25rem;
    width: 80%;
}
/* Product details table */
.pd-details-section { margin-top: 0.25rem; }

.pd-details-heading {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.6rem;
}

.pd-details-table {
  border: 1px solid rgba(0, 104, 173, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
}

.pd-details-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(0, 104, 173, 0.08);
}

.pd-details-row:last-child { border-bottom: none; }

.pd-details-cell {
  padding: 0.55rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  border-right: 1px solid rgba(0, 104, 173, 0.08);
}

.pd-details-cell:last-child { border-right: none; }

.pd-details-row:nth-child(even) .pd-details-cell { background: rgba(233, 241, 252, 0.45); }

.pd-detail-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pd-detail-value {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
}

/* ============================================================
   SIMILAR ITEMS SECTION
============================================================ */ /* ============================================================
       SIMILAR ITEMS SECTION — FIXED CAROUSEL
    ============================================================ */
    .similar-items-section {
      background: var(--secondary-bg);
      padding: 3.5rem 0 4rem;
    }

    .similar-items-title {
      font-family: var(--font-heading);
      font-size: clamp(1.4rem, 2.5vw, 2rem);
      font-weight: 800;
      color: var(--text-main);
      text-align: center;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin-bottom: 2rem;
    }

    /* Carousel wrapper */
    .similar-carousel-wrapper {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      position: relative;
    }

    .similar-carousel-track-wrap {
      flex: 1;
      overflow: hidden;
    }

    .similar-carousel-track {
      display: flex;
      gap: 1.25rem;
      transition: transform 0.4s ease;
    }

    /* FIX: Use fixed pixel width instead of % so translateX math is accurate */
    .similar-card {
      flex: 0 0 290px;
      min-width: 0;
    }

    @media (max-width: 767px) {
      .similar-card {
        flex: 0 0 160px;
      }
    }

    /* Carousel nav buttons */
    .similar-prev-btn,
    .similar-next-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1.5px solid rgba(0, 104, 173, 0.25);
      background: var(--white);
      color: var(--brand);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      flex-shrink: 0;
      font-size: 0.95rem;
      transition: background var(--transition), color var(--transition), border-color var(--transition);
      box-shadow: var(--shadow-sm);
      z-index: 2;
    }

    .similar-prev-btn:hover,
    .similar-next-btn:hover {
      background: var(--brand);
      color: var(--white);
      border-color: var(--brand);
    }

    .similar-prev-btn:disabled,
    .similar-next-btn:disabled {
      opacity: 0.35;
      cursor: not-allowed;
      pointer-events: none;
    }

    /* View more button */
    .similar-view-more {
      text-align: center;
      margin-top: 2rem;
    }

    .btn-view-more-products {
      display: inline-block;
      background: var(--brand);
      color: var(--white);
      border: none;
      border-radius: 7px;
      padding: 0.8rem 2.5rem;
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 0.95rem;
      cursor: pointer;
      text-decoration: none;
      transition: background var(--transition), transform var(--transition);
    }

    .btn-view-more-products:hover {
      background: var(--brand-dark);
      color: var(--white);
      transform: translateY(-1px);
    }

    .similar-carousel-track-wrap .product-card.similar-card {
      background: #fff;
    }
/* ============================================================
   IMAGE ZOOM LIGHTBOX
============================================================ */
.img-zoom-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(9, 11, 15, 0.9);
  z-index: 4000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.img-zoom-overlay.active { display: flex; }

.img-zoom-panel {
  background: var(--white);
  border-radius: 14px;
  padding: 1.25rem;
  max-width: 860px;
  width: 100%;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  animation: popupSlideUp 0.25s ease;
}

.img-zoom-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0, 104, 173, 0.18);
  background: var(--white);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  font-size: 1rem;
  transition: background var(--transition), color var(--transition);
}

.img-zoom-close:hover {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

/* Main zoom area */
.img-zoom-main {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: var(--secondary-bg);
  flex: 1;
  min-height: 0;
  cursor: crosshair;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-zoom-img {
  max-width: 100%;
  max-height: 55vh;
  object-fit: contain;
  display: block;
  transition: transform 0.25s ease;
  transform-origin: center center;
  user-select: none;
}

/* Zoom controls */
.img-zoom-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.img-zoom-ctrl-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(0, 104, 173, 0.2);
  background: var(--white);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.img-zoom-ctrl-btn:hover {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

/* Thumbnail strip inside lightbox */
.img-zoom-thumbs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.img-zoom-thumb {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  border: 2px solid rgba(0, 104, 173, 0.15);
  overflow: hidden;
  cursor: pointer;
  background: var(--secondary-bg);
  padding: 0;
  flex-shrink: 0;
  transition: border-color var(--transition);
}

.img-zoom-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-zoom-thumb.active { border-color: var(--brand); }

/* ============================================================
   CART DRAWER – ENHANCED (with items)
============================================================ */
.cart-items-list {
  flex: 1;
  overflow-y: auto;
  padding: 0 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 104, 173, 0.2) transparent;
}

.cart-items-list:empty { display: none; }

.cart-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 20px;
  border-bottom: 1px solid var(--secondary-bg);
}

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

.cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--secondary-bg);
}

.cart-item-details {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.35;
  margin-bottom: 0.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cart-item-price {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--brand);
}

.cart-item-qty-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.35rem;
}

.cart-qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(0, 104, 173, 0.2);
  background: var(--white);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
  transition: background var(--transition), color var(--transition);
  line-height: 1;
  padding: 0;
}

.cart-qty-btn:hover {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

.cart-qty-value {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-main);
  min-width: 20px;
  text-align: center;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1rem;
  padding: 0.25rem;
  flex-shrink: 0;
  transition: color var(--transition);
}

.cart-item-remove:hover { color: #c0392b; }

/* Cart footer */
.cart-drawer-footer {
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--secondary-bg);
  display: none;
}

.cart-drawer-footer.visible { display: block; }

.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.cart-total-label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
}

.cart-total-value {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brand);
}

.btn-checkout {
  display: block;
  width: 100%;
  background: var(--brand);
  color: var(--white);
  border: none;
  border-radius: 7px;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background var(--transition);
}

.btn-checkout:hover { background: var(--brand-dark); }

/* ============================================================
   CART TOAST NOTIFICATION
============================================================ */
.cart-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 5000;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}

.cart-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.cart-toast-inner {
  background: var(--text-main);
  color: var(--white);
  border-radius: 10px;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-lg);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
}

.cart-toast-icon {
  color: #4ade80;
  font-size: 1.1rem;
}

/* ============================================================
   RESPONSIVE – PRODUCT DETAIL PAGE
============================================================ */
@media (max-width: 1199.98px) {
  .pd-layout { gap: 2rem; }
  .similar-card { flex: 0 0 calc(33% - 1rem); }
}

@media (max-width: 991.98px) {
  .pd-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .pd-main-img-wrap { max-width:600px;  }
  
  .similar-card { flex: 0 0 calc(33.333% - 0.85rem); }
}

@media (max-width: 767.98px) {
  .pd-main { padding: 1.5rem 0 2rem; }
  .pd-title { font-size: 1.2rem; }
  .pd-price { font-size: 1.9rem; }
  .pd-price-amount { font-size: 1.9rem; }
  .pd-price-cents { font-size: 1.1rem; }
  .pd-details-row { grid-template-columns: 1fr; }
  .pd-details-cell { border-right: none; border-bottom: 1px solid rgba(0, 104, 173, 0.08); }
  .pd-details-cell:last-child { border-bottom: none; }
  .pd-delivery-label { min-width: 90px; }
  .similar-card { flex: 0 0 calc(50% - 0.625rem); }
  .img-zoom-panel { padding: 1rem; max-height: 98vh; }
  .img-zoom-img { max-height: 42vh; }
  .similar-items-section { padding: 2.5rem 0 3rem; }
  .cart-toast { bottom: 1rem; right: 1rem; }
}

@media (max-width: 575.98px) {
  .pd-thumb { width: 62px; height: 62px; }
  .pd-actions { flex-wrap: wrap; }
  .btn-add-to-cart { flex: 1; }
  .similar-card { flex: 0 0 calc(50% - 0.625rem); }
  .img-zoom-ctrl-btn { width: 34px; height: 34px; font-size: 0.9rem; }
  .img-zoom-thumb { width: 48px; height: 48px; }
  .similar-prev-btn,
  .similar-next-btn { width: 34px; height: 34px; font-size: 0.85rem; }
}



/* location page css start here */
 
/* ============================================================
   HERO BANNER
============================================================ */
.loc-hero {
  background: linear-gradient(115deg, #060810 0%, #003d6e 55%, #0068AD 100%);
  padding: 3.5rem 0 3rem;
  overflow: hidden;
  position: relative;
}

.loc-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 220px;
}

.loc-hero-text {
  flex: 0 0 60%;
  max-width: 60%;
  position: relative;
  z-index: 2;
}

.loc-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.loc-hero-sub {
    font-family: var(--font-body);
    font-size: 1.3rem;
    color: rgb(255 255 255);
    line-height: 1.5;
    margin-bottom: 1.75rem;
    max-width: 500px;
}

/* Hero Search bar */
.loc-hero-search {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  max-width: 480px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.loc-search-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0 0.9rem;
  position: relative;
}

.loc-search-icon {
  color: var(--text-muted);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.loc-search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.8rem 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-main);
  background: transparent;
}

.loc-search-input::placeholder { color: rgba(0, 0, 0, 0.4); }

.loc-search-btn {
  background: var(--brand);
  color: var(--white);
  border: none;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.loc-search-btn:hover { background: var(--brand-dark); }

/* Search suggestions dropdown */
.loc-search-suggestions {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 104, 173, 0.15);
  z-index: 200;
  overflow: hidden;
  max-height: 280px;
  overflow-y: auto;
}

.loc-search-suggestions.open { display: block; }

.loc-suggestion-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-main);
  transition: background var(--transition), color var(--transition);
  border-bottom: 1px solid rgba(0, 104, 173, 0.06);
}

.loc-suggestion-item:last-child { border-bottom: none; }

.loc-suggestion-item:hover {
  background: var(--secondary-bg);
  color: var(--brand);
}

.loc-suggestion-item i {
  color: var(--brand);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.loc-suggestion-state {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-left: auto;
}

/* Hero visual side */
.loc-hero-visual {
  flex: 0 0 38%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.loc-hero-pin-img {
  max-height: 300px;
  width: auto;
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.35));
  animation: pinFloat 3s ease-in-out infinite;
}

@keyframes pinFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ============================================================
   STATE TABS
============================================================ */
.loc-tabs-section {
  background: var(--white);
  border-bottom: 1px solid var(--secondary-bg);
  padding: 0;
}

.loc-tabs-wrapper {
  overflow: hidden;
}

.loc-tabs-scroll {
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 0;
  padding: 0.5rem 0;
}

.loc-tabs-scroll::-webkit-scrollbar { display: none; }

.loc-tab-btn {
  flex-shrink: 0;
  background: var(--white);
  border: 1.5px solid rgba(0, 104, 173, 0.2);
  border-radius: 50px;
  padding: 0.4rem 1.2rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  margin-right: 0.5rem;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.loc-tab-btn:last-child { margin-right: 0; }

.loc-tab-btn:hover {
  background: var(--secondary-bg);
  border-color: var(--brand);
  color: var(--brand);
}

.loc-tab-btn.active {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}

/* ============================================================
   MAP SECTION
============================================================ */
.loc-map-section {
  width: 100%;
  background: var(--secondary-bg);
  position: relative;
}

.loc-map-canvas {
  width: 100%;
  height: 480px;
  display: block;
}

/* Custom Google Maps info window override */
.gm-style .gm-style-iw-c {
  border-radius: 12px !important;
  padding: 0 !important;
  box-shadow: var(--shadow-lg) !important;
  max-width: 300px !important;
}

.gm-style .gm-style-iw-d {
  overflow: hidden !important;
  padding: 0 !important;
}

.gm-style .gm-style-iw-tc::after { display: none; }

/* Custom info window content */
.map-info-window {
  padding: 1.1rem 1.25rem 0.9rem;
  min-width: 240px;
  font-family: var(--font-body);
}

.map-info-window-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.65rem;
}

.map-info-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
  font-size: 0.84rem;
  color: var(--text-main);
}

.map-info-detail i {
  color: var(--brand);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.map-info-detail a {
  color: var(--brand);
  text-decoration: none;
}

.map-info-detail a:hover { text-decoration: underline; }

.map-info-btn {
  display: block;
  width: 100%;
  background: var(--text-main);
  color: var(--white);
  border: none;
  border-radius: 7px;
  padding: 0.6rem 1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  margin-top: 0.85rem;
  margin-bottom: 0.25rem;
  transition: background var(--transition);
  text-align: center;
}

.map-info-btn:hover { background: var(--brand); }

/* Cluster marker label */
.loc-cluster-label {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--text-main);
}

/* ============================================================
   FIND BY STATE SECTION
============================================================ */
.loc-states-section {
  padding: 4rem 0 5rem;
  background: var(--secondary-bg);
}

.loc-states-title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--text-main);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2.5rem;
}

/* 2-column grid */
.loc-states-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* State Card */
.loc-state-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;padding: 10px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
}

.loc-state-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.loc-state-card.hidden { display: none; }

.loc-state-img-wrap {
  position: relative;
  overflow: hidden; 
}

.loc-state-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 260px;
    display: block;
    border-radius: var(--radius);
    transition: transform 0.4s ease;
}

.loc-state-card:hover .loc-state-img { transform: scale(1.04); }

.loc-state-body {
  padding: 1.2rem 1.4rem 1.4rem;
  text-align: center;
}

.loc-state-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.65rem;
  letter-spacing: 0.02em;
}

.loc-state-suburbs {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.loc-state-suburbs .suburb-link {
  color: #000;
  cursor: pointer;
  transition: text-decoration var(--transition); font-size: 1rem;
}

.loc-state-suburbs .suburb-link:hover { text-decoration: underline; }

/* No-results message */
.loc-no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-muted);
}

/* ============================================================
   SEARCH RESULT HIGHLIGHT (pulsing ring on map)
============================================================ */
.map-search-pulse {
  border-radius: 50%;
  background: rgba(0, 104, 173, 0.15);
  border: 2px solid var(--brand);
  animation: mapPulse 1.5s ease-out infinite;
}

@keyframes mapPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1199.98px) {
  .loc-states-grid { gap: 1.25rem; }
}

@media (max-width: 991.98px) {
  .loc-hero-inner { flex-direction: column; text-align: center; min-height: auto; }
  .loc-hero-text { flex: 0 0 100%; max-width: 100%; }
  .loc-hero-sub { margin: 0 auto 1.75rem; }
  .loc-hero-search { margin: 0 auto; }
  .loc-hero-visual { display: none; }
  .loc-map-canvas { height: 380px; }
}

@media (max-width: 767.98px) {
  .loc-hero { padding: 2.5rem 0 2rem; }
  .loc-hero-title { font-size: 1.5rem; }
  .loc-hero-search { max-width: 100%; }
  .loc-states-grid { grid-template-columns: 1fr; gap: 1rem; }
  .loc-states-section { padding: 2.5rem 0 3.5rem; }
  .loc-map-canvas { height: 320px; }
}

@media (max-width: 575.98px) {
  .loc-search-btn { padding: 0.85rem 1rem; font-size: 0.82rem; }
  .loc-states-title { font-size: 1.1rem; }
  .loc-state-body { padding: 0.9rem 1rem 1.1rem; }
}


@media(min-width: 1200px) and (max-width: 1599.98px) {
.product-name { 
    font-size: 1rem; 
}
}

@media(max-width: 992px) {

  .pd-discount-badge { 
    top: -10px;
    left: -10px; 
    font-size: 1.2rem; 
}
.pd-details-section {
    margin-top: 0.25rem;
    width: 100%;
}
    .shop-hero-banner-product-page {
        background: url(../images/shop/mobile-banner-image.jpg) center / cover no-repeat !important;
        min-height: 700px;
    }
    .shop-hero-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 1);
    line-height: 1.5;
    margin-bottom: 1.5rem; 
}
.btn-hero-primary { 
    font-size: 1rem; 
}
}
@media(min-width: 768px) {
.shop-sidebar { 
  top:  0px; 
    max-height: calc(100vh - 100px); 
}

.sidebar-header-row {
    background: #fff;
    position: sticky;
    top: -20px;
    padding: 14px 14px;
    border-bottom: 1px solid #ccc;
}
}

img#pdMainImg {
    object-fit: cover;
    max-height: 600px;
}
.pd-main-img-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: visible;
    background: var(--secondary-bg);
    aspect-ratio: 1 / 1;
    cursor: zoom-in;
    max-height: 600px;
}
.img-zoom-img { 
    min-height: 55vh; 
}

@media(min-width:1200px){
.pd-info {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    width: 80%;
}
}
 
.loc-states-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: auto;
}
@media (max-width: 568.98px) {
  .loc-states-grid { 
    grid-template-columns: repeat(1, 1fr); 
}
.loc-hero-sub { 
    font-size: 1rem; 
}
}


/* ── Floating buttons ── */
.fab-group {
  position: fixed;
  right: 24px;
  bottom: 90px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}
.fab-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--brand);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.fab-btn:hover { background: #0068ad28; }

/* ── Shared popup overlay ── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.38);
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
}
.popup-overlay.active { display: flex; }
.popup-box {
  background: #fff;
  border-radius: 12px;
  width: 380px;
  max-width: 95vw;
  overflow: hidden;
  position: relative;
}
.popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 1px solid #f0f0f0;
}
.popup-header h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #111;
}
.popup-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: #555;
  line-height: 1;
  padding: 0;
}
.popup-close:hover { color: #000; }
.popup-body { padding: 18px 20px 24px; }

/* ── Share options ── */
.share-options { display: flex; flex-direction: column; gap: 12px; }
.share-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border: 1px solid #eee;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  color: #111;
  transition: background .13s;
}
.share-option:hover { background: #fafafa; }
.share-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.share-icon--email { background: #f3f3f3; }
.share-icon--fb    { background: #e8f0fe; }
.share-icon--wa    { background: #e6f7ef; }
.share-label { font-size: 15px; font-weight: 500; }
.share-sub   { font-size: 12px; color: #888; margin-top: 2px; }

/* ── Enquiry popup ── */
.enq-product {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
}
.enq-product img {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid #eee;
}
.enq-product-info { flex: 1; }
.enq-product-name { font-size: 13px; font-weight: 600; color: #111; line-height: 1.4; }
.enq-product-type { font-size: 12px; color: #888; margin-top: 2px; }
.enq-product-price { font-size: 14px; font-weight: 700; color: #111; margin-left: auto; white-space: nowrap; }
.enq-fields { display: flex; flex-direction: column; gap: 13px; }
.enq-field label { display: block; font-size: 13px; color: #555; margin-bottom: 5px; }
.enq-field input,
.enq-field textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 14px;
  color: #111;
  box-sizing: border-box;
  font-family: inherit;
  outline: none;
  resize: vertical;
}
.enq-field input:focus,
.enq-field textarea:focus { border-color: #e0c96e; }
.enq-field textarea { min-height: 80px; }
.btn-send {
  width: 100%;
  background: var(--brand);
  border: none;
  border-radius: 7px;
  padding: 13px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  margin-top: 18px;
  transition: background .15s;
}
.btn-send:hover { background:var(--brand);}


/* checkout page styles */
  /* ===== PAGE HEADER ===== */
    .checkout-header {
      background: var(--white);
      border-bottom: 1px solid #e0e0e0;
      padding: 1.5rem 0 1rem;
      text-align: center;
    }
    .checkout-header h1 {
      font-family: var(--font-heading);
      font-size: 1.7rem;
      font-weight: 700;
      color: var(--text-main);
    }
    .checkout-header .secure-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      font-size: 0.82rem;
      color: green;
      font-weight: 600;
      margin-top: 0.25rem;
    }

    /* ===== MAIN LAYOUT ===== */
    .checkout-layout {
      max-width: 1100px;
      margin: 2rem auto;
      padding: 0 1rem 4rem;
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 2rem;
      align-items: start;
    }

    /* ===== STEP ACCORDION ===== */
    .step-box {
      background: var(--white);
      border: 1px solid #ddd;
      border-radius: var(--radius);
      overflow: hidden;
      margin-bottom: 1rem;
    }
    .step-header {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      padding: 1.1rem 1.5rem;
      cursor: default;
      background: var(--white);
    }
    .step-header.inactive {
      background: #f9f9f9;
      cursor: not-allowed;
    }
    .step-number {
      width: 30px; height: 30px;
      border-radius: 50%;
      background: #ccc;
      color: var(--white);
      font-family: var(--font-heading);
      font-size: 0.85rem;
      font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      transition: background var(--transition);
    }
    .step-number.active { background: var(--brand); }
    .step-number.done { background: var(--success); }
    .step-title {
      font-family: var(--font-heading);
      font-size: 1rem;
      font-weight: 600;
      color: var(--text-main);
    }
    .step-header.inactive .step-title { color: var(--text-muted); }
    .step-body { padding:   1.5rem 1.5rem; border-top: 1px solid #eee; }

    /* ===== FORM ===== */
    .form-hint {
      font-size: 0.82rem;
      color: var(--text-muted);
      margin-bottom: 1.25rem;
      margin-top: 0.75rem;
      line-height: 1.5;
    }
    .form-hint a { color: var(--brand); font-weight: 600; }
    .form-label {
      font-family: var(--font-body);
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text-main);
      margin-bottom: 0.3rem;
      display: block;
    }
    .form-control-cn {
      width: 100%;
      border: 1.5px solid #ccc;
      border-radius: 7px;
      padding: 0.65rem 0.9rem;
      font-family: var(--font-body);
      font-size: 0.95rem;
      color: var(--text-main);
      outline: none;
      transition: border-color var(--transition), box-shadow var(--transition);
      background: #fff;
    }
    .form-control-cn:focus {
      border-color: var(--brand);
      box-shadow: 0 0 0 3px rgba(0,104,173,0.1);
    }
    .form-control-cn.valid { border-color: var(--success); }
    .form-control-cn.invalid { border-color: var(--danger); }
    .input-wrap { position: relative; }
    .input-icon {
      position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
      font-size: 1rem; pointer-events: none;
    }
    .input-icon.valid { color: var(--success); }
    .input-icon.invalid { color: var(--danger); }
    .field-error {
      font-size: 0.78rem; color: var(--danger);
      margin-top: 0.25rem; display: none;
    }
    .field-error.show { display: block; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-group { margin-bottom: 1rem; }

    /* Address autocomplete */
    .address-autocomplete-wrap { position: relative; }
    .address-suggestions {
      position: absolute; top: 100%; left: 0; right: 0;
      background: var(--white);
      border: 1px solid #ddd;
      border-radius: 0 0 7px 7px;
      box-shadow: var(--shadow-md);
      z-index: 200;
      max-height: 220px;
      overflow-y: auto;
      display: none;
    }
    .address-suggestions.show { display: block; }
    .suggestion-item {
      padding: 0.6rem 0.9rem;
      font-size: 0.88rem;
      cursor: pointer;
      border-bottom: 1px solid #f0f0f0;
      transition: background var(--transition);
    }
    .suggestion-item:last-child { border-bottom: none; }
    .suggestion-item:hover { background: var(--secondary-bg); }
    .suggestion-item .main-text { font-weight: 600; font-size: 0.88rem; color: var(--text-main); }
    .suggestion-item .secondary-text { font-size: 0.78rem; color: var(--text-muted); }

    /* Manual Edit link */
    .manual-edit-link {
      display: inline-flex; align-items: center; gap: 0.3rem;
      font-size: 0.82rem; color: var(--brand);
      font-weight: 600; cursor: pointer;
      margin-top: 0.4rem;
      background: none; border: none; padding: 0;
    }
    .manual-edit-link:hover { color: var(--brand-dark); text-decoration: underline; }

    /* Resolved address display */
    .resolved-address {
      background: #f8f9fa;
      border: 1px solid #e0e0e0;
      border-radius: 7px;
      padding: 0.65rem 0.9rem;
      font-size: 0.9rem;
      color: var(--text-main);
      line-height: 1.5;
      display: none;
    }
    .resolved-address.show { display: block; }
    .resolved-address .addr-strong { font-weight: 700; }

    /* Manual address modal */
    .modal-overlay {
      display: none; position: fixed; inset: 0;
      background: rgba(0,0,0,0.5);
      z-index: 2000; align-items: center; justify-content: center;
    }
    .modal-overlay.active { display: flex; }
    .modal-box {
      background: var(--white);
      border-radius: 12px;
      padding: 2rem;
      width: 100%; max-width: 480px;
      max-height: 90vh; overflow-y: auto;
      position: relative;
      box-shadow: 0 8px 40px rgba(0,0,0,0.2);
      animation: modalSlide 0.22s ease;
    }
    @keyframes modalSlide { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
    .modal-box h4 {
      font-family: var(--font-heading);
      font-size: 1.15rem; font-weight: 700;
      margin-bottom: 1.25rem;
      color: var(--text-main);
      text-align: center;
    }
    .modal-close {
      position: absolute; top: 0.85rem; right: 1rem;
      background: none; border: none;
      font-size: 1.4rem; cursor: pointer;
      color: var(--text-muted); line-height: 1;
    }
    .modal-close:hover { color: var(--text-main); }
    .btn-set {
      display: block; width: 100%;
      background: var(--brand); color: #fff;
      border: none; border-radius:7px;
      padding: 0.85rem 1.5rem;
      font-family: var(--font-heading);
      font-weight: 700; font-size: 1rem;
      cursor: pointer; margin-top: 1.25rem;
      transition: background var(--transition);
    }
    .btn-set:hover { background: var(--brand-dark); }

    /* Checkbox */
    .checkbox-wrap {
      display: flex; align-items: flex-start; gap: 0.6rem;
      margin: 1rem 0;
    }
    .checkbox-wrap input[type="checkbox"] {
      width: 18px; height: 18px; accent-color: var(--brand);
      cursor: pointer; flex-shrink: 0; margin-top: 2px;
    }
    .checkbox-wrap label {
      font-size: 0.84rem; color: var(--text-main); line-height: 1.5;
      cursor: pointer;
    }
    .checkbox-wrap label a { color: var(--brand); font-weight: 600; }

    /* Continue Button */
    .btn-continue {
      background: var(--brand); color: #fff;
      border: none; border-radius: 7px;
      padding: 0.9rem 2.5rem;
      font-family: var(--font-heading);
      font-weight: 700; font-size: 1rem;
      cursor: pointer;
      transition: background var(--transition), transform var(--transition);
      display: inline-block; min-width: 160px; text-align: center;
    }
    .btn-continue:hover { background: var(--brand-dark); transform: translateY(-1px); }
    .btn-continue:disabled { background: #ccc; cursor: not-allowed; transform: none; }

    /* ===== DELIVERY OPTIONS ===== */
    .delivery-provider {
      border: 1px solid #ddd; border-radius: var(--radius);
      margin-bottom: 0.85rem; overflow: hidden;
    }
    .delivery-provider-header {
      display: flex; align-items: center; gap: 0.75rem;
      padding: 1rem 1.25rem;
      background: var(--white);
      cursor: pointer;
    }
    .provider-radio {
      width: 20px; height: 20px;
      accent-color: var(--brand);
      cursor: pointer; flex-shrink: 0;
    }
    .provider-logo {
      font-family: var(--font-heading);
      font-size: 0.95rem; font-weight: 700;
      color: var(--text-main);
    }
    .provider-logo.ap { color: #E11A22; }
    .delivery-provider-body { padding: 0.75rem 1.25rem 1.25rem; border-top: 1px solid #eee; }
    .shipping-address-label {
      font-size: 0.82rem; font-weight: 700; color: var(--text-muted);
      text-transform: uppercase; letter-spacing: 0.05em;
      margin-bottom: 0.5rem; display: block;
    }
    .same-billing-check {
      display: flex; align-items: center; gap: 0.5rem;
      font-size: 0.85rem; color: var(--text-main);
      margin: 0.6rem 0 1rem; cursor: pointer;
    }
    .same-billing-check input { accent-color: var(--brand); width: 16px; height: 16px; }
    .delivery-options-list { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.75rem; }
    .delivery-option {
      display: flex; align-items: center; gap: 0.6rem;
      padding: 0.7rem 0.9rem;
      border: 1.5px solid #ddd;
      border-radius: 7px; cursor: pointer;
      transition: border-color var(--transition), background var(--transition);
    }
    .delivery-option:hover { border-color: var(--brand); background: #fffcee; }
    .delivery-option.selected { border-color: var(--brand); background: #fffcee; }
    .delivery-option input[type="radio"] { accent-color: var(--brand); width: 16px; height: 16px; flex-shrink: 0; }
    .delivery-option-label { flex: 1; }
    .delivery-option-name { font-weight: 700; font-size: 0.88rem; color: var(--text-main); }
    .delivery-option-date { font-size: 0.78rem; color: var(--text-muted); }
    .delivery-option-price { font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem; color: var(--text-main); }
    .delivery-option-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.25rem; font-style: italic; }
    .store-pickup-info {
      background: #f8f9fa; border-radius: 7px;
      padding: 0.85rem 1rem; margin-top: 0.75rem;
      font-size: 0.88rem; line-height: 1.6;
    }
    .store-pickup-info .store-name { font-weight: 700; color: var(--text-main); font-size: 0.92rem; }

    /* ===== PAYMENT OPTIONS ===== */
    .payment-tab-list {
      display: flex; gap: 0.75rem; flex-wrap: wrap;
      margin-bottom: 1.25rem;
    }
    .payment-tab {
      border: 1px solid #ddd; border-radius: 8px;
      padding: 0.6rem 1.2rem;
      font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600;
      cursor: pointer; background: var(--white); color: var(--text-main);
      display: flex; align-items: center; gap: 0.5rem;
      transition: border-color var(--transition), background var(--transition);
    }
    .payment-tab:hover { border-color: var(--brand); }
    .payment-tab.active { border-color: var(--brand); background: #0068ad14; }
    .payment-tab img { height: 20px; }
    .payment-section { display: none; }
    .payment-section.active { display: block; }
    .card-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .card-icons { display: flex; gap: 0.4rem; margin-bottom: 0.75rem; }
    .card-icon-badge {
      background: #f0f0f0; border-radius: 4px;
      padding: 0.2rem 0.5rem; font-size: 0.72rem; font-weight: 700;
      color: #555;
    }
    .paypal-info {
      background: #f0f6ff; border: 1px solid #c0d8f5;
      border-radius: 8px; padding: 1.1rem;
      text-align: center; font-size: 0.9rem; color: #333;
    }
    .paypal-info img { height: 28px; margin: 0 auto 0.5rem; }
    .payin4-info {
      background: #fff8f0; border: 1px solid #ffd9a8;
      border-radius: 8px; padding: 1.1rem; font-size: 0.88rem;
    }
    .payin4-amount { font-size: 1.2rem; font-weight: 800; color: var(--brand); }

    /* ===== ORDER SUMMARY (right) ===== */
    .order-summary {
      background: var(--white);
      border: 1px solid #ddd;
      border-radius: var(--radius);
      position: sticky; top: 80px;
      overflow: hidden;
    }
    .order-summary-header {
      padding: 1rem 1.25rem;
      border-bottom: 1px solid #eee;
      display: flex; align-items: center; justify-content: space-between;
    }
    .order-summary-header h5 {
      font-family: var(--font-heading);
      font-size: 0.95rem; font-weight: 700;
      color: var(--text-main); margin: 0;
    }
    .summary-meta {
      font-size: 0.82rem; color: var(--text-muted);
      padding: 0.65rem 1.25rem;
      border-bottom: 1px solid #eee;
      display: flex; justify-content: space-between; align-items: center;
    }
    .summary-meta .summary-total-top {
      font-family: var(--font-heading);
      font-size: 1rem; font-weight: 800; color: var(--text-main);
    }

    /* Discount code */
    .discount-section { padding: 0.85rem 1.25rem; border-bottom: 1px solid #eee; }
    .discount-row { display: flex; gap: 0.5rem; }
    .discount-input {
      flex: 1; border: 1.5px solid #ccc;
      border-radius: 7px; padding: 0.5rem 0.75rem;
      font-size: 0.88rem; outline: none;
      transition: border-color var(--transition);
    }
    .discount-input:focus { border-color: var(--brand); }
    .btn-apply-discount {
      background: var(--white); color: var(--text-main);
      border: 1.5px solid #ccc; border-radius: 7px;
      padding: 0.5rem 1rem; font-family: var(--font-heading);
      font-weight: 700; font-size: 0.85rem; cursor: pointer;
      transition: border-color var(--transition);
    }
    .btn-apply-discount:hover { border-color: var(--brand); color: var(--brand); }

    /* PayPal pay in 4 row */
    .payin4-row {
      padding: 0.75rem 1.25rem;
      border-bottom: 1px solid #eee;
      font-size: 0.82rem; color: var(--text-muted);
    }
    .payin4-row .pp-logo { font-weight: 800; color: #003087; font-size: 0.88rem; }
    .payin4-row a { color: var(--brand); font-weight: 600; }

    /* Items accordion */
    .items-accordion-toggle {
      width: 100%; background: none; border: none;
      padding: 0.85rem 1.25rem;
      display: flex; align-items: center; justify-content: space-between;
      cursor: pointer; border-bottom: 1px solid #eee;
    }
    .items-accordion-toggle .toggle-label {
      font-family: var(--font-heading);
      font-size: 0.85rem; font-weight: 700; color: var(--brand);
      display: flex; align-items: center; gap: 0.4rem;
    }
    .items-accordion-body { display: none; padding: 0.75rem 1.25rem; border-bottom: 1px solid #eee; }
    .items-accordion-body.show { display: block; }

    /* Cart item in summary */
    .summary-item {
      display: flex; gap: 0.85rem; align-items: flex-start;
      padding: 0.5rem 0;
    }
    .summary-item-img {
      width: 52px; height: 52px;
      border-radius: 7px; object-fit: cover;
      background: var(--secondary-bg); flex-shrink: 0;
    }
    .summary-item-info { flex: 1; min-width: 0; }
    .summary-item-name {
      font-family: var(--font-heading);
      font-size: 0.82rem; font-weight: 600;
      color: var(--text-main); line-height: 1.35;
      display: -webkit-box; -webkit-line-clamp: 2;
      -webkit-box-orient: vertical; overflow: hidden;
    }
    .summary-item-sub { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.15rem; }
    .summary-item-store { font-size: 0.75rem; color: var(--text-muted); }
    .summary-item-price {
      font-family: var(--font-heading);
      font-size: 0.9rem; font-weight: 800;
      color: var(--text-main); flex-shrink: 0;
    }

    /* Store section */
    .store-section-label {
      font-size: 0.72rem; text-transform: uppercase;
      letter-spacing: 0.06em; color: var(--text-muted);
      font-weight: 700; margin-bottom: 0.4rem;
    }

    /* Summary totals */
    .summary-totals { padding: 0.85rem 1.25rem; }
    .summary-total-row {
      display: flex; justify-content: space-between; align-items: center;
      padding: 0.3rem 0;
      font-size: 0.88rem; color: var(--text-muted);
    }
    .summary-total-row.grand {
      border-top: 2px solid #eee; margin-top: 0.4rem; padding-top: 0.75rem;
      font-family: var(--font-heading);
      font-size: 1.05rem; font-weight: 800; color: var(--text-main);
    }

    /* Checkout button summary */
    .btn-checkout-summary {
      display: block; width: 100%;
      background: var(--brand); color: #fff;
      border: none; border-radius: 7px;
      padding: 0.9rem 1.5rem;
      font-family: var(--font-heading);
      font-weight: 700; font-size: 1rem;
      cursor: pointer; text-align: center;
      transition: background var(--transition);
      margin: 0.75rem 1.25rem 1rem;
      width: calc(100% - 2.5rem);
    }
    .btn-checkout-summary:hover { background: var(--brand-dark); }

    /* Can't find address row */
    .suggestion-cant-find {
      padding: 0.65rem 0.9rem;
      font-size: 0.85rem;
      color: var(--brand);
      font-weight: 600;
      cursor: pointer;
      border-top: 1px solid #eee;
      background: #f9fbff;
      transition: background var(--transition);
    }
    .suggestion-cant-find:hover { background: var(--secondary-bg); }

    /* Collapsible arrow on items accordion toggle */
    .items-accordion-toggle {
      transition: background var(--transition);
    }
    .items-accordion-toggle:hover { background: #fafafa; }
    .accordion-arrow {
      display: inline-flex; align-items: center; justify-content: center;
      width: 22px; height: 22px;
      border-radius: 50%;
      background: var(--secondary-bg);
      color: var(--brand);
      font-size: 0.75rem;
      transition: transform var(--transition);
      flex-shrink: 0;
    }
    .accordion-arrow.open { transform: rotate(180deg); }

    /* Why billing modal */
    .info-modal-overlay {
      display: none; position: fixed; inset: 0;
      background: rgba(0,0,0,0.45);
      z-index: 3000; align-items: center; justify-content: center;
    }
    .info-modal-overlay.active { display: flex; }
    .info-modal-box {
      background: var(--white);
      border-radius: 10px;
      width: 100%; max-width: 420px;
      box-shadow: 0 8px 40px rgba(0,0,0,0.18);
      animation: modalSlide 0.22s ease;
      overflow: hidden;
    }
    .info-modal-header {
      display: flex; align-items: center; justify-content: space-between;
      padding: 1rem 1.25rem;
      border-bottom: 1px solid #eee;
    }
    .info-modal-header h5 {
      font-family: var(--font-heading);
      font-size: 1rem; font-weight: 700;
      margin: 0; color: var(--text-main);
    }
    .info-modal-close-btn {
      background: none; border: none;
      font-size: 1.3rem; cursor: pointer;
      color: var(--text-muted); line-height: 1; padding: 0.1rem;
    }
    .info-modal-close-btn:hover { color: var(--text-main); }
    .info-modal-body {
      padding: 1.25rem;
      font-size: 0.9rem; color: var(--text-main); line-height: 1.7;
    }
    .info-modal-footer {
      padding: 0.85rem 1.25rem;
      border-top: 1px solid #eee;
      text-align: right;
    }
    .btn-info-ok {
      background: var(--brand); color: #fff;
      border: none; border-radius: 7px;
      padding: 0.55rem 1.8rem;
      font-family: var(--font-heading);
      font-weight: 700; font-size: 0.9rem;
      cursor: pointer;
      transition: background var(--transition);
    }
    .btn-info-ok:hover { background: var(--brand-dark); }

    /* Why billing anchor link */
    .why-billing-link {
      display: inline-flex; align-items: center; gap: 0.3rem;
      font-size: 0.8rem; color: var(--brand);
      font-weight: 600; cursor: pointer;
      background: none; border: none; padding: 0;
      text-decoration: none;
      margin-top: 0.3rem;
    }
    .why-billing-link:hover { text-decoration: underline; color: var(--brand-dark); }

    /* ── Step header: caret + collapsible ── */
    .step-header { cursor: pointer; user-select: none; }
    .step-header.inactive { cursor: not-allowed; }
    .step-caret {
      margin-left: auto;
      display: inline-flex; align-items: center; justify-content: center;
      width: 26px; height: 26px; border-radius: 50%;
      background: var(--secondary-bg); color: var(--brand);
      font-size: 0.78rem; flex-shrink: 0;
      transition: transform var(--transition), opacity var(--transition);
      opacity: 0;
    }
    .step-header:not(.inactive) .step-caret { opacity: 1; }
    .step-caret.open { transform: rotate(180deg); }

    /* Address input caret (dropdown arrow) */
    .addr-input-wrap { position: relative; }
    .addr-caret {
      position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
      color: var(--text-muted); font-size: 0.78rem; pointer-events: none;
      transition: transform var(--transition);
    }
    .addr-caret.open { transform: translateY(-50%) rotate(180deg); }
    /* Push right padding to make room for caret */
    .addr-input-wrap .form-control-cn { padding-right: 2.2rem; }
    /* When valid/invalid icon is also showing, push caret left */
    .addr-input-wrap .input-icon { right: 32px; }

    @media (max-width: 900px) {
      .checkout-layout { grid-template-columns: 1fr; }
      .order-summary { position: static; }
    }
    @media (max-width: 576px) {
      .form-row, .card-row { grid-template-columns: 1fr; }
      .checkout-layout { padding: 0 0.75rem 3rem; margin-top: 1rem; }
      .step-body { padding:  1rem 1rem; }
    }
    .step-caret i.bi.bi-chevron-down {
    color: #000;
    font-weight: 600;
}


/* contact form started  */
/* ================================================================
       QUICK CONTACT CARDS
    ================================================================ */
    .quick-contact-section { padding: 4rem 0 2rem; }
    .quick-cards-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
    }
    .quick-card {
      background: var(--white);
      border: 1px solid rgba(0,104,173,0.12);
      border-radius: var(--radius);
      padding: 1.75rem 1.25rem 1.5rem;
      text-align: center;
      transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
      position: relative; overflow: hidden; cursor: default;
    }
    .quick-card::after {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: var(--brand); transform: scaleX(0); transform-origin: left;
      transition: transform var(--transition);
    }
    .quick-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: rgba(0,104,173,0.25); }
    .quick-card:hover::after { transform: scaleX(1); }
    .quick-card-icon {
      width: 60px; height: 60px; border-radius: 50%;
      background: var(--secondary-bg); color: var(--brand);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem; margin: 0 auto 1rem;
      transition: background var(--transition), color var(--transition);
    }
    .quick-card:hover .quick-card-icon { background: var(--brand); color: var(--white); }
    .quick-card h5 {
      font-family: var(--font-heading); font-size: 0.95rem;
      font-weight: 700; color: var(--text-main); margin-bottom: 0.5rem;
    }
    .quick-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 0.85rem; }
    .quick-card .card-link {
      color: var(--brand); font-size: 0.82rem; font-weight: 700;
      display: inline-flex; align-items: center; gap: 0.3rem;
      transition: gap var(--transition);
    }
    .quick-card .card-link:hover { gap: 0.55rem; }
 
    /* ================================================================
       MAIN LAYOUT
    ================================================================ */
    .contact-main { padding: 4rem 0 5rem; }
    .contact-layout {
      display: grid;
      grid-template-columns: 1fr 370px;
      gap: 3rem; align-items: flex-start;
    }
 
    /* ================================================================
       CONTACT TOPICS (left column)
    ================================================================ */
    .contact-topics { display: flex; flex-direction: column; }
    .topic-block {
      padding: 2rem 0;
      border-bottom: 1px solid rgba(0,104,173,0.1);
    }
    .topic-block:first-child { padding-top: 0; }
    .topic-block:last-child { border-bottom: none; padding-bottom: 0; }
    .topic-block h3 {
      font-size: 1.15rem; font-weight: 800; color: var(--text-main);
      margin-bottom: 1rem; display: flex; align-items: center; gap: 0.7rem;
    }
    .topic-icon {
      width: 38px; height: 38px; border-radius: 9px;
      background: var(--secondary-bg); color: var(--brand);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.05rem; flex-shrink: 0;
    }
    .topic-block p {
      font-size: 0.95rem; color: var(--text-main);
      line-height: 1.8; margin-bottom: 0.75rem;
    }
    .topic-block p:last-child { margin-bottom: 0; }
    .topic-block a { color: var(--brand); font-weight: 600; }
    .topic-block a:hover { text-decoration: underline; }
 
    /* Contact detail rows */
    .contact-detail-list { display: flex; flex-direction: column; gap: 0.65rem; margin-top: 0.85rem; }
    .contact-detail-row {
      display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.92rem;
    }
    .contact-detail-row .detail-icon {
      width: 32px; height: 32px; border-radius: 7px;
      background: var(--secondary-bg); color: var(--brand);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.88rem; flex-shrink: 0;
    }
    .contact-detail-row span { color: var(--text-main); line-height: 1.6; padding-top: 0.3rem; }
    .contact-detail-row a { color: var(--brand); font-weight: 600; }
    .contact-detail-row a:hover { text-decoration: underline; }
 
    /* Hours table */
    .hours-table {
      margin-top: 0.85rem; border: 1px solid rgba(0,104,173,0.1);
      border-radius: var(--radius); overflow: hidden; font-size: 0.88rem;
    }
    .hours-row {
      display: flex; align-items: center;
      padding: 0.6rem 1rem; border-bottom: 1px solid rgba(0,104,173,0.06);
    }
    .hours-row:last-child { border-bottom: none; }
    .hours-row:nth-child(even) { background: rgba(233,241,252,0.4); }
    .hours-day {
      font-weight: 700; color: var(--text-main);
      width: 130px; flex-shrink: 0; display: flex; align-items: center; gap: 0.4rem;
    }
    .hours-day i { font-size: 0.85rem; color: var(--brand); }
    .hours-time { color: var(--text-muted); display: flex; align-items: center; gap: 0.4rem; }
    .hours-time.open { color: var(--success); font-weight: 600; }
    .hours-time.open i { font-size: 0.55rem; }
    .hours-time.closed { color: var(--danger); }
    .hours-time.closed i { font-size: 0.75rem; }
 
    /* ================================================================
       CONTACT FORM CARD (right sidebar)
    ================================================================ */
    .contact-form-card {
      background: var(--white); border: 1px solid rgba(0,104,173,0.15);
      border-radius: var(--radius); overflow: hidden;
      position: sticky; top: 24px; box-shadow: var(--shadow-sm);
    }
    .contact-form-header {
      background: linear-gradient(120deg, #060810 0%, #0068AD 100%);
      padding: 1.4rem 1.5rem;
      display: flex; align-items: center; gap: 0.85rem;
    }
    .contact-form-header .form-header-icon {
      width: 44px; height: 44px; border-radius: 50%;
      background: rgba(255,255,255,0.15);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem; color: var(--white); flex-shrink: 0;
    }
    .contact-form-header-text h4 {
      font-size: 1rem; font-weight: 700; color: var(--white); margin: 0;
    }
    .contact-form-header-text p { font-size: 0.78rem; color: rgba(255,255,255,0.75); margin: 0.2rem 0 0; }
    .contact-form-body { padding: 1.5rem; }
 
    .cf-group { margin-bottom: 1rem; }
    .cf-label {
      display: flex; align-items: center; gap: 0.35rem;
      font-size: 0.82rem; font-weight: 600; color: var(--text-main); margin-bottom: 0.3rem;
    }
    .cf-label i { color: var(--brand); font-size: 0.82rem; }
    .cf-input, .cf-select, .cf-textarea {
      width: 100%; border: 1.5px solid #ddd; border-radius: 7px;
      padding: 0.62rem 0.85rem; font-family: var(--font-body);
      font-size: 0.88rem; color: var(--text-main); outline: none;
      transition: border-color var(--transition), box-shadow var(--transition);
      background: #fff;
    }
    .cf-input:focus, .cf-select:focus, .cf-textarea:focus {
      border-color: var(--brand); box-shadow: 0 0 0 3px rgba(0,104,173,0.1);
    }
    .cf-input.valid { border-color: var(--success); }
    .cf-input.invalid, .cf-select.invalid, .cf-textarea.invalid { border-color: var(--danger); }
    .cf-textarea { resize: vertical; min-height: 100px; }
    .cf-select {
      appearance: none; -webkit-appearance: none; cursor: pointer;
      background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 16 16'%3E%3Cpath fill='%230068AD' d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
      padding-right: 2.2rem;
    }
    .cf-field-error { font-size: 0.75rem; color: var(--danger); margin-top: 0.25rem; display: none; }
    .cf-field-error.show { display: block; }
 
    .btn-cf-submit {
      display: flex; align-items: center; justify-content: center; gap: 0.5rem;
      width: 100%; background: var(--brand); color: var(--white);
      border: none; border-radius: 7px; padding: 0.9rem 1.5rem;
      font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem;
      cursor: pointer; transition: background var(--transition), transform var(--transition);
      margin-top: 0.25rem;
    }
    .btn-cf-submit:hover { background: var(--brand-dark); transform: translateY(-1px); }
 
    /* Success state */
    .cf-success { display: none; text-align: center; padding: 2.5rem 1rem; }
    .cf-success.show { display: block; }
    .cf-success-icon {
      width: 68px; height: 68px; border-radius: 50%;
      background: #e8f5e9; color: var(--success);
      font-size: 2rem; display: flex; align-items: center;
      justify-content: center; margin: 0 auto 1rem;
    }
    .cf-success h5 { font-family: var(--font-heading); font-weight: 700; color: var(--text-main); margin-bottom: 0.5rem; }
    .cf-success p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }
 
    /* ================================================================
       OFFICE MAP SECTION
    ================================================================ */
    .office-map-section { background: var(--secondary-bg); padding: 4rem 0; }
    .office-map-inner {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 2.5rem; align-items: center;
    }
    .office-map-text h2 {
      font-size: clamp(1.3rem, 2.5vw, 2rem); font-weight: 800;
      color: var(--text-main); text-transform: uppercase; margin-bottom: 1.5rem;
    }
    .office-map-text h2 span { color: var(--brand); }
    .office-info-list { display: flex; flex-direction: column; gap: 1rem; }
    .office-info-item { display: flex; gap: 0.9rem; align-items: flex-start; }
    .office-info-icon {
      width: 42px; height: 42px; border-radius: 9px;
      background: var(--white); color: var(--brand);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.05rem; flex-shrink: 0; box-shadow: var(--shadow-sm);
    }
    .office-info-content { flex: 1; padding-top: 0.1rem; }
    .office-info-label {
      font-family: var(--font-heading); font-size: 0.75rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.07em;
      color: var(--text-muted); margin-bottom: 0.2rem;
    }
    .office-info-value { font-size: 0.9rem; color: var(--text-main); line-height: 1.6; }
    .office-info-value a { color: var(--brand); font-weight: 600; }
    .office-info-value a:hover { text-decoration: underline; }
    .office-map-embed {
      border-radius: var(--radius); overflow: hidden;
      box-shadow: var(--shadow-md); height: 380px;
    }
    .office-map-embed iframe { width: 100%; height: 100%; border: none; display: block; }
    .map-placeholder {
      width: 100%; height: 100%;
      background: linear-gradient(135deg, #dce8f7 0%, #b8d0ee 100%);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 0.65rem;
    }
    .map-placeholder i { font-size: 3.2rem; color: var(--brand); }
    .map-placeholder span { font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem; color: var(--text-main); }
    .map-placeholder small { font-size: 0.75rem; color: var(--text-muted); }
 
    /* ================================================================
       FAQ SECTION
    ================================================================ */
    .faq-section { padding: 4rem 0 5rem; }
    .section-heading-center {
      text-align: center; margin-bottom: 2.5rem;
    }
    .section-heading-center h2 {
      font-size: clamp(1.3rem, 2.5vw, 1.9rem); font-weight: 800;
      color: var(--text-main); text-transform: uppercase; margin-bottom: 0.5rem;
    }
    .section-heading-center h2 span { color: var(--brand); }
    .section-heading-center p { font-size: 0.95rem; color: var(--text-muted); }
    .section-heading-center p a { color: var(--brand); font-weight: 700; }
 
    .faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
    .faq-item {
      border: 1px solid rgba(0,104,173,0.12); border-radius: var(--radius);
      overflow: hidden; transition: box-shadow var(--transition);
    }
    .faq-item.open { box-shadow: var(--shadow-sm); }
    .faq-question {
      width: 100%; background: var(--white); border: none;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.1rem 1.25rem; cursor: pointer; text-align: left; gap: 1rem;
      font-family: var(--font-heading); font-size: 0.92rem; font-weight: 700;
      color: var(--text-main); transition: background var(--transition), color var(--transition);
    }
    .faq-question-text { display: flex; align-items: center; gap: 0.75rem; flex: 1; }
    .faq-q-icon {
      width: 30px; height: 30px; border-radius: 7px;
      background: var(--secondary-bg); color: var(--brand);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.85rem; flex-shrink: 0;
      transition: background var(--transition), color var(--transition);
    }
    .faq-question:hover { background: var(--secondary-bg); color: var(--brand); }
    .faq-question:hover .faq-q-icon { background: var(--brand); color: var(--white); }
    .faq-item.open .faq-question { background: var(--secondary-bg); color: var(--brand); }
    .faq-item.open .faq-q-icon { background: var(--brand); color: var(--white); }
    .faq-chevron {
      width: 26px; height: 26px; border-radius: 50%;
      background: rgba(0,104,173,0.1); color: var(--brand);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.72rem; flex-shrink: 0;
      transition: transform var(--transition), background var(--transition);
    }
    .faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--brand); color: var(--white); }
    .faq-answer {
      display: none; padding: 1rem 1.25rem 1.25rem;
      background: var(--white); font-size: 0.88rem;
      color: var(--text-muted); line-height: 1.75;
      border-top: 1px solid rgba(0,104,173,0.08);
    }
    .faq-answer a { color: var(--brand); font-weight: 600; }
    .faq-item.open .faq-answer { display: block; }
 
    /* ================================================================
       TOAST
    ================================================================ */
    .cf-toast {
      position: fixed; bottom: 2rem; right: 2rem; z-index: 5000;
      transform: translateY(120%); opacity: 0;
      transition: transform 0.3s ease, opacity 0.3s ease; pointer-events: none;
    }
    .cf-toast.show { transform: translateY(0); opacity: 1; }
    .cf-toast-inner {
      background: #1a1a2e; color: var(--white); border-radius: 10px;
      padding: 0.85rem 1.4rem;
      display: flex; align-items: center; gap: 0.7rem;
      box-shadow: var(--shadow-lg); font-family: var(--font-heading);
      font-size: 0.88rem; font-weight: 600;
    }
    .cf-toast-icon { font-size: 1.15rem; }
    .cf-toast-icon.ok { color: #4ade80; }
    .cf-toast-icon.err { color: #f87171; }
 
    /* ================================================================
       RESPONSIVE
    ================================================================ */
    @media (max-width: 1199.98px) { .quick-cards-grid { grid-template-columns: repeat(2,1fr); } }
    @media (max-width: 991.98px) {
      .contact-hero-inner { flex-direction: column; text-align: center; }
      .contact-hero-text { flex: 0 0 100%; max-width: 100%; }
      .contact-hero-text p { margin: 0 auto 1.5rem; }
      .contact-hero-visual { display: none; }
      .contact-layout { grid-template-columns: 1fr; }
      .contact-form-card { position: static; }
      .office-map-inner { grid-template-columns: 1fr; }
    }
    @media (max-width: 767.98px) {
      .quick-cards-grid { grid-template-columns: repeat(2,1fr); gap: 0.85rem; }
      .contact-main { padding: 2.5rem 0 3rem; }
      .office-map-section { padding: 2.5rem 0; }
      .faq-section { padding: 2.5rem 0 3.5rem; }
    }
    @media (max-width: 575.98px) { .quick-cards-grid { grid-template-columns: 1fr; } }

    @media(max-width: 900px) {
.header-for-fav-carts{
      flex-direction: column;
    justify-content: start !important;
    align-items: start !important;
    gap: 15px;
}
    }



/*FOR SHOWING LOADER ON SCREEN*/
#overlay3 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    z-index: 9999; /* Make sure it's above other content */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* Stack the loader and the message vertically */
}

#loaderContract3 {
    z-index: 1000; /* Loader on top of the overlay */
}

#loaderMessage3 {
    color: white;
    font-size: 18px;
    padding-top: 10px;
    text-align: center;
}