:root {
  --blush-red: #E30613;
  --blush-white: #FFFFFF;
  --blush-rose-gold: #E6B8A2;
  --blush-charcoal: #1C1C1C;
  --blush-pink: #F8E1E7;
  --blush-bg: #F5F5F7;
  --blush-light-gray: #F8F9FA;
  --blush-border: #E9ECEF;
  --blush-shadow: rgba(28, 28, 28, 0.08);
  --blush-gradient: linear-gradient(135deg, #E30613 0%, #B6040E 100%);
  --blush-hover: #C50510;

  --radius-card: 16px;
  --radius-pill: 999px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Force light mode and override system preferences */
html {
  color-scheme: light !important;
  forced-color-adjust: none !important;
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--blush-charcoal);
  background: linear-gradient(180deg, #fff 0%, var(--blush-bg) 70%, rgba(248, 225, 231, 0.55) 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.blush-brand {
  font-family: "Playfair Display", Poppins, serif;
  letter-spacing: 0.2px;
  font-weight: 700;
}

.blush-hero {
  border-radius: var(--radius-card);
  background: radial-gradient(1200px 500px at 20% 10%, rgba(230, 184, 162, 0.45), transparent 60%),
    linear-gradient(135deg, rgba(193, 18, 31, 1) 0%, rgba(155, 10, 24, 1) 100%);
  color: #fff;
  box-shadow: 0 18px 50px rgba(28, 28, 28, 0.18);
  position: relative;
  overflow: hidden;
}

.blush-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  pointer-events: none;
}

.blush-card {
  border-radius: var(--radius-card);
  box-shadow: 0 10px 28px var(--blush-shadow);
  border: 1px solid var(--blush-border);
  overflow: hidden;
  background: #fff;
  transition: var(--transition-smooth);
  position: relative;
}

.blush-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(28, 28, 28, 0.12);
}

.blush-price {
  color: var(--blush-red);
  font-weight: 800;
  font-size: 1.1em;
}

.blush-btn {
  border-radius: 14px;
  font-weight: 700;
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.blush-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.blush-btn:hover::before {
  left: 100%;
}

.blush-btn-primary {
  color: #fff;
  background: var(--blush-gradient);
  box-shadow: 0 4px 15px rgba(227, 6, 19, 0.3);
}

.blush-btn-primary:hover {
  background: linear-gradient(135deg, var(--blush-hover) 0%, #A5030C 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(227, 6, 19, 0.4);
}

.blush-badge-cod {
  background: rgba(230, 184, 162, 0.22);
  border: 1px solid rgba(230, 184, 162, 0.65);
  color: var(--blush-charcoal);
  border-radius: var(--radius-pill);
  padding: 6px 12px;
  font-weight: 700;
  font-size: 12px;
  transition: var(--transition-smooth);
}

.blush-badge-cod:hover {
  background: rgba(230, 184, 162, 0.35);
  transform: scale(1.05);
}

.blush-bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--blush-border);
  z-index: 1030;
  box-shadow: 0 -10px 30px rgba(28, 28, 28, 0.15);
}

.blush-bottom-nav a {
  color: rgba(28, 28, 28, 0.72);
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  transition: var(--transition-smooth);
  padding: 12px 16px;
  border-radius: 8px;
  margin: 4px;
}

.blush-bottom-nav a:hover {
  color: var(--blush-red);
  background: rgba(230, 184, 162, 0.1);
  transform: translateY(-1px);
}

.blush-bottom-nav a.active {
  color: var(--blush-red);
  background: rgba(230, 184, 162, 0.15);
}

@media (min-width: 992px) {
  .blush-bottom-nav {
    display: none;
  }
}

.blush-content-pad {
  padding-bottom: 0;
}

.blush-header {
  background: #fff;
  box-shadow: 0 4px 20px rgba(28, 28, 28, 0.12), 0 2px 8px rgba(28, 28, 28, 0.08);
  position: relative;
  z-index: 100;
  margin-bottom: 8px;
}

.blush-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230, 184, 162, 0.3), transparent);
  pointer-events: none;
}

.blush-header-utilities {
  background: #fff;
  border-bottom: 1px solid var(--blush-border);
  position: relative;
  padding-top: 16px;
  padding-bottom: 16px;
}

