﻿/* ==========================================
   FASHION E-COMMERCE - CUSTOM STYLESHEET
   ========================================== */

/* Google & CDN Fonts Import - Glacial Indifference & DM Sans (Live Fonts) */
@import url('https://fonts.cdnfonts.com/css/glacial-indifference');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
  --primary-maroon: #4a8061; /* FabFunda Emerald Teal */
  --primary-maroon-dark: #31523f;
  --primary-maroon-light: #e6f7f4;
  --secondary-purple: #6366b5; /* FabFunda Royal Periwinkle */
  --secondary-purple-dark: #4d509e;
  --secondary-purple-light: #f0f0fa;
  --text-dark: #111111;
  --text-muted: #555555;
  --text-light: #777777;
  --border-color: #e0f2ee;
  --bg-cream: #f2faf8;
  --bg-light-cream: #fafefe;
  --badge-pink: #00ab8e;
  --font-global: 'glacial_indifferenceregular', 'DM Sans', sans-serif;
  --font-serif: 'glacial_indifferenceregular', 'DM Sans', sans-serif;
  --font-script: 'glacial_indifferenceregular', 'DM Sans', sans-serif;
  --container-max-width: 1600px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden !important;
  max-width: 100% !important;
  width: 100%;
  position: relative;
}

body, h1, h2, h3, h4, h5, h6, p, div, span, a, button, input, select, textarea, label {
  font-family: 'glacial_indifferenceregular', 'DM Sans', sans-serif !important;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

a:hover {
  color: var(--primary-maroon);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Custom Container with side spacing */
.custom-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
}

/* ==========================================
   EXACT ORNAMENTAL SECTION HEADER WITH BORDERS
   ========================================== */
.section-header-wrap {
  text-align: center;
  margin-bottom: 30px;
  width: 100%;
}

.section-title-border-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  gap: 15px;
}

.header-border-left,
.header-border-right,
.section-bottom-border-wrap,
.section-bottom-border-img {
  display: none !important;
}

.header-title-center {
  text-align: center;
  flex-shrink: 0;
  padding: 0 10px;
}

.section-motif-icon {
  font-size: 13px;
  color: var(--primary-maroon);
  opacity: 0.85;
  margin-bottom: 2px;
  display: block;
}

.section-main-title {
  font-family: var(--font-global) !important;
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-maroon);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  line-height: 1.2;
}

.section-subtitle-text {
  font-size: 13.5px;
  color: #666666;
  margin-top: 4px;
  margin-bottom: 6px;
  font-weight: 400;
}

/* ==========================================
   1. TOP ANNOUNCEMENT BAR & CURRENCY DROPDOWN
   ========================================== */
.top-bar {
  background-color: var(--primary-maroon);
  color: #ffffff;
  font-size: 12px;
  padding: 8px 0;
  font-weight: 400;
  letter-spacing: 0.2px;
  position: relative;
  z-index: 1050;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar .announcement-list {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.top-bar .announcement-item {
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.top-bar .announcement-item i {
  font-size: 13px;
  opacity: 0.95;
}

.top-bar .top-bar-right {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.top-bar .top-bar-link {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  cursor: pointer;
  opacity: 0.95;
  padding: 4px 0;
}

.top-bar .top-bar-link:hover {
  opacity: 1;
}

.top-bar .divider {
  opacity: 0.4;
}

/* Currency Dropdown Wrapper */
.currency-dropdown-wrap {
  position: relative;
}

.currency-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 210px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 2000;
  border: 1px solid rgba(0, 0, 0, 0.06);
  pointer-events: none;
}

.currency-dropdown-wrap:hover .currency-dropdown,
.currency-dropdown:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
  pointer-events: auto;
}

.currency-dropdown-header {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #666666;
  padding: 4px 16px 8px;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 4px;
}

.currency-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  color: #222222;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.currency-item:hover {
  background-color: #f8f9fa;
}

.currency-item.active {
  background-color: #f5f5f5;
}

.currency-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.currency-flag {
  width: 22px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.currency-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.currency-code {
  font-size: 12px;
  font-weight: 600;
  color: #111111;
}

.currency-country {
  font-size: 10.5px;
  color: #777777;
}

.currency-check {
  color: #111111;
  font-size: 11px;
  font-weight: 700;
}

/* ==========================================
   2. MAIN HEADER & NAVBAR
   ========================================== */
.main-header {
  background-color: #ffffff;
  position: relative;
  z-index: 1000;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.main-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  animation: slideDown 0.35s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  position: relative;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-brand-logo-img {
  height: 54px;
  width: auto;
  object-fit: contain;
  margin-bottom: 12px;
  display: block;
}

/* Navigation Links */
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-item {
  position: relative;
}

.nav-link-custom {
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #222222;
  padding: 10px 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  position: relative;
  white-space: nowrap;
}

.nav-link-custom i {
  font-size: 9px;
  margin-left: 2px;
  transition: transform 0.25s ease;
}

.nav-link-custom.sale-link {
  color: var(--primary-maroon);
  font-weight: 700;
}

.nav-link-custom:hover {
  color: var(--primary-maroon);
}

.nav-item:hover .nav-link-custom i {
  transform: rotate(180deg);
}

/* Badge for NEW ARRIVALS */
.badge-new {
  position: absolute;
  top: -6px;
  right: -2px;
  background-color: var(--badge-pink);
  color: #ffffff;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 1px 4px;
  border-radius: 2px;
  letter-spacing: 0.3px;
  line-height: 1;
}

/* Right Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Search Box */
.search-box-wrap {
  position: relative;
  width: 210px;
}

.search-box-input {
  width: 100%;
  height: 38px;
  padding: 0 36px 0 14px;
  font-size: 13px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  outline: none;
  color: var(--text-dark);
  transition: border-color 0.25s ease;
}

.search-box-input:focus {
  border-color: var(--primary-maroon);
}

.search-box-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #666666;
  font-size: 14px;
  cursor: pointer;
}

.action-icon-link {
  font-size: 19px;
  color: #222222;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  transition: color 0.25s ease;
  cursor: pointer;
}

.action-icon-link:hover {
  color: var(--primary-maroon);
}

.cart-trolley-icon {
  font-size: 19px;
  color: #222222;
  transition: transform 0.2s ease, color 0.2s ease;
}

.action-icon-link:hover .cart-trolley-icon {
  color: var(--primary-maroon);
  transform: scale(1.08);
}

.cart-count-badge {
  position: absolute;
  top: -1px;
  right: -2px;
  background-color: var(--primary-maroon, #681119);
  color: #ffffff;
  font-size: 9.5px;
  font-weight: 800;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border: 1.5px solid #ffffff;
  box-shadow: 0 2px 6px rgba(104, 17, 25, 0.35);
}

/* Account Dropdown Wrapper */
.account-dropdown-wrap {
  position: relative;
}

.account-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 230px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 2000;
  border: 1px solid rgba(0, 0, 0, 0.06);
  pointer-events: none;
}

.account-dropdown-wrap:hover .account-dropdown,
.account-dropdown:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(6px);
  pointer-events: auto;
}

.account-user-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.account-avatar {
  width: 42px;
  height: 42px;
  background-color: var(--primary-maroon);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.account-user-info {
  display: flex;
  flex-direction: column;
}

.account-user-name {
  font-size: 14px;
  font-weight: 700;
  color: #111111;
  line-height: 1.2;
}

.account-user-email {
  font-size: 11px;
  color: #777777;
  line-height: 1.2;
  margin-top: 2px;
}

.account-profile-link {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary-maroon);
  margin-top: 3px;
  display: inline-block;
}

.account-profile-link:hover {
  text-decoration: underline;
}

.account-dropdown-divider {
  height: 1px;
  background-color: #eeeeee;
  margin: 12px 0;
}

.account-menu-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.account-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 4px;
  font-size: 12.5px;
  font-weight: 500;
  color: #333333;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.account-menu-item i {
  font-size: 14px;
  color: #555555;
  width: 16px;
  text-align: center;
  transition: color 0.2s ease;
}

.account-menu-item:hover {
  color: var(--primary-maroon);
  background-color: #f9f9f9;
}

.account-menu-item:hover i {
  color: var(--primary-maroon);
}

.account-logout-item {
  color: var(--primary-maroon);
  font-weight: 600;
}

.account-logout-item i {
  color: var(--primary-maroon);
}

.account-logout-item:hover {
  color: var(--primary-maroon-dark);
  background-color: #fdf2f4;
}

/* ==========================================
   3. MEGA MENU DROPDOWN
   ========================================== */
.has-megamenu {
  position: static !important;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: 1200px;
  max-width: calc(100% - 48px);
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
  padding: 24px 28px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1100;
  border: 1px solid rgba(0, 0, 0, 0.05);
  pointer-events: none;
}

.has-megamenu:hover .mega-menu,
.mega-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: 210px 1fr 1fr 1fr 240px;
  gap: 24px;
}

.megamenu-promo-card {
  display: flex;
  flex-direction: column;
}

.megamenu-promo-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
}

.megamenu-promo-title {
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  margin-top: 10px;
  margin-bottom: 3px;
}

.megamenu-promo-desc {
  font-size: 11.5px;
  color: #666666;
  line-height: 1.35;
  margin-bottom: 10px;
}

.btn-megamenu-shop {
  align-self: flex-start;
  background-color: var(--primary-maroon);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 3px;
  letter-spacing: 0.5px;
}

.btn-megamenu-shop:hover {
  background-color: var(--primary-maroon-dark);
  color: #ffffff;
}

.megamenu-col {
  display: flex;
  flex-direction: column;
  padding-left: 10px;
  border-left: 1px solid #f2f2f2;
}

.megamenu-col:first-of-type {
  padding-left: 0;
  border-left: none;
}

.megamenu-heading {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #111111;
  margin-bottom: 12px;
  padding-bottom: 4px;
}

.megamenu-list-item {
  margin-bottom: 5px;
}

.megamenu-list-link {
  font-size: 12.5px;
  color: #444444;
  font-weight: 400;
  display: block;
  padding: 1.5px 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.megamenu-list-link:hover {
  color: var(--primary-maroon);
  transform: translateX(3px);
}

.megamenu-bestsellers {
  display: flex;
  flex-direction: column;
  padding-left: 12px;
  border-left: 1px solid #f2f2f2;
}

.bestseller-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.bestseller-img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.bestseller-info {
  display: flex;
  flex-direction: column;
}

.bestseller-name {
  font-size: 12px;
  font-weight: 600;
  color: #222222;
  line-height: 1.3;
  margin-bottom: 2px;
}

.bestseller-price {
  font-size: 12px;
  font-weight: 700;
  color: #111111;
}

.megamenu-viewall-link {
  margin-top: auto;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-maroon);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-top: 10px;
}

.megamenu-viewall-link:hover {
  color: var(--primary-maroon-dark);
  letter-spacing: 0.8px;
}

/* ==========================================
   3B. SINGLE COLUMN DROPDOWN MENU
   ========================================== */
.nav-item.has-dropdown {
  position: relative;
}

.single-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 235px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  border: 1px solid #eef2f0;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1100;
  pointer-events: none;
  text-align: left;
}

.nav-item.has-dropdown:hover .single-dropdown-menu,
.single-dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
  pointer-events: auto;
}

.single-dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8.5px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  text-decoration: none;
  transition: all 0.2s ease;
}

.single-dropdown-item:hover {
  background-color: #f0faf7;
  color: #006654;
  padding-left: 22px;
}

.single-dropdown-item .badge-pill-tag {
  font-size: 9px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 10px;
  letter-spacing: 0.5px;
}

.single-dropdown-divider {
  height: 1px;
  background-color: #edf2f0;
  margin: 6px 0;
}

/* ==========================================
   4. HERO SLIDER SECTION
   ========================================== */
.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #f3ece3;
}

.hero-slider {
  width: 100%;
  margin: 0;
  padding: 0;
}

.hero-slider-item {
  position: relative;
  width: 100%;
  line-height: 0;
  background-color: #f3ece3;
}

.hero-slider-img {
  width: 100%;
  height: auto;
  display: block;
   
}

.slick-prev-custom,
.slick-next-custom {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background-color: #ffffff;
  color: #333333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
  border: none;
}

.slick-prev-custom { left: 24px; }
.slick-next-custom { right: 24px; }

.slick-prev-custom:hover,
.slick-next-custom:hover {
  background-color: var(--primary-maroon);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(91, 21, 34, 0.3);
}

.hero-slider .slick-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 10;
}

.hero-slider .slick-dots li {
  margin: 0;
  padding: 0;
  width: 12px;
  height: 12px;
  display: inline-block;
}

.hero-slider .slick-dots li button {
  font-size: 0 !important;
  line-height: 0 !important;
  color: transparent !important;
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  border: 2px solid var(--primary-maroon);
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
  display: block;
}

.hero-slider .slick-dots li button:before {
  display: none !important;
}

.hero-slider .slick-dots li.slick-active button {
  background-color: var(--primary-maroon);
  border-color: var(--primary-maroon);
  transform: scale(1.15);
}

/* ==========================================
   5. SHOP BY CATEGORY SLIDER (6 AT A TIME)
   ========================================== */
.shop-by-category-section {
  padding: 60px 0 50px;
  background-color: #ffffff;
  position: relative;
}

.category-slider {
  margin: 0 -10px;
}

.category-slide-item {
  padding: 0 10px;
  outline: none;
}

.category-arch-card {
   
  border-radius: 14px;
  padding: 8px 8px 14px;
  text-align: center;
  transition: all 0.35s ease;
  cursor: pointer;
  display: block;
}

.category-arch-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(91, 21, 34, 0.08);
  border-color: #e8d7cf;
}

.arch-image-wrap {
      width: 100%;
    height: 310px;
     
    overflow: hidden;
    position: relative;
    border-radius: 8px;
}

.arch-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-arch-card:hover .arch-image {
  transform: scale(1.06);
}

.arch-icon-badge {
  width: 36px;
  height: 36px;
  background-color: var(--primary-maroon);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin: -18px auto 8px;
  position: relative;
  z-index: 2;
  border: 2px solid #ffffff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}

.category-card-title {
     font-size: 13.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #222222;
    margin-top: 14px;
}

.slick-prev-category,
.slick-next-category {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  background-color: #ffffff;
  color: var(--primary-maroon);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.25s ease;
}

.slick-prev-category { left: -15px; }
.slick-next-category { right: -15px; }

.slick-prev-category:hover,
.slick-next-category:hover {
  background-color: var(--primary-maroon);
  color: #ffffff;
  border-color: var(--primary-maroon);
}

/* ==========================================
   6. FEATURED COLLECTION SECTION
   ========================================== */
.featured-collection-section {
  padding: 50px 0 70px;
  background-color: #ffffff;
}

.featured-grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.featured-banner-card {
  position: relative;
  height:590px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  display: block;
}

.featured-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-banner-card:hover .featured-banner-img {
  transform: scale(1.06);
}

.featured-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.05) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 20px;
  color: #ffffff;
      text-align: center;
}

.featured-card-title {
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1.25;
  margin-bottom: 6px;
  color: #ffffff;
}

.featured-card-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 14px;
  font-weight: 400;
}

.btn-featured-shop {
  align-self: center;
  background-color: #ffffff;
  color: #111111;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 3px;
  letter-spacing: 0.8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.featured-banner-card:hover .btn-featured-shop {
  background-color: var(--primary-maroon);
  color: #ffffff;
}

/* ==========================================
   7. TRENDING NOW VIDEO REELS SECTION (EXACT REFERENCE DESIGN)
   ========================================== */
.trending-reels-section {
  padding: 0;
  
}

.trending-now-card {
  background: url('../images/trending-bg.jpg') no-repeat center center / cover;
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
   
  text-align: center;
}

.trending-card-top-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #b86e36;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.trending-card-top-tag::before,
.trending-card-top-tag::after {
  content: '';
  width: 25px;
  height: 1px;
  background-color: #b86e36;
  display: inline-block;
  opacity: 0.6;
}

.trending-card-main-title {
  font-family: var(--font-serif) !important;
  font-size: 42px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 4px;
  line-height: 1.15;
}

.trending-card-subtitle {
  font-size: 13.5px;
  color: #666666;
  margin-bottom: 30px;
  font-weight: 400;
}

.reels-slider-wrapper {
  position: relative;
  padding: 0 20px;
}

/* Reel Cards Slider (Screenshot 1) */
.trending-reels-section {
  padding: 50px 0;
  background-color: #fafbfd;
}

.trending-now-card {
  text-align: center;
}

.reel-card-wrap {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #eef2f0;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0 10px;
  text-align: left;
}

.reel-card-wrap:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.reel-media-box {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background-color: #111111;
}

.reel-card-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.reel-views-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.65);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  z-index: 2;
  pointer-events: none;
}

.reel-play-circle-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, background 0.25s ease;
  z-index: 2;
  pointer-events: none;
}

.reel-play-circle-btn i {
  margin-left: 2px;
}

.reel-card-wrap:hover .reel-play-circle-btn {
  transform: translate(-50%, -50%) scale(1.15);
  background: #ffffff;
}

.reel-info-bottom-box {
  padding: 14px 16px 16px;
  background: #ffffff;
  pointer-events: none;
}

.reel-product-title {
  font-size: 14px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.reel-product-category {
  font-size: 11.5px;
  color: #777777;
  display: block;
  margin-bottom: 8px;
}

.reel-product-price {
  font-size: 15px;
  font-weight: 800;
  color: #111111;
}

/* Reel Fullscreen Modal Overlay (Screenshot 2) */
.reel-modal-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background-color: rgba(18, 18, 18, 0.92) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  z-index: 999999 !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.reel-modal-overlay.active {
  opacity: 1 !important;
  visibility: visible !important;
  display: flex !important;
}

.reel-modal-close-btn {
  position: absolute;
  top: 24px;
  right: 28px;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 100001;
}

.reel-modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.reel-modal-top-header {
  color: #ffffff;
  margin-bottom: 16px;
  z-index: 100000;
}

.reel-header-tag {
  font-size: 10.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  display: block;
}

.reel-header-title {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  margin: 2px 0 4px;
}

.reel-header-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.reel-modal-main-container {
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 100000;
}

.reel-modal-nav-arrow {
  background: rgba(255, 255, 255, 0.95);
  color: #111111;
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, background 0.2s ease;
}

.reel-modal-nav-arrow:hover {
  transform: scale(1.12);
  background: #ffffff;
}

.reel-modal-video-card {
  position: relative;
  width: 350px;
  height: 600px;
  max-height: 80vh;
  border-radius: 18px;
  overflow: hidden;
  background: #000000;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.reel-modal-active-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-sound-toggle-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0, 0, 0, 0.55);
  color: #ffffff;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  backdrop-filter: blur(4px);
  z-index: 10;
}

.reel-side-actions-wrap {
  position: absolute;
  bottom: 110px;
  right: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.reel-heart-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 22px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.reel-heart-btn:hover {
  transform: scale(1.2);
}

.reel-heart-btn span {
  font-size: 11px;
  font-weight: 700;
  margin-top: 2px;
}

/* Floating Product Card Matching Screenshot 2 */
.reel-floating-product-card {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  z-index: 10;
  text-align: left;
}

.reel-floating-prod-img {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid #eeeeee;
}

.reel-floating-prod-info {
  flex: 1;
  overflow: hidden;
}

.reel-floating-prod-title {
  font-size: 12.5px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.reel-floating-prod-price {
  font-size: 13.5px;
  font-weight: 800;
  color: #111111;
}

.btn-reel-shop-now {
  background: #c59b27;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 7px 14px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.btn-reel-shop-now:hover {
  background: #b0871d;
  color: #ffffff;
}

/* ==========================================
   9. FLASH SALE SECTION (EXACT REFERENCE DESIGN)
   ========================================== */
.flash-sale-banner-section {
  padding: 20px 0 45px;
  background-color: #ffffff;
}

.flash-sale-card {
  background: url('../images/flash-sale-bg.jpg') no-repeat center center / cover;
  border-radius: 20px;
  padding: 35px 35px 0 35px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(91, 21, 34, 0.1);
  border: 1px solid #e0ebed;
}

.flash-sale-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.flash-sale-left {
  flex: 0 0 330px;
  display: flex;
  flex-direction: column;
}

.flash-tag-top {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary-maroon);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.flash-main-title {
  font-family: var(--font-serif) !important;
  font-size: 52px;
  font-weight: 800;
  color: var(--primary-maroon);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.flash-subtitle {
  font-size: 14px;
  color: #333333;
  margin-bottom: 22px;
  font-weight: 500;
}

.flash-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.flash-stat-item {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  padding: 10px 4px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.flash-stat-num {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary-maroon);
  line-height: 1.1;
}

.flash-stat-lbl {
  font-size: 9px;
  color: #555555;
  margin-top: 2px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.1;
}

.btn-flash-shop {
  align-self: flex-start;
  background-color: var(--primary-maroon);
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 11px 26px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 171, 142, 0.25);
}

.btn-flash-shop:hover {
  background-color: var(--primary-maroon-dark);
  color: #ffffff;
  transform: translateY(-2px);
}

.flash-sale-right {
  flex: 1;
  position: relative;
}

.flash-prod-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 10px;
  position: relative;
  border: 1px solid #f2e2d9;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
  text-align: center;
}

.flash-prod-img-wrap {
  position: relative;
  width: 100%;
  height: 311px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 8px;
}

.flash-prod-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flash-badge-disc {
  position: absolute;
  top: 8px;
  left: 8px;
  background-color: var(--primary-maroon);
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 5;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.flash-prod-title {
  font-size: 12.5px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.flash-timer-block-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
  padding: 4px 0;
  background-color: #faf7f5;
  border-radius: 6px;
}

.timer-unit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.timer-unit-num {
  font-size: 12px;
  font-weight: 800;
  color: #222222;
}

.timer-unit-lbl {
  font-size: 8px;
  font-weight: 700;
  color: #888888;
  margin-top: 2px;
}

.timer-unit-sep {
  font-size: 11px;
  font-weight: 700;
  color: #888888;
}

.flash-bottom-ticker-bar {
  margin-top: 25px;
  background-color: var(--primary-maroon);
  color: #ffffff;
  padding: 9px 0;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 0 0 20px 20px;
  margin-left: -35px;
  margin-right: -35px;
}

/* Sliders Margin Reset */
.trending-products-slider,
.most-loved-slider,
.fabric-slider,
.brands-slider,
.trending-reels-slider,
.flash-sale-products-slider {
  margin: 0 -10px;
}

.product-slide-item,
.fabric-slide-item,
.brand-slide-item,
.reel-slide-item,
.flash-slide-item {
  padding: 0 10px;
  outline: none;
}

/* Product Card */
.product-card {
  background-color: #ffffff;
  border: 1px solid #f0e6e0;
  border-radius: 12px;
  padding: 10px;
  position: relative;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border-color: #e5d2c7;
}

.product-img-wrap {
  position: relative;
  width: 100%;
  height: 370px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 10px;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-badge-discount {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: var(--primary-maroon);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 3px;
  z-index: 2;
}

.product-badge-new {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #e59837;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 3px;
  z-index: 2;
}

.product-wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  background-color: #ffffff;
  color: #444444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.12);
  z-index: 2;
  transition: all 0.25s ease;
}

.product-wishlist-btn:hover {
  background-color: var(--primary-maroon);
  color: #ffffff;
}

/* Color Swatches */
.product-swatches {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 2;
}

.swatch-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid #ffffff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.product-card-title {
  font-size: 13px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.product-card-title:hover {
  color: var(--primary-maroon);
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.product-price-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}

.price-current {
  font-size: 14.5px;
  font-weight: 700;
  color: #111111;
}

.price-original {
  font-size: 11.5px;
  color: #888888;
  text-decoration: line-through;
}

/* The Add-to-Cart icon is now wrapped in a <form> so it can really submit —
   display:contents drops that wrapper out of the flex layout entirely so
   .product-price-row sees the button itself as the flex item, exactly as
   when it was a plain <a> tag. */
.product-price-row form {
  display: contents;
}

.btn-add-cart-icon {
  width: 30px;
  height: 30px;
  background-color: var(--primary-maroon-light);
  color: var(--primary-maroon);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-add-cart-icon:hover {
  background-color: var(--primary-maroon);
  color: #ffffff;
}

.product-rating-row {
  display: flex;
  align-items: center;
  gap: 4px;
}

.stars-rating {
  color: #ffb400;
  font-size: 10px;
}

.rating-count {
  font-size: 11px;
  color: #777777;
}

/* Product Card Size Options (Exact Reference Design) */
.product-sizes-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  padding-top: 6px;
  border-top: 1px dashed #f0e6e0;
}

.size-pill-btn {
  background-color: #ffffff;
  border: 1px solid #dcdfe4;
  color: #333333;
  font-size: 10px;
  font-weight: 600;
  padding: 2.5px 7px;
  border-radius: 20px;
  cursor: pointer;
  line-height: 1.2;
  white-space: nowrap;
  transition: all 0.2s ease;
  font-family: inherit;
  outline: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.size-pill-btn:hover {
  border-color: var(--primary-maroon);
  color: var(--primary-maroon);
  background-color: var(--primary-maroon-light);
}

.size-pill-btn.active {
  background-color: var(--primary-maroon);
  border-color: var(--primary-maroon);
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 171, 142, 0.25);
}

/* Slick Arrows for Sliders */
.slick-prev-product,
.slick-next-product,
.slick-prev-fabric,
.slick-next-fabric,
.slick-prev-brand,
.slick-next-brand,
.slick-prev-reel,
.slick-next-reel,
.slick-next-flash {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  color: #333333;
  border: 1px solid #e0d5ce;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.25s ease;
}

.slick-prev-product, .slick-prev-fabric, .slick-prev-brand, .slick-prev-reel { left: -16px; }
.slick-next-product, .slick-next-fabric, .slick-next-brand, .slick-next-reel, .slick-next-flash { right: -16px; }

.slick-prev-product:hover, .slick-next-product:hover,
.slick-prev-fabric:hover, .slick-next-fabric:hover,
.slick-prev-brand:hover, .slick-next-brand:hover,
.slick-prev-reel:hover, .slick-next-reel:hover,
.slick-next-flash:hover {
  background-color: var(--primary-maroon);
  color: #ffffff;
  border-color: var(--primary-maroon);
}

.trending-products-slider .slick-dots,
.most-loved-slider .slick-dots {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
}

/* ==========================================
   10. EXCLUSIVE TODAY'S DEAL SECTION
   ========================================== */
.exclusive-deal-section {
  padding: 40px 0 60px;
  background-color: #ffffff;
}

.exclusive-deal-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(90deg, #f9f3ed 0%, #f6ebe1 38%, rgba(246, 235, 225, 0.2) 65%), url('../images/offer-bg.jpg') no-repeat center right / cover;
  min-height: 420px;
  display: flex;
  align-items: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0e2d7;
  padding: 40px 50px;
}

.exclusive-deal-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 2;
}

.deal-left-content {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
}

.deal-top-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary-maroon);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.deal-main-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.15;
  color: #111111;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.deal-main-title .highlight-title {
  color: var(--primary-maroon);
  display: block;
}

