@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Nykaa-inspired theme */
  --bg-primary: #f3f3f3;
  --bg-secondary: #ffffff;
  --bg-tertiary: #ebebeb;
  --foreground: #001325;
  --foreground-muted: rgba(0, 19, 37, 0.64);

  --accent-primary: #e80071;
  --accent-primary-hover: #c9005f;
  --accent-gold: #e80071;
  --accent-gold-hover: #c9005f;
  --accent-rose: #e80071;
  --accent-rose-muted: #fce4ef;

  --border-color: rgba(0, 19, 37, 0.08);
  --border-color-glow: rgba(232, 0, 113, 0.25);

  --glass-bg: #ffffff;
  --glass-border: rgba(0, 19, 37, 0.06);
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);

  --font-serif: 'Inter', system-ui, sans-serif;
  --font-sans: 'Inter', system-ui, sans-serif;

  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.15s ease;

  --page-max: 1300px;
  --page-gutter: 2rem;
}

.page-container {
  width: 100%;
  max-width: var(--page-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background-color: var(--bg-primary);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1;
  min-height: 100vh;
  overflow-x: clip;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'cv01' on, 'cv05' on, 'cv06' on;
}

body {
  display: flex;
  flex-direction: column;
}

/* Magento Hyvä theme clears the sticky bar via .page-footer only (see bouticare-hyva.css) */
.app-body {
  padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
}

.bouticare-theme {
  padding-bottom: 0;
}

.app-body.page-pdp,
.bouticare-pdp {
  padding-bottom: 0;
}

/* PDP content is long; don't stretch <main> to fill the viewport (causes white gap above footer). */
.app-body.page-pdp .app-main,
.bouticare-pdp .app-main {
  flex: 0 1 auto;
}

.app-body.page-pdp .site-footer,
.bouticare-pdp .site-footer {
  margin-top: 0;
}

.app-main {
  display: flex;
  flex-direction: column;
  flex: 1;
}

@media (min-width: 901px) {
  .app-body,
  .bouticare-theme {
    padding-bottom: 0;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* Base Headings & Links */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: -0.01em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

/* Micro-animations & Luxury Styling */
.glass-effect {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
}

.hover-lift {
  transition: var(--transition-smooth);
}
.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold);
}

.gold-link {
  position: relative;
}
.gold-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: var(--accent-gold);
  transition: var(--transition-smooth);
}
.gold-link:hover::after {
  width: 100%;
}

.luxury-button {
  background-color: var(--accent-primary);
  color: #ffffff;
  border: 1px solid var(--accent-primary);
  padding: 0.8rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.luxury-button:hover {
  background-color: var(--accent-primary-hover);
  border-color: var(--accent-primary-hover);
  transform: translateY(-1px);
}

.luxury-button-secondary {
  background-color: transparent;
  color: var(--foreground);
  border: 1px solid var(--border-color);
  padding: 0.8rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.luxury-button-secondary:hover {
  background-color: var(--bg-secondary);
  border-color: var(--accent-gold);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ── Header (desktop: Purplle-style, mobile: Nykaa-style) ── */
.site-header {
  position: relative;
  top: auto;
  /* Keep above page content + bottom bar so fixed drawer is not trapped */
  z-index: 1100;
  width: 100%;
  align-self: flex-start;
  flex-shrink: 0;
  background: #ffffff;
  box-shadow: none;
}

.site-header.is-menu-open {
  z-index: 1300;
}

body.mobile-menu-open .mobile-bottom-bar {
  visibility: hidden;
  pointer-events: none;
}

.header-banner {
  background-color: var(--accent-primary);
  color: #ffffff;
  text-align: center;
  padding: 0.5rem 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.header-banner p {
  margin: 0;
}

.header-main {
  background: #ffffff;
  position: relative;
  z-index: 1;
}

.header-inner {
  display: flex;
  flex-direction: column;
  padding: 0 1rem;
  max-width: 100%;
}

.header-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0 0.5rem;
}

/* PLP / inner-page mobile header (back + logo + icons) */
.header-plp-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.45rem 0;
  min-height: 48px;
}

.header-plp-left {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  min-width: 0;
  flex: 1;
}

.header-plp-right {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  flex-shrink: 0;
}

.header-back-btn {
  padding: 0;
  margin-left: -0.25rem;
}

.header-plp-search-icon {
  width: 24px;
  height: 24px;
  display: block;
}

.header-search-wrap {
  margin: 0 -1rem 0.65rem;
  padding: 0 1.25rem;
}

.header-search-trigger {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-sans);
  text-align: left;
}

.header-search-shell {
  width: 100%;
}

.header-search-field {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 40px;
  padding: 0 0.75rem;
  background: #f3f3f3;
  border-radius: 2px;
  box-sizing: border-box;
}

.header-search-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 0.5rem;
}

.header-search-icon-svg {
  width: 20px;
  height: 20px;
  display: block;
}

.header-search-input-wrap {
  flex: 1;
  min-width: 0;
}

.header-search-input {
  width: 100%;
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.25;
  color: #001325;
  outline: none;
  cursor: text;
  pointer-events: auto;
  padding: 0.55rem 0;
  margin: 0;
}

.header-search-input::placeholder {
  color: rgba(0, 19, 37, 0.64);
}

.header-search-spacer {
  flex-shrink: 0;
  width: 0;
}

.header-mobile-only {
  display: block;
}

.header-desktop-only {
  display: none;
}

.header-search-desktop {
  display: none;
  flex: 1;
  align-items: center;
  gap: 0.5rem;
  max-width: 520px;
  margin: 0 2rem;
  padding: 0.6rem 1rem;
  background: #f3f3f3;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-family: var(--font-sans);
}

.header-search-desktop input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 14px;
  color: rgba(0, 19, 37, 0.64);
  outline: none;
  cursor: pointer;
  pointer-events: none;
}

.header-sign-in {
  font-size: 13px;
  font-weight: 600;
  color: var(--foreground);
  white-space: nowrap;
  padding: 0.35rem 0.5rem;
}

.header-sign-in:hover {
  color: var(--accent-primary);
}

.header-right--desktop {
  gap: 1rem;
}

.header-banner--desktop {
  display: none;
  background-color: var(--accent-primary);
  color: #ffffff;
  text-align: center;
  padding: 0.45rem 1rem;
  font-size: 12px;
  font-weight: 600;
}

.header-banner--desktop a {
  color: #ffffff;
  text-decoration: underline;
  margin-left: 0.25rem;
}

.mega-menu-col {
  padding: 0.85rem 1rem;
}

.mega-menu-col-title {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mega-menu-col-link {
  display: block;
  font-size: 13px;
  color: var(--foreground-muted);
  padding: 0.25rem 0;
}

.mega-menu-col-link:hover {
  color: var(--accent-primary);
}

.mega-menu-grid--cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.mega-menu-grid--cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.mega-menu-grid--cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

/* Top brands row */
.top-brands {
  background: #ffffff;
  padding: 1rem 0 1.25rem;
  margin-bottom: 0.5rem;
}

.top-brands-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem 0.75rem;
  max-width: 1300px;
  margin: 0 auto;
}

.top-brands-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0 1rem;
}

.top-brand-card {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 88px;
  text-align: center;
}

.top-brand-image {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: #f3f3f3;
}

.top-brand-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-brand-name {
  font-size: 11px;
  font-weight: 500;
  color: var(--foreground);
  line-height: 1.3;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-menu-btn {
  display: none;
}

.header-logo {
  font-size: 1.35rem;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--foreground);
  white-space: nowrap;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
}

.header-nav-item {
  position: relative;
}

.header-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--foreground);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0;
  font-family: var(--font-sans);
  transition: var(--transition-fast);
}

.header-nav-link:hover,
.header-nav-link--plain:hover {
  color: var(--accent-gold);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-icon-btn {
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  padding: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  border-radius: 4px;
}

.header-icon-btn:hover {
  color: var(--accent-gold);
}

.header-cart-btn {
  position: relative;
}

.header-cart-badge {
  position: absolute;
  top: -2px;
  right: -4px;
  background-color: var(--accent-gold);
  color: var(--bg-primary);
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 50px;
  min-width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

.header-profile {
  position: relative;
}

/* Mega menus */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 0.75rem;
  z-index: 100;
  min-width: min(680px, calc(100vw - 2rem));
  max-width: calc(100vw - 2rem);
}

.mega-menu--brands {
  width: 340px;
  min-width: 280px;
  max-width: min(340px, calc(100vw - 2rem));
  left: 0;
  transform: none;
}

.mega-menu-inner,
.mega-menu-brands-panel {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  border-radius: 4px;
  overflow: hidden;
}

.mega-menu-inner {
  display: flex;
}

.mega-menu-sidebar {
  width: 180px;
  background: var(--bg-secondary);
  padding: 1.25rem 0;
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.mega-menu-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--foreground-muted);
  padding: 0 1.25rem 0.75rem;
}

.mega-menu-sidebar-link {
  padding: 0.55rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--foreground);
  transition: var(--transition-fast);
}

.mega-menu-sidebar-link:hover {
  background: var(--bg-tertiary);
  color: var(--accent-gold);
}

.mega-menu-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  padding: 0.5rem;
  min-width: 0;
}

.mega-menu-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem;
  border-radius: 6px;
  transition: var(--transition-fast);
}

.mega-menu-card:hover {
  background: var(--bg-secondary);
}

.mega-menu-card img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--bg-tertiary);
}

.mega-menu-card-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.mega-menu-card-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--foreground);
}

.mega-menu-card-desc {
  font-size: 0.72rem;
  color: var(--foreground-muted);
}

/* Brands mega menu */
.mega-menu-brands-panel {
  padding: 0.85rem 1rem 1rem;
}

.mega-menu-brands-head {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.65rem;
}

.mega-menu-brands-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mega-menu-brands-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--foreground);
}

.mega-menu-see-all {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-gold);
}

.mega-menu-brand-search {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 0.35rem 0.6rem;
  background: #ffffff;
  min-height: 34px;
}

.mega-menu-brand-search svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--foreground-muted);
}

.mega-menu-brand-search input {
  flex: 1;
  min-width: 0;
  border: none;
  background: none;
  font-size: 12px;
  line-height: 1.2;
  color: var(--foreground);
  outline: none;
  font-family: var(--font-sans);
}

.mega-menu-brand-search input::placeholder {
  color: var(--foreground-muted);
}

.mega-menu-brands-body {
  padding-top: 0.65rem;
  max-height: 220px;
  overflow: hidden;
}

.mega-menu-brand-list {
  max-height: 220px;
  overflow-y: auto;
  padding-right: 0.25rem;
  scrollbar-width: thin;
}

.brand-group {
  margin-bottom: 0.65rem;
}

.brand-group-letter {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-primary);
  display: block;
  margin-bottom: 0.2rem;
}

.brand-group-items {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-group-link {
  font-size: 12px;
  color: var(--foreground);
  padding: 0.2rem 0;
  line-height: 1.35;
  transition: var(--transition-fast);
}

.brand-group-link:hover {
  color: var(--accent-gold);
}

.brand-no-results {
  font-size: 0.82rem;
  color: var(--foreground-muted);
  padding: 1rem 0;
}

.alphabet-filter {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0;
  margin: 0;
}

.alphabet-filter li {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--foreground-muted);
  cursor: pointer;
  padding: 0.1rem 0.35rem;
  border-radius: 2px;
  transition: var(--transition-fast);
  text-align: center;
}

.alphabet-filter li:hover,
.alphabet-filter li.active {
  color: var(--accent-gold);
  background: var(--bg-secondary);
}

/* Profile dropdown */
.profile-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 220px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  border-radius: 6px;
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  z-index: 100;
}

.profile-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding: 0.65rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--foreground);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: var(--transition-fast);
}

.profile-dropdown-item:hover {
  background: var(--bg-secondary);
  color: var(--accent-gold);
}

.profile-dropdown-divider {
  height: 1px;
  background: var(--border-color);
  margin: 0.35rem 0;
}

/* Search overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 9, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8vh;
}

.search-panel {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  padding: 1.5rem;
}

.search-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.search-panel-head h3 {
  font-size: 1.1rem;
  font-family: var(--font-serif);
}

.search-panel-input {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--border-color);
  padding: 0.85rem 1rem;
  background: var(--bg-secondary);
  border-radius: 4px;
}

.search-panel-input input {
  flex: 1;
  border: none;
  background: none;
  font-size: 0.95rem;
  color: var(--foreground);
  outline: none;
  font-family: var(--font-sans);
}

.search-panel-suggestions {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.search-suggestion-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--foreground-muted);
  margin-bottom: 0.35rem;
}

.search-suggestion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.5rem;
  font-size: 0.88rem;
  color: var(--foreground);
  border-radius: 4px;
  transition: var(--transition-fast);
}

.search-suggestion:hover {
  background: var(--bg-secondary);
  color: var(--accent-gold);
}

/* Mobile drawer — Bouticare */
.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 19, 37, 0.48);
  z-index: 1300;
  display: block;
}

.mobile-drawer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(88vw, 360px);
  max-width: 360px;
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 8px 0 32px rgba(0, 19, 37, 0.18);
  transform: translateX(0);
  z-index: 1;
}

.mobile-drawer-enter {
  transition: transform 0.22s ease;
}
.mobile-drawer-enter-start,
.mobile-drawer-leave-end {
  transform: translateX(-100%);
}
.mobile-drawer-enter-end,
.mobile-drawer-leave-start {
  transform: translateX(0);
}
.mobile-drawer-leave {
  transition: transform 0.18s ease;
}

.mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(0, 19, 37, 0.08);
  flex-shrink: 0;
  background: #fff;
}

.mobile-drawer-logo {
  display: inline-flex;
  line-height: 0;
}

.mobile-drawer-logo img {
  display: block;
  height: 22px;
  width: auto;
}

.mobile-drawer-title {
  font-size: 1rem;
  font-weight: 700;
  color: #001325;
}

.mobile-drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #f3f3f3;
  color: #001325;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-drawer-close:hover {
  background: #ececec;
}

.mobile-drawer-quick {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  padding: 0.75rem 1rem;
  background: #fafafa;
  border-bottom: 1px solid rgba(0, 19, 37, 0.06);
  flex-shrink: 0;
}

.mobile-drawer-quick-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.4rem 0.5rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0, 19, 37, 0.1);
  color: #001325;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
}

.mobile-drawer-quick-link:hover {
  border-color: #e80071;
  color: #e80071;
}

.mobile-nav-tabs {
  display: flex;
  border-bottom: 1px solid rgba(0, 19, 37, 0.08);
  flex-shrink: 0;
  background: #fff;
}