.blush-topbar {
  background: linear-gradient(135deg, #111 0%, #2c2c2c 100%);
  color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.blush-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}

.blush-topbar-text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.blush-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 4px;
  transition: var(--transition-smooth);
}

.blush-pill:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

.blush-header-utilities {
  background: #fff;
  border-bottom: 1px solid var(--blush-border);
  position: relative;
}

.blush-locator {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: rgba(28, 28, 28, 0.88);
  font-weight: 800;
  font-size: 13px;
  transition: var(--transition-smooth);
  padding: 8px 12px;
  border-radius: 8px;
}

.blush-locator:hover {
  color: var(--blush-red);
  background: var(--blush-light-gray);
}

.blush-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 2px solid var(--blush-border);
  border-radius: 999px;
  padding: 8px 16px;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 8px rgba(28, 28, 28, 0.08);
  height: 48px;
}

.blush-search:focus-within {
  border-color: var(--blush-red);
  box-shadow: 0 0 0 3px rgba(230, 184, 162, 0.2);
}

.blush-search-ico {
  color: var(--blush-red);
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
}

.blush-search input {
  border: 0;
  outline: none;
  width: 100%;
  font-size: 15px;
  font-weight: 700;
  color: #000;
  background: transparent;
  line-height: 1.2;
  padding: 0;
  margin: 0;
}

.blush-search input::placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.blush-search .btn {
  border-radius: 999px;
  padding-left: 16px;
  padding-right: 16px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.blush-header-icons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.blush-icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--blush-bg);
  border: 1px solid rgba(28, 28, 28, 0.10);
  color: rgba(28, 28, 28, 0.80);
  text-decoration: none;
}

.blush-badge {
  position: absolute;
  right: -2px;
  top: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--blush-red);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blush-cart-total {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.1;
}

.blush-rednav {
  background: var(--blush-red);
}

.blush-logo {
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.blush-logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.blush-logo .blush-brand {
  color: #fff;
  font-size: 20px;
}

@media (max-width: 768px) {
  .blush-logo-img {
    height: 24px;
  }

  .blush-logo .blush-brand {
    font-size: 18px;
  }
}

.blush-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 10px 0;
}

.blush-nav-links a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s;
}

.blush-nav-links a:hover {
  color: #fff;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown-toggle:hover {
  color: #fff;
}

.nav-dropdown-toggle::after {
  content: '▼';
  font-size: 10px;
  transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-toggle::after {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 5px;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: background-color 0.2s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-dropdown-menu a:last-child {
  border-bottom: none;
}

.nav-dropdown-menu a:hover {
  background-color: #f8f9fa;
  color: #E30613;
}

.nav-dropdown-menu a:first-child {
  border-radius: 8px 8px 0 0;
}

.nav-dropdown-menu a:last-child {
  border-radius: 0 0 8px 8px;
}

.blush-landing-wrap {
  background: var(--blush-bg);
}

.blush-banner-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.blush-banner {
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  min-height: 220px;
  box-shadow: 0 16px 40px rgba(28, 28, 28, 0.14);
  background-size: cover;
  background-position: center;
}

.blush-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.10) 65%, rgba(0, 0, 0, 0.02) 100%);
}

.blush-banner-content {
  position: relative;
  z-index: 2;
  padding: 18px;
  color: #fff;
}

.blush-banner-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 900;
  letter-spacing: 0.3px;
  font-size: 12px;
}

.blush-banner-title {
  font-family: "Playfair Display", Poppins, serif;
  font-weight: 800;
  font-size: 34px;
  line-height: 1.05;
  margin-top: 12px;
}

.blush-banner-sub {
  margin-top: 10px;
  max-width: 42ch;
  opacity: 0.92;
  font-weight: 600;
}

.blush-banner-cardmeta {
  margin-top: 10px;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.92);
  padding: 12px 16px;
  border: 1px solid rgba(28, 28, 28, 0.06);
  box-shadow: 0 10px 26px rgba(28, 28, 28, 0.10);
}