.deal-flourish-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.deal-flourish-line span {
  width: 40px;
  height: 1px;
  background-color: var(--primary-maroon);
  opacity: 0.4;
}

.deal-flourish-line i {
  font-size: 10px;
  color: var(--primary-maroon);
}

.deal-desc-text {
  font-size: 13px;
  color: #555555;
  line-height: 1.5;
  margin-bottom: 20px;
}

.deal-timer-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}

.timer-box {
  width: 62px;
  height: 65px;
  background-color: #ffffff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0e6df;
}

.timer-num {
  font-size: 20px;
  font-weight: 800;
  color: #111111;
  line-height: 1;
}

.timer-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #777777;
  text-transform: uppercase;
  margin-top: 3px;
}

.btn-deal-shop {
  align-self: flex-start;
  background-color: var(--primary-maroon);
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 28px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(91, 21, 34, 0.25);
}

.btn-deal-shop:hover {
  background-color: var(--primary-maroon-dark);
  color: #ffffff;
  transform: translateY(-2px);
}

.deal-center-badge-wrap {
  position: relative;
  z-index: 3;
  margin: 0 20px;
}

.deal-circle-badge {
  width: 130px;
  height: 130px;
  background: var(--primary-maroon);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  border: 3px solid #ffffff;
  outline: 2px dashed #fbe3b5;
  outline-offset: -7px;
  box-shadow: 0 10px 30px rgba(91, 21, 34, 0.3);
}

.badge-upto {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fbe3b5;
}

.badge-percent {
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  margin: 2px 0;
}

.badge-off {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
}

.deal-right-product-card {
  width: 260px;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 22px 20px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  border: 1px solid #f2e8e2;
  display: flex;
  flex-direction: column;
  margin-left: auto;
}

.right-prod-title {
  font-size: 16px;
  font-weight: 700;
  color: #111111;
  line-height: 1.35;
  margin-bottom: 8px;
}

.right-prod-divider {
  width: 30px;
  height: 2px;
  background-color: var(--primary-maroon);
  margin-bottom: 14px;
}

.right-prod-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.right-price-current {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-maroon);
}

.right-price-original {
  font-size: 13px;
  color: #888888;
  text-decoration: line-through;
}

.right-prod-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

.right-prod-rating i {
  color: #ffb400;
  font-size: 11px;
}

.right-rating-num {
  font-size: 11px;
  color: #777777;
}

.btn-right-shop-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-maroon);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-bottom: 1.5px solid var(--primary-maroon);
  align-self: flex-start;
  padding-bottom: 2px;
  transition: all 0.25s ease;
}

.btn-right-shop-link:hover {
  color: var(--primary-maroon-dark);
  border-color: var(--primary-maroon-dark);
  letter-spacing: 1px;
}

/* ==========================================
   11. SHOP BY FABRIC SECTION
   ========================================== */
.shop-by-fabric-section {
  padding: 70px 0 60px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.88) 0%, rgba(253, 248, 244, 0.92) 100%), url('../images/fabric-bg.jpg') no-repeat center center / cover;
  position: relative;
  border-top: 1px solid #f0e6e0;
  border-bottom: 1px solid #f0e6e0;
}

.fabric-card {
  background-color: #ffffff;
  border: 1px solid #efe2d8;
  border-radius: 12px;
  padding: 8px 8px 16px;
  text-align: center;
  transition: all 0.35s ease;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.fabric-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(91, 21, 34, 0.12);
  border-color: var(--primary-maroon);
}

.fabric-img-wrap {
  width: 100%;
  height: 340px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.fabric-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fabric-card:hover .fabric-img {
  transform: scale(1.06);
}

.fabric-icon-badge {
  width: 38px;
  height: 38px;
  background-color: #ffffff;
  color: var(--primary-maroon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin: -19px auto 10px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  border: 1px solid #f0e2d7;
}

.fabric-title {
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 4px;
      margin-top: 14px;
}

.fabric-desc {
  font-size: 11.5px;
  color: #666666;
  line-height: 1.35;
  padding: 0 6px;
}

.btn-wrap-fabrics-center {
  text-align: center;
  margin-top: 35px;
}

.btn-view-all-fabrics {
  border: 1px solid var(--primary-maroon);
  color: var(--primary-maroon);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 10px 28px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-view-all-fabrics:hover {
  background-color: var(--primary-maroon);
  color: #ffffff;
  border-color: var(--primary-maroon);
  box-shadow: 0 6px 18px rgba(91, 21, 34, 0.2);
}

/* ==========================================
   12. OUR MOST LOVED STYLES SECTION
   ========================================== */
.most-loved-styles-section {
  padding: 60px 0 65px;
  background-color: #fbf7f4;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.most-loved-header-centered {
  text-align: center;
  margin-bottom: 30px;
}

.most-loved-header-centered .btn-view-all-loved-center {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  border: 1px solid var(--primary-maroon);
  color: var(--primary-maroon);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 22px;
  border-radius: 4px;
  transition: all 0.25s ease;
  background-color: #ffffff;
}

.most-loved-header-centered .btn-view-all-loved-center:hover {
  background-color: var(--primary-maroon);
  color: #ffffff;
}

/* ==========================================
   13. SHOP BY OCCASION SECTION
   ========================================== */
.shop-by-occasion-section {
  padding: 65px 0 70px;
  background-color: #ffffff;
}

.occasion-grid-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.occasion-card {
  position: relative;
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 14px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.occasion-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 32px rgba(0, 0, 0, 0.16);
}

.occasion-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  z-index: 1;
}

.occasion-card:hover .occasion-card-img {
  transform: scale(1.08);
}

.occasion-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(20, 10, 5, 0.95) 0%, rgba(20, 10, 5, 0.6) 45%, rgba(0, 0, 0, 0.05) 80%);
  z-index: 2;
}

.occasion-card-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.occasion-badge-icon {
  width: 44px;
  height: 44px;
  background-color: #fff9f4;
  color: var(--primary-maroon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: 1px solid #f2e2d8;
}

.occasion-card-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 4px;
}

.occasion-card-desc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.35;
  margin-bottom: 12px;
  font-weight: 400;
  min-height: 30px;
}

.btn-occasion-shop {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 2px;
  transition: all 0.25s ease;
}

.occasion-card:hover .btn-occasion-shop {
  border-color: #ffffff;
  color: #fbe3b5;
  gap: 8px;
}

/* ==========================================
   14. TOP BRANDS SECTION
   ========================================== */
.top-brands-section {
     padding: 60px 0 65px;
    background-color: #f1f4fe;
    border-top: 1px solid #e5e7ef;
    border-bottom: 1px solid #e5e7ef;
    position: relative;
}

.brand-logo-card {
  background-color: #ffffff;
  border: 1px solid #f2e4dd;
  border-radius: 8px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.brand-logo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(91, 21, 34, 0.08);
  border-color: var(--primary-maroon);
}

.brand-logo-text {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #111111;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.brand-logo-text .brand-sub-tag {
  font-size: 7.5px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #777777;
  margin-top: 2px;
}

.btn-wrap-brands-center {
  text-align: center;
  margin-top: 32px;
}

.btn-view-all-brands {
  border: 1px solid var(--primary-maroon);
  color: var(--primary-maroon);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 10px 28px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  background-color: #ffffff;
}

.btn-view-all-brands:hover {
  background-color: var(--primary-maroon);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(91, 21, 34, 0.2);
}

/* Responsive adjustments */
@media (max-width: 1199.98px) {
  .top-bar .announcement-list {
    gap: 14px;
    font-size: 11.5px;
  }
  .main-nav {
    gap: 14px;
  }
  .nav-link-custom {
    font-size: 11.5px;
  }
  .search-box-wrap {
    width: 180px;
  }
  .mega-menu {
    width: 960px;
  }
  .featured-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .occasion-grid-container {
    grid-template-columns: repeat(3, 1fr);
  }
  .exclusive-deal-inner,
  .flash-sale-inner {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  .deal-left-content,
  .flash-sale-left {
    flex: 1 1 auto;
    align-items: center;
  }
  .header-border-left img,
  .header-border-right img {
    max-width: 160px;
  }
}

@media (max-width: 991.98px) {
  .top-bar .top-bar-right {
    display: none;
  }
  .search-box-wrap {
    width: 150px;
  }
  .header-border-left,
  .header-border-right {
    display: none;
  }
  .occasion-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .featured-grid-container,
  .occasion-grid-container {
    grid-template-columns: 1fr;
  }
  .deal-main-title,
  .flash-main-title {
    font-size: 28px;
  }
  .trending-card-main-title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .cart-drawer {
    width: 100vw;
  }
  .reel-player-box {
    width: 290px;
    height: 500px;
  }
}

/* ==========================================
   PRODUCT FILTER TABS (TRENDING PRODUCTS)
   ========================================== */
.product-filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 15px;
}

.product-filter-tabs {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-pill-btn {
  background-color: #ffffff;
  border: 1px solid #e2d7cf;
  color: #444444;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.25s ease;
  outline: none;
}

.filter-pill-btn:hover,
.filter-pill-btn.active {
  background-color: var(--primary-maroon);
  color: #ffffff !important;
  border-color: var(--primary-maroon);
  box-shadow: 0 4px 12px rgba(91, 21, 34, 0.2);
}

.btn-view-all-products {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-maroon);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
}

.btn-view-all-products:hover {
  color: var(--primary-maroon-dark);
  letter-spacing: 1px;
}

/* ==========================================
   OFFCANVAS SLIDE-OVER CART DRAWER
   ========================================== */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 440px;
  max-width: 100vw;
  height: 100vh;
  background-color: #ffffff;
  z-index: 2010;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cart-drawer.active {
  transform: translateX(0);
}

/* Header */
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #f0e6e0;
  background-color: #ffffff;
}

.cart-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-close-btn {
  background: none;
  border: none;
  font-size: 18px;
  color: #333333;
  cursor: pointer;
  padding: 4px;
}

.cart-drawer-title {
  font-size: 16px;
  font-weight: 700;
  color: #111111;
}

.cart-wishlist-btn {
  background: none;
  border: none;
  font-size: 20px;
  color: #444444;
  cursor: pointer;
}

/* Body */
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Trust Banner */
.cart-trust-banner {
  background-color: #fff8f5;
  border: 1px dashed #e8c8bd;
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.customer-avatars {
  display: flex;
  align-items: center;
}

.customer-avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  object-fit: cover;
  margin-left: -10px;
}

.customer-avatars img:first-child {
  margin-left: 0;
}

.trust-banner-text {
  display: flex;
  flex-direction: column;
}

.trust-banner-heading {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-maroon);
}

.trust-banner-rating {
  font-size: 11px;
  color: #666666;
}

/* Cart Items */
.cart-items-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-item-card {
  display: flex;
  gap: 12px;
  padding: 12px;
  border: 1px solid #f0e6e0;
  border-radius: 10px;
  position: relative;
  background-color: #ffffff;
}

.cart-item-remove {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  color: #999999;
  font-size: 14px;
  cursor: pointer;
}

.cart-item-remove:hover {
  color: var(--primary-maroon);
}

.cart-item-img {
  width: 75px;
  height: 95px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.cart-item-details {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-right: 20px;
}

.cart-item-title {
  font-size: 12.5px;
  font-weight: 600;
  color: #111111;
  line-height: 1.35;
  margin-bottom: 4px;
}

.cart-item-variant {
  font-size: 11px;
  color: #777777;
  margin-bottom: 6px;
}

.cart-item-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-maroon);
  margin-bottom: 4px;
}

.cart-item-offer {
  font-size: 10.5px;
  color: #d32f2f;
  font-weight: 600;
  margin-bottom: 8px;
}

.cart-item-quantity {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e0d5ce;
  border-radius: 4px;
  overflow: hidden;
  width: fit-content;
}

.qty-btn {
  width: 26px;
  height: 26px;
  background: #f7f2ee;
  border: none;
  font-size: 13px;
  font-weight: 700;
  color: #333333;
  cursor: pointer;
}

.qty-num {
  padding: 0 10px;
  font-size: 12px;
  font-weight: 700;
  color: #111111;
}

/* Trust Pillars */
.cart-trust-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  background-color: #faf5f1;
  padding: 10px;
  border-radius: 8px;
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pillar-item i {
  font-size: 18px;
  color: var(--primary-maroon);
}

.pillar-text {
  display: flex;
  flex-direction: column;
  font-size: 10px;
  line-height: 1.2;
}

/* Deals Carousel */
.cart-deals-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.deals-title {
  font-size: 14px;
  font-weight: 700;
  color: #111111;
}

.gift-progress-box {
  background-color: #fff5f0;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gift-header-text {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--primary-maroon);
}

.gift-progress-bar-wrap {
  width: 100%;
  height: 6px;
  background-color: #e0d0c8;
  border-radius: 3px;
  overflow: hidden;
}

.gift-progress-fill {
  height: 100%;
  background-color: var(--primary-maroon);
}

.gift-progress-percent {
  font-size: 10px;
  font-weight: 700;
  color: var(--primary-maroon);
  align-self: flex-end;
}

.deals-carousel-wrap {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.deal-product-card {
  flex: 0 0 130px;
  border: 1px solid #f0e6e0;
  border-radius: 8px;
  padding: 8px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
}

.deal-prod-img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 6px;
}

.deal-badge {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 3px;
  margin-bottom: 4px;
  width: fit-content;
}