.mobile-nav-tab {
  flex: 1;
  padding: 0.8rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(0, 19, 37, 0.5);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.mobile-nav-tab.active {
  color: #001325;
  border-bottom-color: #e80071;
}

.mobile-nav-content {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  background: #fff;
  padding-bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
}

.mobile-nav-panel {
  padding: 0;
}

.mobile-menu-empty {
  margin: 0;
  padding: 1.25rem 1rem;
  font-size: 0.88rem;
  color: rgba(0, 19, 37, 0.55);
}

.mobile-menu-item {
  border-bottom: 1px solid rgba(0, 19, 37, 0.06);
}

.mobile-menu-link {
  display: block;
  padding: 0.95rem 1rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #001325;
  text-decoration: none;
  letter-spacing: 0;
  text-transform: none;
}

.mobile-menu-link--brand {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.mobile-menu-accordion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 0.95rem 1rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: #001325;
  text-transform: none;
  letter-spacing: 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.mobile-menu-chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(0, 19, 37, 0.35);
  border-bottom: 2px solid rgba(0, 19, 37, 0.35);
  transform: rotate(45deg);
  transition: transform 0.18s ease;
  flex-shrink: 0;
  margin-top: -4px;
}

.mobile-menu-item.is-open .mobile-menu-chevron {
  transform: rotate(-135deg);
  margin-top: 4px;
  border-color: #e80071;
}

.mobile-menu-indicator {
  color: rgba(0, 19, 37, 0.45);
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  line-height: 1;
}

.mobile-menu-sub {
  background: #fafafa;
  padding: 0.15rem 0 0.45rem;
  border-top: 1px solid rgba(0, 19, 37, 0.04);
}

.mobile-menu-sublink {
  display: block;
  padding: 0.65rem 1rem 0.65rem 1.15rem;
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(0, 19, 37, 0.72);
  text-decoration: none;
}

.mobile-menu-sublink--all {
  color: #e80071;
  font-weight: 700;
}

.mobile-menu-sublink:hover {
  color: #e80071;
}

.mobile-brand-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.75rem 1rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(0, 19, 37, 0.12);
  background: #f7f7f7;
  border-radius: 8px;
  min-height: 44px;
}

.mobile-brand-search-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: block;
  color: rgba(0, 19, 37, 0.45);
}

.mobile-brand-search input {
  flex: 1;
  min-width: 0;
  border: none;
  background: none;
  font-size: 16px;
  line-height: 1.25;
  color: #001325;
  outline: none;
  font-family: inherit;
}

.mobile-brand-empty {
  padding: 1.25rem;
}

.mobile-drawer-promo {
  display: none;
}

.mobile-drawer-app-banner {
  display: none;
}

@media (min-width: 901px) {
  .mobile-drawer-backdrop,
  .mobile-drawer {
    display: none !important;
  }
}


.mobile-promo-cta {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

@media (max-width: 1024px) {
  .header-nav {
    gap: 1rem;
  }

  .header-nav-link {
    font-size: 0.65rem;
  }

  .mega-menu {
    min-width: 560px;
  }
}

@media (max-width: 900px) {
  .header-banner--desktop {
    display: none;
  }

  .header-main {
    border-bottom: none;
    box-shadow: 0 1px 0 var(--border-color);
  }

  .header-inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .header-top-bar {
    grid-template-columns: 1fr auto;
    gap: 0;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
  }

  .header-left {
    gap: 0.75rem;
  }

  .header-nav {
    display: none;
  }

  .header-menu-btn {
    display: flex;
    padding: 0.25rem;
  }

  .header-logo {
    font-size: 1.35rem;
  }

  .header-right {
    gap: 0.5rem;
  }

}

@media (min-width: 901px) {
  .header-inner {
    max-width: none;
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .header-mobile-only {
    display: none;
  }

  .header-desktop-only {
    display: block;
    width: 100%;
    font-family: var(--font-sans);
  }

  .header-main {
    width: 100%;
  }

  .hamburger {
    display: none;
  }

  .nykaa-product-slide {
    width: 20%;
  }

  /* ── Nykaa desktop header ── */
  #header_id {
    --nykaa-dh-max: 1300px;
    --nykaa-dh-gutter: 16px;
    --nykaa-header-height: 136px;
    font-family: var(--font-sans);
    font-weight: 400;
    width: 100%;
  }

  #header_id .nykaa-top-strip {
    height: 40px;
    line-height: 40px;
    padding: 0;
    position: relative;
    z-index: 10001;
    background-color: #da016a;
    background-image: url(https://images-static.nykaa.com/media/wysiwyg/uiTools/2026-4/topstrip.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }

  #header_id .top_strip_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: min(var(--nykaa-dh-max), 100%);
    max-width: var(--nykaa-dh-max);
    height: 40px;
    margin: 0 auto;
    padding: 0 var(--nykaa-dh-gutter);
    box-sizing: border-box;
  }

  #header_id .leftDiv {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  #header_id .rightDiv {
    flex-shrink: 0;
  }

  #header_id .left-message,
  #header_id .right-message {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.1px;
    line-height: 40px;
  }

  #header_id .leftDiv a {
    color: #001325;
    text-decoration: none;
    font-weight: 500;
  }

  #header_id .leftDiv a:hover {
    color: #fff;
    text-decoration: none;
  }

  #header_id .rightDiv ul {
    display: flex;
    align-items: center;
    height: 40px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  #header_id .rightDiv ul li {
    display: flex;
    align-items: center;
    height: 40px;
    padding: 0 13px;
    position: relative;
  }

  #header_id .rightDiv ul li a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    height: 40px;
    text-decoration: none;
    color: #001325;
    cursor: pointer;
  }

  #header_id .rightDiv ul li a:hover,
  #header_id .rightDiv ul li a:hover .ts-text {
    color: #fff;
    text-decoration: none;
  }

  #header_id .rightDiv ul li a:hover .ts-icon svg g {
    fill: #fff;
  }

  #header_id .rightDiv ul li a::after {
    content: "";
    width: 1px;
    height: 20px;
    background: #001325;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
  }

  #header_id .rightDiv ul li:last-child {
    padding-right: 0;
  }

  #header_id .rightDiv ul li:last-child a::after {
    content: none;
  }

  #header_id .top_strip_wrapper .ts-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  #header_id .top_strip_wrapper .ts-icon svg {
    width: 20px;
    height: 20px;
    display: block;
  }

  #header_id .top_strip_wrapper .ts-text {
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
  }

  #header_id .megaMenu_main {
    position: relative;
    z-index: 10002;
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
  }

  #header_id .nykaa-dh-desktop {
    position: relative;
    width: 100%;
  }

  #header_id .nykaa-dh-shell {
    width: min(var(--nykaa-dh-max), 100%);
    max-width: var(--nykaa-dh-max);
    margin: 0 auto;
    padding-left: var(--nykaa-dh-gutter);
    padding-right: var(--nykaa-dh-gutter);
    box-sizing: border-box;
  }

  #header_id .nykaa-dh-row-primary {
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    align-items: center;
    column-gap: 0.5rem;
    position: relative;
    min-height: 56px;
    padding-top: 4px;
    padding-bottom: 4px;
  }

  #header_id .nykaa-dh-primary-mega-host {
    grid-column: 1 / -1;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10004;
    pointer-events: none;
  }

  #header_id .nykaa-dh-primary-mega-host .nykaa-dh-mega {
    pointer-events: auto;
  }

  #header_id .nykaa-dh-primary-mega-host .nykaa-dh-mega--full {
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
  }

  #header_id .nykaa-dh-row-secondary {
    position: relative;
    border-top: 1px solid #f0f0f0;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    align-items: stretch;
  }

  #header_id .nykaa-dh-nav--secondary {
    width: 100%;
    min-width: 0;
  }

  #header_id .nykaa-dh-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding-right: 0.5rem;
    line-height: 0;
  }

  #header_id .header-logo-img {
    display: block;
    height: 28px;
    width: auto;
    max-height: 28px;
  }

  #header_id .nykaa-dh-nav--primary {
    min-width: 0;
  }

  #header_id .nykaa-dh-nav-item--primary.nykaa-dh-nav-item--active .nykaa-dh-nav-link--primary {
    color: #da016a;
  }

  #header_id .nykaa-dh-search-wrap {
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 0 0.75rem;
  }

  #header_id .nykaa-dh-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
  }

  #header_id .HeaderNav {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  #header_id .HeaderNav--primary {
    flex-wrap: nowrap;
    gap: 0;
  }

  #header_id .HeaderNav--secondary {
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 0;
    min-height: 44px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  #header_id .HeaderNav--secondary::-webkit-scrollbar {
    display: none;
  }

  #header_id .nykaa-dh-nav-item {
    position: relative;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    cursor: pointer;
  }

  #header_id .nykaa-dh-nav-item--primary {
    padding: 0 10px;
  }

  #header_id .nykaa-dh-nav-item--secondary {
    padding: 0 12px;
    height: 44px;
  }

  #header_id .nykaa-dh-nav-link--primary {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--foreground);
    height: 48px;
    white-space: nowrap;
    transition: color 0.15s ease;
  }

  #header_id .nykaa-dh-nav-item--primary:hover .nykaa-dh-nav-link--primary {
    color: #da016a;
  }

  #header_id .nykaa-dh-nav-link--secondary {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    text-transform: capitalize;
    color: rgba(0, 19, 37, 0.72);
    height: 44px;
    white-space: nowrap;
    transition: color 0.15s ease, border-color 0.15s ease;
    border-bottom: 3px solid transparent;
    box-sizing: border-box;
  }

  #header_id .nykaa-dh-nav-item--secondary:hover .nykaa-dh-nav-link--secondary,
  #header_id .nykaa-dh-nav-item--active .nykaa-dh-nav-link--secondary {
    color: #da016a;
    border-bottom-color: #da016a;
    font-weight: 600;
  }

  #header_id .nykaa-dh-nav-link--offers {
    color: #fff;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #fc2779 0%, #e80071 100%);
    border-radius: 2px;
    min-width: 72px;
    height: 22px;
    padding: 0 0.65rem;
    border-bottom: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(232, 0, 113, 0.35);
  }

  #header_id .nykaa-dh-nav-item--offers:hover .nykaa-dh-nav-link--offers,
  #header_id .nykaa-dh-nav-item--offers.nykaa-dh-nav-item--active .nykaa-dh-nav-link--offers {
    border-bottom: none !important;
    color: #fff;
  }

  #header_id .nykaa-dh-nav-item--offers {
    padding: 0 8px;
  }

  #header_id .arrBox_h {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    z-index: 10003;
    visibility: hidden;
  }

  #header_id .arrBox_h--visible {
    visibility: visible;
  }

  #header_id .nykaa-dh-search {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    width: 100%;
    max-width: 100%;
    height: 42px;
    padding: 0 0.35rem 0 0.75rem;
    background: #f3f3f3;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    cursor: text;
    font-family: var(--font-sans);
    box-sizing: border-box;
  }

  #header_id .nykaa-dh-search-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  #header_id .nykaa-dh-search input {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    font-size: 16px;
    color: #001325;
    outline: none;
    cursor: text;
    pointer-events: auto;
    font-family: var(--font-sans);
    line-height: 1.25;
    padding: 0.5rem 0;
  }

  #header_id .nykaa-dh-sign-in {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 0 1.15rem;
    background: #fc2779;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 2px;
    white-space: nowrap;
    transition: background 0.15s ease;
    line-height: 1;
  }

  #header_id .nykaa-dh-sign-in:hover {
    background: #da016a;
    color: #fff;
  }

  #header_id .nykaa-dh-bag {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    margin: 0;
  }

  #header_id .nykaa-dh-bag .header-cart-badge {
    top: 2px;
    right: 0;
  }

  #header_id .nykaa-dh-mega-host {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10003;
    pointer-events: none;
  }

  #header_id .nykaa-dh-mega-host .nykaa-dh-mega {
    pointer-events: auto;
  }

  #header_id .nykaa-dh-mega-host .nykaa-dh-mega--full {
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    max-width: 100%;
  }

  #header_id .nykaa-dh-backdrop {
    position: fixed;
    inset: 0;
    top: var(--nykaa-header-height);
    background: rgba(0, 0, 0, 0.45);
    z-index: 10001;
    pointer-events: none;
  }

  #header_id .nykaa-dh-mega {
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 10002;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    overflow: hidden;
  }

  #header_id .nykaa-dh-mega--brands-panel {
    width: 340px;
    transform: none;
  }

  #header_id .nykaa-dh-mega-columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    padding: 0;
    align-items: stretch;
  }

  #header_id .nykaa-dh-mega-columns--1 {
    grid-template-columns: minmax(0, 1fr);
  }

  #header_id .nykaa-dh-mega-columns--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #header_id .nykaa-dh-mega-columns--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  #header_id .nykaa-dh-mega-columns--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  #header_id .nykaa-dh-mega-columns--5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  #header_id .nykaa-dh-mega-columns--6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  #header_id .nykaa-dh-mega-col {
    padding: 1.15rem 1.1rem 1.35rem;
    min-height: 0;
    box-sizing: border-box;
  }

  #header_id .nykaa-dh-mega-col--alt {
    background: #f7f7f8;
  }

  #header_id .nykaa-dh-mega-subsection {
    margin-top: 1.25rem;
    padding-top: 0.25rem;
  }

  #header_id .nykaa-dh-mega-categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 1rem;
    padding: 1.25rem 1.5rem 1.5rem;
  }

  #header_id .nykaa-dh-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
  }

  #header_id .nykaa-dh-category-card img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 50%;
    background: #f9f9f9;
  }

  #header_id .nykaa-dh-category-card span {
    font-size: 12px;
    font-weight: 500;
    color: var(--foreground);
  }

  #header_id .allBrandsBox {
    padding: 0.85rem 1rem 1rem;
  }

  #header_id .brandSearchWrapper {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.65rem;
    margin-bottom: 0.5rem;
  }

  #header_id .brandSearchMain {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    padding: 0.35rem 0.6rem;
    background: #fff;
  }

  #header_id .brandSearchMain input {
    flex: 1;
    min-width: 0;
    border: none;
    background: none;
    font-size: 12px;
    color: var(--foreground);
    outline: none;
    font-family: var(--font-sans);
    text-transform: capitalize;
  }

  #header_id .nykaa-dh-brand-search-icon {
    flex-shrink: 0;
    color: var(--foreground-muted);
  }

  #header_id .nykaa-dh-brands-scroll {
    max-height: 320px;
    overflow-y: auto;
  }

  #header_id .nykaa-dh-brands-section-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--foreground-muted);
    padding: 0.5rem 0 0.25rem;
    letter-spacing: 0.04em;
  }

  #header_id .nykaa-dh-brand-link {
    display: block;
    font-size: 13px;
    color: var(--foreground);
    padding: 0.3rem 0;
    text-transform: capitalize;
  }

  #header_id .nykaa-dh-brand-link:hover {
    color: #da016a;
  }

  #header_id .nykaa-dh-mega-col-title {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.65rem;
    text-transform: capitalize;
    text-decoration: none;
    line-height: 1.3;
  }

  #header_id a.nykaa-dh-mega-col-title:hover {
    color: #da016a;
  }

  #header_id .nykaa-dh-mega-col-link {
    display: block;
    font-size: 12px;
    color: rgba(3, 2, 26, 0.65);
    padding: 0.22rem 0;
    line-height: 1.45;
    text-transform: capitalize;
    text-decoration: none;
  }

  #header_id .nykaa-dh-mega-col-link:hover {
    color: #da016a;
  }

  .site-header {
    box-shadow: none;
  }

  .header-main {
    background: #fff;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  #header_id {
    --nykaa-dh-gutter: 12px;
  }

  #header_id .nykaa-dh-row-primary {
    column-gap: 0.35rem;
  }

  #header_id .nykaa-dh-nav-item--primary {
    padding: 0 6px;
  }

  #header_id .nykaa-dh-nav-item--secondary {
    padding: 0 8px;
  }

  #header_id .nykaa-dh-nav-link--primary {
    font-size: 13px;
    height: 44px;
  }

  #header_id .nykaa-dh-search-wrap {
    padding: 0 0.35rem;
  }

  #header_id .nykaa-dh-sign-in {
    padding: 0 0.85rem;
    font-size: 12px;
  }

  #header_id .nykaa-dh-mega-col {
    min-height: 0;
    padding: 1rem 0.75rem 1.25rem;
  }

  #header_id .nykaa-dh-mega-columns--5,
  #header_id .nykaa-dh-mega-columns--6 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  #header_id {
    --nykaa-dh-gutter: 20px;
  }

  #header_id .nykaa-dh-row-primary {
    column-gap: 0.75rem;
  }

  #header_id .nykaa-dh-nav-item--primary {
    padding: 0 12px;
  }

  #header_id .nykaa-dh-nav-item--secondary {
    padding: 0 14px;
  }

  .nykaa-product-slide {
    width: 18.5%;
  }
}