.blush-banner .blush-btn-primary {
  background: var(--blush-red) !important;
  color: #fff !important;
  border: 2px solid var(--blush-red) !important;
  box-shadow: 0 4px 15px rgba(227, 6, 19, 0.3) !important;
}

.blush-banner .blush-btn-primary:hover {
  background: var(--blush-hover) !important;
  border-color: var(--blush-hover) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(227, 6, 19, 0.4) !important;
}

.blush-tabs {
  display: flex;
  gap: 10px;
  overflow: auto;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
  justify-content: center;
}

.blush-cat-scroll {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding: 10px 0;
  -webkit-overflow-scrolling: touch;
  justify-content: center;
}

.blush-banner-carousel {
  margin-bottom: 20px;
}

.blush-banner-carousel .carousel-item img {
  height: 400px !important;
  object-fit: cover !important;
  cursor: pointer !important;
  width: 100% !important;
}

@media (max-width: 991px) {
  .blush-banner-carousel .carousel-item img {
    height: 250px !important;
  }
}

@media (max-width: 768px) {
  .blush-banner-carousel .carousel-item img {
    height: 200px !important;
  }
}

@media (max-width: 576px) {
  .blush-banner-carousel .carousel-item img {
    height: 150px !important;
  }

  .blush-trust-item:last-child {
    justify-content: center;
    text-align: center;
    grid-column: 1 / -1;
  }

  /* Fix mobile product layout */
  .blush-card {
    margin-bottom: 20px !important;
  }

  .col-12.col-md-6.col-lg-4 {
    margin-bottom: 15px !important;
  }

  .row.g-3 {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }

  .row.g-3>* {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* Make cart cards smaller on mobile */
  .blush-card {
    padding: 8px !important;
  }

  .blush-card .flex-grow-1 {
    font-size: 12px !important;
  }

  .blush-price {
    font-size: 12px !important;
  }

  .form-control {
    font-size: 12px !important;
    width: 80px !important;
    border: 1px solid #ccc !important;
    background: #fff !important;
  }

  /* Standard mobile checkout layout */
  .col-12.col-lg-5 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 auto !important;
  }

  .position-sticky {
    position: relative !important;
    top: 0 !important;
  }

  .form-label {
    font-size: 14px !important;
    margin-bottom: 8px !important;
  }

  .form-check-label {
    font-size: 13px !important;
  }

  .btn {
    font-size: 14px !important;
    padding: 12px 20px !important;
  }

  textarea.form-control {
    font-size: 14px !important;
    min-height: 80px !important;
  }
}

/* Fix for screens below 580px */
@media (max-width: 580px) {
  .form-control {
    font-size: 14px !important;
    width: 100% !important;
    border: 2px solid #333 !important;
    background: #fff !important;
    padding: 10px 12px !important;
    border-radius: 8px !important;
    height: auto !important;
    min-height: 44px !important;
  }

  .form-label {
    font-size: 14px !important;
    margin-bottom: 8px !important;
    font-weight: 600 !important;
  }

  .blush-card {
    padding: 15px !important;
    margin-bottom: 15px !important;
  }

  .btn {
    font-size: 14px !important;
    padding: 12px 20px !important;
    min-height: 44px !important;
    border-radius: 8px !important;
  }

  textarea.form-control {
    min-height: 100px !important;
    padding: 12px !important;
  }
}

/* Make Unwrap The Glow section cards smaller only on mobile */
@media (max-width: 768px) {
  .blush-carousel-wrap {
    transform: scale(0.75);
    transform-origin: top left;
    width: 133%;
    margin-bottom: -15%;
  }
}