.badge-trending { background-color: #fff3e0; color: #e65100; }
.badge-ship { background-color: #e8f5e9; color: #2e7d32; }
.badge-limited { background-color: #f3e5f5; color: #7b1fa2; }
.badge-premium { background-color: #e3f2fd; color: #1565c0; }

.deal-prod-name {
  font-size: 11px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.deal-prod-price {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--primary-maroon);
}

/* Summary Box */
.cart-summary-box {
  background-color: #faf5f1;
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.summary-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 800;
  color: #111111;
}

.summary-dashed-line {
  border-bottom: 1px dashed #d5c4b8;
  margin: 4px 0;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #555555;
}

.cart-help-box .help-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e0d5ce;
  border-radius: 8px;
  font-size: 12px;
  outline: none;
}

/* Footer */
.cart-drawer-footer {
  padding: 16px 20px;
  border-top: 1px solid #f0e6e0;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-total-wrap {
  display: flex;
  flex-direction: column;
}

.footer-total-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary-maroon);
}

.footer-view-details {
  font-size: 11px;
  color: #777777;
  text-decoration: underline;
}

.btn-proceed-checkout {
  flex: 1;
  background-color: var(--primary-maroon);
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 700;
  border: none;
  padding: 12px 16px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.btn-proceed-checkout:hover {
  background-color: var(--primary-maroon-dark);
}

.footer-security-text {
  font-size: 11px;
  color: #555555;
  text-align: center;
}

.footer-payment-methods {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 10px;
  color: #777777;
}

.pay-badge {
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 9.5px;
}

.pay-visa { background-color: #1a1f71; color: #ffffff; }
.pay-mc { background-color: #eb001b; color: #ffffff; }
.pay-upi { background-color: #00897b; color: #ffffff; }

/* ==========================================
   INSTAGRAM GALLERY SECTION (Style Inspo. Real You.)
   ========================================== */
.instagram-gallery-section {
  padding: 55px 0 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.insta-header-wrap {
  text-align: center;
  margin-bottom: 28px;
}

.insta-top-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #00ab8e;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.insta-top-tag i {
  font-size: 14px;
  color: #00ab8e;
}

.insta-main-title {
  font-family: var(--font-serif) !important;
  font-size: 38px;
  font-weight: 600;
  color: #111111;
  margin: 4px 0 6px;
}

.insta-subtitle {
  font-size: 14px;
  color: #666666;
}

.insta-handle-link {
  color: #00ab8e;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s;
}

.insta-handle-link:hover {
  color: #00876f;
  text-decoration: underline;
}

/* Edge-to-Edge Seamless Instagram Strip */
.insta-strip-outer {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}

.instagram-embed-strip {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 4px 20px 16px;
  scroll-snap-type: x proximity;
}

.insta-embed-item {
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.insta-embed-item .instagram-media {
  margin: 0 !important;
}

/* Real synced-post photo tiles (instagram_posts.thumbnail_url) */
.insta-photo-card {
  position: relative;
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 260px;
  height: 320px;
  border-radius: 8px;
  overflow: hidden;
  display: block;
  background: #111111;
}

.insta-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.insta-photo-card:hover img {
  transform: scale(1.06);
}

.insta-photo-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  padding: 12px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 45%);
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.insta-photo-card:hover .insta-photo-card-overlay {
  opacity: 1;
}

.insta-photo-card-overlay i {
  align-self: flex-end;
  font-size: 16px;
  background: rgba(0, 0, 0, 0.5);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.insta-photo-card-caption {
  margin-top: auto;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ==========================================
   HAPPY CUSTOMERS / REVIEWS SECTION (Loved by Thousands of Women)
   ========================================== */
.happy-customers-section {
  padding: 20px 0 60px;
  background-color: #ffffff;
}

.reviews-card-container {
      background-color: #f4f8f9;
    border-radius: 20px;
    padding: 45px 40px 0;
    border: 1px solid #dfecef;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.reviews-header-wrap {
  text-align: center;
  margin-bottom: 35px;
}

.reviews-top-stars {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.reviews-top-stars .stars-gold {
  color: #ffb400;
  font-size: 11px;
}

.reviews-top-tag {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary-maroon);
  text-transform: uppercase;
}

.reviews-main-title {
  font-family: var(--font-serif) !important;
  font-size: 40px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 4px;
}

.reviews-subtitle {
  font-size: 13.5px;
  color: #666666;
}

.reviews-grid-container {
  margin: 0 -8px 35px;
}

.review-slide-item {
  padding: 0 8px;
  outline: none;
}

.review-card {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 20px 18px;
  border: 1px solid #dfecef;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(91, 21, 34, 0.08);
}

.review-top-user {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  position: relative;
}

.review-user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #f0e6e0;
}

.review-user-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.review-user-name {
  font-size: 13.5px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 1px;
}

.verified-buyer-badge {
  font-size: 10.5px;
  font-weight: 600;
  color: #c2185b;
  display: flex;
  align-items: center;
  gap: 4px;
}

.verified-buyer-badge i {
  font-size: 10px;
}

.review-heart-icon {
  color: #01aa95;
  font-size: 14px;
}

.review-stars-row {
  color: #ffb400;
  font-size: 11px;
  margin-bottom: 10px;
}

.review-comment-text {
  font-size: 12px;
  color: #444444;
  line-height: 1.5;
  margin-bottom: 16px;
  font-weight: 400;
}

.review-product-attachment {
  background-color: #e6f7f4;
    border-radius: 8px;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #dfecef;
    margin-top: auto;

}

.attach-prod-thumb {
  width: 36px;
  height: 46px;
  object-fit: cover;
  border-radius: 4px;
}

.attach-prod-info {
  display: flex;
  flex-direction: column;
}

.attach-prod-title {
  font-size: 11px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 2px;
}

.attach-prod-meta {
  font-size: 9.5px;
  color: #777777;
}

.reviews-bottom-trust-bar {
  margin-top: 10px;
  background-color: #f7ebe6;
  padding: 18px 25px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  border-radius: 0 0 20px 20px;
  margin-left: -40px;
  margin-right: -40px;
  border-top: 1px solid #f0ded7;
}

.review-trust-col {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.review-trust-col i {
  font-size: 22px;
  color: var(--primary-maroon);
}

.review-trust-text {
  display: flex;
  flex-direction: column;
}

.review-trust-text strong {
  font-size: 14px;
  font-weight: 800;
  color: #111111;
  line-height: 1.1;
}

.review-trust-text span {
  font-size: 11px;
  color: #666666;
  font-weight: 500;
}

/* ==========================================
   16. MAIN SITE FOOTER (EXACT REFERENCE DESIGN)
   ========================================== */
.main-site-footer {
  background: url('../images/footer-bg.jpg') no-repeat center center / cover;
  color: #333333;
  font-family: var(--font-global);
  border-top: 1px solid #dfecef;
  position: relative;
}

/* TIER 1: TOP BENEFITS STRIP */
.footer-top-benefits-strip {
      background-color: rgb(243 247 248);
    backdrop-filter: blur(4px);
    border-bottom: 1px solid #dfecef;
    padding: 20px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  position: relative;
  padding: 0 10px;
}

.benefit-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: #e5d9ce;
}

.benefit-icon-wrap {
  width: 44px;
  height: 44px;
  background-color: #e6f7f4;
  color: var(--primary-maroon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 3px 10px rgba(0, 171, 142, 0.1);
  border: 1px solid #c2ebe3;
  flex-shrink: 0;
}

.benefit-text-wrap {
  display: flex;
  flex-direction: column;
}

.benefit-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: #111111;
  text-transform: uppercase;
  line-height: 1.2;
}

.benefit-desc {
  font-size: 11px;
  color: #666666;
  margin-top: 2px;
}

/* TIER 2: MAIN FOOTER CONTENT GRID */
.footer-main-content {
  padding: 60px 0 70px;
  background: url('../images/footer-bg.jpg') no-repeat center bottom / cover;
}

.footer-grid {
  display: grid;
  grid-template-columns: 320px 1fr 1fr 1fr 280px;
  gap: 35px;
}

.footer-brand-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 14px;
}

.leaf-motif-top {
  font-size: 20px;
  color: #b86e36;
  margin-bottom: 2px;
}

.footer-brand-title {
  font-family: var(--font-serif) !important;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--primary-maroon);
  line-height: 1;
}

.footer-brand-subtitle {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #b86e36;
  text-transform: uppercase;
  margin-top: 4px;
}

.footer-about-text {
  font-size: 12.5px;
  color: #555555;
  line-height: 1.55;
  margin-bottom: 16px;
}

.footer-flourish-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.footer-flourish-divider span {
  width: 40px;
  height: 1px;
  background-color: var(--primary-maroon);
  opacity: 0.3;
}

.footer-flourish-divider i {
  font-size: 10px;
  color: var(--primary-maroon);
}

/* Newsletter Box */
.footer-newsletter-box {
  margin-bottom: 22px;
}

.newsletter-heading {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--primary-maroon);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.newsletter-sub {
  font-size: 11.5px;
  color: #666666;
  margin-bottom: 10px;
  line-height: 1.35;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.newsletter-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e5d8cd;
  border-radius: 6px;
  font-size: 12px;
  background-color: #ffffff;
  outline: none;
}

.btn-newsletter-subscribe {
  background-color: var(--primary-maroon);
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 10px;
  border: none;
  border-radius: 6px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.btn-newsletter-subscribe:hover {
  background-color: var(--primary-maroon-dark);
}

/* Social Icons */
.social-heading {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--primary-maroon);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.social-icons-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #bce8e0;
  background-color: #eaf8f5;
  color: var(--primary-maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.25s ease;
}

.social-icon-btn:hover {
  background-color: var(--primary-maroon);
  color: #ffffff;
  border-color: var(--primary-maroon);
  transform: translateY(-2px);
}

/* Column Titles */
.footer-col-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--primary-maroon);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.title-underline {
  width: 25px;
  height: 2px;
  background-color: var(--primary-maroon);
  margin-bottom: 18px;
}

.footer-links-list li {
  margin-bottom: 8px;
}

.footer-links-list a {
  font-size: 12.5px;
  color: #444444;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-links-list a:hover {
  color: var(--primary-maroon);
  transform: translateX(3px);
}

/* Contact Info List */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 25px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  color: #444444;
  line-height: 1.45;
}

.contact-icon {
  color: var(--primary-maroon);
  font-size: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-info-item a:hover {
  color: var(--primary-maroon);
}

/* We Accept */
.we-accept-title {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--primary-maroon);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.payment-logos-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pay-logo-card {
  background-color: #ffffff;
  border: 1px solid #e0d5ce;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 800;
  color: #222222;
  box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.logo-visa { color: #1a1f71; }
.logo-mc { color: #eb001b; font-size: 14px; }
.logo-rupay { color: #00838f; }
.logo-upi { color: #00897b; }
.logo-paytm { color: #00b9f1; }

/* TIER 3: MIDDLE STATS STRIP */
.footer-middle-stats-strip {
  background-color: #eef8f6;
  border-top: 1px solid #d8efe9;
  border-bottom: 1px solid #d8efe9;
  padding: 16px 0;
  text-align: center;
}

.stats-motif-center {
  font-size: 12px;
  color: var(--primary-maroon);
  margin-bottom: 10px;
}

.middle-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-col {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
}

.stat-col:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: #ccebe4;
}

.stat-icon-hex {
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  color: var(--primary-maroon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border: 1px solid #ccebe4;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.stat-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.stat-info strong {
  font-size: 14px;
  font-weight: 800;
  color: #111111;
  line-height: 1.1;
}

.stat-info span {
  font-size: 11px;
  color: #666666;
  margin-top: 2px;
}

/* TIER 4: BOTTOM COPYRIGHT BAR */
.footer-bottom-copyright-bar {
  background-color: #e4f4f0;
  padding: 18px 0;
  font-size: 12px;
  color: #555555;
}

.copyright-inner-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copyright-text {
  margin: 0;
}

.copyright-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.copyright-links a {
  color: #666666;
}

.copyright-links a:hover {
  color: var(--primary-maroon);
}

.copyright-links .sep {
  color: #cccccc;
}

.copyright-right-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.copyright-credit {
  color: #555555;
}

.copyright-credit a {
  color: var(--primary-maroon);
  font-weight: 600;
  text-decoration: none;
}

.copyright-credit a:hover {
  text-decoration: underline;
}

.floating-whatsapp-btn {
  position: fixed;
  right: 24px;
  bottom: 54px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
   
  z-index: 1040;
  transition: transform 0.2s ease;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.08);
}

.floating-whatsapp-btn img {
  width: 50px;
  height: 50px;
}

/* Mobile/tablet's bottom app dock (60px tall, full-width, see
   .mobile-app-bottom-dock) sits in this same corner — raised above it here
   instead of overlapping. */
@media (max-width: 991.98px) {
  .floating-whatsapp-btn {
    bottom: 76px;
    right: 16px;
    width: 50px;
    height: 50px;
  }

  .floating-whatsapp-btn img {
    width: 46px;
    height: 46px;
  }
}

.scroll-to-top-btn {
  width: 38px;
  height: 38px;
  background-color: #ffffff;
  color: var(--primary-maroon);
  border: 1.5px solid var(--primary-maroon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 171, 142, 0.15);
}

.scroll-to-top-btn:hover {
  background-color: var(--primary-maroon);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 171, 142, 0.3);
}

/* Responsive Footer */
@media (max-width: 1199.98px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .benefit-item:nth-child(3)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .middle-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .footer-grid,
  .benefits-grid,
  .middle-stats-grid {
    grid-template-columns: 1fr;
  }
  .copyright-inner-flex {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* FontAwesome Rupee Icon Alignment */
.fa-indian-rupee-sign {
  font-size: 0.86em;
  margin-right: 2px;
  vertical-align: baseline;
}

/* ==========================================
   17. NATIVE MOBILE APP NAVIGATION & DOCK STYLES
   ========================================== */

/* Hamburger Toggle Button (Hidden on Desktop) */
.mobile-nav-toggle-btn {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--primary-maroon);
  cursor: pointer;
  padding: 4px;
}

/* Mobile Drawer Overlay */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(3px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Navigation Offcanvas Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 1050;
  box-shadow: 5px 0 25px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  transition: left 0.35s cubic-bezier(0.7, 0, 0.3, 1);
}

.mobile-nav-drawer.active {
  left: 0;
}

.mobile-drawer-header {
  background-color: var(--primary-maroon);
  color: #ffffff;
  padding: 20px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.user-greeting-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.greeting-text {
  display: flex;
  flex-direction: column;
}

.greeting-text strong {
  font-size: 14px;
  font-weight: 700;
}

.greeting-text span {
  font-size: 11px;
  opacity: 0.85;
}

.mobile-drawer-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
}

.mobile-drawer-search {
  padding: 12px 16px;
  background-color: #fcf9f5;
  border-bottom: 1px solid #efe5dc;
  position: relative;
}

.mobile-search-input {
  width: 100%;
  padding: 8px 36px 8px 12px;
  border: 1px solid #e2d7cc;
  border-radius: 20px;
  font-size: 12px;
  outline: none;
}

.mobile-drawer-search .search-icon {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  color: #888888;
  font-size: 13px;
}

.mobile-drawer-menu {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0;
}

.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-item {
  border-bottom: 1px solid #f6f0ea;
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 700;
  color: #222222;
  letter-spacing: 0.5px;
}

.badge-new-mobile {
  background-color: #e53935;
  color: #ffffff;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 8px;
}

.mobile-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 20px;
  cursor: pointer;
}

.accordion-arrow {
  font-size: 11px;
  color: #888888;
  transition: transform 0.25s ease;
}

.mobile-menu-item.has-accordion.active .accordion-arrow {
  transform: rotate(180deg);
}

.mobile-accordion-body {
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #faf5f0;
  display: none;
}

.mobile-accordion-body a {
  display: block;
  padding: 10px 20px 10px 36px;
  font-size: 12.5px;
  color: #555555;
  border-bottom: 1px solid #f0e6de;
}

.mobile-drawer-footer {
  padding: 14px 16px;
  background-color: #fbf7f4;
  border-top: 1px solid #efe5dc;
  font-size: 12px;
  color: var(--primary-maroon);
}

/* MOBILE APP BOTTOM NAVIGATION DOCK (STICKY) */
.mobile-app-bottom-dock {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid #efe5dc;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
  z-index: 1030;
  justify-content: space-around;
  align-items: center;
}

.dock-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: #666666;
  font-size: 10.5px;
  font-weight: 600;
  position: relative;
  width: 20%;
  height: 100%;
  text-decoration: none;
}

.dock-item i {
  font-size: 18px;
}

.dock-item.active,
.dock-item:hover {
  color: var(--primary-maroon);
}

.dock-badge {
  position: absolute;
  top: 4px;
  right: 18px;
  background-color: var(--primary-maroon);
  color: #ffffff;
  font-size: 9px;
  font-weight: 800;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================
   18. RESPONSIVE BREAKPOINTS (MOBILE & TABLET POLISH)
   ========================================== */

@media (max-width: 991.98px) {
  body {
    padding-bottom: 70px; /* Account for bottom dock */
  }

  .top-bar {
    display: none; /* Hide top bar on mobile/tablet for clean app look */
  }

  .main-header {
    position: sticky;
    top: 0;
    z-index: 1020;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    background-color: #ffffff;
  }

  .header-inner {
    height: 56px;
  }

  .mobile-nav-toggle-btn {
    display: block;
  }

  .main-nav {
    display: none; /* Hidden on mobile/tablet, accessible via drawer */
  }

  .mobile-app-bottom-dock {
    display: flex;
  }

  .search-box-wrap {
    display: none; /* Search accessible in mobile drawer */
  }

  /* Section Main Title Mobile Scaling (Prevents Title Text Cut-off) */
  .section-main-title,
  .deal-main-title,
  .flash-main-title,
  .trending-card-main-title,
  .section-header-wrap h2 {
    font-size: 21px !important;
    line-height: 1.25 !important;
    word-break: break-word !important;
    max-width: 100% !important;
  }

  .section-subtitle-text,
  .section-subtitle {
    font-size: 11.5px !important;
  }

  .header-border-left,
  .header-border-right {
    display: none !important;
  }

  /* Filter Pills Touch Horizontal Scroll Bar */
  .product-filter-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .product-filter-pills,
  .product-filter-tabs {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    padding-top: 4px;
    gap: 8px;
    scrollbar-width: none;
  }

  .product-filter-pills::-webkit-scrollbar,
  .product-filter-tabs::-webkit-scrollbar {
    display: none !important;
  }

  .filter-pill-btn {
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    font-size: 12px;
    padding: 6px 16px;
  }

  .btn-view-all-products {
    align-self: flex-end;
    font-size: 12px;
  }

  /* Slider Arrows Hide on Mobile Touch */
  .slick-prev-product, .slick-next-product,
  .slick-prev-fabric, .slick-next-fabric,
  .slick-prev-category, .slick-next-category {
    display: none !important;
  }

  /* 2-Column Product Cards Side-by-Side */
  .trending-products-slider .slick-slide,
  .most-loved-slider .slick-slide,
  .fabric-slider .slick-slide,
  .category-slider .slick-slide {
    padding: 0 5px;
  }

  .product-card {
    border-radius: 10px;
    padding: 10px;
  }

  .product-img-wrap {
    height: 210px;
    border-radius: 8px;
  }

  .product-card-title {
    font-size: 11.5px;
    margin-top: 8px;
    height: 32px;
    overflow: hidden;
    line-height: 1.35;
  }

  .price-current {
    font-size: 13px;
    font-weight: 800;
  }

  .price-original {
    font-size: 11px;
  }

  .btn-add-cart-icon {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .product-sizes-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    gap: 3px;
    padding-bottom: 2px;
    margin-top: 6px;
    padding-top: 5px;
  }

  .product-sizes-row::-webkit-scrollbar {
    display: none;
  }

  .size-pill-btn {
    font-size: 9px;
    padding: 2px 5.5px;
    flex-shrink: 0;
  }

  /* Exclusive Deal Card Responsive Layout */
  .exclusive-deal-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .deal-left-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .deal-timer-wrap {
    justify-content: center;
    margin-bottom: 15px;
  }

  .btn-deal-shop {
    align-self: center;
  }

  .deal-center-badge-wrap {
    margin: 10px auto;
  }

  .deal-right-product-card {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  /* Flash Sale Card Mobile Layout & Compact Height */
  .flash-sale-banner-section {
    padding: 20px 0 30px;
  }

  .flash-sale-card {
    padding: 22px 16px 20px 16px !important;
    border-radius: 16px;
  }

  .flash-sale-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .flash-sale-left {
    flex: 1 1 auto;
    width: 100%;
    align-items: center;
  }

  .flash-main-title {
    font-size: 32px !important;
    letter-spacing: 1px;
  }

  .flash-subtitle {
    margin-bottom: 15px;
    font-size: 13px;
  }

  .flash-stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    width: 100%;
    margin-bottom: 16px;
  }

  .flash-stat-item {
    padding: 6px 2px;
  }

  .flash-stat-num {
    font-size: 13px;
  }

  .flash-stat-lbl {
    font-size: 8px;
  }

  .btn-flash-shop {
    align-self: center;
    padding: 10px 24px;
    font-size: 11.5px;
  }

  .flash-sale-right {
    width: 100%;
    margin-top: 5px;
  }

  .flash-prod-img-wrap {
    height: 220px !important;
  }

  /* Hero Section Mobile — height comes from the real (mobile) image's own
     aspect ratio, not a fixed box, so nothing gets cropped. */
  .hero-title {
    font-size: 26px !important;
  }

  .hero-subtitle {
    font-size: 11px !important;
  }

  /* Offcanvas Cart Drawer Full Mobile Screen */
  .cart-drawer {
    width: 100% !important;
    max-width: 100%;
  }

  /* Occasion Grid 2 Columns */
  .occasion-grid-container {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }

  .occasion-card {
    height: 280px;
    padding: 14px 10px;
  }

  .occasion-title {
    font-size: 16px;
  }

  /* Footer Benefits Horizontal Scroll */
  .footer-top-benefits-strip .benefits-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .footer-top-benefits-strip .benefits-grid::-webkit-scrollbar {
    display: none;
  }

  .benefit-item {
    flex-shrink: 0;
  }

  .benefit-item::after {
    display: none !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 25px;
  }
}

@media (max-width: 575.98px) {
  .section-main-title,
  .deal-main-title,
  .flash-main-title,
  .trending-card-main-title,
  .section-header-wrap h2 {
    font-size: 18px !important;
    line-height: 1.25 !important;
  }
.site-logo-img {
    height: 45px;}

  .hero-title {
    font-size: 22px !important;
  }

  .hero-slider-btn {
    padding: 8px 18px !important;
    font-size: 11px !important;
  }

  .review-card {
    padding: 16px;
  }

  /* Reel Modal Full Screen Mobile */
  .reel-player-box {
    width: 100vw !important;
    height: 100vh !important;
    border-radius: 0 !important;
  }
}




/* ==========================================
   20. CATEGORY & PRODUCT LISTING PAGE STYLES
   ========================================== */

.category-page-body {
  background-color: #fdfdfd;
}

/* Breadcrumbs */
.category-breadcrumb-bar {
  background-color: #ffffff;
  padding: 14px 0;
  border-bottom: 1px solid #f0f2f1;
  font-size: 13px;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none !important;
  list-style-type: none !important;
}

.breadcrumb-item {
  list-style: none !important;
  list-style-type: none !important;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.breadcrumb-item a {
  color: #777777;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
}

.breadcrumb-item a:hover {
  color: var(--primary-maroon);
}

.breadcrumb-item.active {
  color: #222222;
  font-weight: 600;
}

.breadcrumb-separator {
  list-style: none !important;
  list-style-type: none !important;
  color: #bbbbbb;
  font-size: 9px;
  display: inline-flex;
  align-items: center;
}

/* Main Layout Grid */
.category-main-content {
  padding: 30px 0 60px;
}

.category-layout-grid {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 30px;
  align-items: start;
}

/* ==========================================
   SIDEBAR & ACCORDIONS (PLUS/MINUS)
   ========================================== */
.category-sidebar-wrap {
  position: sticky;
  top: 90px;
}

.sidebar-filter-card {
  background: #ffffff;
  border: 1px solid #eef2f1;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.sidebar-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0f2f1;
  user-select: none;
}

.sidebar-card-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #222222;
  margin: 0;
}

.accordion-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666666;
  font-size: 12px;
  transition: transform 0.25s ease, color 0.25s ease;
}

.sidebar-card-header:hover .accordion-icon,
.filter-group-header:hover .accordion-icon {
  color: var(--primary-maroon);
}

.sidebar-card-body {
  padding-top: 15px;
}

.sidebar-main-filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0f2f1;
}

.btn-clear-filters-link {
  background: none;
  border: none;
  color: var(--primary-maroon);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

/* Category Navigation Tree */
.cat-nav-tree {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cat-tree-item {
  margin-bottom: 6px;
}

.cat-tree-link-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
}

.cat-tree-link {
  font-size: 13.5px;
  color: #444444;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
  width: 100%;
}

.cat-tree-link:hover {
  color: var(--primary-maroon);
}

.sub-toggle-icon {
  font-size: 10px;
  color: #888888;
  width: 14px;
}

.cat-arrow-sub {
  font-size: 9px;
  color: #aaa;
}

.cat-sub-tree {
  list-style: none;
  padding-left: 14px;
  margin-top: 4px;
  margin-bottom: 8px;
}

.sub-tree-item {
  margin-bottom: 4px;
}

.sub-leaf-link {
  font-size: 13px;
  color: #666666;
  display: block;
  padding: 4px 8px;
  border-radius: 4px;
}

.sub-leaf-link:hover {
  color: var(--primary-maroon);
  background: #f7fbf9;
}

/* Active Category Branch Style */
.active-category-branch {
  background: #eef8f5;
  border-radius: 6px;
  padding: 6px 8px 8px 8px;
  margin-bottom: 6px;
}

.branch-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary-maroon);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.cat-leaf-list {
  list-style: none;
  padding-left: 12px;
  margin: 0;
}

.leaf-item {
  margin-bottom: 3px;
}

.leaf-item a {
  font-size: 12.5px;
  color: #555555;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 6px;
  border-radius: 4px;
}

.leaf-item a:hover,
.leaf-item.active a {
  color: var(--primary-maroon);
  font-weight: 600;
  background: #ffffff;
}

.count-pill {
  font-size: 11px;
  color: #888888;
  background: #e6f0ed;
  padding: 1px 6px;
  border-radius: 10px;
}

/* Filter Groups */
.filter-accordion-groups {
  display: flex;
  flex-direction: column;
}

.filter-group-item {
  border-bottom: 1px solid #f2f4f3;
  padding: 14px 0;
}

.filter-group-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.filter-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.filter-group-label {
  font-size: 13px;
  font-weight: 700;
  color: #222222;
  letter-spacing: 0.5px;
}

.filter-group-body {
  padding-top: 12px;
}

/* Price Range Slider */
.price-values-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.price-val-badge {
  font-size: 13px;
  font-weight: 700;
  color: #333333;
  background: #f4f6f5;
  padding: 3px 10px;
  border-radius: 6px;
  border: 1px solid #e2e8e5;
}

.custom-range-slider {
  width: 100%;
  accent-color: var(--primary-maroon);
  cursor: pointer;
}

/* Checkbox & Radio Lists */
.filter-checkbox-list,
.filter-rating-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.custom-checkbox-label,
.custom-radio-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  font-size: 13px;
  color: #444444;
  user-select: none;
}

.custom-checkbox-label input,
.custom-radio-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  width: 16px;
  height: 16px;
  border: 1.5px solid #cccccc;
  border-radius: 3px;
  margin-right: 10px;
  display: inline-block;
  position: relative;
  transition: all 0.2s;
  background: #ffffff;
  flex-shrink: 0;
}

.custom-checkbox-label:hover input ~ .checkmark {
  border-color: var(--primary-maroon);
}

.custom-checkbox-label input:checked ~ .checkmark {
  background-color: var(--primary-maroon);
  border-color: var(--primary-maroon);
}

.custom-checkbox-label input:checked ~ .checkmark:after {
  content: "";
  position: absolute;
  left: 4.5px;
  top: 1.5px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.radiomark {
  width: 16px;
  height: 16px;
  border: 1.5px solid #cccccc;
  border-radius: 50%;
  margin-right: 10px;
  display: inline-block;
  position: relative;
  transition: all 0.2s;
  background: #ffffff;
  flex-shrink: 0;
}

.custom-radio-label input:checked ~ .radiomark {
  border-color: var(--primary-maroon);
}

.custom-radio-label input:checked ~ .radiomark:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--primary-maroon);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.label-text {
  flex: 1;
}

.count-tag {
  font-size: 11.5px;
  color: #999999;
  margin-left: auto;
}

.stars-gold {
  color: #ffb800;
  font-size: 12px;
  margin-right: 6px;
}

/* Color Swatches Grid */
.filter-color-palette-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.color-palette-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.color-palette-dot:hover {
  transform: scale(1.15);
}

.color-palette-dot.active {
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px var(--primary-maroon);
}

/* Brand Search Box */
.brand-search-box {
  position: relative;
}

.brand-search-input {
  width: 100%;
  padding: 6px 28px 6px 10px;
  border: 1px solid #e2e8e5;
  border-radius: 6px;
  font-size: 12px;
  outline: none;
}

.brand-search-input:focus {
  border-color: var(--primary-maroon);
}

.brand-search-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  color: #999999;
}

.btn-view-more-brands {
  background: none;
  border: none;
  color: var(--primary-maroon);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 0 0 0;
  cursor: pointer;
}

.btn-clear-all-filters {
  width: 100%;
  padding: 10px;
  background: #ffffff;
  border: 1.5px solid var(--primary-maroon);
  color: var(--primary-maroon);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.25s;
  cursor: pointer;
}

.btn-clear-all-filters:hover {
  background: var(--primary-maroon);
  color: #ffffff;
}

/* ==========================================
   RIGHT PRODUCTS CONTENT AREA
   ========================================== */
.category-page-header {
  margin-bottom: 20px;
}

.cat-main-title {
  font-size: 28px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 4px;
}

.cat-desc-subtitle {
  font-size: 13.5px;
  color: #777777;
  margin: 0;
}

/* Subcategory Circle Strip (Smooth Native Horizontal Scroll) */
.subcategory-circle-strip-wrap {
  margin-bottom: 25px;
  padding-bottom: 5px;
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.subcategory-circle-slider {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding: 6px 4px 10px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.subcategory-circle-slider::-webkit-scrollbar {
  display: none;
}

.subcat-circle-item {
  flex: 0 0 auto;
  text-align: center;
}

.subcat-circle-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.subcat-circle-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #eef2f0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s, border-color 0.25s;
}

.subcat-circle-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.subcat-circle-avatar-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-maroon), #8a2b40);
}

.subcat-circle-initials {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.subcat-circle-card:hover .subcat-circle-avatar,
.subcat-circle-card.active .subcat-circle-avatar {
  border-color: var(--primary-maroon);
  transform: translateY(-2px);
}

.subcat-circle-card:hover .subcat-circle-avatar img {
  transform: scale(1.08);
}

.subcat-circle-title {
  font-size: 12px;
  font-weight: 600;
  color: #444444;
  white-space: nowrap;
}

.subcat-circle-card.active .subcat-circle-title {
  color: var(--primary-maroon);
  font-weight: 700;
}

/* Toolbar & View Mode Switcher */
.category-toolbar-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid #eef2f1;
  border-radius: 8px;
  margin-bottom: 22px;
}

.results-count-text {
  font-size: 13.5px;
  color: #666666;
}

.toolbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-mobile-filter-open {
  padding: 6px 14px;
  background: var(--primary-maroon);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
}

.view-mode-buttons {
  display: flex;
  gap: 4px;
}

.btn-view-mode {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f6f5;
  border: 1px solid #e2e8e5;
  border-radius: 5px;
  color: #666666;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-view-mode.active,
.btn-view-mode:hover {
  background: var(--primary-maroon);
  color: #ffffff;
  border-color: var(--primary-maroon);
}

.sort-by-select-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}

.sort-label {
  font-size: 13px;
  color: #666666;
  margin: 0;
}

.custom-sort-select {
  padding: 5px 12px;
  border: 1px solid #e2e8e5;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #333333;
  outline: none;
  cursor: pointer;
}

.custom-sort-select:focus {
  border-color: var(--primary-maroon);
}

/* ==========================================
   PRODUCT CARDS GRID (4 COLUMNS)
   ========================================== */
.category-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.category-products-grid.grid-3-cols {
  grid-template-columns: repeat(3, 1fr) !important;
}

.category-products-grid.grid-2-cols {
  grid-template-columns: repeat(2, 1fr) !important;
}

.category-products-grid .product-card {
  background: #ffffff;
  border: 1px solid #eef2f1;
  border-radius: 10px;
  padding: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.category-products-grid .product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

.product-brand-tag {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: #888888;
  letter-spacing: 0.5px;
  margin-top: 6px;
}

.price-discount-percent {
  font-size: 11.5px;
  font-weight: 700;
  color: #d32f2f;
  margin-left: 4px;
}

/* Wishlist Button */
.product-wishlist-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555555;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 5;
  cursor: pointer;
  transition: all 0.2s;
}

.product-wishlist-btn:hover,
.product-wishlist-btn.active {
  background: #ffffff;
  color: #e53935;
  transform: scale(1.1);
}

/* ==========================================
   PROMOTIONAL FEATURE BANNER CARD (BOTTOM)
   ========================================== */
.category-promo-banner-card {
  background: linear-gradient(135deg, #fdf8f4 0%, #f4fbf8 100%);
  border: 1px solid #e8efe9;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 35px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.promo-card-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}

/* No real per-category image uploaded — one full-width text column instead
   of leaving an empty/blank second column. */
.promo-card-grid.no-media {
  grid-template-columns: 1fr;
}

.promo-card-content {
  padding: 40px 35px;
}

.promo-card-title {
  font-size: 26px;
  font-weight: 800;
  color: #222222;
  margin-bottom: 12px;
}

.promo-card-desc {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 26px;
}

.promo-badges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.promo-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.8);
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #eaf2ed;
}

.promo-badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #e6f7f4;
  color: var(--primary-maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.promo-badge-text {
  font-size: 13px;
  font-weight: 700;
  color: #333333;
}

.promo-card-media {
  height: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.promo-model-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 360px;
}

/* Real category description shown below the banner image (or alone, when
   the category has no uploaded image) — replaces the old fixed "Shop With
   Confidence" title/paragraph/badges block. */
.promo-card-content-simple {
  padding: 28px 35px;
  text-align: center;
}

.promo-card-content-simple .promo-card-desc {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================
   PAGINATION BAR
   ========================================== */
.category-pagination-wrap {
  display: flex;
  justify-content: center;
  padding-top: 10px;
}

.pagination-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-item .page-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #e2e8e5;
  color: #555555;
  font-size: 13.5px;
  font-weight: 600;
  transition: all 0.2s;
  text-decoration: none;
}

.page-item.active .page-link,
.page-item .page-link:hover {
  background: var(--primary-maroon);
  color: #ffffff;
  border-color: var(--primary-maroon);
}

.page-item.disabled .page-link {
  color: #cccccc;
  pointer-events: none;
  background: #f8faf9;
}

/* ==========================================
   RESPONSIVE BREAKPOINTS FOR CATEGORY
   ========================================== */
@media (max-width: 1200px) {
  .category-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .category-layout-grid {
    display: block;
    width: 100%;
  }

  .category-sidebar-col {
    display: none; /* Can be opened via mobile filter modal/drawer */
  }

  .category-products-col {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .category-sidebar-col.mobile-filter-active {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    padding: 20px;
    overflow-y: auto;
  }

  .category-sidebar-col.mobile-filter-active .category-sidebar-wrap {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    max-width: 400px;
    margin: 0 auto;
  }

  .category-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }

  .promo-card-grid {
    grid-template-columns: 1fr;
  }

  .promo-card-media {
    max-height: 240px;
  }
}

@media (max-width: 767.98px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
  }

  .category-main-content {
    padding: 12px 0 35px;
    overflow-x: hidden;
  }

  .category-main-content .custom-container {
    padding-left: 10px !important;
    padding-right: 10px !important;
    max-width: 100% !important;
    width: 100% !important;
    overflow-x: hidden;
  }

  .category-page-header {
    margin-bottom: 12px;
  }

  .cat-main-title {
    font-size: 20px;
  }

  .cat-desc-subtitle {
    font-size: 12px;
    line-height: 1.4;
  }

  /* Subcategory horizontal circle scroll on mobile */
  .subcategory-circle-strip-wrap {
    margin-bottom: 14px;
    padding-bottom: 2px;
    width: 100%;
    overflow: hidden;
  }

  .subcategory-circle-slider {
    gap: 12px;
    padding: 4px 2px 8px;
    width: 100%;
  }

  .subcat-circle-avatar {
    width: 72px;
    height: 72px;
  }

  .subcat-circle-initials {
    font-size: 20px;
  }

  .subcat-circle-title {
    font-size: 11px;
  }

  /* Toolbar Fix - Perfectly Fits Screen Without Overflow */
  .category-toolbar-wrap {
    padding: 8px 12px;
    margin-bottom: 14px;
    gap: 8px;
    width: 100% !important;
    box-sizing: border-box;
  }

  .results-count-text {
    font-size: 11.5px;
    white-space: nowrap;
  }

  .btn-mobile-filter-open {
    padding: 5px 12px;
    font-size: 11.5px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }

  /* Product Grid: strictly 2 products per row fitting 100% screen */
  .category-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    margin-bottom: 30px;
    width: 100% !important;
    max-width: 100% !important;
  }

  .category-products-grid .product-card {
    padding: 6px !important;
    border-radius: 8px;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .category-products-grid .product-img-wrap {
    height: 185px !important;
    width: 100% !important;
    border-radius: 6px;
    margin-bottom: 6px;
  }

  .category-products-grid .product-card-title {
    font-size: 11.5px;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .category-products-grid .product-price-row {
    margin-bottom: 3px;
  }

  .category-products-grid .price-current {
    font-size: 12px;
    font-weight: 700;
  }

  .category-products-grid .price-original {
    font-size: 9.5px;
  }

  .category-products-grid .price-discount-percent {
    font-size: 9px;
  }

  .category-products-grid .product-brand-tag {
    font-size: 8.5px;
    margin-top: 1px;
  }

  .category-products-grid .product-badge-discount {
    font-size: 7.5px;
    padding: 2px 4px;
    top: 5px;
    left: 5px;
  }

  .category-products-grid .product-wishlist-btn {
    width: 22px;
    height: 22px;
    font-size: 9px;
    top: 5px;
    right: 5px;
  }

  .category-products-grid .btn-add-cart-icon {
    width: 24px;
    height: 24px;
    font-size: 9px;
  }

  .category-products-grid .product-swatches {
    bottom: 5px;
    left: 5px;
    gap: 2.5px;
  }

  .category-products-grid .swatch-dot {
    width: 7px;
    height: 7px;
  }

  .category-products-grid .product-rating-row {
    font-size: 8.5px;
  }

  .category-products-grid .product-sizes-row {
    display: none !important;
  }

  .promo-badges-grid {
    grid-template-columns: 1fr;
  }

  .promo-card-content {
    padding: 20px 16px;
  }
}


/* ==========================================
   21. PRODUCT DETAIL PAGE (PDP) STYLES
   ========================================== */

.product-page-body {
  background-color: #fcfdfd;
}

.product-detail-section {
  padding: 30px 0 50px;
}

.product-detail-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* LEFT COLUMN: GALLERY */
.product-gallery-col {
  position: sticky;
  top: 90px;
}

.product-gallery-sticky-wrap {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.gallery-thumbs-vertical {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 80px;
  flex-shrink: 0;
}

.gallery-thumbs-vertical .thumb-item {
  width: 80px;
  height: 98px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #eef2f0;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #fdfdfd;
}

.gallery-thumbs-vertical .thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s;
}

.gallery-thumbs-vertical .thumb-item:hover,
.gallery-thumbs-vertical .thumb-item.active {
  border-color: var(--primary-maroon);
  box-shadow: 0 4px 12px rgba(0, 171, 142, 0.18);
}

.gallery-thumbs-vertical .thumb-item:hover img {
  transform: scale(1.06);
}

/* Main High-Res Image Display Area */
.gallery-main-image-holder {
  flex: 1;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #eef2f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.product-main-discount-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #d32f2f;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  z-index: 5;
  letter-spacing: 0.5px;
}

.gallery-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #eef2f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333333;
  font-size: 14px;
  cursor: pointer;
  z-index: 5;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gallery-nav-arrow:hover {
  background: var(--primary-maroon);
  color: #ffffff;
  border-color: var(--primary-maroon);
}

.gallery-nav-arrow.arrow-prev {
  left: 14px;
}

.gallery-nav-arrow.arrow-next {
  right: 14px;
}

.main-image-zoom-box {
  width: 100%;
  height: auto;
  min-height: auto;
  max-height: none;
  overflow: hidden;
  display: block;
  cursor: zoom-in;
  background: transparent;
}

.main-product-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.main-image-zoom-box:hover .main-product-img {
  transform: scale(1.08);
}

.btn-view-fullscreen {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #eef2f0;
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: #333333;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 5;
}

.btn-view-fullscreen:hover {
  background: #ffffff;
  color: var(--primary-maroon);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* RIGHT COLUMN: PRODUCT INFO */
.product-info-col {
  display: flex;
  flex-direction: column;
}

.pdp-main-title {
  font-size: 26px;
  font-weight: 800;
  color: #111111;
  line-height: 1.35;
  margin-bottom: 10px;
}

.pdp-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 13px;
}

.pdp-rating-stars {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pdp-rating-num {
  font-weight: 700;
  color: #333333;
}

.pdp-reviews-count {
  color: #777777;
}

.pdp-meta-divider {
  color: #cccccc;
}

.pdp-sku-badge {
  color: #666666;
}

.pdp-price-wrap {
  margin-bottom: 14px;
}

.price-main-block {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.pdp-current-price {
  font-size: 28px;
  font-weight: 800;
  color: #d32f2f;
}

.pdp-original-price {
  font-size: 18px;
  color: #888888;
}

.pdp-discount-tag {
  font-size: 13px;
  font-weight: 800;
  color: #d32f2f;
  background: #ffebee;
  padding: 3px 8px;
  border-radius: 4px;
}

.pdp-tax-note {
  font-size: 12px;
  color: #888888;
  display: block;
  margin-top: 2px;
}

.pdp-promo-alert {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f0faf7;
  border: 1px dashed var(--primary-maroon);
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--primary-maroon-dark);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

.pdp-promo-icon {
  color: var(--primary-maroon);
  font-size: 14px;
}

/* Color & Size Options */
.pdp-option-section {
  margin-bottom: 20px;
}

.option-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.option-title {
  font-size: 13px;
  font-weight: 700;
  color: #222222;
  letter-spacing: 0.5px;
}

.selected-val-text {
  font-size: 13px;
  font-weight: 600;
  color: #555555;
  margin-left: 6px;
}

.size-guide-link {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--primary-maroon);
  text-decoration: underline;
}

.color-swatch-list {
  display: flex;
  gap: 12px;
}

.pdp-color-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #e0e0e0;
  cursor: pointer;
  transition: all 0.2s;
}

.pdp-color-dot:hover {
  transform: scale(1.1);
}

.pdp-color-dot.active {
  border-color: #ffffff;
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px var(--primary-maroon);
}

.size-button-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pdp-size-btn {
  min-width: 44px;
  height: 40px;
  padding: 0 14px;
  border: 1.5px solid #dcdfdc;
  background: #ffffff;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #333333;
  cursor: pointer;
  transition: all 0.2s;
}

.pdp-size-btn:hover {
  border-color: var(--primary-maroon);
  color: var(--primary-maroon);
}

.pdp-size-btn.active {
  background: var(--primary-maroon);
  border-color: var(--primary-maroon);
  color: #ffffff;
}

.pdp-size-btn.out-of-stock,
.pdp-size-btn:disabled {
  background: #f5f5f5;
  border-color: #e5e5e5;
  color: #b7b7b7;
  text-decoration: line-through;
  cursor: not-allowed;
}

.pdp-size-btn.out-of-stock:hover,
.pdp-size-btn:disabled:hover {
  border-color: #e5e5e5;
  color: #b7b7b7;
}

/* ==========================================
   BEST COUPONS FOR YOU CARDS (ABOVE CTAs)
   ========================================== */
.pdp-coupons-card {
  background: #fafcfb;
  border: 1px solid #e6f0ed;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 22px;
}

.coupons-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.coupon-header-title {
  font-size: 14px;
  font-weight: 700;
  color: #222222;
}

.view-all-coupons-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-maroon);
}

.coupons-strip-slider {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding: 4px 2px 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.coupons-strip-slider::-webkit-scrollbar {
  display: none;
}

.coupon-pill-card {
  flex: 0 0 250px;
  min-width: 250px;
  background: #ffffff;
  border: 1.5px dashed #b2dfdb;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.2s, transform 0.2s;
}

.coupon-pill-card:hover {
  border-color: var(--primary-maroon);
  transform: translateY(-2px);
}

.coupon-pill-code {
  font-size: 13px;
  font-weight: 800;
  color: var(--primary-maroon-dark);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.coupon-pill-desc {
  font-size: 11px;
  color: #555555;
  line-height: 1.35;
  margin-bottom: 8px;
}

.coupon-pill-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.coupon-tc-link {
  font-size: 10.5px;
  color: #888888;
  text-decoration: underline;
}

.btn-copy-coupon {
  background: none;
  border: none;
  color: var(--primary-maroon);
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}

.btn-copy-coupon:hover {
  color: var(--primary-maroon-dark);
  text-decoration: underline;
}

/* Delivery Highlights */
.pdp-delivery-perks-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 22px;
}

.delivery-perk-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8faf9;
  border: 1px solid #eef2f0;
  padding: 10px 14px;
  border-radius: 8px;
}

.perk-icon-wrap {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: #e6f7f4;
  color: var(--primary-maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.perk-text-wrap {
  display: flex;
  flex-direction: column;
}

.perk-text-wrap strong {
  font-size: 12.5px;
  color: #222222;
}

.perk-text-wrap span {
  font-size: 11px;
  color: #777777;
}

/* Action Buttons */
.pdp-actions-wrap {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.pdp-qty-stepper {
  display: flex;
  align-items: center;
  border: 1.5px solid #dcdfdc;
  border-radius: 8px;
  height: 48px;
  padding: 0 4px;
  background: #ffffff;
}

.pdp-qty-btn {
  width: 32px;
  height: 100%;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 700;
  color: #444444;
  cursor: pointer;
  transition: color 0.2s;
}

.pdp-qty-btn:hover {
  color: var(--primary-maroon);
}

.pdp-qty-val {
  min-width: 28px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #111111;
}

.btn-pdp-add-to-cart {
  flex: 1;
  height: 48px;
  background: var(--primary-maroon);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(0, 171, 142, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-pdp-add-to-cart:hover {
  background: var(--primary-maroon-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 171, 142, 0.35);
}

.btn-pdp-buy-now {
  width: 100%;
  height: 48px;
  background: #ffffff;
  border: 2px solid var(--primary-maroon);
  color: var(--primary-maroon);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-pdp-buy-now:hover {
  background: var(--primary-maroon);
  color: #ffffff;
  transform: translateY(-2px);
}

.pdp-wishlist-action-wrap {
  text-align: center;
  margin-bottom: 10px;
}

.btn-pdp-wishlist {
  background: none;
  border: none;
  font-size: 13.5px;
  font-weight: 600;
  color: #555555;
  cursor: pointer;
  transition: color 0.2s;
}

.btn-pdp-wishlist:hover,
.btn-pdp-wishlist.active {
  color: #e53935;
}

/* Product Accordions */
.pdp-accordions-container {
  border-top: 1px solid #eef2f0;
}

.pdp-accordion-item {
  border-bottom: 1px solid #eef2f0;
}

.pdp-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  cursor: pointer;
  user-select: none;
}

.acc-header-left {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: #222222;
}

.acc-item-icon {
  color: var(--primary-maroon);
  font-size: 15px;
  width: 20px;
}

.pdp-accordion-body {
  padding-bottom: 16px;
  font-size: 13px;
  color: #555555;
  line-height: 1.6;
}

.pdp-specs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pdp-specs-list li strong {
  color: #333333;
}

.pdp-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 32px;
}

.pdp-spec-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid #eeeeee;
}

.pdp-spec-label {
  font-size: 12px;
  color: var(--primary-maroon);
  font-weight: 600;
}

.pdp-spec-value {
  font-size: 15px;
  color: #111111;
  font-weight: 600;
}

@media (max-width: 575px) {
  .pdp-specs-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   CUSTOMER REVIEWS & "WRITE A REVIEW" FORM
   ========================================== */
.product-reviews-section {
  padding: 40px 0;
  background: #ffffff;
  border-top: 1px solid #f0f2f1;
}

.reviews-summary-card {
  background: #ffffff;
  border: 1px solid #eef2f1;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.02);
}

.reviews-main-title {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 25px;
}

.reviews-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 30px;
  align-items: center;
  padding-bottom: 25px;
  border-bottom: 1px solid #f0f2f1;
}

.summary-score-col {
  text-align: center;
}

.score-stars {
  color: #ffb800;
  font-size: 20px;
  margin-bottom: 8px;
}

.score-number {
  font-size: 22px;
  color: #222222;
  margin-bottom: 4px;
}

.score-subtext {
  font-size: 13px;
  color: #777777;
}

.summary-bars-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bar-stars-label {
  color: #ffb800;
  font-size: 11px;
  width: 70px;
}

.rating-progress-track {
  flex: 1;
  height: 8px;
  background: #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
}

.rating-progress-fill {
  height: 100%;
  background: var(--primary-maroon);
  border-radius: 10px;
}

.bar-count-num {
  font-size: 12px;
  color: #666666;
  width: 20px;
  text-align: right;
}

.summary-btn-col {
  display: flex;
  justify-content: center;
}

.btn-write-review {
  background: var(--primary-maroon);
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(0, 171, 142, 0.3);
}

.btn-write-review:hover {
  background: var(--primary-maroon-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 171, 142, 0.4);
}

.transparency-badge-center {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.diamond-badge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 18px;
  border: 1.5px dashed var(--primary-maroon);
  border-radius: 30px;
  background: #f0faf7;
  color: var(--primary-maroon-dark);
}

.diamond-icon {
  color: var(--primary-maroon);
  font-size: 16px;
  margin-bottom: 2px;
}

.diamond-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.diamond-score {
  font-size: 11px;
  font-weight: 800;
  color: var(--primary-maroon);
}

/* "Write a Review" Slide-Down Form */
.write-review-form-card {
  background: #ffffff;
  border: 1px solid #eef2f1;
  border-radius: 12px;
  padding: 35px;
  margin-top: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.write-form-title {
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  color: #222222;
  margin-bottom: 20px;
}

.form-group-center {
  text-align: center;
  margin-bottom: 20px;
}

.interactive-star-picker {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 26px;
  color: #ffb800;
  cursor: pointer;
  margin-top: 4px;
}

.star-pick-item {
  transition: transform 0.2s;
}

.star-pick-item:hover {
  transform: scale(1.2);
}

.form-group-field {
  margin-bottom: 18px;
}

.form-input-label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: #444444;
  margin-bottom: 6px;
}

.custom-review-input,
.custom-review-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #dcdfdc;
  border-radius: 8px;
  font-size: 13px;
  color: #333333;
  outline: none;
  transition: border-color 0.2s;
}

.custom-review-input:focus,
.custom-review-textarea:focus {
  border-color: var(--primary-maroon);
}

.review-upload-dropzone {
  display: block;
  width: 100%;
  border: 2px dashed #b2dfdb;
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  background: #fbfdfc;
  user-select: none;
  margin-bottom: 0;
  transition: all 0.2s;
}

.review-upload-dropzone:hover {
  border-color: var(--primary-maroon);
  background: #f0faf7;
}

.upload-cloud-icon {
  font-size: 32px;
  color: var(--primary-maroon);
  margin-bottom: 8px;
  display: block;
}

.upload-hint-text {
  font-size: 12.5px;
  color: #555555;
}

/* Uploaded Media Preview Thumbnails */
.review-media-preview-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.review-preview-item {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid #b2dfdb;
  background: #f0faf7;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  animation: fadeInReviewPreview 0.25s ease;
}

@keyframes fadeInReviewPreview {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.review-preview-item img,
.review-preview-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.btn-remove-preview {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  background: rgba(229, 57, 53, 0.92);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 5;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
}

.btn-remove-preview:hover {
  background: #c62828;
  transform: scale(1.15);
}

.review-preview-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 171, 142, 0.9);
  color: #ffffff;
  font-size: 9.5px;
  font-weight: 700;
  text-align: center;
  padding: 2px 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-privacy-note {
  font-size: 11.5px;
  color: #888888;
  line-height: 1.5;
  margin-bottom: 22px;
}

.review-form-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.btn-cancel-review {
  padding: 10px 24px;
  background: #ffffff;
  border: 1.5px solid var(--primary-maroon);
  color: var(--primary-maroon);
  border-radius: 25px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-cancel-review:hover {
  background: #e6f7f4;
}

.btn-submit-review {
  padding: 10px 28px;
  background: var(--primary-maroon);
  border: none;
  color: #ffffff;
  border-radius: 25px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(0, 171, 142, 0.3);
}

.btn-submit-review:hover {
  background: var(--primary-maroon-dark);
}

.review-success-alert {
  display: flex;
  align-items: center;
  background: #e8f5e9;
  border: 1px solid #c8e6c9;
  border-radius: 8px;
  padding: 16px;
  margin-top: 15px;
}

/* ==========================================
   CUSTOMER PHOTO REVIEWS SLIDER (IMAGE 5)
   ========================================== */
.customer-photo-reviews-section {
  padding: 50px 0;
  background: #fdfaf7;
  border-top: 1px solid #f0ece6;
}

.customer-photo-slider {
  margin: 0 -10px;
}

.cust-review-slide-item {
  padding: 0 10px;
}

.customer-review-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eef0ee;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.cust-card-img-wrap {
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.cust-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.customer-review-card:hover .cust-photo-img {
  transform: scale(1.06);
}

.cust-card-content {
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cust-stars-gold {
  color: #ffb800;
  font-size: 12px;
  margin-bottom: 6px;
}

.cust-name-title {
  font-size: 14px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 6px;
}

.cust-review-quote {
  font-size: 12px;
  color: #555555;
  line-height: 1.45;
  margin-bottom: 10px;
  flex: 1;
}

.cust-size-color-tag {
  font-size: 11px;
  color: #777777;
  margin-bottom: 6px;
}

.cust-verified-badge {
  font-size: 11px;
  font-weight: 700;
  color: #2e7d32;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ==========================================
   RELATED PRODUCTS SECTION ("YOU MAY ALSO LIKE")
   ========================================== */
.related-products-section {
  padding: 50px 0 70px;
  background: #ffffff;
}

.related-products-slider {
  margin: 0 -10px;
}

.related-slide-item {
  padding: 0 10px;
}

.size-guide-modal-box {
  border-radius: 12px;
}

.size-guide-table th {
  background: var(--primary-maroon);
  color: #ffffff;
  font-weight: 700;
}

/* Responsive PDP */
/* Responsive PDP */
@media (max-width: 991px) {
  .product-detail-layout-grid {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .product-gallery-col {
    position: static;
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 25px;
  }

  .product-info-col {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .main-image-zoom-box {
    height: auto;
  }

  .reviews-summary-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .summary-btn-col {
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .pdp-sticky-wrap {
    padding: 10px 0 60px;
  }

  .pdp-container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .product-detail-section {
    padding: 8px 0 35px;
    overflow-x: hidden;
  }

  .product-detail-section .custom-container {
    padding-left: 10px !important;
    padding-right: 10px !important;
    max-width: 100% !important;
    width: 100% !important;
    overflow-x: hidden;
  }

  .product-detail-layout-grid {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden;
  }

  .product-gallery-col,
  .product-info-col {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }

  /* Full Complete Main Image Presentation on Mobile (No Cropping) */
  .product-gallery-sticky-wrap {
    flex-direction: column-reverse;
    gap: 10px;
    width: 100%;
  }

  .gallery-main-image-holder {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eef2f0;
    position: relative;
    background: transparent;
  }

  .main-image-zoom-box {
    width: 100%;
    height: auto !important;
    background: transparent;
    display: block;
    cursor: pointer;
  }

  .main-product-img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    display: block;
  }

  .gallery-thumbs-vertical {
    flex-direction: row;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
    padding: 2px 2px 6px;
    scrollbar-width: none;
  }

  .gallery-thumbs-vertical::-webkit-scrollbar {
    display: none;
  }

  .gallery-thumbs-vertical .thumb-item {
    width: 60px;
    height: 75px;
    flex: 0 0 auto;
    border-radius: 6px;
  }

  .pdp-main-title {
    font-size: 19px;
    line-height: 1.35;
    margin-bottom: 8px;
  }

  /* Coupons Horizontal Scroll Strip on Mobile */
  .pdp-coupons-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding: 12px 10px !important;
    margin-bottom: 16px;
  }

  .coupons-card-header {
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
  }

  .coupons-strip-slider {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    gap: 10px !important;
    padding: 2px 2px 6px !important;
    box-sizing: border-box !important;
  }

  .coupon-pill-card {
    flex: 0 0 210px !important;
    min-width: 210px !important;
    max-width: 210px !important;
    box-sizing: border-box !important;
    padding: 8px 10px !important;
  }

  /* Delivery Perks on Mobile */
  .pdp-delivery-perks-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-bottom: 16px;
  }

  .delivery-perk-box {
    padding: 8px !important;
    gap: 6px !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  .perk-icon-wrap {
    width: 28px !important;
    height: 28px !important;
    font-size: 12px !important;
    flex-shrink: 0 !important;
  }

  .perk-text-wrap strong {
    font-size: 11px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .perk-text-wrap span {
    font-size: 9.5px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Balanced Mobile Action Buttons (Row 1: Stepper + Add to Cart, Row 2: Buy Now) */
  .pdp-actions-wrap {
    display: flex !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-bottom: 8px !important;
  }

  .pdp-qty-stepper {
    width: 88px !important;
    min-width: 88px !important;
    height: 46px !important;
    border-radius: 8px;
    border: 1.5px solid #d5dad7;
    margin-bottom: 0 !important;
    background: #ffffff;
    justify-content: space-between;
    box-sizing: border-box !important;
  }

  .btn-pdp-add-to-cart {
    flex: 1 !important;
    width: auto !important;
    height: 46px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px;
    margin: 0 !important;
    border-radius: 8px !important;
    white-space: nowrap !important;
    padding: 0 10px !important;
    box-sizing: border-box !important;
  }

  .btn-pdp-buy-now {
    width: 100% !important;
    height: 46px !important;
    font-size: 13.5px !important;
    font-weight: 800 !important;
    letter-spacing: 0.3px;
    margin-bottom: 10px !important;
    border-radius: 8px !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
  }

  /* You May Also Like Slider on Mobile (2 Items Side-by-Side) */
  .related-products-slider {
    margin: 0 -5px;
  }

  .related-slide-item {
    padding: 0 5px;
  }

  .related-products-slider .product-card {
    padding: 6px !important;
    border-radius: 8px;
  }

  .related-products-slider .product-img-wrap {
    height: 185px !important;
    border-radius: 6px;
    margin-bottom: 6px;
  }

  .related-products-slider .product-card-title {
    font-size: 11.5px;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .related-products-slider .price-current {
    font-size: 12px;
    font-weight: 700;
  }

  .related-products-slider .price-original {
    font-size: 9.5px;
  }

  .related-products-slider .price-discount-percent {
    font-size: 9px;
  }

  .related-products-slider .product-brand-tag {
    font-size: 8.5px;
    margin-top: 1px;
  }

  .related-products-slider .product-badge-discount {
    font-size: 7.5px;
    padding: 2px 4px;
    top: 5px;
    left: 5px;
  }

  .related-products-slider .product-wishlist-btn {
    width: 22px;
    height: 22px;
    font-size: 9px;
    top: 5px;
    right: 5px;
  }

  .related-products-slider .btn-add-cart-icon {
    width: 24px;
    height: 24px;
    font-size: 9px;
  }

  .related-products-slider .product-sizes-row {
    display: none !important;
  }

  .related-products-slider .product-rating-row {
    font-size: 8.5px;
  }

  /* Customer Photo Reviews Slider 2 cards on mobile */
  .customer-photo-slider {
    margin: 0 -5px;
  }

  .cust-review-slide-item {
    padding: 0 5px;
  }

  .cust-card-img-wrap {
    height: 180px;
  }

  .cust-card-content {
    padding: 10px 8px;
  }

  .cust-name-title {
    font-size: 12px;
  }

  .cust-review-quote {
    font-size: 11px;
    line-height: 1.35;
  }
}


/* ==========================================
   22. PDP FULLSCREEN ZOOM LIGHTBOX (MATCHING USER SCREENSHOT)
   ========================================== */
.pdp-zoom-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #faf6f0; /* Warm luxury ivory/beige matching user screenshot */
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  user-select: none;
  animation: fadeInLightbox 0.25s ease;
}

@keyframes fadeInLightbox {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

.lightbox-btn-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: #ffffff;
  border: 1.5px solid #dcdfdc;
  border-radius: 50%;
  color: #333333;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.lightbox-btn-close:hover {
  background: #d32f2f;
  border-color: #d32f2f;
  color: #ffffff;
  transform: rotate(90deg);
}

/* Lightbox Navigation Buttons (Square bordered matching user's image) */
.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  background: #ffffff;
  border: 1.5px solid #8d2b37; /* Elegant maroon border as in user image */
  border-radius: 4px;
  color: #8d2b37;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  transition: all 0.2s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.lightbox-nav-btn:hover {
  background: #8d2b37;
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(141, 43, 55, 0.25);
}

.lightbox-prev-btn {
  left: 35px;
}

.lightbox-next-btn {
  right: 35px;
}

/* Center Zoom Stage */
.lightbox-stage-container {
  max-width: 85vw;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.lightbox-img-wrapper {
  width: 700px;
  max-width: 80vw;
  height: 72vh;
  max-height: 800px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: crosshair;
  border-radius: 6px;
  background: transparent;
}

.lightbox-zoom-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.12s ease-out;
  transform-origin: center center;
  pointer-events: none;
}

.lightbox-zoom-hint {
  font-size: 12px;
  color: #777777;
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.85);
  padding: 4px 14px;
  border-radius: 20px;
  border: 1px solid #e8e4dc;
}

/* Bottom Thumbnail Strip */
.lightbox-bottom-thumbnails {
  position: absolute;
  bottom: 20px;
  display: flex;
  gap: 10px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  padding: 6px 12px;
  border-radius: 30px;
  border: 1px solid #e8e4dc;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.lb-thumb {
  width: 44px;
  height: 52px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid #e0ded8;
  cursor: pointer;
  transition: all 0.2s;
}

.lb-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lb-thumb:hover,
.lb-thumb.active {
  border-color: #8d2b37;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .lightbox-prev-btn { left: 10px; }
  .lightbox-next-btn { right: 10px; }
  .lightbox-img-wrapper { width: 92vw; height: 60vh; }
  .lightbox-bottom-thumbnails { bottom: 10px; }
}


/* ==========================================
/* ==========================================
   23. LUXURY CHECKOUT PAGE STYLES (MATCHING USER SCREENSHOTS)
   ========================================== */

.checkout-page-body {
  background-color: #ffffff;
  color: #333333;
}

.checkout-page-section {
  padding: 30px 0 70px;
  background-color: #ffffff;
}

.checkout-layout-wrapper {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 40px;
  align-items: start;
}

/* LEFT COLUMN: MAIN FORM */
.checkout-main-col {
  width: 100%;
  background-color: #ffffff;
}

.checkout-main-container {
  width: 100%;
}

.checkout-security-badge {
  font-size: 12px;
  font-weight: 600;
  color: #555555;
  display: flex;
  align-items: center;
  background: #f0faf7;
  border: 1px solid #d0ebe4;
  padding: 5px 12px;
  border-radius: 20px;
}

/* Sections */
.checkout-section-block {
  margin-bottom: 34px;
}

.checkout-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
}

.checkout-section-title {
  font-size: 18px;
  font-weight: 800;
  color: #111111;
  margin: 0;
  letter-spacing: -0.2px;
}

.checkout-section-subtitle {
  font-size: 12.5px;
  color: #777777;
  margin: 2px 0 0;
}

.checkout-signin-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-maroon);
  text-decoration: underline;
}

/* Input Fields */
.form-floating-custom {
  position: relative;
  width: 100%;
}

.checkout-input-field {
  width: 100%;
  height: 48px;
  padding: 12px 14px;
  background: #ffffff;
  border: 1.2px solid #d5dad7;
  border-radius: 6px;
  font-size: 13.5px;
  color: #222222;
  outline: none;
  transition: all 0.2s ease;
}

.checkout-input-field:focus {
  border-color: var(--primary-maroon);
  box-shadow: 0 0 0 1px var(--primary-maroon);
}

.checkout-input-select {
  width: 100%;
  height: 48px;
  padding: 10px 14px;
  background: #ffffff;
  border: 1.2px solid #d5dad7;
  border-radius: 6px;
  font-size: 13.5px;
  color: #222222;
  outline: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.checkout-input-select:focus {
  border-color: var(--primary-maroon);
  box-shadow: 0 0 0 1px var(--primary-maroon);
}

.field-mini-label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  color: #777777;
  margin-bottom: 4px;
}

.input-info-tooltip {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #888888;
  font-size: 15px;
  cursor: pointer;
  padding: 0;
}

.input-search-icon {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  color: #888888;
  font-size: 14px;
  pointer-events: none;
}

.checkout-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.checkout-grid-3 {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr;
  gap: 12px;
}

/* Custom Designed Premium Checkbox (Matching User Reference) */
.checkout-checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: #2c302e;
  cursor: pointer;
  user-select: none;
  margin-bottom: 8px;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.checkout-checkbox-label:hover {
  color: #111111;
}

/* Custom Checkbox Input with appearance: none */
input[type="checkbox"].checkout-checkbox,
.checkout-checkbox-label input[type="checkbox"],
.charity-header-toggle input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 19px;
  height: 19px;
  border: 1.8px solid #c2cbc7;
  border-radius: 5px;
  background-color: #ffffff;
  outline: none;
  cursor: pointer;
  position: relative;
  display: inline-grid;
  place-content: center;
  flex-shrink: 0;
  margin: 0;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 2.5px rgba(0, 0, 0, 0.05);
}

/* Hover State Ring */
input[type="checkbox"].checkout-checkbox:hover,
.checkout-checkbox-label:hover input[type="checkbox"],
.charity-header-toggle:hover input[type="checkbox"] {
  border-color: var(--primary-maroon);
  box-shadow: 0 0 0 3px rgba(0, 171, 142, 0.16);
}

/* Checked State - Solid Rounded Squircle */
input[type="checkbox"].checkout-checkbox:checked,
.checkout-checkbox-label input[type="checkbox"]:checked,
.charity-header-toggle input[type="checkbox"]:checked {
  background-color: var(--primary-maroon);
  border-color: var(--primary-maroon);
  box-shadow: 0 2px 6px rgba(0, 171, 142, 0.28);
  transform: scale(1.02);
}

/* Crisp Centered White Checkmark */
input[type="checkbox"].checkout-checkbox::before,
.checkout-checkbox-label input[type="checkbox"]::before,
.charity-header-toggle input[type="checkbox"]::before {
  content: "";
  width: 5.5px;
  height: 9.5px;
  border: solid #ffffff;
  border-width: 0 2.2px 2.2px 0;
  transform: rotate(45deg) translate(-0.5px, -1px) scale(0);
  opacity: 0;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.15s ease;
}

/* Checkmark Animated Reveal */
input[type="checkbox"].checkout-checkbox:checked::before,
.checkout-checkbox-label input[type="checkbox"]:checked::before,
.charity-header-toggle input[type="checkbox"]:checked::before {
  transform: rotate(45deg) translate(-0.5px, -1px) scale(1);
  opacity: 1;
}

/* Focus State */
input[type="checkbox"].checkout-checkbox:focus-visible {
  outline: 2px solid var(--primary-maroon);
  outline-offset: 2px;
}

/* Shipping Method Card */
.shipping-method-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fbfdfc;
  border: 1.5px solid var(--primary-maroon);
  border-radius: 8px;
  padding: 14px 18px;
}

.shipping-method-info {
  display: flex;
  flex-direction: column;
}

.shipping-method-info strong {
  font-size: 13.5px;
  color: #222222;
}

.shipping-method-info span {
  font-size: 12px;
  color: #777777;
}

.shipping-method-cost {
  font-size: 13.5px;
  font-weight: 800;
  color: #2e7d32;
}

/* Payment Section Accordions */
.payment-accordion-group,
.billing-accordion-group {
  border: 1.2px solid #d5dad7;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}

.payment-option-card,
.billing-option-card {
  border-bottom: 1.2px solid #d5dad7;
  transition: background-color 0.2s;
}

.payment-option-card:last-child,
.billing-option-card:last-child {
  border-bottom: none;
}

.payment-option-card.active,
.billing-option-card.active {
  background-color: #f7fbf9;
  border-color: var(--primary-maroon);
}

.payment-radio-header,
.billing-radio-header {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  cursor: pointer;
  margin: 0;
  user-select: none;
}

.payment-radio-input,
.billing-radio-input {
  display: none;
}

.payment-radio-custom {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #b0bec5;
  margin-right: 12px;
  position: relative;
  flex-shrink: 0;
  transition: all 0.2s;
}

.payment-radio-input:checked + .payment-radio-custom,
.billing-radio-input:checked + .payment-radio-custom {
  border-color: var(--primary-maroon);
  background: var(--primary-maroon);
  box-shadow: inset 0 0 0 3px #ffffff;
}

.payment-title-wrap {
  flex: 1;
  font-size: 13.5px;
  color: #222222;
}

.payment-badges-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pay-tag-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  background: #ffffff;
  border: 1px solid #d5dad7;
  color: #333333;
}

.pay-tag-badge.pay-snapmint {
  background: #e8f5e9;
  border-color: #c8e6c9;
  color: #2e7d32;
}

.pay-tag-badge.pay-visa {
  color: #1a1f71;
  font-weight: 800;
}

.pay-tag-badge.pay-mc {
  color: #eb001b;
  font-weight: 800;
}

.pay-tag-badge.pay-cod {
  background: #fff8e1;
  border-color: #ffe082;
  color: #b78103;
}

.pay-tag-badge.pay-online {
  background: #e8f0fe;
  border-color: #c3d9fd;
  color: #1a56db;
}

.pay-tag-badge-more {
  font-size: 10px;
  color: #777777;
  font-weight: 700;
}

.payment-nested-content {
  padding: 14px 18px 16px 46px;
  border-top: 1px dashed #d5dad7;
  background: #fbfdfc;
  animation: fadeInPay 0.2s ease;
}

@keyframes fadeInPay {
  from { opacity: 0; }
  to { opacity: 1; }
}

.payment-redirect-note {
  font-size: 12.5px;
  color: #555555;
  margin: 0;
  line-height: 1.45;
}

/* ==========================================
   DIFFERENT BILLING ADDRESS SUB-FORM STYLES (MATCHING USER SCREENSHOT)
   ========================================== */
.billing-option-label-text {
  font-size: 13.5px;
  font-weight: 600;
  color: #222222;
}

.different-billing-form-wrapper {
  padding: 16px 18px 18px;
  background: #f8faf9;
  border-top: 1px solid #e2ece8;
  border-radius: 0 0 10px 10px;
  animation: fadeInPay 0.25s ease;
}

.billing-form-group {
  position: relative;
  width: 100%;
}

.billing-form-group.has-right-icon .billing-input-control {
  padding-right: 40px;
}

.billing-input-control {
  width: 100%;
  height: 48px;
  background: #ffffff;
  border: 1.2px solid #d7e0dc;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13.5px;
  color: #222222;
  outline: none;
  transition: all 0.2s ease;
}

.billing-input-control:focus {
  border-color: var(--primary-maroon);
  box-shadow: 0 0 0 3px rgba(0, 171, 142, 0.12);
}

.billing-input-control::placeholder {
  color: #888888;
  font-size: 13px;
}

/* Floating Select Box for Country & State */
.billing-select-box-wrap {
  position: relative;
  background: #ffffff;
  border: 1.2px solid #d7e0dc;
  border-radius: 8px;
  padding: 5px 14px 4px;
  height: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.2s ease;
}

.billing-select-box-wrap:focus-within {
  border-color: var(--primary-maroon);
  box-shadow: 0 0 0 3px rgba(0, 171, 142, 0.12);
}

.billing-floating-label {
  font-size: 10.5px;
  font-weight: 700;
  color: #777777;
  margin: 0;
  line-height: 1;
}

.billing-select-control {
  width: 100%;
  border: none;
  background: transparent;
  padding: 0;
  font-size: 13.5px;
  font-weight: 600;
  color: #222222;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.billing-select-chevron {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  color: #666666;
  pointer-events: none;
}

.billing-input-icon-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  color: #777777;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.form-row-3col {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 12px;
}

@media (max-width: 576px) {
  .different-billing-form-wrapper {
    padding: 14px 12px;
  }

  .form-row-3col {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Charity Section */
.charity-card-box {
  background: #ffffff;
  border: 1.2px solid #d5dad7;
  border-radius: 8px;
  padding: 18px;
}

.charity-header-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #222222;
  margin-bottom: 14px;
  cursor: pointer;
}

.charity-pills-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.charity-pill-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 6px;
  background: #ffffff;
  border: 1.2px solid #d5dad7;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.charity-pill-btn .charity-pct {
  font-size: 13px;
  font-weight: 700;
  color: #222222;
}

.charity-pill-btn .charity-val {
  font-size: 11px;
  color: #777777;
}

.charity-pill-btn .charity-none {
  font-size: 13px;
  font-weight: 700;
  color: #444444;
  padding: 6px 0;
}

.charity-pill-btn:hover {
  border-color: var(--primary-maroon);
}

.charity-pill-btn.active {
  border-color: var(--primary-maroon);
  background: #f0faf7;
  box-shadow: 0 0 0 1px var(--primary-maroon);
}

.charity-pill-btn.active .charity-pct,
.charity-pill-btn.active .charity-none {
  color: var(--primary-maroon-dark);
}

.charity-stepper-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.charity-stepper-input {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1.2px solid #d5dad7;
  border-radius: 6px;
  padding: 0 12px;
  height: 42px;
  background: #ffffff;
}

.charity-prefix {
  font-size: 11.5px;
  font-weight: 700;
  color: #666666;
  letter-spacing: 0.5px;
}

.stepper-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.charity-step-btn {
  width: 26px;
  height: 26px;
  border: none;
  background: #f0f0f0;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  color: #333333;
  cursor: pointer;
}

.charity-step-btn:hover {
  background: var(--primary-maroon);
  color: #ffffff;
}

.charity-amount-display {
  font-size: 13px;
  font-weight: 700;
  color: #222222;
  min-width: 32px;
  text-align: center;
}

.btn-charity-donate {
  padding: 0 20px;
  background: #ffffff;
  border: 1.2px solid #d5dad7;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-charity-donate:hover {
  border-color: var(--primary-maroon);
  color: var(--primary-maroon);
}

.charity-thankyou-text {
  font-size: 12px;
  color: #777777;
  margin: 0;
}

/* Pay Now CTA */
.checkout-cta-wrap {
  margin-top: 30px;
  margin-bottom: 25px;
}

.btn-checkout-paynow {
  width: 100%;
  height: 52px;
  background: var(--primary-maroon);
  border: none;
  color: #ffffff;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(0, 171, 142, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-checkout-paynow:hover {
  background: var(--primary-maroon-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 171, 142, 0.4);
}

/* Footer Links */
.checkout-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid #f0f2f1;
}

.checkout-footer-links a {
  font-size: 11.5px;
  color: #777777;
  text-decoration: underline;
}

.checkout-footer-links a:hover {
  color: var(--primary-maroon);
}


/* ==========================================
   RIGHT COLUMN: STICKY ORDER SUMMARY SIDEBAR
   ========================================== */
.checkout-summary-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 90px;
  background-color: #faf5ee; /* Warm luxury beige matching user screenshot */
  border: 1px solid #ede6dc;
  border-radius: 12px;
  padding: 26px 28px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  z-index: 10;
}