/* ── Category strip (Nykaa-style horizontal scroll) ── */
.category-strip {
  background: #ffffff;
  padding: 0.5rem 0;
  margin-bottom: 0;
}

.category-strip-track {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0.75rem;
  -webkit-overflow-scrolling: touch;
}

.disable-scrollbars {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.disable-scrollbars::-webkit-scrollbar {
  display: none;
}

.category-strip-card {
  flex: 0 0 auto;
  width: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.category-strip-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--foreground);
  text-align: center;
  line-height: 1.2;
  max-width: 72px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.category-strip-image-wrap {
  width: 72px;
  height: 72px;
  border-radius: 4px;
  overflow: hidden;
  background: #f3f3f3;
}

.category-strip-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Desktop promo strip (Nykaa homepage, below header) ── */
.desktop-promo-strip {
  display: none;
}

@media (min-width: 768px) {
  .category-strip-track {
    gap: 0.75rem;
    padding: 0 1rem;
    max-width: 1300px;
    margin: 0 auto;
  }

  .category-strip-card {
    width: 84px;
  }

  .category-strip-label {
    max-width: 84px;
  }

  .category-strip-image-wrap {
    width: 84px;
    height: 84px;
  }
}


/* ── Edge-to-edge hero carousel ── */
.edgetoedge {
  margin-left: 0;
  margin-right: 0;
  background: #ffffff;
  overflow: hidden;
}

.edgetoedge-inner {
  height: auto;
  width: 100%;
  position: relative;
}

.edgetoedge-viewport {
  overflow: hidden;
  width: 100%;
}

.edgetoedge-track {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  will-change: transform;
}

.edgetoedge-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
}

.banner-container {
  position: relative;
  width: 100%;
}

.banner-container--edge .img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 7;
}

.banner-container--card {
  border-radius: 4px;
  overflow: hidden;
  background: #f3f3f3;
}

.banner-container--card .img-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

.image-tag-wrapper,
.image-container,
.image-with-logo,
.image-wrapper,
.img-wrap {
  width: 100%;
}

.img-wrap a {
  display: block;
}

/* ── New & Now brand strip ── */
.new-now-section {
  background: #ffffff;
  padding: 0.75rem 0 1rem;
  margin-bottom: 0.5rem;
}

.new-now-header {
  padding: 0 1rem 0.5rem;
  max-width: 1300px;
  margin: 0 auto;
}

.section-title-dots {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  height: 12px;
}

.section-title-dot {
  display: block;
  height: 3px;
  border-radius: 2px;
  background: var(--accent-primary);
}

.section-title-dot--left {
  width: 28px;
}

.section-title-dot--right {
  width: 8px;
  opacity: 0.45;
}

.new-now-inner {
  height: auto;
  width: 100%;
  position: relative;
}

.new-now-track {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0 1rem;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.new-now-card {
  flex: 0 0 40%;
  max-width: 40%;
  scroll-snap-align: start;
}

/* ── Need Help Choosing strip ── */
.help-choosing-section {
  background: #ffffff;
  padding: 0.85rem 0 1rem;
  margin-bottom: 0.5rem;
}

.help-choosing-header {
  padding: 0 1rem 0.65rem;
  max-width: 1300px;
  margin: 0 auto;
}

.help-choosing-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.help-choosing-title-wrap h2 {
  font-size: 14px;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.3;
}

.help-choosing-accent {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-primary);
}

.help-choosing-inner {
  width: 100%;
  position: relative;
}

.help-choosing-track {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0 1rem;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.help-choosing-card {
  flex: 0 0 30%;
  max-width: 30%;
  scroll-snap-align: start;
}

.banner-container--help {
  border-radius: 4px;
  overflow: hidden;
  background: #f3f3f3;
}

.banner-container--help .card-view {
  display: none;
}

.banner-container--help .img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 1;
}

@media (min-width: 768px) {
  .new-now-track {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 0.75rem;
  }

  .new-now-header {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .new-now-card {
    flex: 0 0 22%;
    max-width: 22%;
  }

  .banner-container--edge .img-wrap img {
    aspect-ratio: 21 / 7;
  }

  .help-choosing-header {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .help-choosing-track {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 0.65rem;
  }

  .help-choosing-card {
    flex: 0 0 18%;
    max-width: 18%;
  }

}

/* ── Promo carousel / snap-to-grid slider ── */
.promo-carousel {
  overflow: hidden;
  margin: 0;
  background: #ffffff;
  padding-bottom: 0.85rem;
  margin-bottom: 0.5rem;
}

.snaptogrid-inner {
  height: auto;
  width: 100%;
  position: relative;
}

.promo-carousel--secondary {
  padding-top: 0;
}

.promo-carousel-viewport,
.sliderbanner-wrapper {
  overflow: hidden;
  padding: 0 1rem;
}

.promo-carousel-track,
.sliderbanner-track {
  display: flex;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
  will-change: transform;
}

.promo-carousel-slide {
  flex: 0 0 88%;
  max-width: 88%;
  scroll-snap-align: start;
}

.banner-container--promo {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: #f3f3f3;
}

.banner-container--promo .card-view {
  display: none;
}

.banner-container--promo .image-container {
  position: relative;
}

.banner-container--promo .image-wrapper a {
  display: block;
}

.banner-container--promo .image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.callout-radius {
  position: absolute;
  bottom: 0.65rem;
  left: 0.65rem;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 6px;
  padding: 0.4rem 0.6rem;
  max-width: calc(100% - 1.3rem);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  pointer-events: none;
}

.callout-text {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.2;
  white-space: pre-wrap;
}

.callout-text2 {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--foreground-muted);
  line-height: 1.3;
  margin-top: 0.1rem;
}

/* Legacy promo callout classes (BrandPromoCarousel) */
.promo-banner {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: #f3f3f3;
}

.promo-banner-link {
  display: block;
  position: relative;
}

.promo-banner-image-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.promo-banner-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.promo-callout {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 6px;
  padding: 0.45rem 0.65rem;
  max-width: calc(100% - 1.5rem);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.promo-callout-text {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.2;
}

.promo-callout-text2 {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--foreground-muted);
  line-height: 1.3;
  margin-top: 0.1rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.65rem;
  padding: 0 1rem;
}

.carousel-dots--hero {
  margin-top: 0.5rem;
  padding-bottom: 0.75rem;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: #d4d4d4;
  cursor: pointer;
  transition: var(--transition-fast);
}

.carousel-dot.active {
  background: var(--accent-primary);
  width: 18px;
  border-radius: 3px;
}

@media (min-width: 768px) {
  .promo-carousel-viewport,
  .sliderbanner-wrapper {
    padding: 0 1rem;
    max-width: 1300px;
    margin: 0 auto;
  }

  .promo-carousel-slide {
    flex: 0 0 42%;
    max-width: 42%;
  }

  .carousel-dots--hero {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 901px) {
  .promo-carousel-slide {
    flex: 0 0 32%;
    max-width: 32%;
  }

  .promo-carousel-track,
  .sliderbanner-track {
    gap: 1rem;
  }
}

/* ── Nykaa homepage sections ── */
.home-page {
  width: 100%;
  background: var(--bg-primary);
  padding-bottom: 1rem;
}

.home-seo {
  padding: 1.5rem 1rem 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.home-seo h1 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--foreground-muted);
  margin-bottom: 0.35rem;
}

.home-seo p {
  font-size: 0.78rem;
  color: var(--foreground-muted);
  line-height: 1.5;
}

/* Skin concern chips */
.concern-chips {
  background: var(--bg-secondary);
  padding: 0.75rem 0;
  margin-bottom: 0.5rem;
}

.concern-chips-track {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0 1rem;
}

.concern-chip {
  flex: 0 0 auto;
  padding: 0.35rem 0;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--foreground);
  background: transparent;
  border: none;
  border-radius: 0;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.concern-chip:hover {
  color: var(--accent-primary);
}

/* Product rows */
.product-row {
  background: #f3f3f3;
  padding: 1rem 0 1.25rem;
  margin-bottom: 0.5rem;
}

.product-row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem 0.75rem;
  max-width: 1300px;
  margin: 0 auto;
}

.product-row-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
}

.product-row-link {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-primary);
}

.nykaa-product-row-track {
  width: 100%;
  display: inline-block;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  height: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.nykaa-product-slide {
  position: relative;
  display: inline-block;
  width: 41%;
  margin-right: 0.35rem;
  padding: 1rem 0.5rem;
  vertical-align: bottom;
  background-color: #ffffff;
  box-sizing: border-box;
  white-space: normal;
  overflow: hidden;
}

.nykaa-product-slide:first-of-type {
  margin-left: 1.25rem;
}

.nykaa-product-slide:last-of-type {
  margin-right: 1.25rem;
}

.nykaa-product-slide .width-limiter {
  max-width: 100%;
  min-width: 0;
  display: block !important;
  overflow: hidden;
}

/* Compact product card */
.product-card-compact {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  overflow: hidden;
  height: 100%;
}

.product-card-compact-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card-compact-img {
  position: relative;
  aspect-ratio: 1;
  background: var(--bg-primary);
  overflow: hidden;
}

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

.product-card-compact-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  background: var(--accent-primary);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  border-radius: 2px;
  text-transform: uppercase;
}

.product-card-compact-info {
  padding: 0.55rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}

.product-card-compact-brand {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--foreground-muted);
  text-transform: uppercase;
}

.product-card-compact-title {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--foreground);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}

.product-card-compact-rating {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--foreground);
}

.product-card-compact-reviews {
  color: var(--foreground-muted);
  font-weight: 400;
}

.product-card-compact-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.25rem;
}

.product-card-compact-price {
  font-size: 0.82rem;
  font-weight: 700;
}

.product-card-compact-add {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: var(--accent-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.product-card-compact-add.added {
  background: #16a34a;
}

/* Offer banners grid */
.offer-banners {
  padding: 0 1rem;
  margin-bottom: 0.5rem;
}

.offer-banners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  max-width: 1300px;
  margin: 0 auto;
}

.offer-banner-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
}

.offer-banner-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-banner-callout {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 4px;
  padding: 0.35rem 0.5rem;
}

.offer-banner-callout span {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.2;
}

.offer-banner-callout span:last-child {
  font-weight: 500;
  color: var(--foreground-muted);
  font-size: 0.6rem;
}

@media (max-width: 599px) {
  .offer-banners-grid {
    grid-template-columns: 1fr;
  }

  .offer-banner-card {
    aspect-ratio: 16 / 7;
  }
}