@media (max-width: 576px) {
  .blush-carousel-wrap {
    transform: scale(0.65);
    transform-origin: top left;
    width: 154%;
    margin-bottom: -20%;
  }

  /* Reduce gap between sections on mobile */
  .mt-4.blush-section {
    margin-top: 15px !important;
  }

  /* Glass shadow effect for sections on mobile */
  .blush-section {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
  }

  /* Ensure section titles are visible on mobile */
  .blush-section-title {
    display: block !important;
    font-size: 18px !important;
    color: #1C1C1C !important;
    margin-bottom: 10px !important;
  }

  .blush-section-head {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 15px !important;
  }

  /* Glossy look for New Arrivals section */
  #new-arrivals {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(248, 225, 231, 0.9) 50%,
        rgba(255, 255, 255, 0.85) 100%) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(230, 184, 162, 0.4) !important;
    box-shadow: 0 8px 32px rgba(230, 184, 162, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.8),
      inset 0 -1px 0 rgba(230, 184, 162, 0.2) !important;
    position: relative !important;
    overflow: hidden !important;
  }

  #new-arrivals::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent) !important;
    animation: glossyShine 3s infinite !important;
  }

  /* Same glossy look for Unwrap The Glow section */
  .blush-section.dark {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(248, 225, 231, 0.9) 50%,
        rgba(255, 255, 255, 0.85) 100%) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(230, 184, 162, 0.4) !important;
    box-shadow: 0 8px 32px rgba(230, 184, 162, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.8),
      inset 0 -1px 0 rgba(230, 184, 162, 0.2) !important;
    position: relative !important;
    overflow: hidden !important;
  }

  .blush-section.dark::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent) !important;
    animation: glossyShine 3s infinite !important;
  }

  /* Same glossy look for Body Care Essentials section */
  #body-care-essentials {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(248, 225, 231, 0.9) 50%,
        rgba(255, 255, 255, 0.85) 100%) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(230, 184, 162, 0.4) !important;
    box-shadow: 0 8px 32px rgba(230, 184, 162, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.8),
      inset 0 -1px 0 rgba(230, 184, 162, 0.2) !important;
    position: relative !important;
    overflow: hidden !important;
  }

  #body-care-essentials::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent) !important;
    animation: glossyShine 3s infinite !important;
  }

  /* Same glossy look for Trending Picks section */
  #trending-picks {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(248, 225, 231, 0.9) 50%,
        rgba(255, 255, 255, 0.85) 100%) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(230, 184, 162, 0.4) !important;
    box-shadow: 0 8px 32px rgba(230, 184, 162, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.8),
      inset 0 -1px 0 rgba(230, 184, 162, 0.2) !important;
    position: relative !important;
    overflow: hidden !important;
  }

  #trending-picks::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent) !important;
    animation: glossyShine 3s infinite !important;
  }

  @keyframes glossyShine {
    0% {
      left: -100%;
    }

    100% {
      left: 100%;
    }
  }
}

.blush-skincare-banner {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 50%, #e9ecef 100%);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(28, 28, 28, 0.12);
  position: relative;
  border: 2px solid var(--blush-red);
}

.blush-skincare-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--blush-gradient);
}

.skincare-banner-content {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.skincare-badge {
  display: inline-block;
  background: var(--blush-red);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.skincare-title {
  font-family: "Playfair Display", Poppins, serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--blush-charcoal);
  margin-bottom: 16px;
  line-height: 1.2;
}

.skincare-sub {
  color: var(--blush-charcoal);
  opacity: 0.8;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.skincare-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blush-charcoal);
}

.feature-item i {
  color: var(--blush-red);
  font-size: 14px;
}

.skincare-btn {
  background: var(--blush-gradient);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(227, 6, 19, 0.3);
}

.skincare-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227, 6, 19, 0.4);
}

.skincare-banner-image {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(230, 184, 162, 0.1) 0%, rgba(227, 6, 19, 0.05) 100%);
}

.skincare-banner-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
}

@media (max-width: 991px) {
  .blush-skincare-banner .row {
    flex-direction: row !important;
  }

  .blush-skincare-banner .col-12 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }

  .skincare-banner-content {
    padding: 25px 15px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }

  .skincare-title {
    font-size: 24px;
  }

  .skincare-features {
    align-items: flex-start;
  }

  .skincare-banner-image img {
    height: 250px;
    border-radius: 0 var(--radius-card) var(--radius-card) 0;
    max-width: 50% !important;
  }

  .skincare-banner-image {
    background: linear-gradient(135deg, rgba(230, 184, 162, 0.1) 0%, rgba(227, 6, 19, 0.05) 100%);
  }
}