.summary-sticky-container {
  width: 100%;
}

.checkout-sidebar-heading {
  font-size: 17px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #ede6dc;
}

/* Items List */
.summary-items-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}

.summary-item-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.summary-thumb-box {
  position: relative;
  width: 64px;
  height: 74px;
  border-radius: 8px;
  border: 1px solid #e5dfd6;
  background: #ffffff;
  overflow: visible;
  flex-shrink: 0;
}

.summary-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 7px;
}

.summary-qty-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 21px;
  height: 21px;
  background: rgba(45, 45, 45, 0.95);
  color: #ffffff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.summary-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.summary-item-title {
  font-size: 13px;
  font-weight: 700;
  color: #222222;
  line-height: 1.35;
  margin: 0 0 3px;
}

.summary-item-variant {
  font-size: 11.5px;
  color: #777777;
}

.summary-item-price {
  font-size: 13.5px;
  font-weight: 700;
  color: #222222;
  white-space: nowrap;
}

/* Promo Code Input */
.summary-discount-box {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
}

.discount-input-wrap {
  flex: 1;
}

.summary-discount-input {
  width: 100%;
  height: 44px;
  padding: 10px 14px;
  background: #ffffff;
  border: 1.2px solid #d5dad7;
  border-radius: 6px;
  font-size: 13px;
  color: #333333;
  outline: none;
  transition: border-color 0.2s;
}