@media (min-width: 600px) {
  .offer-banners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 769px) and (max-width: 900px) {
  .nykaa-product-slide {
    width: 22%;
  }

  .product-row-head {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .offer-banners {
    padding: 0 1rem;
  }

  .home-seo {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (min-width: 901px) {
  /* ── Desktop: full-width homepage ── */
  .home-page {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 0 2rem;
  }

  .desktop-promo-strip {
    display: block;
    background: #ffffff;
    padding: 0.75rem 0 0.5rem;
    margin-bottom: 0;
  }

  .desktop-promo-strip-shell {
    position: relative;
    width: 100%;
    padding: 0 var(--page-gutter);
    box-sizing: border-box;
  }

  .desktop-promo-strip-stage {
    height: auto;
    position: relative;
  }

  .desktop-promo-strip-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scroll-padding-left: var(--page-gutter);
  }

  .desktop-promo-strip-track {
    display: flex;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .desktop-promo-strip-slide {
    flex: 0 0 35%;
    max-width: 35%;
    scroll-snap-align: start;
  }

  .banner-container--desktop-promo {
    display: block;
    padding-bottom: 0.75rem;
    text-decoration: none;
    color: inherit;
  }

  .banner-container--desktop-promo .card-view {
    display: none;
  }

  .banner-container--desktop-promo .image-tag-wrapper {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 12px;
  }

  .banner-container--desktop-promo .image-container {
    position: relative;
    cursor: pointer;
    min-height: 50px;
  }

  .banner-container--desktop-promo .image-wrapper a {
    display: block;
  }

  .banner-container--desktop-promo .image-wrapper img {
    display: inline-block;
    width: 100%;
    vertical-align: bottom;
    min-height: 50px;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16 / 10;
  }

  .banner-container--desktop-promo .callout-radius {
    bottom: 0.85rem;
    left: 0.85rem;
    border-radius: 8px;
    padding: 0.45rem 0.65rem;
  }

  .desktop-promo-strip-arrow {
    position: absolute;
    top: 45%;
    z-index: 2;
    width: 56px;
    height: 56px;
    border: 0;
    padding: 0;
    cursor: pointer;
    background: url(https://images-static.nykaa.com/uploads/3df01759-af0c-4d81-b2f7-f61577ac3807.svg)
      no-repeat center / contain;
    transform: translateY(-50%);
  }

  .desktop-promo-strip-arrow--prev {
    left: calc(var(--page-gutter) + 8px);
  }

  .desktop-promo-strip-arrow--next {
    right: calc(var(--page-gutter) + 8px);
    transform: translateY(-50%) scaleX(-1);
  }

  .home-page .category-strip {
    display: none;
  }

  .home-page .promo-carousel {
    display: none;
  }

  .home-page .edgetoedge {
    margin-bottom: 0.5rem;
    border-radius: 0;
    overflow: hidden;
  }

  .home-page .edgetoedge-inner,
  .home-page .edgetoedge-viewport {
    border-radius: 0;
    overflow: hidden;
  }

  .home-page .banner-container--edge .img-wrap img {
    aspect-ratio: 21 / 6;
    max-height: none;
    object-fit: cover;
  }

  .home-page .carousel-dots--hero {
    padding-bottom: 0.75rem;
  }

  .home-page .new-now-section,
  .home-page .new-now,
  .home-page .help-choosing-section,
  .home-page .help-choosing,
  .home-page .promo-carousel,
  .home-page .concern-chips,
  .home-page .top-brands,
  .home-page .product-row,
  .home-page .offer-banners {
    margin-bottom: 0.5rem;
    border-radius: 0;
  }

  .home-page .new-now-header,
  .home-page .help-choosing-header,
  .home-page .product-row-head,
  .home-page .top-brands-head {
    max-width: none;
    margin: 0;
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
  }

  .home-page .new-now-track {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 0.75rem;
    overflow: visible;
    padding: 0 var(--page-gutter);
    max-width: 1300px;
    margin: 0 auto;
  }

  .home-page .new-now-card,
  .home-page .help-choosing-card {
    flex: none;
    max-width: none;
    width: auto;
    min-width: 0;
  }

  .home-page .new-now-card img,
  .home-page .new-now-fallback,
  .home-page .help-choosing-card img,
  .home-page .help-choosing-fallback {
    max-height: 140px;
    aspect-ratio: 1;
    object-fit: cover;
  }

  .home-page .help-choosing-track,
  .home-page .help-choosing-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.75rem;
    overflow: visible;
    padding: 0 var(--page-gutter);
    max-width: 1300px;
    margin: 0 auto;
  }

  .home-page .snaptogrid-inner {
    max-width: none;
    margin: 0;
  }

  .home-page .promo-carousel-viewport,
  .home-page .sliderbanner-wrapper {
    padding: 0 var(--page-gutter);
  }

  .home-page .carousel-dots--promo {
    max-width: none;
    padding: 0 var(--page-gutter);
  }

  .home-page .concern-chips {
    background: #ffffff;
    padding: 0.85rem 0;
  }

  .home-page .concern-chips-track {
    max-width: none;
    margin: 0;
    padding: 0 var(--page-gutter);
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.5rem 1.25rem;
    overflow: visible;
  }

  .home-page .concern-chip {
    font-size: 13px;
  }

  .home-page .product-row {
    padding: 1rem 0 1.25rem;
  }

  .home-page .nykaa-product-row-track {
    padding: 0 var(--page-gutter);
  }

  .home-page .nykaa-product-slide {
    width: 24%;
  }

  .home-page .nykaa-product-slide:first-of-type {
    margin-left: 0;
  }

  .home-page .nykaa-product-slide:last-of-type {
    margin-right: 0;
  }

  .home-page .top-brands {
    padding: 1rem 0 1.25rem;
  }

  .home-page .top-brands .top-brands-track {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 0.75rem 1rem;
    overflow: visible;
    padding: 0 var(--page-gutter);
    max-width: 1300px;
    margin: 0 auto;
    justify-items: center;
  }

  .home-page .top-brands .top-brand-card {
    width: 88px;
  }

  .home-page .top-brands .top-brand-image {
    width: 72px;
    height: 72px;
    margin: 0 auto;
  }

  .home-page .offer-banners {
    padding: 0;
    margin-bottom: 0.5rem;
  }

  .home-page .offer-banners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    max-width: none;
    margin: 0;
    padding: 0 var(--page-gutter);
  }

  .home-page .home-seo {
    max-width: none;
    margin: 0;
    padding: 1.25rem var(--page-gutter) 0;
  }

  .help-widget {
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

@media (max-width: 900px) {
  .plp-active-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 0.75rem;
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
  }

  .plp-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.55rem;
    border: 1px solid rgba(232, 0, 113, 0.35);
    border-radius: 999px;
    background: #fff5fa;
    color: var(--accent-primary);
    font-size: 11px;
    font-weight: 600;
    font-family: var(--font-sans);
    cursor: pointer;
  }

  .plp-filter-chip span {
    font-size: 13px;
    line-height: 1;
    opacity: 0.75;
  }

  .plp-filter-chip--clear {
    background: transparent;
    border-color: var(--border-color);
    color: var(--foreground-muted);
  }
}

@media (min-width: 1200px) {
  .home-page .new-now-track {
    grid-template-columns: repeat(10, 1fr);
  }

  .home-page .help-choosing-track {
    grid-template-columns: repeat(9, 1fr);
  }

  .home-page .top-brands .top-brands-track {
    grid-template-columns: repeat(10, 1fr);
  }

  .home-page .nykaa-product-slide {
    width: 18.5%;
  }

  .brands-page-featured {
    grid-template-columns: repeat(10, 1fr);
  }
}

/* ── Footer (Nykaa-style) ── */
.site-footer {
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  margin-top: auto;
  padding: 0;
}

.site-footer-app {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  background: linear-gradient(90deg, #fce4ef 0%, #ffffff 100%);
  border-bottom: 1px solid var(--border-color);
}

.site-footer-app-text strong {
  display: block;
  font-size: 13px;
  color: var(--accent-primary);
  margin-bottom: 0.2rem;
}

.site-footer-app-text p {
  font-size: 12px;
  color: var(--foreground-muted);
  margin-bottom: 0.65rem;
}

.site-footer-app-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.site-footer-store-badge {
  padding: 0.35rem 0.65rem;
  background: #001325;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 4px;
}

.site-footer-app-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
}

.site-footer-links {
  max-width: 1300px;
  margin: 0 auto;
}

.site-footer-section {
  border-bottom: 1px solid var(--border-color);
}

.site-footer-accordion-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 0.85rem 1rem;
  background: #fff;
  border: none;
  font-size: 12px;
  font-weight: 700;
  color: var(--foreground);
  cursor: pointer;
  font-family: var(--font-sans);
}

.site-footer-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(0, 19, 37, 0.45);
  transition: transform 0.2s ease;
}

.site-footer-section.is-open > .site-footer-accordion-btn .site-footer-chevron,
.site-footer-accordion-btn[aria-expanded="true"] .site-footer-chevron {
  transform: rotate(180deg);
}

.site-footer-accordion-panel {
  display: none;
  flex-direction: column;
  padding: 0 1rem 0.9rem;
  gap: 0.4rem;
}

.site-footer-section.is-open > .site-footer-accordion-panel {
  display: flex;
}

.site-footer-accordion-panel a {
  font-size: 12px;
  color: var(--foreground-muted);
}

.site-footer-accordion-panel a:hover {
  color: var(--accent-primary);
}

.site-footer-desktop-links {
  display: none;
}

.site-footer-social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  max-width: 1300px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border-color);
}

.site-footer-social > span {
  font-size: 12px;
  font-weight: 700;
  color: var(--foreground);
}

.site-footer-social-icons {
  display: flex;
  gap: 0.75rem;
}

.site-footer-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f3f3f3;
  color: var(--foreground);
}

.site-footer-social-icons a:hover {
  color: var(--accent-primary);
  background: #fce4ef;
}

.site-footer-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.75rem;
  padding: 0.65rem 1rem;
  font-size: 11px;
  color: var(--foreground-muted);
  text-align: center;
}

.site-footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.site-footer-logo {
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
}

.site-footer-bottom p {
  font-size: 0.68rem;
  color: var(--foreground-muted);
}

/* ── Mobile bottom bar (Nykaa exact) ── */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 997;
  background: #ffffff;
  border-top: 1px solid rgba(0, 19, 37, 0.08);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  -webkit-tap-highlight-color: transparent;
}

.mobile-bottom-bar-inner {
  width: 100%;
}

.mobile-bottom-bar-row {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  min-height: 56px;
}

.mobile-bottom-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-bottom-tab-link,
.mobile-bottom-tab-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0.4rem 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-sans);
  -webkit-tap-highlight-color: transparent;
}

.mobile-bottom-tab-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
}

.mobile-bottom-tab-inner img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.mobile-bottom-label {
  font-size: 10px;
  font-weight: 500;
  line-height: 1.1;
  color: rgba(0, 19, 37, 0.64);
  text-align: center;
}

.mobile-bottom-label--active {
  color: var(--accent-primary);
  font-weight: 600;
}

/* ── Categories shop landing (Nykaa shop_sdk_mweb) ── */
.categories-page {
  background: #f3f3f3;
  min-height: calc(100dvh - 120px - 56px - env(safe-area-inset-bottom, 0px));
}

.shop-landing {
  -webkit-font-smoothing: antialiased;
}

.shop-landing-heroes {
  padding: 0.5rem 1.25rem 1rem;
  background: transparent;
}

.shop-banner {
  display: block;
  text-decoration: none;
  color: inherit;
}

.shop-banner--hero {
  padding-bottom: 0.75rem;
}

.shop-banner-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.shop-banner-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  min-height: 50px;
}

.shop-banner-image-wrap--sm {
  min-height: auto;
}

.shop-banner-image {
  display: inline-block;
  width: 100%;
  vertical-align: bottom;
  min-height: 90px;
  border-style: none;
}

.shop-landing-section {
  padding: 0.5rem 0 1rem;
  background: #ffffff;
  margin-bottom: 0.5rem;
}

.shop-landing-heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--foreground);
  padding: 0.75rem 1.25rem 0.65rem;
  line-height: 1.2;
}

.shop-landing-scroll {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding: 0 1.25rem 0.75rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.shop-banner--help {
  flex: 0 0 40%;
  max-width: 40%;
  scroll-snap-align: start;
  padding-bottom: 0.5rem;
}

.shop-banner--help .shop-banner-link {
  background: #ffffff;
}

.shop-banner-text {
  padding: 0.5rem 0 0;
}

.shop-banner-titles {
  list-style: none;
  margin: 0;
  padding: 0;
}

.shop-banner-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--foreground);
  line-height: 1.3;
  margin-bottom: 0.2rem;
}

.shop-banner-desc {
  font-size: 11px;
  font-weight: 400;
  color: rgba(0, 19, 37, 0.65);
  line-height: 1.35;
}

.shop-landing-more-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  padding: 0 1.25rem 0.75rem;
}

.shop-banner--more {
  padding: 0 0.35rem 0.75rem;
}

.shop-banner--more:nth-child(odd) {
  padding-left: 0;
}

.shop-banner--more:nth-child(even) {
  padding-right: 0;
}

.shop-landing-seo {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Categories browse (two-pane sub-page) ── */
.categories-browse-page {
  background: #f3f3f3;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: calc(100dvh - 120px - 56px - env(safe-area-inset-bottom, 0px));
  min-height: calc(100dvh - 120px - 56px - env(safe-area-inset-bottom, 0px));
}

.categories-browse-page .categories-shop {
  flex: 1;
  min-height: 0;
  height: 100%;
}

.categories-shop {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 0;
  background: #ffffff;
}

.categories-shop-sidebar {
  width: 34%;
  max-width: 132px;
  flex-shrink: 0;
  min-height: 0;
  align-self: stretch;
  background: #f3f3f3;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
  border-right: 1px solid var(--border-color);
}

.categories-shop-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  padding: 0.7rem 0.25rem;
  border: none;
  border-left: 3px solid transparent;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background 0.15s ease;
}

.categories-shop-tab.active {
  background: #ffffff;
  border-left-color: var(--accent-primary);
}

.categories-shop-tab-icon {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.categories-shop-tab-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.categories-shop-tab-label {
  font-size: 10px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  color: rgba(0, 19, 37, 0.72);
  max-width: 100%;
  padding: 0 0.15rem;
}

.categories-shop-tab.active .categories-shop-tab-label {
  color: var(--accent-primary);
  font-weight: 700;
}

.categories-shop-panel {
  flex: 1;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  background: #ffffff;
}

.categories-shop-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border-color);
  flex-shrink: 0;
}

.categories-shop-panel-head h1 {
  font-size: 15px;
  font-weight: 700;
  color: var(--foreground);
}

.categories-shop-shop-all {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-primary);
  white-space: nowrap;
}

.categories-shop-banners {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 0.75rem 1rem;
  background: #f3f3f3;
}

.categories-shop-banner {
  padding-bottom: 0.75rem;
}

.categories-shop-banner .shop-banner-image {
  min-height: 72px;
}

@media (min-width: 901px) {
  .categories-page {
    max-width: var(--page-max);
    margin: 0 auto;
    padding: 1rem var(--page-gutter) 2rem;
    min-height: auto;
    background: #f3f3f3;
  }

  .shop-landing-heroes,
  .shop-landing-section {
    border-radius: 8px;
  }

  .shop-landing-section {
    margin-bottom: 1rem;
  }

  .shop-banner--help {
    flex: 0 0 28%;
    max-width: 28%;
  }

  .categories-browse-page {
    max-width: var(--page-max);
    margin: 0 auto;
    padding: 1rem var(--page-gutter) 2rem;
    min-height: auto;
    height: auto;
    overflow: visible;
  }

  .categories-shop {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    min-height: 520px;
  }

  .categories-shop-sidebar {
    width: 220px;
    max-width: none;
  }

  .categories-shop-tab {
    flex-direction: row;
    justify-content: flex-start;
    gap: 0.65rem;
    padding: 0.75rem 1rem;
  }

  .categories-shop-tab-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  .categories-shop-tab-label {
    font-size: 13px;
    text-align: left;
  }

  .categories-shop-banners {
    padding: 0.75rem 1rem 1rem;
  }

  .categories-shop-banner .shop-banner-image {
    min-height: 90px;
  }
}