@media (max-width: 576px) {
  .blush-skincare-banner .row {
    flex-direction: row !important;
  }

  .blush-skincare-banner .col-12 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }

  .skincare-banner-content {
    padding: 20px 12px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }

  .skincare-title {
    font-size: 20px;
  }

  .skincare-sub {
    font-size: 14px;
  }

  .skincare-banner-image img {
    height: 180px;
  }

  .skincare-features {
    gap: 8px;
  }

  .feature-item {
    font-size: 13px;
  }

  .skincare-btn {
    padding: 12px 20px;
    font-size: 13px;
  }
}

.blush-tab {
  flex: 0 0 auto;
  border-radius: var(--radius-pill);
  padding: 10px 14px;
  background: #fff;
  border: 1px solid rgba(28, 28, 28, 0.10);
  font-weight: 900;
  font-size: 13px;
  color: rgba(28, 28, 28, 0.85);
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(28, 28, 28, 0.06);
}

.blush-tab.active {
  background: rgba(227, 6, 19, 0.10);
  border-color: rgba(227, 6, 19, 0.22);
  color: var(--blush-red);
}

.blush-cat-scroll {
  display: flex;
  gap: 14px;
  overflow: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
}

.blush-cat-scroll::-webkit-scrollbar {
  display: none;
}

.blush-cat {
  flex: 0 0 auto;
  width: 92px;
  text-align: center;
  scroll-snap-align: start;
  text-decoration: none;
  color: rgba(28, 28, 28, 0.90);
}