.summary-discount-input:focus {
  border-color: var(--primary-maroon);
}

.btn-summary-apply {
  padding: 0 22px;
  background: #ded7cb;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #444444;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-summary-apply:hover {
  background: var(--primary-maroon);
  color: #ffffff;
}

/* View Available Coupons Trigger */
.view-available-coupons-trigger-wrap {
  margin: 12px 0 18px;
}

.btn-view-coupons-modal {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #f0faf7;
  border: 1.2px dashed #00ab8e;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #006654;
  cursor: pointer;
  outline: none;
  transition: all 0.25s ease;
  box-shadow: none;
}

.btn-view-coupons-modal:hover {
  background: #e1f5ef;
  border-color: #007662;
  color: #004d40;
  box-shadow: 0 3px 10px rgba(0, 171, 142, 0.15);
}

.badge-coupons-count {
  background: #00ab8e;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 12px;
  letter-spacing: 0.3px;
  vertical-align: middle;
}

/* Available Coupons Modal Styling */
.coupons-modal-content {
  border-radius: 16px;
  border: none;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.coupons-modal-header {
  padding: 18px 22px;
  background: #ffffff;
  border-bottom: 1px solid #eef2f0;
}

.coupons-modal-title-wrap .modal-title {
  font-size: 17px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 2px;
}

.coupons-modal-subtitle {
  font-size: 12.5px;
  color: #777777;
}

.coupons-modal-body {
  padding: 20px 22px;
  max-height: 480px;
  overflow-y: auto;
  background: #fafbfc;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.coupon-item-card {
  position: relative;
  background: #ffffff;
  border: 1.2px dashed #bce8de;
  border-radius: 12px;
  padding: 16px 18px;
  transition: all 0.25s ease;
}

.coupon-item-card:hover {
  border-color: #00ab8e;
  box-shadow: 0 4px 15px rgba(0, 171, 142, 0.12);
  transform: translateY(-2px);
}

.coupon-item-card.featured-coupon {
  border-color: #00ab8e;
  background: #fbfdfc;
}

.coupon-ribbon-tag {
  position: absolute;
  top: 0;
  right: 18px;
  background: #00ab8e;
  color: #ffffff;
  font-size: 9.5px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 0 0 6px 6px;
  letter-spacing: 0.5px;
}

.coupon-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.coupon-code-badge {
  font-family: monospace;
  font-size: 14px;
  font-weight: 800;
  color: #007662;
  background: #e6f7f4;
  border: 1px solid #bce8de;
  padding: 4px 12px;
  border-radius: 6px;
  letter-spacing: 1px;
}

.btn-apply-coupon-item {
  background: #00ab8e;
  color: #ffffff;
  border: none;
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
}

.btn-apply-coupon-item:hover {
  background: #00876f;
  box-shadow: 0 3px 8px rgba(0, 171, 142, 0.3);
}

.btn-apply-coupon-item.applied {
  background: #2e7d32;
  color: #ffffff;
}

.coupon-card-heading {
  font-size: 14px;
  font-weight: 800;
  color: #222222;
  margin: 0 0 4px;
}

.coupon-card-terms {
  font-size: 12px;
  color: #666666;
  line-height: 1.45;
  margin: 0 0 10px;
}

.coupon-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11.5px;
  color: #888888;
  border-top: 1px solid #f0f4f2;
  padding-top: 8px;
}

.coupon-tc-link {
  color: #007662;
  text-decoration: underline;
  font-weight: 600;
}

/* Calculations */
.summary-calculations-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.calc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #555555;
}

.calc-val {
  font-weight: 600;
  color: #222222;
}

.calc-discount-row .badge-applied-coupon {
  background: #e0f2f1;
  color: var(--primary-maroon-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 4px;
}

.summary-divider-line {
  height: 1px;
  background: #ede6dc;
  margin: 6px 0;
}

.calc-total-row {
  align-items: baseline;
}

.total-label-wrap strong {
  font-size: 17px;
  font-weight: 800;
  color: #111111;
  display: block;
}

.total-tax-note {
  font-size: 11.5px;
  color: #777777;
}

.total-amount-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.total-currency-code {
  font-size: 11px;
  color: #777777;
  font-weight: 600;
}

.total-final-amount {
  font-size: 22px;
  font-weight: 800;
  color: #111111;
}

.total-savings-badge {
  background: #e8f5e9;
  border: 1px solid #c8e6c9;
  padding: 8px 12px;
  border-radius: 6px;
  color: #2e7d32;
  font-size: 12.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  margin-top: 8px;
}

/* Success Modal */
.order-success-modal-box {
  border-radius: 14px;
}

.success-icon-animated {
  font-size: 56px;
}

.btn-primary-teal {
  background: var(--primary-maroon);
  color: #ffffff;
  font-weight: 700;
  border-radius: 6px;
}

.btn-primary-teal:hover {
  background: var(--primary-maroon-dark);
  color: #ffffff;
}

/* Responsive Checkout */
@media (max-width: 991.98px) {
  .checkout-layout-wrapper {
    display: block;
  }

  .checkout-main-col {
    padding: 0 0 40px;
    max-width: 100%;
  }

  .checkout-summary-sidebar {
    position: static;
    margin-top: 25px;
    padding: 20px;
  }

  .summary-sticky-container {
    position: static;
    max-width: 100%;
  }
}

  .mobile-order-summary-box {
    background: #faf5ee;
    border: 1px solid #ede6dc;
    border-radius: 10px;
    overflow: hidden;
  }

  .mobile-order-summary-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: #faf5ee;
    border: none;
    border-radius: 0;
    margin-bottom: 0;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }

  .mobile-order-summary-toggle:hover {
    background: #f5efe4;
  }

  .mobile-summary-collapse-content {
    padding: 16px 18px 20px;
    border-top: 1px solid #ede6dc;
    background: #faf5ee;
  }

  .summary-toggle-left {
    display: flex;
    align-items: center;
    font-size: 13.5px;
    font-weight: 700;
    color: #222222;
  }

  .summary-toggle-price {
    font-size: 15px;
    font-weight: 800;
    color: #111111;
  }
}


/* ==========================================
   24. AVAILABLE COUPONS & OFFERS MODAL STYLES
   ========================================== */
.btn-view-coupons-modal {
  width: 100%;
  background: #ffffff;
  border: 1.5px dashed var(--primary-maroon);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-maroon-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease;
}

.btn-view-coupons-modal:hover {
  background: #f0faf7;
  border-color: var(--primary-maroon-dark);
}

.badge-coupons-count {
  background: var(--primary-maroon);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 12px;
  margin-left: auto;
}

.coupons-modal-content {
  border-radius: 14px;
  border: 1px solid #e0e8e5;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.coupons-modal-header {
  border-bottom: 1px solid #eef2f0;
  padding: 18px 24px;
  background: #fafcfb;
}

.coupons-modal-title-wrap {
  display: flex;
  flex-direction: column;
}

.coupons-modal-title-wrap .modal-title {
  font-size: 17px;
  font-weight: 800;
  color: #111111;
  margin: 0;
}

.coupons-modal-subtitle {
  font-size: 12px;
  color: #777777;
  margin-top: 2px;
}

.coupons-modal-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: 520px;
}

/* Coupon Card Item */
.coupon-item-card {
  position: relative;
  background: #ffffff;
  border: 1.5px dashed #b2dfdb;
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
}

.coupon-item-card:hover {
  border-color: var(--primary-maroon);
  box-shadow: 0 4px 14px rgba(0, 171, 142, 0.08);
  transform: translateY(-2px);
}

.coupon-item-card.featured-coupon {
  border-color: var(--primary-maroon);
  background: #fbfdfc;
}

.coupon-ribbon-tag {
  position: absolute;
  top: 0;
  right: 18px;
  background: var(--primary-maroon);
  color: #ffffff;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 0 0 6px 6px;
}

.coupon-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.coupon-code-badge {
  font-size: 14px;
  font-weight: 800;
  color: var(--primary-maroon-dark);
  background: #e6f7f4;
  border: 1px solid #b2dfdb;
  padding: 4px 12px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.btn-apply-coupon-item {
  background: var(--primary-maroon);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-apply-coupon-item:hover {
  background: var(--primary-maroon-dark);
}

.btn-apply-coupon-item.applied {
  background: #2e7d32;
}

.coupon-card-heading {
  font-size: 13.5px;
  font-weight: 700;
  color: #222222;
  margin-bottom: 4px;
}

.coupon-card-terms {
  font-size: 12px;
  color: #666666;
  line-height: 1.45;
  margin-bottom: 8px;
}

.coupon-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11.5px;
  color: #888888;
  padding-top: 8px;
  border-top: 1px dashed #eef2f0;
}

.coupon-card-meta .coupon-tc-link {
  color: #777777;
  text-decoration: underline;
}

.coupon-card-meta .coupon-tc-link:hover {
  color: var(--primary-maroon);
}

.coupons-modal-footer {
  border-top: 1px solid #eef2f0;
  padding: 12px 24px;
}

/* ==========================================
   26. LUXURY LOGIN & SIGNUP PAGE STYLES (MATCHING USER SCREENSHOT)
   ========================================== */
.login-page-body {
  background-color: #fbf9f6;
}

.login-page-main {
  padding: 40px 15px 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 250px);
}

.login-card-wrapper {
  width: 100%;
  max-width: 440px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.09);
  border: 1px solid #edf2ef;
  position: relative;
  transition: transform 0.3s;
}

.login-banner-header {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
}

.login-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.login-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  z-index: 10;
}

.login-close-btn:hover {
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  transform: scale(1.08);
}

.login-form-body {
  padding: 26px 28px 24px;
}

.login-heading-title {
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #666666;
  text-align: center;
  margin-bottom: 22px;
}

.login-alert-box {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 16px;
}

.login-alert-box.alert-danger {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ffcdd2;
}

.login-alert-box.alert-success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

.auth-form-group {
  margin-bottom: 18px;
}

.auth-input-label {
  font-size: 13.5px;
  font-weight: 700;
  color: #222222;
  margin-bottom: 8px;
  display: block;
}

.auth-input-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.auth-input-prefix {
  position: absolute;
  left: 14px;
  font-size: 14px;
  font-weight: 700;
  color: #333333;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
}

.auth-form-input {
  width: 100%;
  height: 48px;
  border: 1.5px solid #e2e8e5;
  border-radius: 8px;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 600;
  color: #111111;
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.auth-form-input.has-prefix {
  padding-left: 38px;
}

.auth-form-input:focus {
  border-color: var(--primary-maroon);
  box-shadow: 0 0 0 3px rgba(0, 171, 142, 0.12);
}

.auth-input-container .auth-form-input {
  padding-right: 25px !important;
}

.btn-toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 16px;
  color: #777777;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, transform 0.2s ease;
  z-index: 5;
}

.btn-toggle-password:hover {
  color: #00876f;
  transform: translateY(-50%) scale(1.1);
}

.auth-forgot-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-maroon);
  text-decoration: none;
  transition: color 0.2s;
}

.auth-forgot-link:hover {
  color: var(--primary-maroon-dark);
  text-decoration: underline;
}

.auth-options-row {
  margin-bottom: 18px;
}

.btn-auth-primary {
  width: 100%;
  height: 48px;
  background: var(--primary-maroon);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(0, 171, 142, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-auth-primary:hover {
  background: var(--primary-maroon-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 171, 142, 0.35);
  color: #ffffff;
}

.btn-auth-secondary {
  width: 100%;
  height: 44px;
  background: #f4f8f6;
  border: 1.5px solid #d2e4de;
  color: var(--primary-maroon-dark);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-auth-secondary:hover {
  background: #e6f7f4;
  border-color: var(--primary-maroon);
  color: var(--primary-maroon-dark);
}

.auth-divider-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
}

.auth-divider-line {
  flex: 1;
  height: 1px;
  background: #eef2f0;
}

.auth-divider-text {
  font-size: 11px;
  font-weight: 700;
  color: #999999;
  text-transform: uppercase;
}

.btn-resend-otp {
  background: none;
  border: none;
  color: var(--primary-maroon);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}

.letter-spacing-wide {
  letter-spacing: 6px;
  font-size: 18px;
  font-weight: 800;
}

.auth-legal-footer {
  text-align: center;
  margin-top: 20px;
}

.legal-text {
  font-size: 12px;
  color: #777777;
  line-height: 1.5;
  margin: 0;
}

.legal-link {
  color: #d32f2f;
  font-weight: 600;
  text-decoration: underline;
}

.legal-link:hover {
  color: #b71c1c;
}

.auth-signup-footer {
  text-align: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #f0f4f2;
  font-size: 13px;
  color: #555555;
}

.signup-link {
  color: var(--primary-maroon);
  font-weight: 800;
  margin-left: 6px;
  text-decoration: underline;
}

.signup-link:hover {
  color: var(--primary-maroon-dark);
}

.forgot-modal-box {
  border-radius: 14px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.btn-account-login-sm {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--primary-maroon);
  text-decoration: underline;
}

.btn-account-login-sm:hover {
  color: var(--primary-maroon-dark);
}

@media (max-width: 576px) {
  .login-page-main {
    padding: 10px 10px 40px;
  }

  .login-card-wrapper {
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  }

  .login-banner-header {
    height: 200px;
  }

  .login-form-body {
    padding: 20px 18px;
  }
}


/* ==========================================
   27. LUXURY REGISTER / SIGNUP PAGE STYLES (MATCHING USER SCREENSHOT)
   ========================================== */
.register-page-body {
  background-color: #fbf9f6;
}

.register-page-main {
  padding: 35px 0 60px;
}

.register-card-layout-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 26px;
  margin-bottom: 28px;
}

/* Left Form Box */
.register-form-box {
  background: #ffffff;
  border: 1px solid #eef2f0;
  border-radius: 16px;
  padding: 36px 36px 30px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
}

.register-header-wrap {
  text-align: center;
  margin-bottom: 24px;
}

.register-title {
  font-size: 24px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.register-subtitle {
  font-size: 13px;
  color: #777777;
  margin: 0;
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.required-star {
  color: #e53935;
  font-weight: 700;
}

.country-prefix-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  position: absolute;
  left: 14px;
  font-size: 13.5px;
  font-weight: 700;
  color: #333333;
  cursor: pointer;
  z-index: 2;
  border-right: 1px solid #e0e6e3;
  padding-right: 8px;
  height: 24px;
}

.prefix-chevron {
  font-size: 9px;
  color: #777777;
}

.auth-form-input.has-country-prefix {
  padding-left: 72px;
}

.auth-form-input.has-toggle-eye {
  padding-right: 42px;
}

.password-hint-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #eaf7f4;
  border: 1px solid #bce8de;
  border-radius: 8px;
  padding: 10px 14px;
  color: #007662;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 18px;
}

.hint-shield-icon {
  font-size: 15px;
  color: #00ab8e;
  flex-shrink: 0;
}

.register-terms-row {
  margin-bottom: 20px;
}

.terms-link {
  color: #007662;
  font-weight: 700;
  text-decoration: underline;
}

.terms-link:hover {
  color: #004d40;
}

.btn-create-account {
  width: 100%;
  height: 50px;
  background: #006654;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(0, 102, 84, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-create-account:hover {
  background: #004d40;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 84, 0.35);
  color: #ffffff;
}

.btn-google-signup {
  width: 100%;
  height: 48px;
  background: #ffffff;
  border: 1.5px solid #dce2df;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #333333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.btn-google-signup:hover {
  background: #f8faf9;
  border-color: #b0bec5;
}

.register-footer-login {
  text-align: center;
  margin-top: 20px;
  font-size: 13.5px;
  color: #666666;
}

.login-redirect-link {
  color: #00ab8e;
  font-weight: 800;
  margin-left: 6px;
  text-decoration: none;
}

.login-redirect-link:hover {
  text-decoration: underline;
}

/* Right Benefits Box (Clean Left Aligned) */
.register-benefits-box {
  background: linear-gradient(180deg, #eef7f5 0%, #e0f2ee 100%);
  border-radius: 16px;
  padding: 36px 36px 0;
  border: 1px solid #d4ebe5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
  overflow: hidden;
  position: relative;
}

.benefits-avatar-wrap {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 14px;
}

.benefits-avatar-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #d0eee7;
  color: #00876f;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #bde6dc;
}

.benefits-header-wrap {
  text-align: left;
  width: 100%;
  margin-bottom: 24px;
}

.benefits-title {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 4px;
  text-align: left;
}

.benefits-subtitle {
  font-size: 13px;
  color: #555555;
  margin: 0;
  text-align: left;
}

.benefits-features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 25px;
  width: 100%;
}

.benefit-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  gap: 16px;
  width: 100%;
}

.benefit-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #d0eee7;
  color: #00876f;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-text-wrap {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.benefit-item-title {
  font-size: 14px;
  font-weight: 800;
  color: #222222;
  margin-bottom: 2px;
  text-align: left;
}

.benefit-item-desc {
  font-size: 12px;
  color: #666666;
  margin: 0;
  text-align: left;
}