@media (min-width: 901px) {
  .mobile-bottom-bar {
    display: none;
  }

  .site-footer {
    padding-bottom: 0;
  }

  .site-footer-app {
    max-width: 1300px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    border-radius: 0;
  }

  .site-footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem 2rem;
    padding: 1.25rem 1.5rem 0.85rem;
  }

  .site-footer-section {
    border-bottom: none;
  }

  .site-footer-accordion-btn,
  .site-footer-accordion-panel {
    display: none !important;
  }

  .site-footer-desktop-links {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }

  .site-footer-desktop-links h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--foreground);
    margin: 0 0 0.35rem;
  }

  .site-footer-desktop-links a {
    font-size: 12px;
    color: var(--foreground-muted);
    margin: 0;
  }

  .site-footer-desktop-links a:hover {
    color: var(--accent-primary);
  }

  .site-footer-social {
    padding: 0 1.5rem 0.5rem;
  }

  .site-footer-bottom {
    padding: 0.7rem 1.5rem 0.85rem;
    max-width: 1300px;
    margin: 0 auto;
  }

  .site-footer-trust {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0.65rem 1.5rem;
  }
}

/* ── Cart drawer (Nykaa-style) ── */
.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
}

.cart-drawer {
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
  animation: slideInDrawer 0.3s ease;
}

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

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

.cart-drawer-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--foreground);
}

.cart-drawer-title h3 {
  font-size: 16px;
  font-weight: 700;
}

.cart-drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
  padding: 0.25rem;
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.25rem;
}

.cart-drawer-empty {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--foreground-muted);
  text-align: center;
}

.cart-drawer-shop-btn {
  margin-top: 0.5rem;
  padding: 0.65rem 1.5rem;
  background: var(--accent-primary);
  color: #ffffff;
  border: none;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-sans);
}

.cart-drawer-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-drawer-item {
  display: flex;
  gap: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.cart-drawer-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 4px;
  background: #f3f3f3;
}

.cart-drawer-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.cart-drawer-item-top {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

.cart-drawer-item-top h4 {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.cart-drawer-item-top button {
  background: none;
  border: none;
  color: var(--foreground-muted);
  cursor: pointer;
  padding: 0;
}

.cart-drawer-item-variant {
  font-size: 11px;
  color: var(--foreground-muted);
}

.cart-drawer-item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.35rem;
}

.cart-drawer-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: 2px;
}

.cart-drawer-qty button {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
}

.cart-drawer-qty span {
  min-width: 24px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
}

.cart-drawer-item-price {
  font-size: 14px;
  font-weight: 700;
}

.cart-drawer-foot {
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid var(--border-color);
  background: #f9f9f9;
}

.cart-drawer-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
}

.cart-drawer-total strong {
  font-size: 16px;
  color: var(--foreground);
}

.cart-drawer-note {
  font-size: 11px;
  color: var(--foreground-muted);
  margin: 0.35rem 0 0.75rem;
}

.cart-drawer-checkout {
  width: 100%;
  padding: 0.85rem;
  background: var(--accent-primary);
  color: #ffffff;
  border: none;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-sans);
  letter-spacing: 0.02em;
}

/* ── Nykaa product cards ── */
.nykaa-product-card {
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(0, 19, 37, 0.06);
}

.nykaa-product-link {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.nykaa-product-img {
  position: relative;
  aspect-ratio: 1;
  background: #f3f3f3;
  overflow: hidden;
}

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

.nykaa-product-discount {
  position: absolute;
  top: 6px;
  left: 6px;
  background: #008945;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 2px;
}

.nykaa-product-wishlist {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--foreground);
}

.nykaa-product-wishlist.active {
  color: var(--accent-primary);
}

.nykaa-product-info {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.nykaa-product-brand {
  font-size: 10px;
  font-weight: 600;
  color: rgba(0, 19, 37, 0.64);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nykaa-product-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--foreground);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 32px;
}

.nykaa-product-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  font-weight: 600;
}

.nykaa-product-reviews {
  color: rgba(0, 19, 37, 0.64);
  font-weight: 400;
}

.nykaa-product-prices {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 2px;
}

.nykaa-product-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--foreground);
}

.nykaa-product-mrp {
  font-size: 11px;
  color: rgba(0, 19, 37, 0.64);
  text-decoration: line-through;
}

.nykaa-product-shades {
  font-size: 10px;
  color: rgba(0, 19, 37, 0.64);
  margin-top: 2px;
}

.nykaa-add-bag {
  width: 100%;
  padding: 8px;
  border: 1px solid var(--accent-primary);
  background: #ffffff;
  color: var(--accent-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: var(--transition-fast);
}

.nykaa-add-bag:hover,
.nykaa-add-bag.added {
  background: var(--accent-primary);
  color: #ffffff;
}

.nykaa-product-card--grid {
  width: 100%;
}

/* ── Nykaa horizontal product tile (~34.44% width) ── */
.nykaa-product-card-inner {
  background: transparent;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  padding: 0;
  box-sizing: border-box;
}

.nykaa-product-image-block {
  position: relative;
  display: flex;
  flex-direction: column;
}

.nykaa-product-image-shell {
  position: relative;
  aspect-ratio: 1;
  background: #f3f3f3;
  border-radius: 4px;
  overflow: hidden;
}

.nykaa-product-image-shell img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.nykaa-offer-badge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: var(--accent-primary);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 7px;
  letter-spacing: 0.02em;
}

.nykaa-product-rating-wrap {
  display: flex;
}

.nykaa-product-rating-row {
  display: flex;
  align-items: center;
  padding: 0.25rem 0 0;
  font-size: 12px;
  line-height: 1.2;
}

.nykaa-product-rating-row .actual-rating {
  font-weight: 600;
  color: #008945;
}

.nykaa-product-rating-row .rating-count {
  color: rgba(0, 19, 37, 0.64);
  font-weight: 400;
}

.nykaa-product-details {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 104px;
  max-width: 100%;
  min-width: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
  cursor: pointer;
}

.nykaa-product-names {
  display: flex;
  flex-direction: column;
  padding: 0.25rem 0;
  margin: 0;
  gap: 0.25rem;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.nykaa-brand-name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #001325;
  line-height: 1.25;
  text-transform: none;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.nykaa-brand-name--empty {
  display: block;
  min-height: 0;
  height: 0;
  overflow: hidden;
}

.nykaa-product-name {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: rgba(0, 19, 37, 0.64);
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
  max-width: 100%;
  min-width: 0;
}

.nykaa-variant-tag {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 0.25rem 0 0;
  margin: 0;
  color: #949ca3;
  font-size: 12px;
  font-weight: 400;
  line-height: initial;
  gap: 4px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.nykaa-variant-tag--empty {
  min-height: 0;
  padding: 0;
  height: 0;
  overflow: hidden;
}

.nykaa-variant-tag .tag-icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23949ca3' stroke-width='1.5'%3E%3Crect x='5' y='3' width='14' height='18' rx='2'/%3E%3Cpath d='M9 7h6M9 11h6'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.nykaa-price-block {
  margin: 0;
  padding: 0.25rem 0 0;
  display: block;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 16px;
}

.nykaa-price-block .sale-price,
.nykaa-price-block .mrp-price,
.nykaa-price-block .discounted-price {
  display: inline;
}

.nykaa-price-block .sale-price {
  font-size: 14px;
  font-weight: 700;
  color: #001325;
}

.nykaa-price-block .mrp-price {
  font-size: 12px;
  color: rgba(0, 19, 37, 0.56);
  text-decoration: line-through;
  margin-left: 0.35rem;
}

.nykaa-price-block .discounted-price {
  font-size: 12px;
  font-weight: 600;
  color: #008945;
  margin-left: 0.35rem;
}

.nykaa-gift-line {
  font-size: 11px;
  font-weight: 500;
  color: var(--accent-primary);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.nykaa-gift-line--empty {
  display: none;
}

.actionbutton_group {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  position: relative;
  bottom: 0;
  height: 32px;
  display: flex;
  align-items: stretch;
  gap: 0.25rem;
  margin: 0.5rem 0 0;
  padding: 0;
  box-sizing: border-box;
  overflow: visible;
}

.actionbutton_group .wishlist-wrapper {
  flex: 0 0 32px;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: 1px solid rgb(232, 0, 113);
  margin-right: 0;
  border-radius: 8px;
  overflow: hidden;
  box-sizing: border-box;
}

.actionbutton_group .wishlist {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0;
  background: #ffffff
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23e80071' stroke-width='1.75'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z'/%3E%3Cpath d='M16 14v4M14 16h4' stroke-linecap='round'/%3E%3C/svg%3E")
    center / 14px no-repeat;
  cursor: pointer;
  padding: 0;
}

.actionbutton_group .wishlist.active {
  background-color: #fff0f7;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='%23e80071' stroke='%23e80071' stroke-width='1.75'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z'/%3E%3Cpath d='M16 14v4M14 16h4' stroke='%23e80071' stroke-linecap='round'/%3E%3C/svg%3E");
}

.actionbutton_group .add_to_cart {
  border: 1px solid rgb(232, 0, 113);
  padding: 2px 0.5rem 0;
  color: rgb(255, 255, 255);
  font-size: 11px;
  font-family: var(--font-sans);
  letter-spacing: 0;
  font-weight: 600;
  text-align: center;
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  text-overflow: ellipsis;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  white-space: nowrap;
  background: linear-gradient(0deg, rgb(232, 0, 113), rgb(232, 0, 113));
  line-height: 1;
  height: 32px;
  min-height: 32px;
  cursor: pointer;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

.actionbutton_group .add_to_cart:hover,
.actionbutton_group .add_to_cart.added {
  background: linear-gradient(0deg, rgb(201, 0, 95), rgb(201, 0, 95));
  color: #ffffff;
}

/* Help widget */
.help-widget {
  position: fixed;
  bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
  right: 1rem;
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  font-size: 12px;
  font-weight: 600;
  color: var(--foreground);
  cursor: pointer;
  font-family: var(--font-sans);
}

.help-widget svg {
  color: var(--accent-primary);
  flex-shrink: 0;
}

/* PLP */
.plp-page {
  background: var(--bg-primary);
  min-height: 60vh;
  padding-bottom: 2rem;
}

.plp-breadcrumb {
  padding: 0.75rem 1rem;
  font-size: 12px;
  color: var(--foreground-muted);
  background: #fff;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border-color);
}

.plp-breadcrumb a {
  color: var(--foreground-muted);
  text-decoration: none;
}

.plp-breadcrumb a:hover {
  color: var(--accent-primary);
}

.plp-breadcrumb-sep {
  color: rgba(0, 19, 37, 0.32);
}

.plp-breadcrumb [aria-current="page"] {
  color: var(--foreground);
  font-weight: 600;
}

.plp-layout {
  display: block;
}

.plp-sidebar {
  display: none;
}

.plp-main {
  flex: 1;
  min-width: 0;
}

.plp-header {
  background: #ffffff;
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.plp-header-text {
  min-width: 0;
}

.plp-header h1 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--foreground);
}

.plp-header-desc {
  margin-top: 0.35rem;
  font-size: 12px;
  line-height: 1.45;
  color: var(--foreground-muted);
  max-width: 36rem;
}

.plp-header-count {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--foreground-muted);
  white-space: nowrap;
  padding-top: 0.15rem;
}

.plp-toolbar {
  display: flex;
  background: #ffffff;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 20;
}

.plp-toolbar-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1rem;
  font-size: 13px;
  font-weight: 600;
  background: #ffffff;
  border: none;
  border-right: 1px solid var(--border-color);
  font-family: var(--font-sans);
  cursor: pointer;
  color: var(--foreground);
  text-align: center;
}

.plp-toolbar-icon {
  display: inline-flex;
  color: var(--foreground);
}

.plp-toolbar-btn:last-child {
  border-right: none;
}

.plp-toolbar-btn--sort {
  color: var(--accent-primary);
}

.plp-results-bar {
  display: none;
}

.plp-active-filters {
  display: none;
}

.plp-filters {
  display: none;
}

.plp-filters--desktop {
  display: none;
}

.plp-filter-btn {
  flex: 0 0 auto;
  padding: 0.45rem 0.75rem;
  font-size: 12px;
  font-weight: 600;
  background: #f3f3f3;
  border: 1px solid var(--border-color);
  border-radius: 2px;
  cursor: pointer;
  font-family: var(--font-sans);
  color: var(--foreground);
}

.plp-filter-btn.active {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.plp-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  padding: 0.5rem;
  background: var(--bg-primary);
}

.plp-grid-cell {
  position: relative;
  background-color: #ffffff;
  padding: 0.75rem 0.5rem;
  box-sizing: border-box;
  overflow: hidden;
  min-width: 0;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.plp-grid-cell:hover {
  border-color: var(--border-color);
  box-shadow: var(--shadow-sm);
}

.plp-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--foreground-muted);
  background: #ffffff;
}

.plp-empty-btn {
  display: inline-block;
  width: auto;
  margin-top: 1rem;
  padding: 0.65rem 1.5rem;
}

.plp-sidebar-section + .plp-sidebar-section {
  border-top: 1px solid var(--border-color);
  margin-top: 0.75rem;
  padding-top: 0.75rem;
}

.plp-sidebar-heading {
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--foreground);
}

.plp-sidebar-heading--main {
  font-size: 14px;
  margin-bottom: 0.65rem;
}

.plp-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.plp-sidebar-nav a {
  font-size: 13px;
  color: var(--foreground-muted);
  padding: 0.35rem 0;
  text-decoration: none;
  line-height: 1.3;
}

.plp-sidebar-nav a.active,
.plp-sidebar-nav a:hover {
  color: var(--accent-primary);
  font-weight: 600;
}

.plp-sidebar-filters {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.plp-sidebar-filters--scroll {
  max-height: 220px;
  overflow-y: auto;
  padding-right: 0.25rem;
}

.plp-sidebar-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 13px;
  color: var(--foreground-muted);
  padding: 0.3rem 0;
  cursor: pointer;
  line-height: 1.35;
}

.plp-sidebar-check input {
  flex-shrink: 0;
  margin-top: 0.15rem;
  accent-color: var(--accent-primary);
  width: 14px;
  height: 14px;
}

.plp-sidebar-check span {
  min-width: 0;
}

.plp-filter-group h4 {
  font-size: 13px;
  font-weight: 700;
  margin: 1rem 0 0.5rem;
  color: var(--foreground);
}

.plp-filter-empty {
  font-size: 12px;
  color: var(--foreground-muted);
  margin: 0;
}

/* Mobile drawer app banner */
.mobile-drawer-app-banner {
  display: none !important;
}

.header-logo-svg,
.header-logo-img {
  display: block;
  height: 24px;
  width: auto;
  max-width: 100%;
}

@media (min-width: 769px) {
  .plp-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
    padding: 0.75rem;
    max-width: 1300px;
    margin: 0 auto;
  }

  .plp-grid-cell {
    padding: 0.85rem 0.65rem;
  }

  .plp-header {
    padding: 1.15rem 1rem;
  }

  .help-widget span {
    display: inline;
  }
}