.blush-cat-circle {
  width: 68px;
  height: 68px;
  margin: 0 auto;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(28, 28, 28, 0.10);
  box-shadow: 0 14px 30px rgba(28, 28, 28, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blush-cat-circle i {
  color: var(--blush-red);
  font-size: 22px;
}

.blush-cat-label {
  margin-top: 8px;
  font-weight: 900;
  font-size: 12px;
}

.blush-section {
  border-radius: var(--radius-card);
  padding: 16px;
}

.blush-section.dark {
  background: radial-gradient(1200px 500px at 20% 10%, rgba(230, 184, 162, 0.20), transparent 60%),
    linear-gradient(135deg, rgba(20, 20, 20, 1) 0%, rgba(64, 8, 14, 1) 55%, rgba(227, 6, 19, 1) 120%);
  color: #fff;
}

.blush-section.red {
  background: linear-gradient(135deg, rgba(227, 6, 19, 1) 0%, rgba(138, 0, 8, 1) 100%);
  color: #fff;
}

.blush-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.blush-section-title {
  font-family: "Playfair Display", Poppins, serif;
  font-weight: 800;
  margin: 0;
}

.blush-section a.blush-viewall {
  color: inherit;
  text-decoration: none;
  font-weight: 900;
  opacity: 0.92;
}

.blush-section a.blush-viewall:hover {
  opacity: 1;
  text-decoration: underline;
}

.blush-carousel-wrap {
  position: relative;
}

.blush-carousel {
  display: flex;
  gap: 12px;
  overflow: auto;
  padding: 10px 2px 6px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.blush-carousel::-webkit-scrollbar {
  display: none;
}

.blush-card-lift {
  transition: transform .2s ease, box-shadow .2s ease;
}

@media (hover:hover) {
  .blush-card-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 44px rgba(28, 28, 28, 0.14);
  }
}

.blush-product {
  scroll-snap-align: start;
  width: 188px;
  flex: 0 0 auto;
  border-radius: var(--radius-card);
  background: #fff;
  border: 1px solid rgba(28, 28, 28, 0.08);
  box-shadow: 0 12px 28px rgba(28, 28, 28, 0.10);
  overflow: hidden;
  min-height: 350px;
  height: auto;
}

.blush-product-img {
  position: relative;
  height: 160px;
  background: var(--blush-bg);
  overflow: hidden;
}

.blush-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blush-discount {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  background: var(--blush-red);
  color: #fff;
  font-weight: 900;
  font-size: 12px;
}

.blush-wish {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(28, 28, 28, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(28, 28, 28, 0.75);
}

.blush-product-body {
  padding: 10px 12px 12px;
}

.blush-product-body a {
  display: block;
  text-decoration: none;
}

.blush-brand-mini {
  font-size: 11px;
  font-weight: 900;
  color: rgba(28, 28, 28, 0.55) !important;
}

.blush-product-title {
  margin-top: 10px;
  font-weight: 900;
  font-size: 13px;
  line-height: 1.2;
  min-height: 50px;
  height: auto;
  color: var(--blush-charcoal) !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-wrap: break-word;
}

.blush-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 8px;
}

.blush-old {
  color: rgba(28, 28, 28, 0.45);
  text-decoration: line-through;
  font-weight: 800;
  font-size: 14px;
}

.blush-new {
  color: var(--blush-red);
  font-weight: 900;
  font-size: 20px;
}

.blush-add {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
}

.blush-add button {
  width: auto;
  min-width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, #E30613 0%, #B6040E 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(227, 6, 19, 0.28);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  font-size: 11px;
  font-weight: 600;
}

.add-cart-text {
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.blush-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

@media (min-width: 992px) {
  .blush-trust {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.blush-trust-item {
  background: #fff;
  border: 1px solid rgba(28, 28, 28, 0.08);
  border-radius: var(--radius-card);
  padding: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 12px 28px rgba(28, 28, 28, 0.08);
}

.blush-trust-item i {
  color: var(--blush-red);
}

.blush-footer {
  background: #fff;
  border-top: 1px solid rgba(28, 28, 28, 0.08);
}

.blush-footer a {
  text-decoration: none;
}

.blush-toast {
  position: fixed;
  left: 50%;
  bottom: 92px;
  transform: translate(-50%, 10px);
  background: rgba(28, 28, 28, 0.92);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 2000;
}

.blush-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* Product Image Display */
.product-image-container {
  position: relative;
  width: 100%;
  height: 360px;
  background: #f8f9fa;
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #f8f9fa;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

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

.product-image:hover {
  transform: scale(1.05);
  cursor: zoom-in;
}

.product-image-skeleton {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: var(--radius-card);
}

/* JoroSoft Link Styling */
.jorosoft-link {
  color: var(--blush-red) !important;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  padding: 2px 4px;
  border-radius: 4px;
}

.jorosoft-link:hover {
  color: var(--blush-hover) !important;
  text-decoration: none;
  background: rgba(230, 184, 162, 0.1);
  transform: translateY(-1px);
}

.jorosoft-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--blush-red);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.jorosoft-link:hover::after {
  width: 100%;
}

/* Disable zoom on mobile */
@media (max-width: 992px),
(hover: none) {
  .product-image:hover {
    transform: none;
    cursor: default;
  }
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .product-image-container {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .product-image-container {
    height: 240px;
  }
}

/* Shipping Options Styles */
.blush-shipping-options {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 16px;
  background: #fafafa;
}

.blush-shipping-options .form-check {
  margin-bottom: 12px;
  padding: 12px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  background: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}

.blush-shipping-options .form-check:hover {
  border-color: var(--blush-red);
  background: rgba(230, 184, 162, 0.1);
}

.blush-shipping-options .form-check-input:checked+.form-check-label {
  color: var(--blush-red);
}

.blush-shipping-options .form-check-input:checked~.form-check-label {
  border-color: var(--blush-red);
  background: rgba(230, 184, 162, 0.15);
}

.blush-shipping-options .form-check-input {
  margin-top: 8px;
}

.blush-shipping-options .form-check-label {
  width: 100%;
  cursor: pointer;
  margin-left: 8px;
}

.blush-shipping-options .badge {
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
}

/* Enhanced Dashboard Styles */
.dashboard-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(28, 28, 28, 0.06);
  position: relative;
  overflow: hidden;
}

.dashboard-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blush-red), var(--blush-rose-gold));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dashboard-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(28, 28, 28, 0.15);
  border-color: var(--blush-red);
}

.dashboard-card:hover::before {
  opacity: 1;
}

/* Revenue Cards */
.revenue-card {
  background: linear-gradient(135deg, #fff 0%, rgba(248, 225, 231, 0.3) 100%);
}

.revenue-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blush-red), var(--blush-rose-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  box-shadow: 0 8px 16px rgba(227, 6, 19, 0.2);
  transition: all 0.3s ease;
}

.revenue-card:hover .revenue-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 24px rgba(227, 6, 19, 0.3);
}

/* Status Cards */
.status-card {
  position: relative;
}

.status-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
}