.benefits-bottom-photo-wrap {
  width: calc(100% + 72px);
  margin-left: -36px;
  margin-right: -36px;
  margin-top: auto;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.benefits-models-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.register-alert-box {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 16px;
}

.register-alert-box.alert-danger {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ffcdd2;
}

.register-alert-box.alert-success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

/* Responsive Register Breakpoints */
@media (max-width: 991.98px) {
  .register-card-layout-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .register-page-main {
    padding: 20px 0 40px;
  }

  .form-row-2col {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .register-form-box {
    padding: 24px 18px;
    border-radius: 14px;
  }

  .register-title {
    font-size: 20px;
  }

  .register-benefits-box {
    padding: 26px 18px 0;
    border-radius: 14px;
  }

  .benefits-bottom-photo-wrap {
    width: calc(100% + 36px);
    margin-left: -18px;
    margin-right: -18px;
  }
}


/* ==========================================
   28. CUSTOMER ACCOUNT DASHBOARD & SIDEBAR STYLES (MATCHING USER SCREENSHOT)
   ========================================== */
.account-page-body {
  background-color: #fbf9f6;
}

.account-dashboard-main {
  padding: 32px 0 65px;
}

.account-layout-grid {
  display: grid;
  grid-template-columns: 275px 1fr;
  gap: 26px;
  align-items: start;
}

/* Reusable Sidebar Navigation Card */
.account-sidebar-card {
  background: #ffffff;
  border: 1px solid #eef2f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 90px;
}

.account-profile-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 20px;
  border-bottom: 1px solid #f0f4f2;
  background: #ffffff;
}

.account-profile-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #00876f;
  color: #ffffff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.account-profile-info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.profile-name {
  font-size: 15px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 2px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.profile-email {
  font-size: 11.5px;
  color: #777777;
  margin-bottom: 2px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.profile-phone {
  font-size: 12px;
  color: #444444;
  font-weight: 600;
}

.account-sidebar-nav {
  padding: 10px 0;
}

.account-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.account-nav-item {
  margin: 2px 10px;
}

.account-nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 16px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: #444444;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
}

.account-nav-link:hover {
  background: #f4faf8;
  color: #00876f;
}

.account-nav-link.active {
  background: #e6f7f4;
  color: #007662;
  font-weight: 800;
}

.account-nav-link.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 4px;
  background: #00ab8e;
  border-radius: 0 4px 4px 0;
}

.nav-item-icon {
  font-size: 15px;
  width: 20px;
  text-align: center;
  color: #666666;
  transition: color 0.2s ease;
}

.account-nav-link.active .nav-item-icon {
  color: #00876f;
}

.account-nav-divider {
  height: 1px;
  background: #f0f4f2;
  margin: 8px 16px;
}

.logout-link {
  color: #d32f2f;
}

.logout-link:hover {
  background: #ffebee;
  color: #c62828;
}

.logout-link .nav-item-icon {
  color: #d32f2f;
}

/* Right Content Column */
.account-welcome-banner {
  margin-bottom: 22px;
}

.account-welcome-title {
  font-size: 24px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.account-welcome-sub {
  font-size: 13.5px;
  color: #666666;
  margin: 0;
}

/* 4 Quick Stats Grid (5 when Wallet is enabled — .stats-grid-5) */
.account-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.account-stats-grid.stats-grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.stat-summary-card {
  background: #ffffff;
  border: 1px solid #eef2f0;
  border-radius: 14px;
  padding: 18px 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-summary-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.stat-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.stat-icon-teal {
  background: #e6f7f4;
  color: #00876f;
  border: 1px solid #bce8de;
}

.stat-icon-pink {
  background: #fce4ec;
  color: #d81b60;
  border: 1px solid #f8bbd0;
}

.stat-icon-orange {
  background: #fff3e0;
  color: #ef6c00;
  border: 1px solid #ffe0b2;
}

.stat-icon-purple {
  background: #f3e5f5;
  color: #7b1fa2;
  border: 1px solid #e1bee7;
}

.stat-icon-green {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

.stat-content-wrap {
  display: flex;
  flex-direction: column;
}

.stat-count-num {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.1;
  margin-bottom: 2px;
}

.stat-label-text {
  font-size: 12.5px;
  font-weight: 600;
  color: #555555;
  margin-bottom: 5px;
}

.stat-action-link {
  font-size: 11.5px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.stat-action-link:hover {
  text-decoration: underline;
}

.link-teal { color: #007662; }
.link-pink { color: #d81b60; }
.link-orange { color: #ef6c00; }
.link-purple { color: #7b1fa2; }
.link-green { color: #2e7d32; }

/* 2 Cards Bottom Grid */
.account-cards-2col-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 22px;
}

.dashboard-widget-card {
  background: #ffffff;
  border: 1px solid #eef2f0;
  border-radius: 16px;
  padding: 24px 22px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.widget-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f2f5f4;
}

.widget-card-title {
  font-size: 16px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
}

.widget-header-link {
  font-size: 12.5px;
  font-weight: 700;
  color: #00876f;
  text-decoration: none;
}

.widget-header-link:hover {
  text-decoration: underline;
}

/* Recent Orders List */
.widget-orders-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.widget-order-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: #fbfdfc;
  border: 1px solid #edf4f1;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.widget-order-item:hover {
  background: #f4faf8;
  border-color: #d2ebe4;
}

.order-item-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.order-thumb-link {
  width: 54px;
  height: 68px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f0ede8;
  display: block;
}

.order-product-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.order-details-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  overflow: hidden;
}

.order-product-title {
  font-size: 13px;
  font-weight: 700;
  color: #222222;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.order-product-title:hover {
  color: #00876f;
}

.order-id-date {
  font-size: 11.5px;
  color: #777777;
}

.order-status-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  width: fit-content;
  margin-top: 2px;
}

.status-delivered {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

.status-processing {
  background: #fff3e0;
  color: #e65100;
  border: 1px solid #ffe0b2;
}

.order-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  margin-left: 14px;
  flex-shrink: 0;
}

.order-price-wrap {
  text-align: right;
}

.order-item-price {
  font-size: 13.5px;
  font-weight: 800;
  color: #111111;
  display: block;
}

.order-qty-label {
  font-size: 11px;
  color: #888888;
}

.btn-widget-details {
  padding: 4px 10px;
  border: 1.5px solid #00ab8e;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: #007662;
  text-decoration: none;
  transition: all 0.2s ease;
  background: #ffffff;
}

.btn-widget-details:hover {
  background: #00ab8e;
  color: #ffffff;
}

/* Account Info Widget */
.widget-info-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.info-row-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.info-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #eef8f5;
  color: #00876f;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid #d8f0ea;
}

.info-text-wrap {
  display: flex;
  flex-direction: column;
}

.info-val-text {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
}

.info-label-muted {
  font-size: 11.5px;
  color: #777777;
}

.address-text {
  line-height: 1.4;
  margin-top: 2px;
}

/* Responsive Breakpoints for Account Dashboard */
@media (max-width: 991.98px) {
  .account-layout-grid {
    grid-template-columns: 1fr;
  }

  .account-sidebar-card {
    position: static;
    margin-bottom: 20px;
  }

  .account-stats-grid,
  .account-stats-grid.stats-grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }

  .account-cards-2col-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .account-dashboard-main {
    padding: 20px 0 45px;
  }

  .account-stats-grid,
  .account-stats-grid.stats-grid-5 {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .stat-summary-card {
    padding: 12px 10px;
    gap: 8px;
  }

  .stat-icon-box {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }

  .stat-count-num {
    font-size: 18px;
  }

  .widget-order-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .order-item-right {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-left: 0;
    border-top: 1px dashed #e6ece9;
    padding-top: 8px;
  }
}


/* ==========================================
   29. ACCOUNT INFORMATION & PROFILE PAGE STYLES
   ========================================== */
.badge-profile-status {
  font-size: 11.5px;
  font-weight: 700;
  color: #2e7d32;
  background: #e8f5e9;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid #c8e6c9;
  display: inline-flex;
  align-items: center;
}

.profile-avatar-upload-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 18px;
  background: #fbfdfc;
  border: 1px solid #eef5f2;
  border-radius: 12px;
}

.profile-avatar-large {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: visible;
  flex-shrink: 0;
}

.avatar-large-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2.5px solid #00ab8e;
}

.avatar-large-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-maroon), #8a2b40);
}

.avatar-large-fallback span {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.avatar-upload-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #00876f;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11.5px;
  cursor: pointer;
  border: 2px solid #ffffff;
  transition: transform 0.2s, background-color 0.2s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.avatar-upload-badge:hover {
  transform: scale(1.1);
  background: #006654;
}

.profile-avatar-text {
  display: flex;
  flex-direction: column;
}

.avatar-user-name {
  font-size: 16px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 2px;
}

.avatar-user-meta {
  font-size: 12px;
  color: #777777;
  margin-bottom: 8px;
}

.avatar-actions-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-avatar-action {
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 700;
  border: 1px solid #00ab8e;
  background: #ffffff;
  color: #007662;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-avatar-action:hover {
  background: #00ab8e;
  color: #ffffff;
}

.btn-avatar-remove {
  border-color: #e0e0e0;
  color: #777777;
}

.btn-avatar-remove:hover {
  background: #ffebee;
  color: #c62828;
  border-color: #ffcdd2;
}

.label-badge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.field-verified-tag {
  font-size: 10.5px;
  font-weight: 700;
  color: #2e7d32;
  background: #e8f5e9;
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  border: 1px solid #c8e6c9;
}

.gender-radio-group {
  display: flex;
  gap: 10px;
  margin-top: 2px;
}

.gender-pill-option input {
  display: none;
}

.gender-pill-btn {
  display: inline-block;
  padding: 9px 18px;
  border: 1.2px solid #d5dad7;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #444444;
  cursor: pointer;
  transition: all 0.2s;
  background: #ffffff;
  user-select: none;
}

.gender-pill-option input:checked + .gender-pill-btn {
  background: #e6f7f4;
  border-color: #00ab8e;
  color: #007662;
  font-weight: 800;
}

.profile-form-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid #f0f4f2;
}

.btn-save-profile {
  padding: 11px 24px;
  background: #006654;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 15px rgba(0, 102, 84, 0.25);
  display: flex;
  align-items: center;
}

.btn-save-profile:hover {
  background: #004d40;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 84, 0.35);
  color: #ffffff;
}

.btn-cancel-profile {
  padding: 11px 20px;
  background: #ffffff;
  border: 1px solid #d5dad7;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: #666666;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-cancel-profile:hover {
  background: #f5f5f5;
  color: #333333;
}

/* Addresses Preview */
.profile-addresses-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.profile-address-box {
  background: #fbfdfc;
  border: 1px solid #eef5f2;
  border-radius: 12px;
  padding: 18px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.address-box-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.address-type-badge {
  font-size: 10.5px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.address-type-badge.shipping-badge {
  background: #e6f7f4;
  color: #007662;
  border: 1px solid #bce8de;
}

.address-type-badge.billing-badge {
  background: #fff3e0;
  color: #e65100;
  border: 1px solid #ffe0b2;
}

.address-edit-icon {
  color: #777777;
  font-size: 14px;
  transition: color 0.2s;
}

.address-edit-icon:hover {
  color: #00ab8e;
}

.address-recipient-name {
  font-size: 14px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.address-full-text {
  font-size: 12.5px;
  color: #555555;
  line-height: 1.5;
  margin-bottom: 8px;
}

.address-contact-phone {
  font-size: 12px;
  color: #666666;
}

/* Security & Preferences */
.security-info-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.security-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.security-divider {
  height: 1px;
  background: #f0f4f2;
}

.btn-sm-action-link {
  font-size: 12px;
  font-weight: 700;
  color: #00876f;
  text-decoration: underline;
}

.btn-sm-action-link:hover {
  color: #004d40;
}

.custom-switch-input:checked {
  background-color: #00ab8e !important;
  border-color: #00ab8e !important;
}

.preferences-toggles-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pref-toggle-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.pref-text {
  display: flex;
  flex-direction: column;
}

.pref-text strong {
  font-size: 13px;
  color: #222222;
  margin-bottom: 2px;
}

.pref-text span {
  font-size: 11.5px;
  color: #777777;
}

.profile-alert-box {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .profile-addresses-grid {
    grid-template-columns: 1fr;
  }

  .profile-avatar-upload-wrap {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .avatar-actions-row {
    justify-content: center;
  }
}


/* ==========================================
   30. MY ORDERS PAGE STYLES (MATCHING USER SCREENSHOT)
   ========================================== */
.badge-order-count {
  font-size: 12px;
  font-weight: 700;
  color: #007662;
  background: #e6f7f4;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid #bce8de;
  margin-left: 8px;
  vertical-align: middle;
}

.btn-orders-help {
  font-size: 12.5px;
  font-weight: 700;
  color: #007662;
  background: #f0faf7;
  border: 1px solid #ccebe3;
  border-radius: 20px;
  padding: 6px 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease;
  box-shadow: none;
}

.btn-orders-help:hover {
  background: #006654;
  color: #ffffff;
  border-color: #006654;
  box-shadow: 0 4px 12px rgba(0, 102, 84, 0.2);
}

/* Orders Toolbar */
.orders-toolbar-card {
  background: #ffffff;
  border: 1px solid #eef2f0;
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.orders-status-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f2f5f4;
}

.order-tab-btn {
  padding: 6px 16px;
  border-radius: 30px;
  border: 1.2px solid #d5dad7;
  background: #ffffff;
  font-size: 12.5px;
  font-weight: 700;
  color: #555555;
  cursor: pointer;
  transition: all 0.2s;
}

.order-tab-btn:hover {
  border-color: #00ab8e;
  color: #00876f;
}

.order-tab-btn.active {
  background: #006654;
  color: #ffffff;
  border-color: #006654;
  box-shadow: 0 3px 10px rgba(0, 102, 84, 0.25);
}

.orders-search-filter-row {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.orders-search-box {
  position: relative;
  flex: 1;
}

.orders-search-box .search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #888888;
  font-size: 14px;
}

.orders-search-input {
  width: 100%;
  height: 42px;
  padding: 8px 14px 8px 38px;
  border: 1.2px solid #d5dad7;
  border-radius: 8px;
  font-size: 13px;
  color: #222222;
  outline: none;
  transition: border-color 0.2s;
}

.orders-search-input:focus {
  border-color: #00ab8e;
  box-shadow: 0 0 0 3px rgba(0, 171, 142, 0.1);
}

.orders-time-filter {
  position: relative;
  width: 170px;
  flex-shrink: 0;
}

.orders-select-filter {
  width: 100%;
  height: 42px;
  padding: 8px 30px 8px 14px;
  border: 1.2px solid #d5dad7;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #333333;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background: #ffffff;
}

.orders-select-filter:focus {
  border-color: #00ab8e;
}

.select-chevron {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  color: #777777;
  pointer-events: none;
}

/* Order Main Cards */
.orders-cards-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.order-main-card {
  background: #ffffff;
  border: 1px solid #eef2f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.order-main-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.order-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 22px;
  background: #fbf9f6;
  border-bottom: 1px solid #edf2ef;
  flex-wrap: wrap;
  gap: 14px;
}

.order-meta-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.order-meta-col {
  display: flex;
  flex-direction: column;
}

.meta-label {
  font-size: 10.5px;
  font-weight: 700;
  color: #777777;
  letter-spacing: 0.5px;
}

.meta-val {
  font-size: 13px;
  font-weight: 700;
  color: #222222;
  margin-top: 1px;
}

.order-meta-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.order-id-code {
  font-size: 12.5px;
  font-weight: 800;
  color: #555555;
}

.order-status-pill {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
}

.order-status-pill.status-delivered {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

.order-status-pill.status-shipped {
  background: #e0f2fe;
  color: #0284c7;
  border: 1px solid #bae6fd;
}

.order-status-pill.status-processing {
  background: #fff3e0;
  color: #ea580c;
  border: 1px solid #fed7aa;
}

.order-status-pill.status-cancelled {
  background: #ffebee;
  color: #dc2626;
  border: 1px solid #fecaca;
}

.order-card-body {
  padding: 20px 22px;
}

.order-product-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.order-item-thumb-box {
  width: 68px;
  height: 86px;
  border-radius: 8px;
  overflow: hidden;
  background: #f0ede8;
  flex-shrink: 0;
  display: block;
}

.order-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.order-item-info {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
}

.order-item-name {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
  margin-bottom: 4px;
}

.order-item-name:hover {
  color: #00876f;
}

.order-item-variant {
  font-size: 12px;
  color: #666666;
  margin-bottom: 6px;
}

.order-item-price-tag {
  font-size: 15px;
  font-weight: 800;
  color: #111111;
}

.order-item-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-order-action {
  padding: 6px 14px;
  border: 1.2px solid #d5dad7;
  border-radius: 6px;
  background: #ffffff;
  font-size: 12px;
  font-weight: 700;
  color: #333333;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s;
}

.btn-order-action:hover {
  border-color: #00ab8e;
  color: #007662;
  background: #f4faf8;
}

.btn-track-highlight {
  background: #006654;
  color: #ffffff;
  border-color: #006654;
}

.btn-track-highlight:hover {
  background: #004d40;
  color: #ffffff;
}

.order-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 22px;
  background: #fafcfb;
  border-top: 1px solid #edf2ef;
  font-size: 12px;
  color: #666666;
  flex-wrap: wrap;
  gap: 8px;
}

.order-details-link {
  color: #00876f;
  font-weight: 700;
  text-decoration: none;
}

.order-details-link:hover {
  text-decoration: underline;
}

/* Tracking Modal Styles */
.track-modal-box {
  border-radius: 16px;
  border: none;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.tracking-summary-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  background: #fbf9f6;
  border: 1px solid #edf2ef;
  border-radius: 10px;
  padding: 14px 16px;
}

.track-summary-item {
  display: flex;
  flex-direction: column;
}

.track-summary-item .label {
  font-size: 11px;
  color: #777777;
  font-weight: 600;
}

.track-summary-item .val {
  font-size: 12.5px;
  color: #222222;
  font-weight: 700;
}

.btn-copy-sm {
  background: none;
  border: none;
  color: #00ab8e;
  cursor: pointer;
  padding: 0;
}

.tracking-timeline-wrap {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 25px;
  margin-bottom: 25px;
}

.tracking-timeline-wrap::before {
  content: '';
  position: absolute;
  top: 19px;
  left: 45px;
  right: 45px;
  height: 3px;
  background: #00ab8e;
  z-index: 1;
}

.timeline-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.step-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #d5dad7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #888888;
  margin-bottom: 10px;
}

.timeline-step.step-done .step-icon-circle {
  background: #00ab8e;
  border-color: #00ab8e;
  color: #ffffff;
}

.timeline-step.step-current .step-icon-circle {
  box-shadow: 0 0 0 4px rgba(0, 171, 142, 0.2);
}

.step-title {
  font-size: 13px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 2px;
}

.step-date {
  font-size: 11px;
  font-weight: 700;
  color: #00876f;
  margin-bottom: 2px;
}

.step-desc {
  font-size: 10.5px;
  color: #777777;
  max-width: 140px;
}

.tracking-address-box {
  background: #f4faf8;
  border: 1px solid #d0ebe4;
  border-radius: 10px;
  padding: 14px 16px;
}

/* Pagination */
.orders-pagination-wrap {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.orders-pagination {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 8px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.orders-pagination .page-item {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  display: inline-block !important;
}

.orders-pagination .page-link {
  min-width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 14px !important;
  border: 1.2px solid #d5dad7 !important;
  border-radius: 8px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #444444 !important;
  text-decoration: none !important;
  background: #ffffff !important;
  transition: all 0.2s ease !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  box-shadow: none !important;
}

.orders-pagination .page-link:hover {
  border-color: #00ab8e !important;
  color: #007662 !important;
  background: #f4faf8 !important;
}

.orders-pagination .page-item.active .page-link {
  background: #006654 !important;
  color: #ffffff !important;
  border-color: #006654 !important;
  box-shadow: 0 3px 10px rgba(0, 102, 84, 0.25) !important;
}

.orders-pagination .page-item.disabled .page-link {
  color: #b0b0b0 !important;
  background: #fcfcfc !important;
  border-color: #e5eae7 !important;
  pointer-events: none !important;
  cursor: not-allowed !important;
}

@media (max-width: 768px) {
  .tracking-summary-card {
    grid-template-columns: repeat(2, 1fr);
  }

  .tracking-timeline-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .tracking-timeline-wrap::before {
    top: 20px;
    bottom: 20px;
    left: 18px;
    width: 3px;
    height: auto;
    right: auto;
  }

  .timeline-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 14px;
  }

  .timeline-step .step-icon-circle {
    margin-bottom: 0;
  }

  .step-desc {
    max-width: 100%;
  }

  .order-meta-left {
    gap: 14px;
  }

  .orders-search-filter-row {
    flex-direction: column;
  }

  .orders-time-filter {
    width: 100%;
  }
}

/* Clear Search Button */
.btn-clear-search {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #888888;
  cursor: pointer;
  font-size: 13px;
  padding: 4px;
  transition: color 0.2s;
}

.btn-clear-search:hover {
  color: #1a1a1a;
}

/* Orders Empty State */
.orders-empty-state-box {
  text-align: center;
  padding: 50px 20px;
  background: #ffffff;
  border: 1px solid #eef2f0;
  border-radius: 16px;
  margin: 20px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.empty-state-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #f4faf8;
  color: #00ab8e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 14px;
}

.empty-state-title {
  font-size: 18px;
  font-weight: 800;
  color: #222222;
  margin-bottom: 6px;
}

.empty-state-desc {
  font-size: 13px;
  color: #777777;
  max-width: 420px;
  margin: 0 auto 20px;
  line-height: 1.5;
}

/* ==========================================
   31. WRITE PRODUCT REVIEW MODAL STYLES
   ========================================== */
.review-modal-box {
  border-radius: 16px;
  border: none;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.review-modal-header {
  background: #fbf9f6;
  border-bottom: 1px solid #edf2ef;
  padding: 16px 24px;
}

.review-product-preview-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fbf9f6;
  border: 1px solid #edf2ef;
  border-radius: 12px;
  padding: 12px 16px;
}

.review-prod-thumb {
  width: 56px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  background: #f0ede8;
  flex-shrink: 0;
}

.review-prod-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.review-prod-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 2px;
}

.review-verified-badge {
  font-size: 11px;
  font-weight: 700;
  color: #2e7d32;
  display: inline-flex;
  align-items: center;
}

.interactive-star-rating {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 30px;
  color: #d8dedb;
  cursor: pointer;
  user-select: none;
}

.star-rate-btn {
  transition: color 0.15s ease, transform 0.15s ease;
}

.star-rate-btn.active,
.star-rate-btn.hover {
  color: #ffb800 !important;
}

.star-rate-btn:hover {
  transform: scale(1.2);
}

.star-rating-feedback-text {
  font-size: 13px;
  color: #007662;
  font-weight: 800;
}

.review-textarea {
  resize: vertical;
  min-height: 95px;
}

.review-upload-dropzone {
  border: 1.5px dashed #00ab8e;
  background: #f4faf8;
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  transition: background 0.2s, border-color 0.2s;
}

.review-upload-dropzone:hover {
  background: #e6f7f4;
  border-color: #006654;
}

.review-upload-dropzone .upload-icon {
  font-size: 22px;
  color: #00ab8e;
  margin-bottom: 2px;
}

.review-upload-dropzone .upload-text {
  font-size: 12.5px;
  font-weight: 700;
  color: #007662;
}

.review-photos-preview-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.review-photo-thumb-card {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  border: 1px solid #d5dad7;
}

.review-photo-thumb-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-recommend-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid #f0f4f2;
  flex-wrap: wrap;
  gap: 10px;
}

.recommend-btn-group {
  display: flex;
  gap: 8px;
}

.recommend-pill input {
  display: none;
}

.recommend-pill .pill-label {
  display: inline-block;
  padding: 6px 14px;
  border: 1.2px solid #d5dad7;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: #555555;
  cursor: pointer;
  transition: all 0.2s;
  background: #ffffff;
}

.recommend-pill input:checked + .pill-label {
  background: #006654;
  color: #ffffff;
  border-color: #006654;
}

.review-modal-footer {
  background: #fafcfb;
  border-top: 1px solid #edf2ef;
  padding: 14px 24px;
}


/* ==========================================
   32. LUXURY CANCEL ORDER, REFUND RECEIPT & TOASTS
   ========================================== */

/* 1. Cancel Order Modal */
.cancel-modal-box {
  border-radius: 16px;
  border: none;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
}

.cancel-modal-header {
  padding: 24px 24px 10px;
  background: #fff8f8;
  border-bottom: 1px solid #fee2e2;
}

.cancel-warning-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fee2e2;
  color: #dc2626;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 10px;
  box-shadow: 0 0 0 6px rgba(220, 38, 38, 0.08);
}

.cancel-modal-title {
  font-size: 18px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 3px;
}

.cancel-modal-subtitle {
  font-size: 12.5px;
  color: #666666;
  max-width: 380px;
  margin: 0 auto;
}

.cancel-item-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fbf9f6;
  border: 1px solid #edf2ef;
  border-radius: 10px;
  padding: 12px 14px;
}

.cancel-item-thumb {
  width: 48px;
  height: 60px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.cancel-item-info {
  flex: 1;
}

.cancel-item-name {
  font-size: 13.5px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 2px;
}

.cancel-refund-notice {
  display: flex;
  gap: 12px;
  background: #f0faf7;
  border: 1px solid #ccebe3;
  border-radius: 10px;
  padding: 12px 14px;
  align-items: flex-start;
}

.refund-notice-icon {
  color: #00876f;
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.refund-notice-text strong {
  font-size: 12.5px;
  color: #006654;
  display: block;
  margin-bottom: 2px;
}

.refund-notice-text p {
  font-size: 11.5px;
  color: #555555;
  line-height: 1.4;
}

.cancel-modal-footer {
  background: #fafcfb;
  border-top: 1px solid #edf2ef;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.btn-cancel-back {
  background: #ffffff;
  border: 1.2px solid #d5dad7;
  color: #444444;
  font-size: 13px;
  font-weight: 700;
  border-radius: 8px;
  padding: 8px 16px;
  transition: all 0.2s;
}

.btn-cancel-back:hover {
  background: #f0f4f2;
  color: #1a1a1a;
}

.btn-confirm-danger-cancel {
  background: #dc2626;
  border: 1px solid #dc2626;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  border-radius: 8px;
  padding: 8px 20px;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.25);
}

.btn-confirm-danger-cancel:hover {
  background: #b91c1c;
  border-color: #b91c1c;
  color: #ffffff;
  transform: translateY(-1px);
}

/* 2. Refund Receipt Modal */
.refund-receipt-box {
  border-radius: 16px;
  border: none;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.refund-receipt-header {
  padding: 24px 24px 10px;
  background: #f4faf8;
  border-bottom: 1px solid #d0ebe4;
}

.refund-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e6f7f4;
  color: #00876f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 8px;
  box-shadow: 0 0 0 6px rgba(0, 171, 142, 0.1);
}

.refund-amount-banner {
  background: #fbf9f6;
  border: 1px solid #edf2ef;
  border-radius: 12px;
  padding: 16px;
}

.amount-title {
  font-size: 11px;
  font-weight: 800;
  color: #777777;
  letter-spacing: 0.5px;
}

.amount-number {
  font-size: 28px;
  font-weight: 900;
  color: #006654;
  margin: 4px 0 6px;
}

.badge-refund-tag {
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
  border: 1px solid #c8e6c9;
}

.refund-details-table-wrap {
  background: #ffffff;
  border: 1px solid #edf2ef;
  border-radius: 10px;
  overflow: hidden;
}

.refund-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid #f2f5f4;
  font-size: 12.5px;
}