@media (min-width: 901px) {
  .help-widget {
    bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .help-widget span {
    display: none;
  }

  .help-widget {
    padding: 0.65rem;
    border-radius: 50%;
  }
}

/* ── PLP desktop sidebar ── */
/* Nykaa full-screen PLP filter modal */
.plp-filter-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.15) 0 0 30px 6px;
}

.plp-filter-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-color);
  flex-shrink: 0;
}

.plp-filter-modal-head h2 {
  font-size: 16px;
  font-weight: 700;
  color: var(--foreground);
}

.plp-filter-reset-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: none;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  color: var(--foreground-muted);
  cursor: pointer;
  font-family: var(--font-sans);
  padding: 0.25rem 0;
}

.plp-filter-reset-btn:not(:disabled) {
  color: var(--foreground);
}

.plp-filter-reset-btn:disabled {
  opacity: 0.45;
  cursor: default;
}

.plp-filter-reset-icon {
  display: block;
}

.plp-filter-modal-body {
  flex: 1;
  min-height: 0;
  display: flex;
  width: 100%;
  background: #ffffff;
}

.plp-filter-facet-tabs {
  width: 33%;
  max-width: 140px;
  flex-shrink: 0;
  background: #f3f3f3;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  min-height: 0;
}

.plp-filter-facet-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  width: 100%;
  padding: 0.9rem 0.85rem;
  border: none;
  border-left: 3px solid transparent;
  background: transparent;
  text-align: left;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  color: rgba(0, 19, 37, 0.72);
  cursor: pointer;
  font-family: var(--font-sans);
}

.plp-filter-facet-tab.active {
  background: #ffffff;
  border-left-color: var(--accent-primary);
  color: var(--accent-primary);
  font-weight: 700;
}

.plp-filter-facet-badge {
  flex-shrink: 0;
  min-width: 18px;
  height: 18px;
  padding: 0 0.25rem;
  border-radius: 9px;
  background: var(--accent-primary);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.plp-filter-facet-panel {
  flex: 1;
  min-width: 0;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #ffffff;
}

.plp-filter-brand-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.75rem 1rem;
  padding: 0.55rem 0.75rem;
  background: #f3f3f3;
  border-radius: 2px;
  position: sticky;
  top: 0;
  z-index: 1;
}

.plp-filter-brand-search input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  font-size: 13px;
  font-family: var(--font-sans);
  outline: none;
  color: var(--foreground);
}

.plp-filter-brand-search input::placeholder {
  color: rgba(0, 19, 37, 0.55);
}

.plp-filter-option-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
  font-family: var(--font-sans);
}

.plp-filter-option-label {
  flex: 1;
  min-width: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--foreground);
  line-height: 1.3;
}

.plp-filter-option-meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.plp-filter-option-count {
  font-size: 12px;
  color: rgba(0, 19, 37, 0.45);
}

.plp-filter-checkbox {
  width: 18px;
  height: 18px;
  accent-color: var(--accent-primary);
  cursor: pointer;
}

.plp-filter-modal-foot {
  display: flex;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem calc(0.85rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--border-color);
  flex-shrink: 0;
  background: #ffffff;
}

.plp-filter-close-btn {
  flex: 1;
  padding: 0.8rem 1rem;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--border-color);
  border-radius: 2px;
  background: #ffffff;
  cursor: pointer;
  font-family: var(--font-sans);
  color: var(--foreground);
}

.plp-filter-apply-btn {
  flex: 1.4;
  padding: 0.8rem 1rem;
  font-size: 13px;
  font-weight: 700;
  border: none;
  border-radius: 2px;
  background: var(--accent-primary);
  color: #ffffff;
  cursor: pointer;
  font-family: var(--font-sans);
}

.plp-filter-apply-btn:disabled {
  opacity: 0.45;
  cursor: default;
}

.plp-sheet-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 15, 29, 0.45);
  z-index: 1100;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.plp-sort-sheet {
  width: 100%;
  max-height: 85dvh;
  background: #ffffff;
  border-radius: 12px 12px 0 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: plpSheetUp 0.25s ease;
}

@keyframes plpSheetUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.plp-sheet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-color);
  flex-shrink: 0;
}

.plp-sheet-head h2 {
  font-size: 16px;
  font-weight: 700;
}

.plp-sheet-close {
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(0, 15, 29, 0.08);
  border-radius: 50%;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  color: var(--foreground);
}

.plp-sheet-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 1.25rem 1rem;
}

.plp-sheet-foot {
  display: flex;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem calc(0.85rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--border-color);
  flex-shrink: 0;
  background: #ffffff;
}

.plp-sheet-clear {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--border-color);
  border-radius: 2px;
  background: #ffffff;
  cursor: pointer;
  font-family: var(--font-sans);
}

.plp-sheet-apply {
  flex: 1.4;
  padding: 0.75rem 1rem;
  font-size: 13px;
  font-weight: 700;
  border: none;
  border-radius: 2px;
  background: var(--accent-primary);
  color: #ffffff;
  cursor: pointer;
  font-family: var(--font-sans);
}

.plp-sort-options {
  padding: 0.5rem 0;
}

.plp-sort-option {
  display: block;
  width: 100%;
  padding: 0.9rem 1.25rem;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  border: none;
  border-bottom: 1px solid var(--border-color);
  background: #ffffff;
  cursor: pointer;
  font-family: var(--font-sans);
  color: var(--foreground);
}

.plp-sort-option.active {
  color: var(--accent-primary);
  font-weight: 700;
}

.plp-header--brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.plp-brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.plp-brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── PDP ── */
.pdp-page {
  background: var(--bg-primary);
  padding-bottom: 0;
}

@media (min-width: 1024px) {
  .pdp-page {
    padding-bottom: 2rem;
  }
}

.pdp-breadcrumb {
  padding: 0.75rem 1rem;
  font-size: 12px;
  color: var(--foreground-muted);
  background: #fff;
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: 0 auto;
}

.pdp-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 1rem;
  max-width: 1300px;
  margin: 0 auto;
  background: #fff;
}

.pdp-main-image {
  position: relative;
  aspect-ratio: 1;
  background: #f3f3f3;
  border-radius: 4px;
  overflow: hidden;
}

.pdp-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-brand {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-primary);
  text-transform: uppercase;
}

.pdp-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0.35rem 0 0.75rem;
}

.pdp-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.pdp-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: #008945;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 0.2rem 0.45rem;
  border-radius: 2px;
}

.pdp-reviews,
.pdp-shades {
  font-size: 12px;
  color: var(--foreground-muted);
}

.pdp-price-block {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.pdp-price {
  font-size: 22px;
  font-weight: 700;
}

.pdp-mrp {
  font-size: 14px;
  color: var(--foreground-muted);
  text-decoration: line-through;
}

.pdp-discount {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-primary);
}

.pdp-tax {
  width: 100%;
  font-size: 11px;
  color: var(--foreground-muted);
}

.pdp-offers {
  background: #fce4ef;
  border-radius: 4px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 12px;
}

.pdp-offers strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--accent-primary);
}

.pdp-offers ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--foreground);
}

.pdp-buy-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.pdp-form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--foreground-muted);
  text-transform: uppercase;
}

.pdp-variant-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pdp-variant-btn {
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--border-color);
  background: #fff;
  border-radius: 2px;
  font-size: 13px;
  cursor: pointer;
  font-family: var(--font-sans);
}

.pdp-variant-btn.active {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  font-weight: 600;
}

.pdp-pincode {
  display: flex;
  gap: 0.5rem;
}

.pdp-pincode input {
  flex: 1;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 2px;
  font-size: 13px;
  font-family: var(--font-sans);
}

.pdp-pincode button {
  padding: 0.6rem 1rem;
  border: 1px solid var(--accent-primary);
  background: #fff;
  color: var(--accent-primary);
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  border-radius: 2px;
  font-family: var(--font-sans);
}

.pdp-actions {
  display: flex;
  gap: 0.75rem;
}

.pdp-add-bag {
  flex: 1;
  padding: 0.85rem 1rem;
  background: var(--accent-primary);
  color: #fff;
  border: none;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-sans);
  text-align: center;
  display: inline-block;
}

.pdp-wishlist-btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border-color);
  background: #fff;
  border-radius: 2px;
  font-size: 20px;
  cursor: pointer;
  color: var(--accent-primary);
}

.pdp-trust {
  display: grid;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.pdp-trust div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.pdp-trust strong {
  font-size: 13px;
}

.pdp-trust span {
  font-size: 11px;
  color: var(--foreground-muted);
}

.pdp-tabs {
  max-width: 1300px;
  margin: 1rem auto 0;
  padding: 0 1rem;
}

.pdp-tab-panel {
  background: #fff;
  padding: 1.25rem;
  margin-bottom: 0.5rem;
}

.pdp-tab-panel h2 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.pdp-tab-panel p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--foreground-muted);
}

.pdp-features {
  margin-top: 0.75rem;
  padding-left: 1.25rem;
  font-size: 13px;
  color: var(--foreground-muted);
}

.pdp-reviews-summary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pdp-reviews-score {
  font-size: 28px;
  font-weight: 700;
  color: #008945;
}

.pdp-not-found {
  text-align: center;
  padding: 4rem 1rem;
}

/* ── PDP mobile (Nykaa-style) ── */
.pdp-mobile {
  display: block;
  background: #f3f3f3;
}

.pdp-desktop {
  display: none;
}

.pdp-m-promo-wrap {
  overflow: hidden;
  background: #fff;
  max-height: 110px;
}

.pdp-m-promo {
  width: 100%;
  max-height: 110px;
}

.pdp-m-promo-track {
  display: flex;
  width: 100%;
}

.pdp-m-promo-slide {
  flex: 0 0 100%;
  display: block;
  width: 100%;
  text-decoration: none;
}

.pdp-m-promo-slide img {
  width: 100%;
  height: auto;
  max-height: 110px;
  object-fit: cover;
  object-position: center;
  display: block;
  vertical-align: middle;
}

.pdp-m-gallery-wrap {
  background: #fff;
  position: relative;
  line-height: 0;
}

.pdp-m-gallery {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.pdp-m-gallery::-webkit-scrollbar {
  display: none;
}

.pdp-m-gallery-slide {
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: start;
  aspect-ratio: 1 / 1;
  max-height: min(100vw, 360px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f7f8;
  overflow: hidden;
}

.pdp-m-gallery-slide img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center;
  display: block;
}

.pdp-m-gallery-footer {
  display: flex;
  align-items: center;
  padding: 0.75rem 0.5rem;
  gap: 0.5rem;
}

.pdp-m-view-similar {
  flex-shrink: 0;
  padding: 0.35rem 0.65rem;
  border: 1px solid #dadee2;
  background: #fff;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  color: #001325;
}

.pdp-m-dots {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pdp-m-dots button {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(0, 19, 37, 0.24);
  cursor: pointer;
}

.pdp-m-dots button.active {
  width: 8px;
  height: 8px;
  background: #001325;
}

.pdp-m-share {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  border: none;
  background: none;
  font-size: 10px;
  color: rgba(0, 19, 37, 0.64);
  cursor: pointer;
  font-family: var(--font-sans);
}

.pdp-m-info {
  padding: 0.625rem 0.625rem 0;
  margin-bottom: 0;
  border-bottom: 1px solid #dadee2;
  background: #fff;
}

.pdp-m-editor-pick {
  height: 20px;
  width: auto;
  margin-bottom: 0.5rem;
}

.pdp-m-brand {
  font-size: 13px;
  font-weight: 600;
  color: #001325;
  text-decoration: none;
}

.pdp-m-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0.25rem 0 0;
  color: #001325;
}

.pdp-m-size {
  font-size: 13px;
  color: rgba(0, 19, 37, 0.64);
  margin-top: 0.15rem;
}

.pdp-m-rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0.75rem 0;
  padding: 0.5rem 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  color: inherit;
}

.pdp-m-rating-stars {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.pdp-m-stars {
  display: inline-flex;
  gap: 1px;
  color: #001325;
}

.pdp-m-stars .empty {
  opacity: 0.25;
}

.pdp-m-rating-score {
  font-size: 13px;
  color: #001325;
}

.pdp-m-rating-score strong {
  font-weight: 700;
}

.pdp-m-rating-count {
  font-size: 12px;
  color: rgba(0, 19, 37, 0.64);
}

.pdp-m-reviews-text {
  font-size: 12px;
  color: rgba(0, 19, 37, 0.64);
}

.pdp-m-price-row {
  padding-bottom: 0.625rem;
}

.pdp-m-price {
  font-size: 20px;
  font-weight: 700;
  color: #001325;
}

.pdp-m-mrp {
  font-size: 13px;
  color: rgba(0, 19, 37, 0.48);
  text-decoration: line-through;
  margin-left: 0.5rem;
}

.pdp-m-discount {
  font-size: 12px;
  font-weight: 600;
  color: #e80071;
  margin-left: 0.35rem;
}

.pdp-m-tax {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 11px;
  color: rgba(0, 19, 37, 0.64);
  margin-top: 0.35rem;
}

.pdp-m-price-note {
  font-size: 10px;
  line-height: 1.4;
  color: rgba(0, 19, 37, 0.48);
  margin: 0.5rem 0 0;
}

.pdp-m-shades {
  background: #fff;
  padding: 0.75rem 0.625rem;
  margin-bottom: 0;
  border-bottom: 1px solid #dadee2;
}

.pdp-m-shades-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: rgba(0, 19, 37, 0.64);
  margin: 0 0 0.5rem;
}