.pending-card .status-icon {
  background: linear-gradient(135deg, #ffc107, #ff9800);
}

.confirmed-card .status-icon {
  background: linear-gradient(135deg, #28a745, #20c997);
}

.delivered-card .status-icon {
  background: linear-gradient(135deg, #007bff, #6610f2);
}

.cancelled-card .status-icon {
  background: linear-gradient(135deg, #dc3545, #e83e8c);
}

.customers-card .status-icon {
  background: linear-gradient(135deg, #17a2b8, #6f42c1);
}

.stock-card .status-icon {
  background: linear-gradient(135deg, #fd7e14, #e83e8c);
}

.status-card:hover .status-icon {
  transform: scale(1.15);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Chart Badges */
.chart-badge {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blush-red), var(--blush-rose-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  box-shadow: 0 4px 8px rgba(227, 6, 19, 0.2);
}

/* Quick Action Buttons */
.quick-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 15px;
  background: linear-gradient(135deg, #fff, rgba(248, 225, 231, 0.2));
  border: 2px solid rgba(227, 6, 19, 0.1);
  border-radius: 12px;
  text-decoration: none;
  color: var(--blush-charcoal);
  transition: all 0.3s ease;
  min-height: 100px;
}

.quick-action-btn i {
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--blush-red);
  transition: all 0.3s ease;
}

/* Daraz-style Zoom System */
.zoom-window {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: none;
  overflow: hidden;
}

.zoom-header {
  background: linear-gradient(135deg, var(--blush-red), var(--blush-rose-gold));
  color: white;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
}

.zoom-header i {
  margin-right: 8px;
  font-size: 16px;
}

.zoom-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.zoom-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.zoom-content {
  padding: 20px;
  height: calc(100% - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
}

.zoom-content img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

/* Zoom trigger button */
.zoom-trigger {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--blush-red);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 10;
}

.zoom-trigger:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.zoom-trigger i {
  font-size: 20px;
}

.quick-action-btn span {
  font-weight: 600;
  font-size: 13px;
  text-align: center;
}

.quick-action-btn:hover {
  background: linear-gradient(135deg, var(--blush-red), var(--blush-rose-gold));
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(227, 6, 19, 0.3);
  border-color: var(--blush-red);
}

.quick-action-btn:hover i {
  color: white;
  transform: scale(1.2);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.dashboard-card {
  animation: fadeInUp 0.6s ease-out;
}

.dashboard-card:nth-child(1) {
  animation-delay: 0.1s;
}

.dashboard-card:nth-child(2) {
  animation-delay: 0.2s;
}

.dashboard-card:nth-child(3) {
  animation-delay: 0.3s;
}

.dashboard-card:nth-child(4) {
  animation-delay: 0.4s;
}

/* Pulse Animation for Important Items */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

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

.status-card.pending-card:hover,
.status-card.stock-card:hover {
  animation: pulse 1s infinite;
}

/* Responsive Dashboard */
@media (max-width: 768px) {
  .dashboard-card {
    margin-bottom: 15px;
  }

  /* Mobile Navigation */
  .blush-rednav {
    position: relative;
  }

  #blushRedNav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--blush-red);
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 8px 8px;
  }

  #blushRedNav .blush-nav-links {
    padding: 15px;
    margin: 0;
  }

  #blushRedNav .nav-dropdown {
    width: 100%;
    margin-bottom: 10px;
  }

  #blushRedNav .nav-dropdown-toggle {
    display: block;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    margin-bottom: 5px;
  }

  #blushRedNav .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.05);
    margin-top: 0;
    border-radius: 6px;
  }

  #blushRedNav .nav-dropdown-menu a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
  }

  #blushRedNav .nav-dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
  }

  #blushRedNav a:not(.nav-dropdown-toggle) {
    display: block;
    padding: 12px 15px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    border-radius: 6px;
    margin-bottom: 5px;
  }

  #blushRedNav a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
  }

  .revenue-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .status-icon {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .quick-action-btn {
    min-height: 80px;
    padding: 15px 10px;
  }

  .quick-action-btn i {
    font-size: 20px;
    margin-bottom: 5px;
  }

  .quick-action-btn span {
    font-size: 12px;
  }
}