.refund-detail-row:last-child {
  border-bottom: none;
}

.refund-detail-row .lbl {
  color: #777777;
  font-weight: 600;
}

.refund-detail-row .val {
  color: #1a1a1a;
  font-weight: 700;
  text-align: right;
}

.refund-support-box {
  display: flex;
  align-items: flex-start;
  background: #fbfdfc;
  border: 1px solid #eef5f2;
  border-radius: 8px;
  padding: 10px 12px;
}

.refund-receipt-footer {
  background: #fafcfb;
  border-top: 1px solid #edf2ef;
  padding: 14px 20px;
}

/* 3. Support Modal */
.support-modal-box {
  border-radius: 16px;
  border: none;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.support-modal-header {
  background: #fbf9f6;
  border-bottom: 1px solid #edf2ef;
  padding: 16px 20px;
}

.support-headset-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e6f7f4;
  color: #00876f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.support-channels-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.support-channel-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border: 1.2px solid #eef2f0;
  border-radius: 12px;
  text-decoration: none;
  color: #1a1a1a;
  transition: all 0.2s;
  background: #ffffff;
}

.support-channel-card:hover {
  border-color: #00ab8e;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  color: #006654;
}

.support-channel-card .channel-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
}

.whatsapp-card .channel-icon-wrap {
  background: #e8f5e9;
  color: #25d366;
}

.call-card .channel-icon-wrap {
  background: #e0f2fe;
  color: #0284c7;
}

.email-card .channel-icon-wrap {
  background: #fdf4ff;
  color: #c026d3;
}

.support-channel-card .channel-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.support-channel-card .channel-info strong {
  font-size: 13.5px;
  color: #1a1a1a;
}

.support-channel-card .channel-info span {
  font-size: 11.5px;
  color: #777777;
}

.support-channel-card .arrow-icon {
  font-size: 12px;
  color: #aaaaaa;
}

.support-faqs-wrap {
  background: #fbfdfc;
  border: 1px solid #edf2ef;
  border-radius: 10px;
  padding: 14px 16px;
}

.support-faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.support-faq-list a {
  font-size: 12.5px;
  color: #555555;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.support-faq-list a:hover {
  color: #00876f;
  text-decoration: underline;
}

.support-modal-footer {
  background: #fafcfb;
  border-top: 1px solid #edf2ef;
  padding: 12px 20px;
}

/* 4. Luxury Floating Toast Container */
.account-toast-container {
  position: fixed;
  top: 25px;
  right: 25px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 380px;
  pointer-events: none;
}

.account-toast {
  pointer-events: auto;
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid #eef2f0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #222222;
  animation: toastSlideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transition: opacity 0.3s, transform 0.3s;
}

.account-toast.toast-success {
  border-left: 4px solid #00ab8e;
}

.account-toast.toast-danger {
  border-left: 4px solid #dc2626;
}

.account-toast.toast-info {
  border-left: 4px solid #0284c7;
}

.account-toast .toast-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.account-toast.toast-success .toast-icon { color: #00ab8e; }
.account-toast.toast-danger .toast-icon { color: #dc2626; }
.account-toast.toast-info .toast-icon { color: #0284c7; }

.account-toast .toast-text {
  flex: 1;
  line-height: 1.4;
}

.account-toast .toast-close-btn {
  background: none;
  border: none;
  color: #999999;
  cursor: pointer;
  padding: 0;
  font-size: 14px;
}

.account-toast .toast-close-btn:hover {
  color: #1a1a1a;
}

@keyframes toastSlideIn {
  0% {
    opacity: 0;
    transform: translateX(50px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* ==========================================
   33. LUXURY RETURN & EXCHANGE MODAL STYLES
   ========================================== */
.return-modal-box {
  border-radius: 16px;
  border: none;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.return-modal-header {
  background: #fbf9f6;
  border-bottom: 1px solid #edf2ef;
  padding: 18px 22px;
}

.return-item-preview-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #faf7f2;
  border: 1px solid #ede4d6;
  border-radius: 12px;
  padding: 12px 14px;
}

.return-prod-thumb {
  width: 54px;
  height: 68px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.return-prod-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.return-prod-info {
  flex: 1;
}

.return-prod-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 2px;
  line-height: 1.35;
}

.return-section-label {
  font-size: 13px;
  font-weight: 700;
  color: #222222;
  margin-bottom: 10px;
  display: block;
}

.return-type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (max-width: 576px) {
  .return-type-grid {
    grid-template-columns: 1fr;
  }
}

.return-type-card {
  border: 1.5px solid #e2e8e5;
  border-radius: 12px;
  padding: 14px;
  cursor: pointer;
  background: #ffffff;
  transition: all 0.25s ease;
  position: relative;
  margin: 0;
}

.return-type-card:hover {
  border-color: #00ab8e;
}

.return-type-card.active {
  border-color: #00876f;
  background: #f2fbf8;
  box-shadow: 0 4px 14px rgba(0, 135, 111, 0.12);
}

.return-type-input {
  display: none;
}

.type-card-body {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.type-card-body .type-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #e8f5f2;
  color: #00876f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.type-card-body .type-text {
  flex: 1;
}

.type-card-body .type-text strong {
  display: block;
  font-size: 13px;
  color: #1a1a1a;
  margin-bottom: 2px;
}

.type-card-body .type-text span {
  font-size: 11.5px;
  color: #666666;
  line-height: 1.35;
  display: block;
}

.type-card-body .check-indicator {
  font-size: 16px;
  color: #d1d5db;
  transition: color 0.2s;
}

.return-type-card.active .check-indicator {
  color: #00876f;
}

/* Exchange Size Pills */
.exchange-size-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.size-pill-option {
  margin: 0;
  cursor: pointer;
}

.size-pill-option input {
  display: none;
}

.size-pill-option span {
  display: inline-block;
  padding: 6px 14px;
  border: 1.2px solid #d5dad7;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: #444444;
  background: #ffffff;
  transition: all 0.2s;
}

.size-pill-option input:checked + span {
  background: #006654;
  color: #ffffff;
  border-color: #006654;
  box-shadow: 0 3px 8px rgba(0, 102, 84, 0.25);
}

/* Refund Destination Cards */
.refund-dest-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.refund-dest-card {
  border: 1.2px solid #e2e8e5;
  border-radius: 10px;
  padding: 12px 14px;
  cursor: pointer;
  background: #ffffff;
  transition: all 0.2s;
  margin: 0;
}

.refund-dest-card.active {
  border-color: #00876f;
  background: #f4faf8;
}

.refund-dest-card input {
  display: none;
}

.dest-card-inner {
  display: flex;
  align-items: center;
}

.dest-card-inner strong {
  font-size: 13px;
  color: #1a1a1a;
}

/* Pickup Address Card */
.pickup-address-card {
  background: #fafaf9;
  border: 1px solid #e7e7e5;
  border-radius: 10px;
  padding: 12px 14px;
}

.return-policy-badge {
  display: flex;
  align-items: center;
  background: #f0faf7;
  border: 1px solid #ccebe3;
  border-radius: 8px;
  padding: 10px 12px;
}

.return-modal-footer {
  background: #fafcfb;
  border-top: 1px solid #edf2ef;
  padding: 14px 22px;
}

/* ==========================================
   34. SAVED ADDRESSES PAGE STYLES
   ========================================== */
.badge-address-count {
  font-size: 12px;
  font-weight: 700;
  color: #007662;
  background: #e6f7f4;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid #bce8de;
  margin-left: 8px;
  vertical-align: middle;
}

.addresses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .addresses-grid {
    grid-template-columns: 1fr;
  }
}

.address-card {
  background: #ffffff;
  border: 1.5px solid #eef2f0;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s ease;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.address-card:hover {
  border-color: #00ab8e;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.address-card.is-default {
  border-color: #00876f;
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(0, 135, 111, 0.08);
}

.address-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f4f2;
}

.address-tag-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.address-type-tag {
  font-size: 11.5px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.address-type-tag.tag-home {
  background: #e6f7f4;
  color: #007662;
  border: 1px solid #c0e8de;
}

.address-type-tag.tag-work {
  background: #e0f2fe;
  color: #0284c7;
  border: 1px solid #bae6fd;
}

.address-type-tag.tag-other {
  background: #fdf4ff;
  color: #c026d3;
  border: 1px solid #f5d0fe;
}

.badge-default-indicator {
  font-size: 11px;
  font-weight: 800;
  color: #b45309;
  background: #fef3c7;
  border: 1px solid #fde68a;
  padding: 3px 9px;
  border-radius: 12px;
}

.address-card-actions-dropdown {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-address-card-action {
  background: none;
  border: 1px solid #e2e8e5;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  color: #555555;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.btn-address-card-action:hover {
  background: #f4faf8;
  border-color: #00ab8e;
  color: #007662;
}

.btn-address-card-action.btn-delete-address:hover {
  background: #fef2f2;
  border-color: #fca5a5;
  color: #dc2626;
}

.address-card-body {
  flex: 1;
}

.address-recipient-name {
  font-size: 15px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}

.verified-phone-pill {
  font-size: 12px;
  font-weight: 600;
  color: #555555;
  background: #f5f7f6;
  border: 1px solid #e5eae7;
  padding: 2px 8px;
  border-radius: 6px;
}

.address-lines-text {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.55;
  margin-bottom: 12px;
}

.address-instructions-note {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  background: #fbfdfc;
  border: 1px solid #eef5f2;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 11.5px;
  color: #555555;
  margin-bottom: 14px;
}

.address-card-footer {
  padding-top: 12px;
  border-top: 1px solid #f0f4f2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.default-status-text {
  font-size: 12px;
  font-weight: 700;
}

.btn-set-as-default {
  background: none;
  border: 1px dashed #00ab8e;
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
  color: #007662;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-set-as-default:hover {
  background: #006654;
  color: #ffffff;
  border-style: solid;
  border-color: #006654;
}

/* Add New Address Dashed Card Box */
.address-add-new-box {
  border: 2px dashed #bce8de;
  background: #fafdfc;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  min-height: 240px;
}

.address-add-new-box:hover {
  border-color: #00ab8e;
  background: #f0faf7;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 171, 142, 0.1);
}

.add-box-content .add-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e6f7f4;
  color: #00876f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 12px;
  transition: all 0.25s ease;
}

.address-add-new-box:hover .add-icon-circle {
  background: #006654;
  color: #ffffff;
  transform: scale(1.08);
}

.add-box-title {
  font-size: 15px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.add-box-sub {
  font-size: 12px;
  color: #777777;
  margin: 0;
}

/* Empty State */
.address-empty-state-box {
  text-align: center;
  padding: 60px 20px;
  background: #ffffff;
  border: 1px solid #eef2f0;
  border-radius: 14px;
}

.address-empty-state-box .empty-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #f4faf8;
  color: #00ab8e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
}

.address-empty-state-box .empty-title {
  font-size: 18px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 6px;
}

.address-empty-state-box .empty-sub {
  font-size: 13px;
  color: #777777;
  max-width: 400px;
  margin: 0 auto 20px;
}

/* Info Banner */
.address-info-banner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f0faf7;
  border: 1px solid #ccebe3;
  border-radius: 12px;
  padding: 16px 20px;
}

.address-info-banner .info-icon {
  font-size: 24px;
  color: #007662;
  flex-shrink: 0;
}

.address-info-banner h6 {
  font-size: 13.5px;
  font-weight: 800;
  color: #006654;
  margin-bottom: 4px;
}

.address-info-banner p {
  font-size: 12px;
  color: #4b5563;
  line-height: 1.5;
}

/* Address Modal Styles */
.address-modal-content {
  border-radius: 16px;
  border: none;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.address-modal-header {
  background: #fbf9f6;
  border-bottom: 1px solid #edf2ef;
  padding: 18px 24px;
}

.type-pills-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.type-pill-btn {
  margin: 0;
  cursor: pointer;
}

.type-pill-btn input {
  display: none;
}

.type-pill-btn span {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border: 1.5px solid #d5dad7;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #444444;
  background: #ffffff;
  transition: all 0.2s ease;
}

.type-pill-btn input:checked + span,
.type-pill-btn.active span {
  background: #006654;
  color: #ffffff;
  border-color: #006654;
  box-shadow: 0 3px 10px rgba(0, 102, 84, 0.25);
}

.pincode-loader {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
}

.address-modal-footer {
  background: #fafcfb;
  border-top: 1px solid #edf2ef;
  padding: 16px 24px;
}

/* Delete Modal */
.delete-modal-box {
  border-radius: 16px;
  border: none;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.delete-warning-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fef2f2;
  color: #dc2626;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto;
}

/* Phone Input Prefix Styling */
.input-phone-prefix-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.input-phone-prefix-wrap .phone-prefix {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13.5px;
  font-weight: 700;
  color: #333333;
  pointer-events: none;
  z-index: 3;
  border-right: 1.5px solid #d5dad7;
  padding-right: 10px;
  height: 22px;
  display: flex;
  align-items: center;
}

.input-phone-prefix-wrap input.phone-input,
.input-phone-prefix-wrap input.auth-form-input {
  padding-left: 62px !important;
}

/* Custom Select Wrap with Chevron */
.custom-select-wrap {
  position: relative;
  width: 100%;
  display: block;
}

.custom-select-wrap select.auth-form-input {
  width: 100%;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  padding-right: 36px !important;
  background-color: #ffffff;
  cursor: pointer;
}

.custom-select-wrap .select-arrow-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #666666;
  pointer-events: none;
  z-index: 3;
}

/* ==========================================
   35. LUXURY WISHLIST PAGE STYLES
   ========================================== */
.badge-wishlist-count {
  font-size: 12px;
  font-weight: 700;
  color: #007662;
  background: #e6f7f4;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid #bce8de;
  margin-left: 8px;
  vertical-align: middle;
}

.wishlist-toolbar-card {
  background: #ffffff;
  border: 1px solid #eef2f0;
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.wishlist-category-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.wishlist-filter-pill {
  background: #f4faf8;
  border: 1px solid #d8ede7;
  color: #444444;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.wishlist-filter-pill:hover {
  background: #e6f7f4;
  color: #007662;
  border-color: #00ab8e;
}

.wishlist-filter-pill.active {
  background: #006654;
  color: #ffffff;
  border-color: #006654;
  box-shadow: 0 3px 8px rgba(0, 102, 84, 0.25);
}

/* Wishlist Products Grid */
.wishlist-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 992px) {
  .wishlist-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .wishlist-products-grid {
    grid-template-columns: 1fr;
  }
}

/* Wishlist Item Card */
.wishlist-item-card {
  background: #ffffff;
  border: 1px solid #eef2f0;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.wishlist-item-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: #00ab8e;
}

.wishlist-img-box {
  position: relative;
  overflow: hidden;
  height: 290px;
  background: #fbf9f6;
}

.wishlist-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}

.wishlist-item-card:hover .wishlist-thumb-img {
  transform: scale(1.05);
}

/* Ribbon Badges */
.wishlist-ribbon-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
}

.ribbon-bestseller {
  background: #006654;
  color: #ffffff;
}

.ribbon-low-stock {
  background: #dc2626;
  color: #ffffff;
}

.ribbon-discount {
  background: #ea580c;
  color: #ffffff;
}

.ribbon-trending {
  background: #7c3aed;
  color: #ffffff;
}

.ribbon-festive {
  background: #b45309;
  color: #ffffff;
}

/* Remove Wishlist Button */
.btn-remove-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #f0f0f0;
  color: #dc2626;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: all 0.2s ease;
}

.btn-remove-wishlist:hover {
  background: #fee2e2;
  transform: scale(1.1);
  color: #b91c1c;
}

/* Quick Action Hover Bar */
.wishlist-quick-action-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  padding: 8px 12px;
  transform: translateY(100%);
  transition: transform 0.25s ease;
  display: flex;
  justify-content: center;
  z-index: 2;
}

.wishlist-item-card:hover .wishlist-quick-action-bar {
  transform: translateY(0);
}

.btn-quick-preview {
  background: #ffffff;
  border: 1px solid #d5dad7;
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 11.5px;
  font-weight: 700;
  color: #333333;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-quick-preview:hover {
  background: #006654;
  color: #ffffff;
  border-color: #006654;
}