.pdp-m-shades-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.pdp-m-shades-head h3 {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.pdp-m-all-shades {
  border: none;
  background: none;
  font-size: 12px;
  font-weight: 600;
  color: #e80071;
  cursor: pointer;
  font-family: var(--font-sans);
}

.pdp-m-shade-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.pdp-m-shade-btn {
  position: relative;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

.pdp-m-shade-swatch {
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid transparent;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.pdp-m-shade-btn.active .pdp-m-shade-swatch {
  border-color: #e80071;
}

.pdp-m-shade-swatch img,
.pdp-m-shade-color {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.pdp-m-shade-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #f3f3f3;
  font-size: 14px;
  font-weight: 600;
}

.pdp-m-shade-btn.sold-out .pdp-m-shade-swatch {
  opacity: 0.4;
}

.pdp-m-shade-tag {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  white-space: nowrap;
  font-weight: 600;
}

.pdp-m-shade-tag.few {
  color: #e80071;
}

.pdp-m-shade-tag.oos {
  color: rgba(0, 19, 37, 0.48);
  font-size: 8px;
}

.pdp-m-sold-by {
  background: #fff;
  padding: 0.75rem 0.625rem;
  margin-bottom: 0;
  font-size: 12px;
  color: rgba(0, 19, 37, 0.64);
  border-bottom: 1px solid #dadee2;
}

.pdp-m-sold-by strong {
  color: #001325;
  font-weight: 600;
  margin-left: 0.25rem;
}

.pdp-m-sections {
  background: #f3f3f3;
}

.pdp-m-accordion {
  background: #fff;
  margin-bottom: 0;
  border-bottom: 1px solid #dadee2;
}

.pdp-m-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 0.625rem;
  border: none;
  background: #fff;
  font-family: var(--font-sans);
  cursor: pointer;
  text-align: left;
  color: #001325;
}

.pdp-m-accordion-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: rgba(0, 19, 37, 0.92);
}

.pdp-m-accordion-copy {
  flex: 1;
  min-width: 0;
}

.pdp-m-accordion-title {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  color: #001325;
}

.pdp-m-accordion-title-badge {
  font-size: 12px;
  font-weight: 600;
  color: #3a4047;
}

.pdp-m-accordion-subtitle {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: #5c6874;
  margin-top: 0.15rem;
}

.pdp-m-accordion-chevron {
  transition: transform 0.2s;
  color: rgba(0, 19, 37, 0.64);
}

.pdp-m-accordion-chevron.open {
  transform: rotate(180deg);
}

.pdp-m-accordion-panel {
  padding: 0 0.625rem 0.875rem;
}

.pdp-m-coupon-card,
.pdp-m-offer-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px dashed #dadee2;
  border-radius: 4px;
  font-size: 12px;
}

.pdp-m-coupon-card strong,
.pdp-m-offer-card strong {
  display: block;
  font-size: 13px;
  margin-bottom: 0.2rem;
}

.pdp-m-coupon-code {
  font-weight: 700;
  font-size: 13px;
  color: #e80071;
  border: 1px dashed #e80071;
  padding: 0.35rem 0.65rem;
  border-radius: 2px;
}

.pdp-m-category-chips {
  background: #fff;
  padding: 0.875rem 0.625rem;
  margin-bottom: 0.625rem;
}

.pdp-m-chips-label {
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 0.65rem;
  color: #001325;
}

.pdp-m-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pdp-m-chip {
  padding: 0.4rem 0.75rem;
  border: 1px solid #dadee2;
  border-radius: 20px;
  font-size: 12px;
  color: #001325;
  text-decoration: none;
  background: #fff;
}

.pdp-m-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.pdp-m-trust-card {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.75rem 0.5rem;
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  background: #fff;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-sans);
  color: #001325;
}

.pdp-m-trust-card strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.pdp-m-trust-card span {
  font-size: 11px;
  color: #e80071;
}

.pdp-m-pincode {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pdp-m-pincode-label {
  font-size: 13px;
  font-weight: 600;
  color: #001325;
}

.pdp-m-pincode-btn {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid #dadee2;
  border-radius: 2px;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: #001325;
  cursor: pointer;
  font-family: var(--font-sans);
  text-align: center;
}

.pdp-m-pincode input {
  padding: 0.65rem 0.75rem;
  border: 1px solid #dadee2;
  border-radius: 2px;
  font-size: 13px;
  font-family: var(--font-sans);
}

.pdp-m-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem;
  margin: 0;
}

.pdp-m-highlight-row {
  min-width: 0;
}

.pdp-m-highlights dt {
  font-size: 11px;
  color: rgba(0, 19, 37, 0.48);
  margin-bottom: 0.15rem;
}

.pdp-m-highlights dd {
  font-size: 13px;
  margin: 0;
  color: #001325;
}

.pdp-m-detail-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #f0f0f0;
  margin-bottom: 0.75rem;
}

.pdp-m-detail-tabs button {
  border: none;
  background: none;
  padding: 0.5rem 0.75rem 0.5rem 0;
  font-size: 13px;
  font-weight: 600;
  color: rgba(0, 19, 37, 0.48);
  cursor: pointer;
  font-family: var(--font-sans);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
}

.pdp-m-detail-tabs button.active {
  color: #e80071;
  border-bottom-color: #e80071;
}

.pdp-m-detail-content {
  max-height: 120px;
  overflow: hidden;
  position: relative;
}

.pdp-m-detail-content.expanded {
  max-height: none;
}

.pdp-m-detail-images {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.pdp-m-detail-images img {
  width: 100%;
  height: auto;
  display: block;
}

.pdp-m-detail-content p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(0, 19, 37, 0.72);
  margin: 0 0 0.5rem;
}

.pdp-m-detail-meta {
  margin-top: 0.75rem;
}

.pdp-m-detail-meta p {
  font-size: 12px;
  margin-bottom: 0.35rem;
}

.pdp-m-meta-label {
  font-weight: 600;
  color: rgba(0, 19, 37, 0.64);
}

.pdp-m-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.5rem;
  padding: 0;
  border: none;
  background: none;
  color: #e80071;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-sans);
}

.pdp-m-reviews-hero {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid #d6d9dc;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.pdp-m-reviews-score {
  font-size: 28px;
  font-weight: 700;
  color: #3a4047;
  line-height: 1;
}

.pdp-m-reviews-score span {
  font-size: 14px;
  font-weight: 400;
}

.pdp-m-reviews-hero-copy {
  flex: 1;
  min-width: 0;
}

.pdp-m-reviews-hero-copy strong {
  display: block;
  font-size: 12px;
  color: #3a4047;
}

.pdp-m-reviews-hero-copy span {
  font-size: 11px;
  color: #5c6874;
}

.pdp-m-review-photos {
  display: flex;
  gap: 0.35rem;
  overflow-x: auto;
  margin-bottom: 0.875rem;
  padding-bottom: 0.25rem;
}

.pdp-m-review-photo {
  position: relative;
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 4px;
  overflow: hidden;
}

.pdp-m-review-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-m-review-photo.last::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.pdp-m-review-photo-more {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  z-index: 1;
  line-height: 1.2;
}

.pdp-m-review-section-label {
  font-size: 13px;
  font-weight: 600;
  color: #3a4047;
  margin: 0 0 0.65rem;
}

.pdp-m-review-card {
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  padding: 0.75rem;
  margin-bottom: 0.75rem;
}

.pdp-m-review-user {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.pdp-m-review-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.pdp-m-review-name {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #001325;
}

.pdp-m-review-verified {
  font-size: 10px;
  color: #e80071;
}

.pdp-m-review-rating-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.pdp-m-review-shade {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 11px;
  color: rgba(0, 19, 37, 0.72);
}

.pdp-m-review-shade-label {
  color: rgba(0, 19, 37, 0.48);
}

.pdp-m-review-shade-swatch {
  width: 14px;
  height: 14px;
  border-radius: 2px;
  border: 1px solid #dadee2;
}

.pdp-m-review-card-photos {
  display: flex;
  gap: 0.35rem;
  overflow-x: auto;
  margin-bottom: 0.65rem;
}

.pdp-m-review-card-photos img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.pdp-m-review-stars {
  display: inline-block;
  background: #e80071;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 0.15rem 0.4rem;
  border-radius: 2px;
}

.pdp-m-review-quote {
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 0.35rem;
  color: #001325;
}

.pdp-m-review-text {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(0, 19, 37, 0.72);
  margin: 0 0 0.65rem;
}

.pdp-m-review-helpful {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: #5c6874;
  padding-top: 0.5rem;
  border-top: 1px solid #f0f0f0;
}

.pdp-m-review-helpful span:first-child {
  color: #e80071;
  font-weight: 600;
}

.pdp-m-read-reviews {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  padding: 0.65rem;
  border: none;
  background: none;
  color: #e80071;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-sans);
}

.pdp-m-rate-btn {
  padding: 0.5rem 1rem;
  border: 1px solid #e80071;
  background: #fff;
  color: #e80071;
  font-weight: 600;
  font-size: 12px;
  border-radius: 2px;
  cursor: pointer;
  font-family: var(--font-sans);
}

.pdp-m-footer-links {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0 1rem;
  background: #fff;
}

.pdp-m-footer-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 0.625rem;
  font-size: 13px;
  color: #3a4047;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
}

.pdp-m-sticky-spacer {
  height: calc(80px + env(safe-area-inset-bottom, 0px));
}

.pdp-m-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 80px;
  padding: 1rem;
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
  background: #fff;
  border-radius: 1.25rem 1.25rem 0 0;
  box-shadow:
    rgba(17, 19, 20, 0.12) 0 2px 4px -2px,
    rgba(17, 19, 20, 0.12) 0 2px 8px 0;
}

.pdp-m-sticky-price {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.pdp-m-sticky-offer {
  font-size: 18px;
  font-weight: 700;
  color: #001325;
  line-height: 1.1;
}

.pdp-m-sticky-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.pdp-m-sticky-mrp-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.pdp-m-sticky-mrp {
  font-size: 11px;
  color: rgba(0, 19, 37, 0.48);
  text-decoration: line-through;
  line-height: 1.2;
}

.pdp-m-sticky-discount {
  font-size: 11px;
  font-weight: 600;
  color: #e80071;
  line-height: 1.2;
}

.pdp-m-sticky-tax {
  font-size: 10px;
  color: rgba(0, 19, 37, 0.48);
  line-height: 1.2;
}

.pdp-m-sticky-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.pdp-m-wishlist-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdp-m-wishlist {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border: none;
  background: transparent;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

.pdp-m-wishlist:active {
  opacity: 0.7;
}

.pdp-m-add-bag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: 130px;
  height: 44px;
  padding: 0 1rem;
  background: #e80071;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-sans);
  cursor: pointer;
  white-space: nowrap;
}

.pdp-m-add-bag:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.pdp-m-oos-btn {
  min-width: 130px;
  height: 44px;
  padding: 0 1rem;
  background: rgba(0, 19, 37, 0.12);
  color: rgba(0, 19, 37, 0.48);
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-sans);
  cursor: not-allowed;
  text-transform: capitalize;
  white-space: nowrap;
}

/* PDP recommendation rows (Similar Products) */
.pdp-rec-section {
  background: #fff;
  padding: 0.875rem 0 0;
  margin-bottom: 0;
}

.pdp-rec-title {
  font-size: 16px;
  font-weight: 700;
  color: #001325;
  margin: 0 0 0.65rem;
  padding: 0 0.625rem;
  line-height: 1.2;
}

.pdp-rec-list {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0.75rem;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.pdp-rec-list::-webkit-scrollbar {
  display: none;
}

.pdp-rec-card {
  flex: 0 0 41%;
  width: 41%;
  min-width: 41%;
  padding: 0 0.35rem 0 0;
  scroll-snap-align: start;
  box-sizing: border-box;
}

.pdp-rec-card:first-child {
  padding-left: 0.625rem;
}

.pdp-rec-card:last-child {
  padding-right: 0.625rem;
}

.pdp-rec-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  background: #fff;
}

.pdp-rec-media {
  position: relative;
}

.pdp-rec-tags {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
  max-width: 100%;
}

.pdp-rec-tag {
  font-size: 8px;
  font-weight: 700;
  padding: 0.2rem 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  cursor: default;
}

.pdp-rec-tag--featured {
  background: #001325;
  color: #fff;
}

.pdp-rec-tag--bestseller {
  background: #fff3f8;
  color: #e80071;
  border: 1px solid #ffd3e4;
}

.pdp-rec-image-wrap {
  display: block;
  height: 156px;
  background: #fff;
  overflow: hidden;
}

.pdp-rec-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.pdp-rec-body {
  padding: 0.35rem 0 0;
  min-width: 0;
  flex: 1;
}

.pdp-rec-name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.35;
  color: #001325;
  text-decoration: none;
  margin: 0 0 0.15rem;
  min-height: 2.7em;
}

.pdp-rec-variant {
  font-size: 10px;
  color: #949ca3;
  margin: 0 0 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pdp-rec-rating-row {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 0.25rem;
  min-width: 0;
}

.pdp-rec-stars {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  flex-shrink: 0;
}

.pdp-rec-star {
  display: inline-flex;
  line-height: 0;
}

.pdp-rec-review-count {
  font-size: 10px;
  color: rgba(0, 19, 37, 0.64);
  white-space: nowrap;
}

.pdp-rec-price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.15rem 0.3rem;
  line-height: 1.2;
}

.pdp-rec-mrp {
  font-size: 10px;
  color: rgba(0, 19, 37, 0.56);
  text-decoration: line-through;
}

.pdp-rec-price {
  font-size: 12px;
  font-weight: 700;
  color: #001325;
}

.pdp-rec-discount {
  font-size: 10px;
  font-weight: 600;
  color: #e80071;
}

.pdp-rec-offer {
  font-size: 10px;
  color: #e80071;
  margin: 0.15rem 0 0;
}

.pdp-rec-actions {
  display: flex;
  align-items: stretch;
  gap: 0.25rem;
  margin-top: 0.5rem;
  min-width: 0;
}

.pdp-rec-wishlist {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dadee2;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  padding: 0;
}

.pdp-rec-wishlist svg {
  width: 18px;
  height: 18px;
}

.pdp-rec-wishlist.active {
  border-color: #e80071;
  background: #fff3f8;
}

.pdp-rec-cta {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  height: 2rem;
  padding: 0 0.35rem;
  font-size: 11px;
  font-weight: 600;
  color: #001325;
  text-decoration: none;
  background: #fff;
  border: 1px solid #dadee2;
  border-radius: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: var(--font-sans);
}

.pdp-rec-view-all-wrap {
  padding: 0 0.625rem 0.875rem;
}

.pdp-rec-view-all {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid #e80071;
  border-radius: 4px;
  background: #fff;
  color: #e80071;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  font-family: var(--font-sans);
}

.pdp-mobile .product-row {
  background: #fff;
  margin-bottom: 0;
  padding: 0.875rem 0;
}

@media (min-width: 1024px) {
  .pdp-mobile {
    display: none;
  }

  .pdp-desktop {
    display: block;
  }
}

/* ── Search page ── */
.search-page {
  background: var(--bg-primary);
  min-height: 60vh;
  padding-bottom: 2rem;
}

.search-page-head {
  background: #fff;
  padding: 1rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
}

.search-page-head h1 {
  font-size: 16px;
  font-weight: 700;
}

.search-page-trending {
  padding: 1.5rem 1rem;
  background: #fff;
  margin: 0.5rem 0;
}

.search-page-trending h2 {
  font-size: 14px;
  margin-bottom: 0.75rem;
}

.search-page-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.search-page-chip {
  padding: 0.5rem 0.85rem;
  background: #f3f3f3;
  border-radius: 20px;
  font-size: 13px;
}

.plp-grid--search {
  padding-top: 0.5rem;
}

/* ── Cart page ── */
.cart-page {
  background: var(--bg-primary);
  min-height: 60vh;
  padding: 1rem;
}

.cart-page-empty {
  text-align: center;
  padding: 4rem 1rem;
  background: #fff;
  border-radius: 4px;
  max-width: 600px;
  margin: 2rem auto;
}

.cart-page-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.cart-page-items {
  background: #fff;
  padding: 1.25rem;
  border-radius: 4px;
}

.cart-page-items h1 {
  font-size: 18px;
  margin-bottom: 1rem;
}

.cart-page-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

.cart-page-item img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 4px;
}

.cart-page-item h3 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.cart-page-item-brand,
.cart-page-item-variant {
  font-size: 12px;
  color: var(--foreground-muted);
  display: block;
}

.cart-page-item-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.cart-page-item-price {
  font-weight: 700;
  margin-left: auto;
}

.cart-page-remove {
  background: none;
  border: none;
  color: var(--foreground-muted);
  cursor: pointer;
}

.cart-page-summary {
  background: #fff;
  padding: 1.25rem;
  border-radius: 4px;
  height: fit-content;
}

.cart-page-summary h2 {
  font-size: 16px;
  margin-bottom: 1rem;
}

.cart-page-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 0.5rem;
}

.cart-page-free {
  color: #008945;
  font-weight: 600;
}

.cart-page-summary-total {
  display: flex;
  justify-content: space-between;
  padding-top: 0.75rem;
  margin: 0.75rem 0 1rem;
  border-top: 1px solid var(--border-color);
  font-weight: 700;
}

.cart-page-shop-btn {
  display: inline-block;
  width: auto;
  margin-top: 1rem;
  text-decoration: none;
}

a.cart-drawer-checkout {
  display: block;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
}

/* ── Checkout ── */
.checkout-page {
  background: var(--bg-primary);
  min-height: 60vh;
  padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
}

.checkout-loading {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--foreground-muted);
  font-size: 14px;
}

.checkout-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  background: #fff;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 20;
}

.checkout-back {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--foreground);
  text-decoration: none;
}

.checkout-head h1 {
  font-size: 16px;
  font-weight: 700;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem;
}

.checkout-main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkout-card {
  background: #fff;
  border-radius: 4px;
  padding: 1.25rem;
}

.checkout-card-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--accent-primary);
}

.checkout-card-head h2,
.checkout-card--items h2 {
  font-size: 16px;
  font-weight: 700;
  color: var(--foreground);
  margin: 0;
}

.checkout-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 1rem;
}

.checkout-field {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.checkout-field--full {
  grid-column: 1 / -1;
}

.checkout-field input,
.checkout-field textarea,
.checkout-field select {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 2px;
  font-size: 14px;
  font-family: var(--font-sans);
  background: #fff;
  box-sizing: border-box;
}

.checkout-field textarea {
  resize: vertical;
  min-height: 72px;
}

.checkout-payments {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.checkout-payment {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  cursor: pointer;
}

.checkout-payment input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkout-payment-radio {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border-color);
  border-radius: 50%;
  flex-shrink: 0;
}

.checkout-payment--active {
  border-color: var(--accent-primary);
  background: rgba(232, 0, 113, 0.04);
}

.checkout-payment--active .checkout-payment-radio {
  border-color: var(--accent-primary);
  box-shadow: inset 0 0 0 4px var(--accent-primary);
}

.checkout-payment-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.checkout-payment-info strong {
  font-size: 14px;
}

.checkout-payment-info span {
  font-size: 12px;
  color: var(--foreground-muted);
}

.checkout-items {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.checkout-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}

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

.checkout-item img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.checkout-item-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.checkout-item-brand {
  font-size: 11px;
  color: var(--foreground-muted);
}

.checkout-item-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.checkout-item-variant {
  font-size: 12px;
  color: var(--foreground-muted);
}

.checkout-item-price {
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.checkout-trust {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 12px;
  color: var(--foreground-muted);
}

.checkout-trust div {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.checkout-summary {
  background: #fff;
  padding: 1.25rem;
  border-radius: 4px;
  height: fit-content;
}

.checkout-summary h2 {
  font-size: 16px;
  margin-bottom: 1rem;
}

.checkout-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 0.5rem;
}

.checkout-summary-total {
  display: flex;
  justify-content: space-between;
  padding-top: 0.75rem;
  margin-top: 0.75rem;
  border-top: 1px solid var(--border-color);
  font-weight: 700;
}

.checkout-summary-note {
  font-size: 11px;
  color: var(--foreground-muted);
  margin: 0.5rem 0 0;
}

.checkout-submit-desktop {
  display: none;
}

.checkout-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1rem;
  padding-bottom: max(0.875rem, env(safe-area-inset-bottom));
  background: #fff;
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -2px 8px rgba(0, 19, 37, 0.08);
}

.checkout-sticky-total {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  font-size: 12px;
  color: var(--foreground-muted);
}

.checkout-sticky-total strong {
  font-size: 16px;
  color: var(--foreground);
}

.checkout-sticky-btn {
  flex: 1;
  width: auto;
}

.checkout-success-page {
  padding: 1.5rem 1rem 2rem;
  padding-bottom: 2rem;
}

.checkout-success-card {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border-radius: 4px;
  padding: 2rem 1.25rem;
  text-align: center;
}

.checkout-success-icon {
  color: #008945;
  margin-bottom: 0.75rem;
}

.checkout-success-card h1 {
  font-size: 22px;
  margin-bottom: 0.35rem;
}

.checkout-success-sub {
  font-size: 14px;
  color: var(--foreground-muted);
  margin-bottom: 1.5rem;
}

.checkout-success-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  text-align: left;
  margin-bottom: 1.25rem;
  padding: 1rem;
  background: #f9f9f9;
  border-radius: 4px;
}

.checkout-success-meta span {
  display: block;
  font-size: 11px;
  color: var(--foreground-muted);
  margin-bottom: 0.2rem;
}

.checkout-success-meta strong {
  font-size: 13px;
  word-break: break-all;
}

.checkout-success-block {
  text-align: left;
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
}

.checkout-success-block-head {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
  color: var(--accent-primary);
}

.checkout-success-block-head h2 {
  font-size: 14px;
  margin: 0;
}

.checkout-success-block p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--foreground);
}

.checkout-success-items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.checkout-success-items li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.checkout-success-items li:last-child {
  border-bottom: none;
}

.checkout-success-items img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 4px;
}

.checkout-success-items li > div {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  font-size: 13px;
}

.checkout-success-items li > div span:last-child {
  font-size: 12px;
  color: var(--foreground-muted);
}

.checkout-success-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.checkout-success-secondary {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-primary);
  text-decoration: none;
}

/* ── Account page ── */
.account-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background: var(--bg-primary);
}

.account-card {
  background: #fff;
  padding: 2rem;
  border-radius: 4px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-sm);
}

.account-card h1 {
  font-size: 22px;
  margin-bottom: 0.35rem;
}

.account-subtitle {
  font-size: 13px;
  color: var(--foreground-muted);
  margin-bottom: 1.5rem;
}

.account-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.account-form input {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 2px;
  font-size: 14px;
  font-family: var(--font-sans);
}

.account-submit {
  width: 100%;
  margin-top: 0.5rem;
}

.account-toggle {
  text-align: center;
  font-size: 13px;
  margin-top: 1rem;
  color: var(--foreground-muted);
}

.account-toggle button {
  background: none;
  border: none;
  color: var(--accent-primary);
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-sans);
}

.account-continue {
  display: block;
  text-align: center;
  margin-top: 1rem;
  font-size: 13px;
  color: var(--accent-primary);
}

/* ── Brands page ── */
.brands-page,
.offers-page,
.static-page {
  background: var(--bg-primary);
  padding-bottom: 2rem;
  min-height: 60vh;
}

.brands-page-head,
.offers-page-hero {
  background: #fff;
  padding: 1.5rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.brands-page-head h1,
.offers-page-hero h1 {
  font-size: 20px;
  margin-bottom: 0.35rem;
}

.brands-page-featured {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.25rem;
  padding: 1.25rem 1rem;
  background: #fff;
  margin-bottom: 0.5rem;
  overflow: visible;
}

.brands-page-featured .top-brand-card {
  width: 88px;
}

.brands-page-featured .top-brand-image {
  width: 72px;
  height: 72px;
}


.brands-page-list {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1rem;
  background: #fff;
}

.brands-page-group h2 {
  font-size: 18px;
  color: var(--accent-primary);
  margin: 1rem 0 0.5rem;
}

.brands-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.35rem 1rem;
}

.brands-page-grid a {
  font-size: 13px;
  padding: 0.35rem 0;
  color: var(--foreground);
}

.brands-page-grid a:hover {
  color: var(--accent-primary);
}

.offers-page-banners {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  padding: 0.5rem;
}

.offers-page-banner {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  display: block;
}

.offers-page-banner img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.static-page-inner {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 4px;
}

.static-page-inner h1 {
  font-size: 22px;
  margin-bottom: 1rem;
}

.static-page-inner p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--foreground-muted);
}

.static-page-back {
  font-size: 13px;
  color: var(--accent-primary);
  display: inline-block;
  margin-bottom: 1rem;
}

@media (min-width: 901px) {
  .plp-toolbar {
    display: none;
  }

  .plp-page {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 0 2rem;
  }

  .plp-page .plp-breadcrumb {
    max-width: none;
    margin: 0;
    padding: 0.85rem var(--page-gutter);
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
  }

  .plp-layout {
    display: flex;
    gap: 1.25rem;
    max-width: none;
    margin: 0;
    padding: 1rem var(--page-gutter) 0;
    align-items: flex-start;
  }

  .plp-sidebar {
    display: block;
    width: 240px;
    flex-shrink: 0;
    background: #fff;
    padding: 1rem 1rem 1.15rem;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    height: fit-content;
    position: sticky;
    top: calc(var(--nykaa-header-height, 136px) + 12px);
    box-shadow: var(--shadow-sm);
  }

  .plp-main {
    min-width: 0;
    flex: 1;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
  }

  .plp-main .plp-header {
    padding: 1.15rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
  }

  .plp-main .plp-header h1 {
    font-size: 22px;
  }

  .plp-main .plp-header-desc {
    font-size: 13px;
    margin-top: 0.45rem;
  }

  .plp-main .plp-header-count {
    font-size: 13px;
    padding-top: 0.35rem;
  }

  .plp-results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1.25rem;
    background: #fafafa;
    border-bottom: 1px solid var(--border-color);
  }

  .plp-results-count {
    font-size: 13px;
    color: var(--foreground-muted);
    margin: 0;
  }

  .plp-results-count strong {
    color: var(--foreground);
    font-weight: 700;
  }

  .plp-sort-select-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 13px;
    font-weight: 600;
    color: var(--foreground);
    white-space: nowrap;
  }

  .plp-sort-select {
    appearance: none;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: #ffffff
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23001325' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E")
      no-repeat right 0.55rem center / 12px;
    padding: 0.45rem 1.75rem 0.45rem 0.65rem;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-sans);
    color: var(--accent-primary);
    cursor: pointer;
    min-width: 9rem;
  }

  .plp-sort-select:focus {
    outline: 2px solid rgba(232, 0, 113, 0.25);
    outline-offset: 1px;
  }

  .plp-active-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
  }

  .plp-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.65rem;
    border: 1px solid rgba(232, 0, 113, 0.35);
    border-radius: 999px;
    background: #fff5fa;
    color: var(--accent-primary);
    font-size: 12px;
    font-weight: 600;
    font-family: var(--font-sans);
    cursor: pointer;
  }

  .plp-filter-chip span {
    font-size: 14px;
    line-height: 1;
    opacity: 0.75;
  }

  .plp-filter-chip--clear {
    background: transparent;
    border-color: var(--border-color);
    color: var(--foreground-muted);
  }

  .plp-filter-chip--clear:hover {
    color: var(--accent-primary);
    border-color: rgba(232, 0, 113, 0.35);
  }

  .plp-main .plp-grid {
    padding: 1rem 1.25rem 1.25rem;
    max-width: none;
    margin: 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    background: #ffffff;
  }

  .plp-main .plp-grid-cell {
    padding: 0.85rem 0.65rem 0.75rem;
    border-radius: 6px;
  }

  .plp-main .plp-empty {
    margin: 0;
    border-top: none;
  }

  .search-page {
    max-width: var(--page-max);
    margin: 0 auto;
    padding: 0 var(--page-gutter) 2rem;
  }

  .search-page-head,
  .search-page-trending {
    padding-left: 0;
    padding-right: 0;
  }

  .search-page .plp-grid {
    padding-left: 0;
    padding-right: 0;
  }

  .pdp-page {
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .pdp-breadcrumb {
    padding: 0.75rem 0;
  }

  .pdp-layout {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 1.25rem 0;
    max-width: none;
    margin: 0;
  }

  .pdp-tabs {
    max-width: none;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .pdp-trust {
    grid-template-columns: repeat(3, 1fr);
  }

  .cart-page {
    max-width: var(--page-max);
    margin: 0 auto;
    padding: 1rem var(--page-gutter) 2rem;
  }

  .cart-page-layout {
    grid-template-columns: 1fr 320px;
    gap: 1.5rem;
  }

  .checkout-page {
    max-width: var(--page-max);
    margin: 0 auto;
    padding-bottom: 2rem;
  }

  .checkout-head {
    margin: 0 calc(-1 * var(--page-gutter));
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
  }

  .checkout-layout {
    grid-template-columns: 1fr 320px;
    gap: 1.5rem;
    padding: 1rem var(--page-gutter) 0;
  }

  .checkout-fields {
    grid-template-columns: 1fr 1fr;
  }

  .checkout-sticky {
    display: none;
  }

  .checkout-submit-desktop {
    display: block;
  }

  .brands-page,
  .offers-page {
    max-width: var(--page-max);
    margin: 0 auto;
    padding: 0 var(--page-gutter) 2rem;
  }

  .brands-page-head,
  .offers-page-hero {
    margin-left: 0;
    margin-right: 0;
    border-radius: 4px;
  }

  .brands-page-featured {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin: 0 0 0.5rem;
    padding: 1.25rem 0;
  }

  .brands-page-list {
    max-width: none;
    margin: 0;
    padding: 1rem 0;
  }

  .brands-page-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .offers-page-banners {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
    margin: 0.5rem 0;
    padding: 0;
  }

  .offers-page .plp-header,
  .offers-page .plp-grid {
    padding-left: 0;
    padding-right: 0;
  }

  .account-page {
    max-width: var(--page-max);
    margin: 0 auto;
    padding: 2rem var(--page-gutter);
  }

  .static-page {
    max-width: var(--page-max);
    margin: 0 auto;
    padding: 0 var(--page-gutter) 2rem;
  }

  .static-page-inner {
    margin: 1.5rem 0;
  }
}