/* Card Details */
.wishlist-card-details {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.wishlist-rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.rating-badge {
  background: #007662;
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.rating-reviews-count {
  font-size: 11.5px;
  color: #777777;
}

.stock-status-pill {
  font-size: 10.5px;
  font-weight: 700;
  margin-left: auto;
}

.stock-status-pill.in-stock {
  color: #059669;
}

.stock-status-pill.low-stock {
  color: #dc2626;
}

.wishlist-prod-title {
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 8px;
  height: 38px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.wishlist-prod-title a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.wishlist-prod-title a:hover {
  color: #00876f;
}

.wishlist-price-block {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.wishlist-price-block .current-price {
  font-size: 16px;
  font-weight: 800;
  color: #006654;
}

.wishlist-price-block .original-mrp {
  font-size: 12.5px;
  color: #999999;
  text-decoration: line-through;
}

.discount-percent-tag {
  font-size: 11px;
  font-weight: 800;
  color: #ea580c;
  background: #fff7ed;
  padding: 1px 6px;
  border-radius: 4px;
  border: 1px solid #ffedd5;
}

/* Interactive Size Selector on Card */
.wishlist-size-picker-wrap {
  background: #fafcfb;
  border: 1px solid #edf2ef;
  border-radius: 8px;
  padding: 8px 10px;
  margin-bottom: 14px;
}

.wishlist-size-picker-wrap .size-label {
  font-size: 11px;
  font-weight: 700;
  color: #666666;
  margin-bottom: 6px;
  display: block;
}

.wishlist-size-pills {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.size-pill-radio {
  margin: 0;
  cursor: pointer;
}

.size-pill-radio input {
  display: none;
}

.size-pill-radio span {
  display: inline-block;
  padding: 3px 8px;
  border: 1px solid #d5dad7;
  border-radius: 5px;
  font-size: 11.5px;
  font-weight: 700;
  color: #444444;
  background: #ffffff;
  transition: all 0.2s ease;
}

.size-pill-radio input:checked + span {
  background: #006654;
  color: #ffffff;
  border-color: #006654;
  box-shadow: 0 2px 6px rgba(0, 102, 84, 0.25);
}

/* Move to Bag Button */
.btn-wishlist-add-bag {
  width: 100%;
  height: 42px;
  background: #006654;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 102, 84, 0.2);
}

.btn-wishlist-add-bag:hover {
  background: #004d40;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 102, 84, 0.3);
  color: #ffffff;
}

/* Wishlist Empty State */
.wishlist-empty-state-box {
  text-align: center;
  padding: 70px 20px;
  background: #ffffff;
  border: 1px solid #eef2f0;
  border-radius: 14px;
}

.empty-heart-icon-wrap {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #fee2e2;
  color: #dc2626;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 18px;
}

.wishlist-empty-state-box .empty-title {
  font-size: 20px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 6px;
}

.wishlist-empty-state-box .empty-sub {
  font-size: 13.5px;
  color: #777777;
  max-width: 420px;
  margin: 0 auto 22px;
}

/* Share Wishlist Modal */
.share-modal-box {
  border-radius: 16px;
  border: none;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.share-modal-header {
  background: #fbf9f6;
  border-bottom: 1px solid #edf2ef;
  padding: 16px 22px;
}

.share-social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.share-social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #444444;
  font-size: 12px;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.share-social-item:hover {
  transform: translateY(-3px);
  color: #111111;
}

.share-social-item .social-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

.share-social-item.whatsapp .social-icon {
  background: #25d366;
}

.share-social-item.facebook .social-icon {
  background: #1877f2;
}

.share-social-item.twitter .social-icon {
  background: #000000;
}

.share-social-item.email .social-icon {
  background: #ea4335;
}

.copy-input-group {
  display: flex;
  gap: 8px;
}

.copy-input-group input {
  font-size: 13px;
  background: #f8faf9;
}

/* Quickview Modal */
.quickview-modal-content {
  border-radius: 16px;
  border: none;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.quickview-img-box img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

/* ==========================================
   36. CHANGE PASSWORD & SECURITY STYLES
   ========================================== */
.security-status-badge {
  background: #f0faf7;
  border: 1px solid #ccebe3;
  color: #007662;
  font-size: 12.5px;
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
}

.security-card-box {
  background: #ffffff;
  border: 1px solid #eef2f0;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.security-card-header {
  padding: 22px 24px 18px;
  border-bottom: 1px solid #f0f4f2;
  display: flex;
  align-items: center;
  gap: 14px;
}

.sec-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #e6f7f4;
  color: #00876f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.sec-icon-circle.bg-emerald-subtle {
  background: #e6f7f4;
}

.sec-card-title {
  font-size: 16px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 2px;
}

.sec-card-sub {
  font-size: 12px;
  color: #777777;
  margin: 0;
}

.security-form-body {
  padding: 24px;
}

/* Password Strength Meter */
.password-strength-wrap {
  background: #fafcfb;
  border: 1px solid #edf2ef;
  border-radius: 8px;
  padding: 8px 12px;
}

.strength-label {
  font-size: 11.5px;
  color: #555555;
  font-weight: 600;
}

.strength-meter-bars {
  display: flex;
  gap: 5px;
  height: 4px;
  margin-top: 4px;
}

.bar-segment {
  flex: 1;
  background: #e2e8e5;
  border-radius: 3px;
  transition: background 0.25s ease;
}

.bar-segment.bar-weak {
  background: #ef4444;
}

.bar-segment.bar-fair {
  background: #f97316;
}

.bar-segment.bar-good {
  background: #eab308;
}

.bar-segment.bar-strong {
  background: #10b981;
}

/* Password Rules Checklist */
.password-rules-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 14px;
}

@media (max-width: 576px) {
  .password-rules-checklist {
    grid-template-columns: 1fr;
  }
}

.rule-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: #888888;
  transition: all 0.2s ease;
}

.rule-item .rule-icon {
  font-size: 12px;
  color: #cbd5e1;
  transition: all 0.2s ease;
}

.rule-item.valid {
  color: #059669;
  font-weight: 600;
}

.rule-item.valid .rule-icon {
  color: #059669;
}

.rule-item.valid .rule-icon::before {
  content: "\f058"; /* fa-circle-check solid */
  font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free";
  font-weight: 900;
}

/* Confirm Match Feedback */
.confirm-match-feedback.text-success {
  color: #059669 !important;
  font-weight: 600;
}

.confirm-match-feedback.text-danger {
  color: #dc2626 !important;
  font-weight: 600;
}

/* Switch Toggle Styling */
.custom-switch-toggle .form-check-input {
  width: 44px;
  height: 22px;
  cursor: pointer;
}

.custom-switch-toggle .form-check-input:checked {
  background-color: #006654;
  border-color: #006654;
}

/* Active Sessions */
.badge-current-session {
  font-size: 10.5px;
  font-weight: 700;
  color: #059669;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  padding: 2px 8px;
  border-radius: 12px;
  display: inline-block;
}

.btn-xs {
  padding: 2px 8px;
  font-size: 11px;
  border-radius: 5px;
}

/* Security Advisory Box */
.security-advisory-box {
  background: #fbf9f6;
  border: 1px solid #eedec7;
  border-radius: 12px;
  padding: 16px 18px;
}

.advisory-icon {
  font-size: 22px;
  color: #b45309;
  flex-shrink: 0;
  margin-top: 2px;
}

.advisory-title {
  font-size: 13px;
  font-weight: 800;
  color: #92400e;
  margin-bottom: 3px;
}

.advisory-desc {
  font-size: 12px;
  color: #666666;
  line-height: 1.5;
  margin: 0;
}

/* ==========================================
   37. NOTIFICATIONS & ALERTS STYLES
   ========================================== */
.badge-notif-count {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  background: #dc2626;
  padding: 3px 10px;
  border-radius: 20px;
  margin-left: 8px;
  vertical-align: middle;
  box-shadow: 0 2px 6px rgba(220, 38, 38, 0.3);
}

.badge-notif-count.is-zero {
  background: #e6f7f4;
  color: #007662;
  box-shadow: none;
  border: 1px solid #bce8de;
}

.notif-filter-toolbar {
  background: #ffffff;
  border: 1px solid #eef2f0;
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.notif-filter-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.notif-pill-btn {
  background: #f4faf8;
  border: 1px solid #d8ede7;
  color: #444444;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.notif-pill-btn:hover {
  background: #e6f7f4;
  color: #007662;
  border-color: #00ab8e;
}

.notif-pill-btn.active {
  background: #006654;
  color: #ffffff;
  border-color: #006654;
  box-shadow: 0 3px 8px rgba(0, 102, 84, 0.25);
}

.notif-pill-btn .pill-count {
  background: rgba(0, 0, 0, 0.12);
  padding: 1px 6px;
  border-radius: 10px;
  font-size: 11px;
  margin-left: 6px;
}

.notif-pill-btn.active .pill-count {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

/* Feed List & Cards */
.notifications-feed-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.notif-item-card {
  background: #ffffff;
  border: 1px solid #eef2f0;
  border-radius: 14px;
  padding: 18px 20px;
  transition: all 0.25s ease;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.notif-item-card:hover {
  border-color: #00ab8e;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.notif-item-card.is-unread {
  background: #fafdfc;
  border-left: 4px solid #00876f;
  border-color: #d1ebe4 #eef2f0 #eef2f0 #00876f;
}

.notif-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

/* Icon Circles */
.notif-icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.icon-order {
  background: #e6f7f4;
  color: #00876f;
  border: 1px solid #bce8de;
}

.icon-wishlist {
  background: #f3e8ff;
  color: #9333ea;
  border: 1px solid #e9d5ff;
}

.icon-offer {
  background: #ffedd5;
  color: #ea580c;
  border: 1px solid #fed7aa;
}

.icon-delivered {
  background: #d1fae5;
  color: #059669;
  border: 1px solid #a7f3d0;
}

.icon-sale {
  background: #fee2e2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

.icon-security {
  background: #e0f2fe;
  color: #0284c7;
  border: 1px solid #bae6fd;
}

/* Content Wrap */
.notif-content-wrap {
  flex: 1;
}

.notif-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.notif-category-tag {
  font-size: 11px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.tag-order {
  background: #e6f7f4;
  color: #007662;
}

.tag-wishlist {
  background: #f3e8ff;
  color: #7e22ce;
}

.tag-offer {
  background: #ffedd5;
  color: #c2410c;
}

.tag-delivered {
  background: #d1fae5;
  color: #047857;
}

.tag-sale {
  background: #fee2e2;
  color: #b91c1c;
}

.tag-security {
  background: #e0f2fe;
  color: #0369a1;
}

.notif-unread-dot {
  font-size: 10px;
  font-weight: 800;
  color: #dc2626;
  background: #fee2e2;
  border: 1px solid #fecaca;
  padding: 1px 6px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.notif-time-ago {
  font-size: 11.5px;
  color: #888888;
  margin-left: auto;
}

.notif-title {
  font-size: 14.5px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.notif-desc {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.5;
  margin-bottom: 10px;
}

.notif-action-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.btn-dismiss-notif {
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 16px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.2s ease;
  line-height: 1;
}

.btn-dismiss-notif:hover {
  background: #fee2e2;
  color: #dc2626;
}

/* Empty State */
.notif-empty-state-box {
  text-align: center;
  padding: 70px 20px;
  background: #ffffff;
  border: 1px solid #eef2f0;
  border-radius: 14px;
}

.empty-notif-icon-wrap {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #e6f7f4;
  color: #00876f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 18px;
}

.notif-empty-state-box .empty-title {
  font-size: 20px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 6px;
}

.notif-empty-state-box .empty-sub {
  font-size: 13.5px;
  color: #777777;
  max-width: 420px;
  margin: 0 auto 22px;
}

/* Preferences Modal */
.notif-pref-modal {
  border-radius: 16px;
  border: none;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.pref-modal-header {
  background: #fbf9f6;
  border-bottom: 1px solid #edf2ef;
  padding: 18px 24px;
}

.pref-channel-item strong {
  font-size: 13.5px;
}

/* ==========================================
   38. OUR STORY / ABOUT US STYLES
   ========================================== */
.about-page-body {
  background-color: #fafcfb;
}

/* Hero Story Banner */
.story-hero-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0 100px;
}

.story-hero-bg-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.story-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.story-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(8, 28, 22, 0.76) 0%, rgba(5, 20, 16, 0.88) 100%);
}

.story-hero-content-box {
  max-width: 800px;
  color: #ffffff;
}

.story-pretitle-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fef08a;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 30px;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.story-hero-title {
  font-size: 38px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .story-hero-title {
    font-size: 28px;
  }
}

.story-hero-sub {
  font-size: 16px;
  color: #e2e8e5;
  line-height: 1.65;
  margin-bottom: 28px;
}

.story-hero-cta-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Stats Counters */
.story-stats-section {
  margin-top: -60px;
  position: relative;
  z-index: 3;
  padding-bottom: 50px;
}

.story-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 992px) {
  .story-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .story-stats-grid {
    grid-template-columns: 1fr;
    margin-top: 0;
  }
}

.story-stat-card {
  background: #ffffff;
  border: 1px solid #eef2f0;
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease;
}

.story-stat-card:hover {
  transform: translateY(-4px);
  border-color: #00ab8e;
}

.story-stat-card .stat-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #e6f7f4;
  color: #007662;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.story-stat-card .stat-val {
  font-size: 34px;
  font-weight: 900;
  color: #006654;
  margin-bottom: 2px;
}

.story-stat-card .stat-title {
  font-size: 13.5px;
  font-weight: 800;
  color: #1a1a1a;
  display: block;
}

.story-stat-card .stat-desc {
  font-size: 12px;
  color: #666666;
  line-height: 1.45;
  margin-top: 6px;
  margin-bottom: 0;
}

/* Heritage Chapters */
.story-chapters-section {
  padding: 70px 0 40px;
}

.section-badge-gold {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  color: #b45309;
  background: #fef3c7;
  border: 1px solid #fde68a;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-main-heading {
  font-size: 30px;
  font-weight: 900;
  color: #111111;
  margin-bottom: 8px;
}

.section-sub-text {
  font-size: 14.5px;
  color: #666666;
  max-width: 620px;
  margin: 0 auto;
}

.chapter-img-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.chapter-img-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.chapter-img-card:hover img {
  transform: scale(1.03);
}

.chapter-badge-floating {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 800;
  color: #111111;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.chapter-step-num {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: #00876f;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.chapter-heading {
  font-size: 26px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 14px;
  line-height: 1.3;
}

.chapter-paragraph {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.65;
  margin-bottom: 14px;
}

.chapter-features-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

.feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: #222222;
}

/* Values Grid */
.story-values-section {
  background: #f0faf7;
  padding: 80px 0;
  border-top: 1px solid #d8ede7;
  border-bottom: 1px solid #d8ede7;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 992px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

.value-card {
  background: #ffffff;
  border: 1px solid #e0ede8;
  border-radius: 16px;
  padding: 28px 22px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: transform 0.25s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: #00ab8e;
  box-shadow: 0 8px 25px rgba(0, 171, 142, 0.1);
}

.val-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #e6f7f4;
  color: #007662;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.val-title {
  font-size: 16px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.val-desc {
  font-size: 12.5px;
  color: #555555;
  line-height: 1.55;
  margin: 0;
}

/* Timeline */
.story-timeline-section {
  padding: 80px 0;
}

.timeline-tree-wrap {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
}

.timeline-node {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 24px;
}

.node-year {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #006654;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 4px 18px rgba(0, 102, 84, 0.35);
}

.node-content-card {
  flex: 1;
  background: #ffffff;
  border: 1px solid #eef2f0;
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.node-title {
  font-size: 16px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 4px;
}

.node-desc {
  font-size: 13px;
  color: #555555;
  line-height: 1.5;
  margin: 0;
}

/* Quote & CTA Banner with Generated Luxury Silk & Gold Background */
.story-quote-cta-section {
  padding: 20px 0 80px;
}

.quote-cta-box {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  padding: 70px 35px;
  box-shadow: 0 18px 50px rgba(0, 77, 64, 0.35);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.quote-bg-img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.quote-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.quote-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(6, 28, 20, 0.78) 0%, rgba(3, 18, 13, 0.88) 100%);
}

.quote-content-inner {
  position: relative;
  z-index: 2;
}

.quote-icon {
  font-size: 38px;
  color: #fde047;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.quote-text {
  font-size: 24px;
  font-weight: 800;
  max-width: 820px;
  margin: 0 auto 14px;
  line-height: 1.45;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .quote-text {
    font-size: 18px;
  }
}

.quote-author {
  font-size: 13px;
  font-weight: 700;
  color: #fef08a;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
}

/* Luxury Button Styling for Quote Banner */
.btn-quote-primary {
  background: #ffffff;
  color: #006654;
  font-weight: 800;
  font-size: 15px;
  border-radius: 30px;
  border: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
}

.btn-quote-primary:hover {
  background: #fef08a;
  color: #004d40;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.btn-quote-outline {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
}

.btn-quote-outline:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* ==========================================
   39. FLOATING PIP PRODUCT VIDEO & REEL MODAL
   ========================================== */
.floating-product-video-widget {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1050;
  width: 115px;
  height: 180px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.38);
  border: 2.5px solid #ffffff;
  cursor: pointer;
  background: #000000;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-product-video-widget:hover {
  transform: scale(1.06) translateY(-4px);
  box-shadow: 0 18px 45px rgba(0, 135, 111, 0.5);
  border-color: #00ab8e;
}

@media (max-width: 576px) {
  .floating-product-video-widget {
    bottom: 80px;
    right: 15px;
    width: 95px;
    height: 150px;
  }
}

.btn-close-floating-video {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.btn-close-floating-video:hover {
  background: #ef4444;
  transform: scale(1.1);
}

.floating-video-inner {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.floating-video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.floating-pip-video-tag {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.floating-video-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 3;
  letter-spacing: 0.5px;
}

.pulse-red-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 8px #ef4444;
  animation: pulseDotAnim 1.4s infinite;
}

@keyframes pulseDotAnim {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

.floating-play-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: #006654;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  padding-left: 2px;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.7);
  pointer-events: none;
  z-index: 3;
  transition: transform 0.25s ease;
}

.floating-product-video-widget:hover .floating-play-glow {
  transform: translate(-50%, -50%) scale(1.15);
  background: #00ab8e;
  color: #ffffff;
}

.floating-video-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 700;
  text-align: center;
  padding: 16px 4px 6px;
  z-index: 3;
}

/* Fullscreen 9:16 Product Video Reel Modal */
.product-reel-modal .modal-dialog {
  max-width: 420px;
  width: 95%;
  margin: 1.5rem auto;
}

.product-reel-modal-content {
  background: transparent;
  border: none;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.6);
}

.reel-player-container {
  position: relative;
  width: 100%;
  height: 680px;
  max-height: 88vh;
  background: #000000;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.main-reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reel-fallback-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.reel-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-top-bar {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.reel-brand-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: 30px;
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.reel-brand-logo {
  height: 18px;
  filter: brightness(0) invert(1);
}

.btn-reel-control {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-reel-control:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

.reel-right-actions {
  position: absolute;
  right: 14px;
  bottom: 215px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  z-index: 10;
}

.reel-action-circle {
  background: transparent;
  border: none;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 24px;
  cursor: pointer;
  transition: transform 0.2s ease;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.reel-action-circle span {
  font-size: 11px;
  font-weight: 700;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
}

.reel-action-circle:hover {
  transform: scale(1.15);
}

.btn-reel-like.active i {
  color: #ef4444;
  font-weight: 900;
  animation: heartPop 0.3s ease;
}

@keyframes heartPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.35); }
  100% { transform: scale(1); }
}

.reel-bottom-shop-card {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(14, 22, 19, 0.88);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  padding: 14px;
  z-index: 10;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
}

.reel-prod-info-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.reel-prod-thumb {
  width: 48px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.reel-prod-text {
  flex: 1;
  overflow: hidden;
}

.reel-prod-title {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.reel-prod-price-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reel-price {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
}

.reel-mrp {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: line-through;
}

.reel-discount-tag {
  font-size: 10px;
  font-weight: 800;
  background: #dc2626;
  color: #ffffff;
  padding: 1px 6px;
  border-radius: 4px;
}

.reel-size-picker-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reel-size-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}

.reel-size-pills {
  display: flex;
  gap: 6px;
}

.reel-size-pill {
  cursor: pointer;
  margin: 0;
}

.reel-size-pill input {
  display: none;
}

.reel-size-pill span {
  display: inline-block;
  width: 26px;
  height: 26px;
  line-height: 24px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.2s;
}

.reel-size-pill.active span,
.reel-size-pill input:checked + span {
  background: #00ab8e;
  border-color: #00ab8e;
  color: #ffffff;
}

.btn-reel-add-cart {
  background: #00876f;
  color: #ffffff;
  font-weight: 800;
  font-size: 13.5px;
  border-radius: 10px;
  padding: 10px;
  border: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-reel-add-cart:hover {
  background: #006654;
  color: #ffffff;
  transform: translateY(-1px);
}

.reel-progress-bar-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.25);
  z-index: 12;
}

.reel-progress-bar-fill {
  height: 100%;
  background: #00ab8e;
  transition: width 0.1s linear;
}

/* ==========================================
   40. DEDICATED CUSTOMER REVIEWS PAGE STYLES
   ========================================== */
.reviews-page-body {
  background-color: #fafcfb;
}

.reviews-page-hero-section {
  padding: 40px 0 25px;
}

.reviews-stat-summary-bar {
  background: #ffffff;
  border: 1px solid #e2ece8;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.reviews-stat-summary-bar .stat-big-num {
  font-size: 26px;
  font-weight: 900;
  color: #006654;
  display: block;
}

.reviews-stat-summary-bar .stat-sub-lbl {
  font-size: 12px;
  font-weight: 700;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.reviews-list-main-section {
  padding: 20px 0 80px;
}

.reviews-filter-bar-card {
  background: #ffffff;
  border: 1px solid #e2ece8;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.review-filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.btn-review-pill {
  background: #f3f4f6;
  border: 1px solid transparent;
  color: #4b5563;
  font-size: 12.5px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 30px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-review-pill.active,
.btn-review-pill:hover {
  background: #e6f7f4;
  border-color: #00ab8e;
  color: #006654;
}

.review-search-field-wrap {
  position: relative;
}

.review-search-field-wrap .search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #888888;
  font-size: 13px;
}

.review-search-box {
  border: 1px solid #d1d5db;
  border-radius: 30px;
  padding: 6px 14px 6px 34px;
  font-size: 12.5px;
  width: 220px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.review-search-box:focus {
  border-color: #00ab8e;
  box-shadow: 0 0 0 3px rgba(0, 171, 142, 0.15);
}

.review-sort-select {
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 32px 6px 14px;
  border: 1px solid #d1d5db;
  outline: none;
  cursor: pointer;
}

.review-grid-col .review-card {
  height: 100%;
}

.reviews-pagination-list {
  display: inline-flex;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.reviews-pagination-list .page-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  color: #374151;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  background: #ffffff;
}

.reviews-pagination-list .page-item.active .page-link {
  background: #00876f;
  color: #ffffff;
  border-color: #00876f;
  box-shadow: 0 4px 12px rgba(0, 135, 111, 0.3);
}

.reviews-pagination-list .page-link:hover {
  background: #e6f7f4;
  color: #006654;
  border-color: #00ab8e;
}

.reviews-pagination-list .page-link.dots {
  border: none;
  background: transparent;
  cursor: default;
}

/* ==========================================
   41. CONTACT US & BOUTIQUE LOCATOR STYLES
   ========================================== */
.contact-page-body {
  background-color: #fafcfb;
}

.contact-hero-section {
  padding: 40px 0 20px;
}

.contact-hero-title {
  font-size: 36px;
  font-weight: 900;
  color: #111111;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .contact-hero-title {
    font-size: 26px;
  }
}

.contact-hero-sub {
  font-size: 15px;
  color: #555555;
  max-width: 680px;
  margin: 0 auto 35px;
  line-height: 1.6;
}

.contact-channels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 992px) {
  .contact-channels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .contact-channels-grid {
    grid-template-columns: 1fr;
  }
}

.contact-channel-card {
  background: #ffffff;
  border: 1px solid #e2ece8;
  border-radius: 16px;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-channel-card:hover {
  transform: translateY(-4px);
  border-color: #00ab8e;
  box-shadow: 0 10px 25px rgba(0, 171, 142, 0.12);
}

.channel-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.icon-teal { background: #e6f7f4; color: #007662; }
.icon-green { background: #e8f5e9; color: #2e7d32; }
.icon-orange { background: #fff3e0; color: #e65100; }
.icon-purple { background: #f3e5f5; color: #7b1fa2; }

.channel-info {
  flex: 1;
}

.channel-title {
  font-size: 11.5px;
  font-weight: 800;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.channel-value {
  font-size: 14.5px;
  font-weight: 800;
  color: #111111;
  display: block;
}

.channel-sub {
  font-size: 11px;
  color: #666666;
  margin-top: 2px;
  display: block;
}

/* Contact Main Section */
.contact-main-section {
  padding: 40px 0 70px;
}

.contact-form-card {
  background: #ffffff;
  border: 1px solid #e2ece8;
  border-radius: 20px;
  padding: 35px 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
}

.form-kicker {
  font-size: 11.5px;
  font-weight: 900;
  color: #00876f;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.form-main-heading {
  font-size: 26px;
  font-weight: 900;
  color: #111111;
  margin-bottom: 6px;
}

.form-sub-text {
  font-size: 13.5px;
  color: #666666;
  margin-bottom: 0;
}

.inquiry-type-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.inquiry-pill {
  cursor: pointer;
  margin: 0;
}

.inquiry-pill input {
  display: none;
}

.inquiry-pill span {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 30px;
  background: #f3f4f6;
  color: #4b5563;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.inquiry-pill.active span,
.inquiry-pill input:checked + span {
  background: #e6f7f4;
  border-color: #00ab8e;
  color: #006654;
}

.form-label-custom {
  font-size: 12.5px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 6px;
  display: block;
}

/* Boutique Locator Card */
.boutique-locator-card {
  background: #ffffff;
  border: 1px solid #e2ece8;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.boutique-img-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.boutique-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.boutique-locator-card:hover .boutique-img {
  transform: scale(1.03);
}

.boutique-status-pill {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  padding: 5px 12px;
  border-radius: 20px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-green-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
}

.boutique-body-content {
  padding: 26px;
}

.badge-store-tag {
  font-size: 11px;
  font-weight: 800;
  color: #b45309;
  background: #fef3c7;
  border: 1px solid #fde68a;
  padding: 3px 10px;
  border-radius: 12px;
  letter-spacing: 0.5px;
}

.boutique-title {
  font-size: 18px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 8px;
}

.boutique-address {
  font-size: 13px;
  color: #555555;
  line-height: 1.5;
  margin-bottom: 16px;
}

.boutique-timing-box {
  background: #f9fafb;
  border: 1px solid #edf2f0;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 12.5px;
  margin-bottom: 16px;
}

.timing-label {
  color: #4b5563;
  font-weight: 600;
}

.timing-val {
  color: #111111;
  font-weight: 700;
}

.store-features-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.store-feat-chip {
  font-size: 11.5px;
  font-weight: 700;
  color: #006654;
  background: #e6f7f4;
  border: 1px solid #c2e8e0;
  padding: 4px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* FAQ Accordion */
.contact-faq-section {
  background: #f4faf8;
  padding: 70px 0;
  border-top: 1px solid #d8ede7;
}

.faq-accordion-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e2ece8 !important;
  border-radius: 14px !important;
  margin-bottom: 12px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.faq-btn {
  background: #ffffff;
  font-size: 15px;
  font-weight: 800;
  color: #111111;
  padding: 18px 22px;
  box-shadow: none !important;
}

.faq-btn:not(.collapsed) {
  background: #e6f7f4;
  color: #006654;
}

.faq-icon {
  color: #00876f;
  font-size: 16px;
}

.faq-body {
  font-size: 13.5px;
  color: #4b5563;
  line-height: 1.65;
  padding: 0 22px 20px;
}

/* ==========================================
   42. LUXURY LEGAL & POLICY PAGES STYLES
   ========================================== */
.policy-page-body {
  background-color: #fafcfb;
}

.policy-hero-section {
  padding: 40px 0 20px;
}

.policy-last-updated-badge {
  font-size: 11px;
  font-weight: 800;
  color: #006654;
  background: #e6f7f4;
  border: 1px solid #c2e8e0;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 12px;
}

.policy-hero-title {
  font-size: 36px;
  font-weight: 900;
  color: #111111;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .policy-hero-title {
    font-size: 26px;
  }
}

.policy-hero-sub {
  font-size: 15px;
  color: #555555;
  max-width: 720px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.policy-main-section {
  padding: 30px 0 80px;
}

/* Sticky Sidebar */
.policy-sidebar-card {
  background: #ffffff;
  border: 1px solid #e2ece8;
  border-radius: 18px;
  padding: 24px 20px;
  position: sticky;
  top: 100px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.sidebar-policy-title {
  font-size: 13px;
  font-weight: 900;
  color: #111111;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
}

.policy-nav-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.policy-nav-item {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #4b5563;
  text-decoration: none;
  transition: all 0.2s ease;
}

.policy-nav-item:hover {
  background: #f3f4f6;
  color: #111111;
}

.policy-nav-item.active {
  background: #e6f7f4;
  color: #006654;
  font-weight: 800;
  border-left: 3px solid #00ab8e;
}

.policy-sidebar-divider {
  border-color: #eef2f0;
  margin: 20px 0;
}

.policy-toc-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toc-link {
  font-size: 12.5px;
  font-weight: 600;
  color: #555555;
  text-decoration: none;
  transition: color 0.2s ease;
  display: block;
}

.toc-link:hover {
  color: #00876f;
  text-decoration: underline;
}

.policy-help-box {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 18px 16px;
  text-align: center;
}

.policy-help-box .help-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e6f7f4;
  color: #006654;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.policy-help-box .help-title {
  font-size: 14px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 4px;
}

.policy-help-box .help-desc {
  font-size: 11.5px;
  color: #666666;
  margin-bottom: 12px;
}

/* Policy Content Card */
.policy-content-card {
  background: #ffffff;
  border: 1px solid #e2ece8;
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

@media (max-width: 576px) {
  .policy-content-card {
    padding: 24px 18px;
  }
}

.policy-callout-box {
  background: #f0faf7;
  border-left: 4px solid #00ab8e;
  border-radius: 0 14px 14px 0;
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.policy-callout-box .callout-icon {
  font-size: 24px;
  color: #00876f;
  flex-shrink: 0;
  margin-top: 2px;
}

.policy-callout-box .callout-title {
  font-size: 15px;
  font-weight: 800;
  color: #006654;
  margin-bottom: 4px;
}

.policy-callout-box .callout-text {
  font-size: 13px;
  color: #4b5563;
  margin: 0;
  line-height: 1.6;
}

.policy-section-block {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #edf2f0;
}

.policy-section-block .section-title {
  font-size: 19px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.policy-section-block .section-title span {
  font-size: 12px;
  font-weight: 900;
  background: #e6f7f4;
  color: #007662;
  padding: 2px 8px;
  border-radius: 6px;
}

.policy-text {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 12px;
}

.policy-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0;
}

.policy-bullet-list .bullet-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13.5px;
  color: #374151;
  line-height: 1.55;
}

.policy-bullet-list .bullet-item i {
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.policy-disc-list {
  padding-left: 20px;
  margin: 12px 0;
}

.policy-disc-list li {
  font-size: 13.5px;
  color: #4b5563;
  line-height: 1.65;
  margin-bottom: 6px;
}

.policy-highlight-alert {
  background: #fffbeb;
  border-left: 4px solid #f59e0b;
  border-radius: 0 12px 12px 0;
  padding: 16px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: #78350f;
  line-height: 1.55;
  margin: 16px 0;
}

.policy-highlight-alert .alert-icon {
  font-size: 20px;
  color: #d97706;
  flex-shrink: 0;
}

/* Steps Grid */
.return-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 768px) {
  .return-steps-grid {
    grid-template-columns: 1fr;
  }
}

.step-card {
  background: #f9fafb;
  border: 1px solid #edf2f0;
  border-radius: 12px;
  padding: 18px 16px;
  text-align: center;
}

.step-badge {
  font-size: 10.5px;
  font-weight: 900;
  background: #006654;
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 8px;
}

.step-card h5 {
  font-size: 14px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 4px;
}

.step-card p {
  font-size: 12px;
  color: #666666;
  margin: 0;
  line-height: 1.45;
}

/* ==========================================
   43. ORDER CONFIRMATION & PAYMENT FAILED STYLES
   ========================================== */
.order-status-page-body {
  background-color: #fafcfb;
}

.order-status-hero-section {
  padding: 45px 0 20px;
}

.order-status-hero-box {
  max-width: 780px;
  margin: 0 auto;
}

.status-icon-bubble {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}

.status-icon-bubble:hover {
  transform: scale(1.08);
}

.success-bubble {
  background: #e6f7f4;
  color: #006654;
  border: 4px solid #b7ede2;
  box-shadow: 0 8px 24px rgba(0, 102, 84, 0.15);
}

.failed-bubble {
  background: #fee2e2;
  color: #dc2626;
  border: 4px solid #fecaca;
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.15);
}

.status-badge-pill {
  font-size: 11.5px;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 30px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 12px;
}

.success-badge-pill {
  background: #e6f7f4;
  color: #006654;
  border: 1px solid #c2e8e0;
}

.failed-badge-pill {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

.status-main-title {
  font-size: 34px;
  font-weight: 900;
  color: #111111;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .status-main-title {
    font-size: 26px;
  }
}

.status-sub-desc {
  font-size: 15px;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 24px;
}

.order-key-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 20px;
}

@media (max-width: 992px) {
  .order-key-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .order-key-metrics-grid {
    grid-template-columns: 1fr;
  }
}

.metric-chip {
  background: #ffffff;
  border: 1px solid #e2ece8;
  border-radius: 12px;
  padding: 12px 14px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.metric-lbl {
  font-size: 10px;
  font-weight: 800;
  color: #888888;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 3px;
}

.metric-val {
  font-size: 13.5px;
  font-weight: 800;
  color: #111111;
  display: block;
}

.payment-safety-alert-box {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  max-width: 680px;
  text-align: left;
  font-size: 13px;
  color: #166534;
}

.payment-safety-alert-box .safety-icon {
  font-size: 22px;
  flex-shrink: 0;
}

/* Tracker Card */
.order-tracker-strip-section {
  padding: 15px 0 25px;
}

.order-tracker-card {
  background: #ffffff;
  border: 1px solid #e2ece8;
  border-radius: 18px;
  padding: 24px 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.tracker-card-title {
  font-size: 15px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 24px;
}

.order-steps-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.order-steps-timeline::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 40px;
  right: 40px;
  height: 3px;
  background: #e5e7eb;
  z-index: 1;
}

.timeline-step {
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
}

.step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #d1d5db;
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  font-size: 13px;
  font-weight: bold;
}

.timeline-step.completed .step-dot {
  background: #00876f;
  border-color: #00876f;
  color: #ffffff;
}

.timeline-step.active .step-dot {
  background: #ffffff;
  border-color: #00876f;
  color: #00876f;
  box-shadow: 0 0 0 4px rgba(0, 135, 111, 0.2);
}

.step-label {
  font-size: 12.5px;
  font-weight: 700;
  color: #111111;
}

.step-time {
  font-size: 11px;
  color: #666666;
  margin-top: 2px;
}

/* Order Summary Main */
.order-summary-main-section {
  padding: 20px 0 80px;
}

.order-card-box {
  background: #ffffff;
  border: 1px solid #e2ece8;
  border-radius: 18px;
  padding: 26px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.order-card-heading {
  font-size: 17px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 4px;
}

.order-items-table-wrap {
  display: flex;
  flex-direction: column;
  margin-top: 14px;
}

.ordered-item-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid #edf2f0;
}

.ordered-item-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.item-thumb-box {
  position: relative;
  width: 70px;
  height: 88px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f9fafb;
  border: 1px solid #eef2f0;
}

.item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-qty-pill {
  position: absolute;
  bottom: 4px;
  right: 4px;
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 8px;
}

.item-details-box {
  flex: 1;
}

.item-title {
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 6px;
}

.item-title a {
  color: #111111;
  text-decoration: none;
  transition: color 0.2s;
}

.item-title a:hover {
  color: #00876f;
}

.item-specs-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.spec-tag {
  font-size: 11px;
  color: #4b5563;
  background: #f3f4f6;
  padding: 2px 8px;
  border-radius: 6px;
}

.item-sku {
  font-size: 11px;
  color: #888888;
}

.item-price-box {
  flex-shrink: 0;
}

.item-final-price {
  font-size: 15px;
  font-weight: 800;
  color: #111111;
  display: block;
}

.item-mrp-price {
  font-size: 12px;
  text-decoration: line-through;
  color: #888888;
  display: block;
}

.item-discount-label {
  font-size: 11px;
  font-weight: 700;
  display: block;
}

.order-pricing-card .price-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 13px;
}

.price-label {
  color: #4b5563;
}

.price-val {
  font-weight: 700;
  color: #111111;
}

.pricing-divider {
  border-color: #e5e7eb;
  margin: 14px 0;
}

.total-paid-row {
  font-size: 16px;
  font-weight: 900;
}

.total-label {
  color: #111111;
}

.total-val {
  color: #006654;
  font-size: 20px;
}

.order-help-support-card {
  background: #ffffff;
  border: 1px solid #e2ece8;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.support-avatar-wrap {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e6f7f4;
  color: #006654;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}















