/* Modern CSS Design System */
:root {
  --primary-purple: #7A0099;
  --primary-purple-hover: #5A0070;
  --text-dark: #1b1b1b;
  --text-muted: #6e6e6e;
  --bg-light: #f9f9f9;
  --border-light: #ececec;

  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: #060606;
  overflow-x: hidden;
}

/* Announcement Bar */
.announcement-bar {
  background-color: var(--primary-purple);
  color: #ffffff;
  text-align: center;
  padding: 10px 20px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 100;
}

/* Header Container */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 99;
  height: 80px;
}

.header-container {
  max-width: 1440px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

/* Logo Styles */
.logo-link {
  text-decoration: none;
  color: inherit;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-avatar {
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-link:hover .logo-avatar {
  transform: rotate(6deg) scale(1.05);
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-subtitle {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--text-muted);
}

.logo-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

/* Desktop Navigation */
.desktop-nav {
  height: 100%;
}

.nav-list {
  display: flex;
  list-style: none;
  height: 100%;
  align-items: center;
  gap: 32px;
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  height: 100%;
  transition: color 0.25s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 24px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-purple);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
  color: var(--primary-purple);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.dropdown-chevron {
  transition: transform 0.25s ease;
  opacity: 0.7;
}

.nav-item:hover .dropdown-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

/* Dropdown Menu Panel */
.dropdown-panel {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 30px;
  min-width: 600px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0.25s;
  z-index: 10;
}

.nav-item:hover .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.dropdown-column h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-purple);
  margin-bottom: 16px;
}

.dropdown-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dropdown-column ul a {
  font-size: 14px;
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.dropdown-column ul a:hover {
  color: var(--primary-purple);
  padding-left: 4px;
}

/* Mini Dropdown (Single List) */
.mini-dropdown {
  min-width: 220px;
  padding: 16px 0;
}

.mini-dropdown ul {
  list-style: none;
}

.mini-dropdown ul a {
  display: block;
  padding: 10px 24px;
  font-size: 14px;
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.mini-dropdown ul a:hover {
  background-color: var(--bg-light);
  color: var(--primary-purple);
  padding-left: 28px;
}

/* Header Utilities */
.header-utilities {
  display: flex;
  align-items: center;
  gap: 20px;
}

.utility-btn {
  background: none;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  position: relative;
}

.utility-btn:hover {
  background-color: var(--bg-light);
  color: var(--primary-purple);
}

.cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--primary-purple);
  color: #ffffff;
  font-size: 10px;
  font-weight: 600;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #ffffff;
}

/* Mobile Trigger */
.mobile-menu-trigger {
  display: none;
  background: none;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
  padding: 8px;
}

/* Search Overlay Panel */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-container {
  background-color: #ffffff;
  padding: 30px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(-50px);
  transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  max-width: 1000px;
  margin: 40px auto 0;
  border-radius: 12px;
}

.search-overlay.active .search-container {
  transform: translateY(0);
}

.search-box {
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--border-light);
  padding: 10px 0;
}

.search-box-icon {
  color: var(--text-muted);
  margin-right: 15px;
}

.search-box input {
  border: none;
  outline: none;
  font-size: 18px;
  width: 100%;
  font-family: var(--font-body);
  color: var(--text-dark);
}

.search-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 5px;
  transition: var(--transition-smooth);
}

.search-close-btn:hover {
  color: var(--text-dark);
  transform: rotate(90deg);
}

.search-suggestions {
  margin-top: 24px;
}

.suggestion-title {
  font-family: var(--font-display);
  font-size: 13px;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.suggestion-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.suggestion-tags .tag {
  text-decoration: none;
  color: var(--text-dark);
  background-color: var(--bg-light);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  transition: var(--transition-smooth);
}

.suggestion-tags .tag:hover {
  background-color: var(--primary-purple);
  color: #ffffff;
}

/* Cart Drawer */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.cart-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  height: 100%;
  background-color: #ffffff;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.cart-drawer-overlay.active .cart-drawer {
  transform: translateX(0);
}

.cart-drawer-header {
  padding: 24px 30px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer-header h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
}

.cart-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
  padding: 5px;
  transition: var(--transition-smooth);
}

.cart-close-btn:hover {
  transform: rotate(90deg);
}

.cart-drawer-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.empty-cart-state {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.empty-cart-state p {
  color: var(--text-muted);
}

.btn-primary {
  display: inline-block;
  background-color: var(--primary-purple);
  color: #ffffff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-family: var(--font-display);
  font-weight: 500;
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  background-color: var(--primary-purple-hover);
  transform: translateY(-2px);
}

/* Mobile Drawer Overlay */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  height: 100%;
  background-color: #ffffff;
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.05);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.mobile-drawer-overlay.active .mobile-drawer {
  transform: translateX(0);
}

.mobile-drawer-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-dark);
}

.mobile-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
  padding: 5px;
}

.mobile-drawer-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 20px 24px;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  display: block;
  padding: 8px 0;
}

/* Mobile Drawer Utilities (Search Bar & Account Card) */
.mobile-drawer-utilities {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.mobile-search-trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  background-color: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.mobile-search-trigger:hover {
  background-color: #ffffff;
  border-color: var(--primary-purple);
  color: var(--primary-purple);
  box-shadow: 0 4px 12px rgba(122, 0, 153, 0.08);
}

.mobile-account-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background-color: rgba(122, 0, 153, 0.04);
  border: 1px solid rgba(122, 0, 153, 0.12);
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.mobile-account-card:hover {
  background-color: rgba(122, 0, 153, 0.08);
  border-color: var(--primary-purple);
  transform: translateY(-1px);
}

.mobile-account-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--primary-purple);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-account-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.mobile-account-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
}

.mobile-account-desc {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.mobile-account-arrow {
  color: var(--text-muted);
  transition: transform 0.2s ease;
}

.mobile-account-card:hover .mobile-account-arrow {
  transform: translateX(3px);
  color: var(--primary-purple);
}

.mobile-drawer-divider {
  height: 1px;
  background-color: var(--border-light);
  margin-bottom: 20px;
}

/* Page Hero Content (Luxury Modern Dark Theme) */
.page-content {
  padding-top: 0;
  /* Remove top padding to let dark hero bleed into the header border */
}

.luxury-hero {
  position: relative;
  background-color: #060606;
  color: #ffffff;
  padding: 100px 80px 140px;
  overflow: hidden;
}

/* Background outline watermark */
.hero-watermark {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18vw;
  font-weight: 900;
  font-family: var(--font-display);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.022);
  letter-spacing: 0.18em;
  pointer-events: none;
  z-index: 1;
  text-transform: uppercase;
  user-select: none;
  line-height: 1;
}

/* Ambient Radial Glow */
.hero-bg-glow {
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(122, 0, 153, 0.25) 0%, rgba(122, 0, 153, 0) 70%);
  pointer-events: none;
  filter: blur(40px);
  z-index: 1;
}

.hero-grid-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Visual Column & Showcase Frame */
.hero-visual-column {
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-frame {
  position: relative;
  width: 100%;
  max-width: 620px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.6s ease;
}

.product-frame:hover {
  transform: scale(1.02) translateY(-4px);
  box-shadow: 0 40px 80px rgba(122, 0, 153, 0.25);
  border-color: rgba(122, 0, 153, 0.3);
}

.hero-product-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.frame-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background-color: rgba(6, 6, 6, 0.75);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 20px;
  font-family: var(--font-display);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #e5e5e5;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Editorial Copy Column */
.hero-text-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-supheading {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: #b3b3b3;
  margin-bottom: 20px;
  display: inline-block;
  border-left: 2px solid var(--primary-purple);
  padding-left: 12px;
  line-height: 1;
}

.hero-heading {
  line-height: 1.05;
  margin-bottom: 24px;
}

.serif-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px;
  font-weight: 300;
  font-style: italic;
  display: block;
  color: #f3f3f3;
}

.gold-spark {
  color: #d4af37;
  font-size: 32px;
  margin-left: 6px;
  display: inline-block;
  vertical-align: middle;
  animation: sparkGlow 3s ease-in-out infinite;
}

@keyframes sparkGlow {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.8) rotate(0deg);
    filter: drop-shadow(0 0 2px rgba(212, 175, 55, 0.2));
  }

  50% {
    opacity: 1;
    transform: scale(1.1) rotate(15deg);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.8));
  }
}

.sans-title {
  font-family: var(--font-display);
  font-size: 68px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  display: block;
  background: linear-gradient(135deg, #ffffff 30%, #e0e0e0 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 16px;
  color: #b3b3b3;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-cta-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-luxury-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #ffffff;
  color: #060606;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 30px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition-smooth);
}

.cta-arrow {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-luxury-primary:hover {
  background-color: var(--primary-purple);
  color: #ffffff;
  transform: translateY(-3px);
}

.btn-luxury-primary:hover .cta-arrow {
  transform: translateX(4px);
}

.btn-luxury-secondary {
  display: inline-block;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 30px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition-smooth);
}

.btn-luxury-secondary:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
  transform: translateY(-3px);
}

/* Tilted Marquee Ribbon */
.tilted-ticker-wrapper {
  overflow: hidden;
  background: linear-gradient(90deg, #4b0060 0%, var(--primary-purple) 50%, #4b0060 100%);
  transform: skewY(-2.2deg) translateY(-20px);
  width: 100%;
  margin-left: 0;
  position: relative;
  z-index: 5;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45), 0 0 15px rgba(122, 0, 153, 0.2);
  border-top: 1px solid rgba(212, 175, 55, 0.45);
  border-bottom: 1px solid rgba(212, 175, 55, 0.45);
}

.tilted-ticker-bar {
  padding: 14px 0;
  display: flex;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 24s linear infinite;
}

.ticker-content {
  display: flex;
  align-items: center;
  gap: 50px;
  padding-right: 50px;
  white-space: nowrap;
}

.ticker-content span {
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: #ffffff;
}

.ticker-divider {
  color: #d4af37 !important;
  /* Premium Gold color */
  font-size: 12px;
  text-shadow: 0 0 4px rgba(212, 175, 55, 0.4);
}

@keyframes marquee-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .hero-grid-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .luxury-hero {
    padding: 60px 40px 100px;
  }

  .hero-text-column {
    align-items: center;
    text-align: center;
  }

  .hero-supheading {
    border-left: none;
    padding-left: 0;
  }

  .serif-title {
    font-size: 48px;
  }

  .sans-title {
    font-size: 58px;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .luxury-hero {
    padding: 40px 20px 80px;
  }

  .serif-title {
    font-size: 38px;
  }

  .sans-title {
    font-size: 44px;
  }

  .btn-luxury-primary,
  .btn-luxury-secondary {
    padding: 14px 28px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }

  .tilted-ticker-wrapper {
    transform: skewY(-1.8deg) translateY(-10px);
  }

  .tilted-ticker-bar {
    padding: 12px 0;
  }

  .ticker-content span {
    font-size: 11px;
  }
}

/* General Layout Breakpoints Override */
@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-trigger {
    display: block;
  }

  .header-container {
    padding: 0 24px;
  }
}

@media (max-width: 768px) {
  .site-header {
    height: 70px;
  }

  .logo-title {
    font-size: 22px;
  }

  .logo-avatar {
    width: 36px;
    height: 36px;
  }

  .cart-drawer {
    width: 100%;
  }
}

/* Luxury Best Sellers Section */
.best-sellers-section {
  background-color: #FAF7FC;
  /* Curated Luxury Cream-Lavender background */
  padding: 120px 80px;
  border-top: 1px solid rgba(122, 0, 153, 0.06);
  position: relative;
  z-index: 2;
}

.section-container {
  max-width: 1300px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 12px;
  margin-bottom: 48px;
}

.header-title-wrapper {
  display: flex;
  flex-direction: column;
}

.title-accent-bar {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-purple) 0%, #e58cff 100%);
  margin-top: 12px;
  border-radius: 2px;
}

.section-supheading {
  font-family: var(--font-display);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #7a7a7a;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px;
  font-weight: 300;
  font-style: italic;
  color: #1b1b1b;
  /* Dark charcoal for contrast */
  line-height: 1;
}

.btn-view-all {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: #1b1b1b;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
  letter-spacing: 0.05em;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.btn-view-all:hover {
  color: var(--primary-purple);
  border-color: var(--primary-purple);
}

.view-all-arrow {
  transition: transform 0.3s ease;
}

.btn-view-all:hover .view-all-arrow {
  transform: translate(3px, -3px);
}

/* Product Grid Layout */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* Product Card */
.product-card {
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.product-image-wrapper {
  position: relative;
  aspect-ratio: 1 / 1.15;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(122, 0, 153, 0.06);
  background-color: #ffffff;
  /* Clean white backdrop for product shelf look */
  box-shadow: 0 10px 25px rgba(122, 0, 153, 0.03);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 5;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 20px;
}

.product-badge.sale {
  background-color: rgba(122, 0, 153, 0.07);
  color: var(--primary-purple);
  border: 1px solid rgba(122, 0, 153, 0.25);
}

.product-badge.sold-out {
  background-color: rgba(0, 0, 0, 0.04);
  color: #777777;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Landscape Source Image Crop Matrix */
.product-img {
  width: 320%;
  /* Scaled up to allow cropping individual bottles from the group photo */
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-img.img-pos-1 {
  object-position: 7% center;
  /* Center Creed Aventus */
}

.product-img.img-pos-2 {
  object-position: 37.8% center;
  /* Center Lattafa Angham */
}

.product-img.img-pos-3 {
  object-position: 66.5% center;
  /* Center Rasasi Hawas */
}

.product-img.img-pos-4 {
  object-position: 95.8% center;
  /* Center Lattafa Asad */
}

.product-image-wrapper:hover .product-img {
  transform: scale(1.06);
}

/* Quick Add Button sliding interaction */
.btn-quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border: none;
  background-color: rgba(27, 27, 27, 0.96);
  /* Dark button overlaying white card */
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 15px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transform: translateY(101%);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.25s, color 0.25s;
  z-index: 6;
}

.btn-quick-add:hover {
  background-color: var(--primary-purple);
  color: #ffffff;
}

.btn-quick-add.disabled {
  background-color: rgba(220, 220, 220, 0.9);
  color: #888888;
  cursor: not-allowed;
}

.product-image-wrapper:hover .btn-quick-add {
  transform: translateY(0);
}

/* Card Info Block */
.product-info {
  padding: 16px 4px 4px;
}

.brand-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a1a1aa;
  font-weight: 600;
}

.discount-tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: #e58cff;
  background-color: rgba(122, 0, 153, 0.25);
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid rgba(229, 140, 255, 0.3);
}

.product-title {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 12px;
  font-family: var(--font-body);
}

.product-title a {
  color: #ffffff;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.product-title a:hover {
  color: #e58cff;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.price-original {
  font-size: 14px;
  text-decoration: line-through;
  color: #71717a;
}

.price-current {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

.price-current.font-highlight {
  color: #e58cff;
}

/* Light Background Overrides (e.g. Best Sellers section on index.html) */
.best-sellers-section .brand-name {
  color: #52525b;
}

.best-sellers-section .discount-tag {
  color: var(--primary-purple);
  background-color: rgba(122, 0, 153, 0.08);
  border-color: rgba(122, 0, 153, 0.2);
}

.best-sellers-section .product-title a {
  color: #18181b;
}

.best-sellers-section .product-title a:hover {
  color: var(--primary-purple);
}

.best-sellers-section .price-original {
  color: #71717a;
}

.best-sellers-section .price-current {
  color: #18181b;
}

.best-sellers-section .price-current.font-highlight {
  color: var(--primary-purple);
}

/* Responsive Best Sellers Adjustments */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .best-sellers-section {
    padding: 80px 40px;
  }

  .section-title {
    font-size: 38px;
  }


}

@media (max-width: 768px) {
  .best-sellers-section {
    padding: 60px 20px;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .section-title {
    font-size: 32px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-image-wrapper {
    aspect-ratio: 1 / 1.1;
  }
}

/* Luxury Promotional Campaigns Section */
.promo-campaigns-section {
  background-color: #13001a;
  /* Curated Luxury Deep Aubergine background */
  padding: 120px 80px;
  /* Restored top padding to offset background contrast */
  position: relative;
  z-index: 2;
}

.promo-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.promo-row-top {
  display: grid;
  grid-template-columns: 1.7fr 1.3fr;
  gap: 32px;
}

.promo-row-bottom {
  width: 100%;
}

/* Promo Card Styling */
.promo-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background-color: #0f0f0f;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
}

.lattafa-card {
  aspect-ratio: 1.85 / 1;
}

.armaf-card {
  aspect-ratio: 1.41 / 1;
}

.afnan-card {
  aspect-ratio: 3.1 / 1;
}

.promo-image-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.promo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.promo-card:hover .promo-img {
  transform: scale(1.03);
}

/* Glassmorphic Overlay Gradient */
.promo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(90deg, rgba(6, 6, 6, 0.88) 0%, rgba(6, 6, 6, 0.4) 60%, rgba(6, 6, 6, 0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  align-items: flex-start;
}

.horizontal-overlay {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, rgba(6, 6, 6, 0.88) 0%, rgba(6, 6, 6, 0.5) 45%, rgba(6, 6, 6, 0.1) 100%);
}

/* Card Content Typography */
.promo-text-group {
  display: flex;
  flex-direction: column;
}

.promo-brand {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #ffffff;
  margin-bottom: 8px;
}

.promo-brand-display {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 300;
  font-style: italic;
  color: #ffffff;
  margin-bottom: 8px;
}

.promo-label {
  font-family: var(--font-display);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #888888;
  margin-top: 10px;
  margin-bottom: 2px;
}

.promo-tagline {
  font-family: var(--font-display);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #a0a0a0;
  margin-top: 6px;
  margin-bottom: 2px;
}

.promo-discount {
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 20%, #d4af37 60%, #aa7c11 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.promo-discount-small {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #ffffff 30%, #e58cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-top: 6px;
}

/* Promo Buttons */
.btn-promo-luxury {
  display: inline-block;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: var(--transition-smooth);
}

.btn-promo-luxury:hover {
  background-color: #ffffff;
  color: #060606;
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn-promo-luxury-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-promo-luxury-circle:hover {
  background-color: #ffffff;
  color: #060606;
  border-color: #ffffff;
  transform: scale(1.05) rotate(-45deg);
}

/* Responsive Adjustments for Promo campaigns */
@media (max-width: 1024px) {
  .promo-row-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .lattafa-card,
  .armaf-card,
  .afnan-card {
    aspect-ratio: 1.8 / 1;
  }

  .promo-campaigns-section {
    padding: 0 40px 80px 40px;
  }

  .promo-overlay {
    padding: 30px;
  }

  .horizontal-overlay {
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .promo-campaigns-section {
    padding: 0 20px 60px 20px;
  }

  .lattafa-card,
  .armaf-card,
  .afnan-card {
    aspect-ratio: 1.5 / 1;
  }

  .promo-discount {
    font-size: 42px;
  }

  .promo-brand-display {
    font-size: 28px;
  }

  .btn-promo-luxury {
    padding: 10px 22px;
    font-size: 12px;
    width: 100%;
    text-align: center;
  }
}

/* Luxury Shop by Category Section */
.category-selection-section {
  background-color: #FAF8F5;
  /* Curated luxury light sand background */
  padding: 120px 80px;
  border-top: 1px solid rgba(122, 0, 153, 0.05);
  position: relative;
  z-index: 2;
}

.category-container {
  max-width: 1300px;
  margin: 0 auto;
}

.category-section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 64px;
}

.category-section-header .title-accent-bar {
  margin: 12px auto 0 auto;
}

.category-supheading {
  font-family: var(--font-display);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #7a7a7a;
  margin-bottom: 8px;
  display: block;
}

.category-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px;
  font-weight: 300;
  font-style: italic;
  color: #1b1b1b;
  line-height: 1;
}

/* Category Grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 36px;
}

/* Category Card */
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.category-circle-wrapper {
  padding: 6px;
  border-radius: 50%;
  border: 1px solid rgba(122, 0, 153, 0.08);
  transition: var(--transition-smooth);
  margin-bottom: 4px;
}

.category-card:hover .category-circle-wrapper {
  border-color: var(--primary-purple);
  transform: scale(1.03);
}

.category-circle {
  position: relative;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #0f0f0f;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Panorama Crop Positioning */
.category-img {
  width: 480%;
  /* Scale up to cover individual category panels from panoramic image */
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.category-img.pos-men {
  object-position: 4.8% center;
  /* Center Cedarwood Panel */
}

.category-img.pos-women {
  object-position: 27.2% center;
  /* Center White Rose Panel */
}

.category-img.pos-unisex {
  object-position: 50% center;
  /* Center Golden Amber Panel */
}

.category-img.pos-attar {
  object-position: 72.8% center;
  /* Center Ornate Decanter Panel */
}

.category-img.pos-deo {
  object-position: 95.2% center;
  /* Center Splash Panel */
}

.category-card:hover .category-img {
  transform: scale(1.06);
}

/* Dark Overlays with glassmorphic tinting */
.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: radial-gradient(circle, rgba(6, 6, 6, 0.25) 0%, rgba(6, 6, 6, 0.65) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.category-card:hover .category-overlay {
  background: radial-gradient(circle, rgba(122, 0, 153, 0.35) 0%, rgba(6, 6, 6, 0.75) 100%);
}

.category-initial {
  font-family: 'Cormorant Garamond', serif;
  font-size: 68px;
  font-weight: 300;
  color: #ffffff;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
}

.category-card:hover .category-initial {
  transform: scale(1.08);
}

.category-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: #1b1b1b;
  margin-top: 20px;
  margin-bottom: 6px;
}

.category-link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--primary-purple);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-smooth);
  opacity: 0.75;
}

.cat-link-arrow {
  transition: transform 0.3s ease;
}

.category-card:hover .category-link {
  opacity: 1;
}

.category-card:hover .cat-link-arrow {
  transform: translateX(4px);
}

/* Responsive Adjustments for Category list */
@media (max-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    justify-content: center;
  }

  .category-selection-section {
    padding: 80px 40px;
  }
}

@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .category-circle {
    width: 140px;
    height: 140px;
  }

  .category-initial {
    font-size: 54px;
  }

  .category-title {
    font-size: 32px;
  }

  .category-selection-section {
    padding: 60px 20px;
  }
}

/* Luxury The Hot List Section */
.hot-list-section {
  background-color: #06000a;
  /* Curated luxury midnight black-violet */
  padding: 120px 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
  z-index: 2;
}

.hot-list-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 12px;
}

.hot-list-title-group {
  display: flex;
  flex-direction: column;
}

.hot-list-supheading {
  font-family: var(--font-display);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #888888;
  margin-bottom: 8px;
  display: block;
}

.hot-list-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px;
  font-weight: 300;
  font-style: italic;
  color: #ffffff;
  line-height: 1;
}

/* Tabs Bar */
.hot-list-tabs {
  display: flex;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.04);
  padding: 6px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  align-items: center;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.hot-list-tabs::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  background: none;
  border: none;
  color: #888888;
  padding: 10px 20px;
  border-radius: 40px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.tab-btn:hover {
  color: #ffffff;
}

.tab-btn.active {
  background-color: #ffffff;
  color: #060606;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-view-all-light {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
  letter-spacing: 0.05em;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.btn-view-all-light:hover {
  color: var(--primary-purple);
  border-color: var(--primary-purple);
}

.title-accent-bar-left {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-purple) 0%, #e58cff 100%);
  margin-top: 8px;
  margin-bottom: 48px;
  border-radius: 2px;
}

/* Grids */
.hot-list-grid {
  display: none;
}

.hot-list-grid.active {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* Product Cards */
.hot-card {
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.hot-image-wrapper {
  position: relative;
  aspect-ratio: 1 / 1.15;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background-color: #121212;
}

.hot-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 5;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 20px;
}

.hot-badge.sale {
  background-color: rgba(122, 0, 153, 0.2);
  color: #e58cff;
  border: 1px solid rgba(122, 0, 153, 0.35);
}

/* Crop matrix for the Hot List group photo */
.hot-img {
  width: 320%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hot-pos-1 {
  object-position: 8% center;
  /* Center Aventus */
}

.hot-pos-2 {
  object-position: 38.8% center;
  /* Center Sauvage */
}

.hot-pos-3 {
  object-position: 65.5% center;
  /* Center Eros */
}

.hot-pos-4 {
  object-position: 95.8% center;
  /* Center Bleu de Chanel */
}

.hot-image-wrapper:hover .hot-img {
  transform: scale(1.06);
}

.btn-quick-add-dark {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border: none;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: #060606;
  padding: 15px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transform: translateY(101%);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.25s, color 0.25s;
  z-index: 6;
}

.btn-quick-add-dark:hover {
  background-color: var(--primary-purple);
  color: #ffffff;
}

.hot-image-wrapper:hover .btn-quick-add-dark {
  transform: translateY(0);
}

.hot-info {
  padding-top: 20px;
}

.hot-brand-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.hot-brand {
  font-family: var(--font-display);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888888;
  font-weight: 500;
}

.hot-discount {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  color: #e58cff;
  background-color: rgba(122, 0, 153, 0.15);
  padding: 2px 8px;
  border-radius: 4px;
}

.hot-card-title {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  margin-bottom: 12px;
  font-family: var(--font-body);
}

.hot-card-title a {
  color: #ffffff;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.hot-card-title a:hover {
  color: #e58cff;
}

.hot-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hot-price-original {
  font-size: 14px;
  text-decoration: line-through;
  color: #666666;
}

.hot-price-current {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

/* Responsive adjustments for Hot List section */
@media (max-width: 1024px) {
  .hot-list-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .hot-list-grid.active {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .hot-list-section {
    padding: 80px 40px;
  }

  .btn-quick-add-dark {
    transform: translateY(0);
    background-color: rgba(255, 255, 255, 0.9);
  }
}

@media (max-width: 768px) {
  .hot-list-tabs {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    padding: 6px;
    gap: 6px;
    border-radius: 50px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .hot-list-tabs::-webkit-scrollbar {
    display: none;
  }

  .tab-btn {
    padding: 8px 16px;
    font-size: 13px;
    white-space: nowrap;
    flex-shrink: 0;
    border-radius: 30px;
    scroll-snap-align: start;
  }

  .hot-list-title {
    font-size: 32px;
  }

  .hot-list-grid.active {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hot-list-section {
    padding: 60px 20px;
  }
}

/* Luxury Floating CTA Banner Section */
.luxury-cta-banner-section {
  background-color: #06000a;
  /* Unified background with Hot List */
  padding: 0 80px 120px 80px;
  position: relative;
  z-index: 2;
}

.cta-banner-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(135deg, #1b002c 0%, #290040 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.1);
  padding: 80px 100px;
}

.cta-banner-glow {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(229, 140, 255, 0.25) 0%, rgba(229, 140, 255, 0) 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}

.cta-banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  gap: 40px;
}

.cta-banner-heading {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 500;
  color: #ffffff;
  max-width: 600px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.cta-serif-italic {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  color: #ffffff;
}

.btn-cta-luxury-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #ffffff;
  color: #060606;
  padding: 18px 36px;
  border-radius: 40px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.cta-pill-arrow {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cta-luxury-pill:hover {
  background-color: var(--primary-purple);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(122, 0, 153, 0.35);
}

.btn-cta-luxury-pill:hover .cta-pill-arrow {
  transform: translateX(4px) rotate(-45deg);
}

/* Responsive adjustments for CTA Banner */
@media (max-width: 1024px) {
  .cta-banner-container {
    padding: 60px;
  }

  .cta-banner-heading {
    font-size: 30px;
  }

  .luxury-cta-banner-section {
    padding: 0 40px 80px 40px;
  }
}

@media (max-width: 768px) {
  .cta-banner-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .cta-banner-container {
    padding: 40px 30px;
  }

  .cta-banner-heading {
    font-size: 26px;
  }

  .btn-cta-luxury-pill {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
    font-size: 14px;
  }

  .luxury-cta-banner-section {
    padding: 0 20px 60px 20px;
  }
}

/* Luxury Top-Selling Section */
.top-selling-section {
  background-color: #FAF7FC;
  /* Curated luxury light cream-lavender background */
  padding: 120px 80px;
  border-top: 1px solid rgba(122, 0, 153, 0.05);
  position: relative;
  z-index: 2;
}

.top-selling-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 64px;
}

.top-selling-icon-wrap {
  margin-bottom: 16px;
  color: var(--primary-purple);
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-seal-icon {
  filter: drop-shadow(0 2px 5px rgba(122, 0, 153, 0.15));
}

.top-selling-supheading {
  font-family: var(--font-display);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #7a7a7a;
  margin-bottom: 8px;
  display: block;
}

.top-selling-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px;
  font-weight: 300;
  font-style: italic;
  color: #1b1b1b;
  line-height: 1;
}

.top-selling-subtitle {
  font-family: var(--font-body);
  font-size: 15px;
  color: #666666;
  max-width: 620px;
  margin: 16px auto 0;
  line-height: 1.6;
}

.title-accent-bar-center {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-purple) 0%, #e58cff 100%);
  margin: 20px auto 0 auto;
  border-radius: 2px;
}

/* Top Selling Grid Layout */
.top-selling-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* Top Product Card */
.top-card {
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.top-card-inner {
  position: relative;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(122, 0, 153, 0.06);
  box-shadow: 0 10px 30px rgba(122, 0, 153, 0.03);
  transition: var(--transition-smooth);
}

.top-card:hover .top-card-inner {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(122, 0, 153, 0.08);
  border-color: var(--primary-purple);
}

/* Badge styling */
.top-badge-wrapper {
  position: absolute;
  top: 36px;
  left: 36px;
  z-index: 5;
}

.top-rect-badge {
  background-color: #060606;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 9.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Diagonal Arrow Action Link */
.top-arrow-btn {
  position: absolute;
  top: 36px;
  right: 36px;
  z-index: 5;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(122, 0, 153, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1b1b1b;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  transition: var(--transition-smooth);
}

.top-card:hover .top-arrow-btn {
  background-color: var(--primary-purple);
  border-color: var(--primary-purple);
  color: #ffffff;
}

.top-arrow-btn svg {
  transition: transform 0.3s ease;
}

.top-card:hover .top-arrow-btn svg {
  transform: translate(2px, -2px);
}

/* Arched Image Container wrapper */
.top-image-arch {
  width: 100%;
  aspect-ratio: 1 / 1.18;
  overflow: hidden;
  border-radius: 120px 120px 12px 12px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  background-color: #f7f7f7;
}

/* Panoramic Crop positioning matrix */
.top-img {
  width: 410%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.top-img.pos-yara {
  object-position: 12.3% center;
  /* Center Yara bottle / Model */
}

.top-img.pos-aventus {
  object-position: 37.8% center;
  /* Center Aventus */
}

.top-img.pos-kiss {
  object-position: 62.3% center;
  /* Center Rayhaan Kiss / Model */
}

.top-img.pos-supremacy {
  object-position: 87.8% center;
  /* Center Supremacy */
}

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

/* Card details block */
.top-card-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}

.top-perfume-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: #1b1b1b;
}

.top-perfume-price {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-purple);
}

/* Responsive adjustments for Top selling Section */
@media (max-width: 1024px) {
  .top-selling-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .top-selling-section {
    padding: 80px 40px;
  }
}

@media (max-width: 768px) {
  .top-selling-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .top-selling-title {
    font-size: 32px;
  }

  .top-selling-section {
    padding: 60px 20px;
  }

  .top-image-arch {
    border-radius: 100px 100px 10px 10px;
  }
}

/* Luxury The Journal Section */
.journal-section {
  background-color: #100315;
  /* Curated luxury dark plum-charcoal backdrop */
  padding: 120px 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
  z-index: 2;
}

.journal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.journal-title-group {
  display: flex;
  flex-direction: column;
}

.journal-supheading {
  font-family: var(--font-display);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #9c9c9c;
  margin-bottom: 8px;
  display: block;
}

.journal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px;
  font-weight: 300;
  font-style: italic;
  color: #ffffff;
  line-height: 1;
}

/* Journal Grid Layout */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Journal Card */
.journal-card {
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.journal-image-wrapper {
  position: relative;
  aspect-ratio: 1.5 / 1;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background-color: #121212;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}

/* Panoramic Crop positioning matrix */
.journal-img {
  width: 320%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.journal-img.pos-janan {
  object-position: 5.2% center;
  /* Center ripples / Jasmine */
}

.journal-img.pos-wedding {
  object-position: 50% center;
  /* Center Wedding Rose setup */
}

.journal-img.pos-reef {
  object-position: 94.8% center;
  /* Center Volcanic rock bottle */
}

.journal-card:hover .journal-img {
  transform: scale(1.05);
}

.journal-info {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.journal-date {
  font-family: var(--font-display);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #a88fc2;
  margin-bottom: 12px;
  display: block;
}

.journal-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 12px;
}

.journal-card-title a {
  color: #ffffff;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.journal-card-title a:hover {
  color: #e58cff;
}

.journal-excerpt {
  font-family: var(--font-body);
  font-size: 14px;
  color: #b3b3b3;
  line-height: 1.6;
  margin-bottom: 20px;
}

.journal-read-link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  transition: var(--transition-smooth);
}

.journal-link-line {
  width: 24px;
  height: 2px;
  background-color: var(--primary-purple);
  transition: width 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.25s;
}

.journal-card:hover .journal-read-link {
  color: #e58cff;
}

.journal-card:hover .journal-link-line {
  width: 60px;
  background-color: #e58cff;
}

/* Responsive adjustments for Journal Section */
@media (max-width: 1024px) {
  .journal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .journal-section {
    padding: 80px 40px;
  }
}

@media (max-width: 768px) {
  .journal-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .journal-title {
    font-size: 32px;
  }

  .journal-section {
    padding: 60px 20px;
  }

  .journal-card-title {
    font-size: 21px;
  }
}

/* Luxury Brand Stats Section */
.brand-stats-section {
  background-color: #FAF8F5;
  /* Curated luxury light sand background */
  padding: 120px 80px;
  border-top: 1px solid rgba(122, 0, 153, 0.05);
  position: relative;
  z-index: 2;
}

.stats-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.stats-text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stats-supheading {
  font-family: var(--font-display);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: #7a7a7a;
  margin-bottom: 16px;
  display: block;
}

.stats-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: #1b1b1b;
  line-height: 1.25;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.stats-serif-italic {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  text-transform: none;
  color: #1b1b1b;
}

.stats-description {
  font-family: var(--font-body);
  font-size: 16px;
  color: #666666;
  line-height: 1.75;
  margin-top: 24px;
  max-width: 580px;
}

/* Stats Quad Grid with custom borders */
.stats-quad-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background-color: rgba(122, 0, 153, 0.08);
  /* acts as the border separator */
  border-radius: 16px;
  overflow: hidden;
  padding: 1px;
  box-shadow: 0 15px 45px rgba(122, 0, 153, 0.03);
}

.stat-box {
  background-color: #ffffff;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition-smooth);
}

.stat-box:hover {
  background-color: #FAF7FC;
  transform: scale(1.02);
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--primary-purple);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #1b1b1b;
  display: block;
}

/* Responsive adjustments for Stats section */
@media (max-width: 1024px) {
  .stats-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .stats-text-block {
    align-items: center;
    text-align: center;
  }

  .stats-description {
    max-width: 100%;
  }

  .brand-stats-section {
    padding: 80px 40px;
  }
}

@media (max-width: 768px) {
  .stats-title {
    font-size: 32px;
  }

  .stat-box {
    padding: 36px 20px;
  }

  .stat-number {
    font-size: 38px;
  }

  .brand-stats-section {
    padding: 60px 20px;
  }
}

/* Luxury Footer Section */
.luxury-footer {
  background-color: #060606;
  /* Dark Obsidian base */
  padding: 120px 80px 60px 80px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-glow {
  position: absolute;
  bottom: -20%;
  left: 10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(122, 0, 153, 0.12) 0%, rgba(122, 0, 153, 0) 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}

.footer-top-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.footer-brand-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 24px;
}

.footer-logo-main {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.footer-logo-spark {
  color: #d4af37;
  font-size: 16px;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 14px;
  color: #b3b3b3;
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 320px;
}

/* Newsletter Signup */
.footer-newsletter-wrap {
  width: 100%;
  max-width: 340px;
}

.newsletter-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: #ffffff;
  margin-bottom: 12px;
  display: block;
}

.newsletter-form {
  position: relative;
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  overflow: hidden;
  padding: 4px;
  transition: var(--transition-smooth);
}

.newsletter-form:focus-within {
  border-color: var(--primary-purple);
  background-color: rgba(255, 255, 255, 0.05);
}

.newsletter-input {
  width: 100%;
  border: none;
  background: none;
  outline: none;
  color: #ffffff;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 13px;
}

.newsletter-input::placeholder {
  color: #666666;
}

.btn-newsletter-submit {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background-color: #ffffff;
  color: #060606;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.btn-newsletter-submit:hover {
  background-color: var(--primary-purple);
  color: #ffffff;
}

/* Columns Lists */
.footer-links-column {
  display: flex;
  flex-direction: column;
}

.footer-column-heading {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #ffffff;
  margin-bottom: 24px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-link {
  font-family: var(--font-display);
  font-size: 13px;
  color: #b3b3b3;
  text-decoration: none;
  transition: var(--transition-smooth);
  display: inline-block;
}

.footer-link:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* Bottom elements */
.footer-bottom-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.footer-bottom-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.06);
  margin: 64px 0 32px 0;
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  font-family: var(--font-display);
  font-size: 12px;
  color: #666666;
}

.footer-social-row {
  display: flex;
  gap: 12px;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b3b3b3;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.social-icon-btn:hover {
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-3px);
  background-color: rgba(255, 255, 255, 0.03);
}

/* Responsive adjustments for Footer */
@media (max-width: 1024px) {
  .footer-top-container {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .luxury-footer {
    padding: 80px 40px 40px 40px;
  }
}

@media (max-width: 768px) {
  .footer-top-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom-flex {
    flex-direction: column-reverse;
    align-items: center;
  }
}

/* ==========================================================================
   PROFESSIONAL SECTION-BY-SECTION MOBILE RESPONSIVENESS SYSTEM
   ========================================================================== */

/* Tablet & Laptop Layouts (max-width: 1024px) */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .promo-row-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .promo-card {
    aspect-ratio: 1.4 / 1;
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .hot-list-grid.active {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .top-selling-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .journal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-top-container {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .luxury-footer {
    padding: 80px 40px 40px 40px;
  }
}

/* Medium Mobile & Tablets (max-width: 768px) */
@media (max-width: 768px) {
  .site-header {
    height: 70px;
  }

  .product-grid,
  .hot-list-grid.active,
  .top-selling-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .logo-title {
    font-size: 22px;
  }

  .logo-avatar {
    width: 36px;
    height: 36px;
  }

  .cart-drawer {
    width: 100%;
  }

  /* Center-align Section Headers & Titles in Mobile View */
  .best-sellers-section .section-container,
  .hot-list-section .section-container,
  .journal-section .section-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .section-header,
  .hot-list-header,
  .journal-header {
    display: contents;
  }

  .header-title-wrapper,
  .category-section-header,
  .hot-list-title-group,
  .journal-title-group,
  .top-selling-header,
  .stats-text-block {
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 24px;
    order: 1;
  }

  .section-supheading,
  .section-title,
  .category-supheading,
  .category-title,
  .hot-list-supheading,
  .hot-list-title,
  .journal-supheading,
  .journal-title,
  .stats-supheading,
  .stats-title,
  .stats-description {
    text-align: center;
  }

  .title-accent-bar,
  .title-accent-bar-left,
  .title-accent-bar-center {
    margin: 12px auto 0 auto !important;
  }

  /* Hot List Accent Bar & Layout */
  .hot-list-section .title-accent-bar-left {
    order: 2;
    margin: 12px auto 20px auto !important;
  }

  .hot-list-tabs {
    order: 3;
    display: flex;
    width: max-content;
    max-width: 100%;
    margin: 0 auto 24px auto;
    overflow-x: auto;
    padding: 5px;
    gap: 4px;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    box-sizing: border-box;
  }

  .hot-list-tabs::-webkit-scrollbar {
    display: none;
  }

  .tab-btn {
    padding: 8px 16px;
    font-size: 13px;
    white-space: nowrap;
    flex-shrink: 0;
    border-radius: 40px;
    box-sizing: border-box;
  }

  .product-grid {
    order: 2;
    margin-bottom: 28px;
  }

  .hot-list-grid.active {
    order: 4;
    margin-bottom: 28px;
  }

  .journal-grid {
    order: 2;
    margin-bottom: 28px;
  }

  /* Move View All / Action Buttons Below Products in Mobile View */
  .btn-view-all,
  .btn-view-all-light {
    order: 5;
    margin: 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-smooth);
    letter-spacing: 0.04em;
  }

  .btn-view-all {
    background-color: #ffffff;
    color: #1b1b1b;
    border: 1px solid rgba(122, 0, 153, 0.2);
    box-shadow: 0 4px 14px rgba(122, 0, 153, 0.06);
  }

  .btn-view-all:hover {
    background-color: var(--primary-purple);
    color: #ffffff;
    border-color: var(--primary-purple);
  }

  .btn-view-all-light {
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
  }

  .btn-view-all-light:hover {
    background-color: var(--primary-purple);
    border-color: var(--primary-purple);
  }


  .promo-campaigns-section {
    padding: 60px 20px;
  }

  .promo-discount {
    font-size: 36px;
  }

  .promo-brand-display {
    font-size: 24px;
  }

  .category-selection-section {
    padding: 60px 20px;
  }

  .hot-list-section {
    padding: 60px 20px;
  }



  .luxury-cta-banner-section {
    padding: 0 20px 60px 20px;
  }

  .cta-banner-container {
    padding: 40px 24px;
  }

  .cta-banner-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .cta-banner-heading {
    font-size: 26px;
  }

  .btn-cta-luxury-pill {
    width: 100%;
    justify-content: center;
  }

  .top-selling-section {
    padding: 60px 20px;
  }

  .journal-section {
    padding: 60px 20px;
  }

  .journal-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .brand-stats-section {
    padding: 60px 20px;
  }

  .footer-top-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom-flex {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }

  .luxury-footer {
    padding: 60px 20px 30px 20px;
  }

  /* Animated Quick Add buttons slide-up behavior for mobile */
  .btn-quick-add,
  .btn-quick-add-dark {
    transform: translateY(101%);
    padding: 12px;
    font-size: 11px;
  }

  .product-image-wrapper:hover .btn-quick-add,
  .product-image-wrapper:active .btn-quick-add,
  .product-card:hover .btn-quick-add,
  .product-card:active .btn-quick-add,
  .product-card:focus-within .btn-quick-add,
  .hot-image-wrapper:hover .btn-quick-add-dark,
  .hot-image-wrapper:active .btn-quick-add-dark,
  .hot-card:hover .btn-quick-add-dark,
  .hot-card:active .btn-quick-add-dark,
  .hot-card:focus-within .btn-quick-add-dark {
    transform: translateY(0);
  }
}

/* Extra Small Smartphones (max-width: 480px) */
@media (max-width: 480px) {
  .announcement-bar {
    font-size: 11px;
    padding: 8px 12px;
  }

  .site-header {
    height: 64px;
  }

  .header-container {
    padding: 0 16px;
  }

  .logo-title {
    font-size: 18px;
  }

  .logo-subtitle {
    font-size: 8px;
    letter-spacing: 0.16em;
  }

  .logo-avatar {
    width: 32px;
    height: 32px;
  }

  .header-utilities {
    gap: 10px;
  }

  .utility-btn {
    padding: 6px;
  }

  .luxury-hero {
    padding: 40px 16px 60px 16px;
  }

  .hero-watermark {
    font-size: 22vw;
    top: 38%;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.015);
  }

  .serif-title {
    font-size: 32px;
  }

  .sans-title {
    font-size: 36px;
  }

  .hero-supheading {
    font-size: 10px;
    letter-spacing: 0.25em;
  }

  .hero-description {
    font-size: 13px;
    margin-bottom: 28px;
  }

  .tilted-ticker-wrapper {
    transform: skewY(-1.5deg) translateY(-5px);
  }

  .tilted-ticker-bar {
    padding: 10px 0;
  }

  .ticker-content span {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .best-sellers-section {
    padding: 48px 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .product-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .product-info {
    padding-top: 14px;
  }

  .brand-name {
    font-size: 9px;
  }

  .product-title {
    font-size: 13px;
    line-height: 1.35;
  }

  .price-current {
    font-size: 14px;
  }

  .category-selection-section {
    padding: 48px 16px;
  }

  .category-title {
    font-size: 28px;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px 12px !important;
  }

  .category-card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 170px;
    margin: 0 auto;
  }

  .category-circle {
    width: 125px !important;
    height: 125px !important;
  }

  .category-initial {
    font-size: 42px !important;
  }

  .category-name {
    font-size: 15px;
    margin-top: 10px;
  }

  .hot-list-section {
    padding: 48px 16px;
  }

  .hot-list-title {
    font-size: 28px;
  }

  .hot-list-tabs {
    padding: 4px;
    gap: 2px;
  }

  .tab-btn {
    padding: 7px 13px;
    font-size: 12px;
  }

  .hot-list-grid.active {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .hot-info {
    padding-top: 14px;
  }

  .hot-card-title {
    font-size: 13px;
    line-height: 1.35;
  }

  .hot-price-current {
    font-size: 14px;
  }

  .luxury-cta-banner-section {
    padding: 0 12px 48px 12px;
  }

  .cta-banner-container {
    padding: 30px 16px;
    border-radius: 12px;
  }

  .cta-banner-heading {
    font-size: 22px;
  }

  .btn-cta-luxury-pill {
    padding: 14px 20px;
    font-size: 13px;
  }

  .top-selling-section {
    padding: 48px 16px;
  }

  .top-selling-title {
    font-size: 28px;
  }

  .top-selling-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .top-card-inner {
    padding: 12px;
  }

  .top-image-arch {
    border-radius: 60px 60px 8px 8px;
  }

  .top-perfume-name {
    font-size: 13px;
  }

  .top-perfume-price {
    font-size: 13px;
  }

  .top-arrow-btn {
    width: 28px;
    height: 28px;
    top: 18px;
    right: 18px;
  }

  .top-rect-badge {
    font-size: 8px;
    padding: 4px 8px;
  }

  .journal-section {
    padding: 48px 16px;
  }

  .journal-title {
    font-size: 28px;
  }

  .journal-card-title {
    font-size: 19px;
  }

  .brand-stats-section {
    padding: 48px 16px;
  }

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

  .stat-box {
    padding: 28px 12px;
  }

  .stat-number {
    font-size: 34px;
  }

  .stat-label {
    font-size: 9.5px;
  }

  .luxury-footer {
    padding: 48px 16px 24px 16px;
  }

  .footer-logo-main {
    font-size: 18px;
  }

  .footer-tagline {
    font-size: 13px;
    margin-bottom: 24px;
  }
}


/* Explicit Mobile Header Cleanliness Rule */
@media screen and (max-width: 768px) {

  .header-utilities .utility-search-btn,
  .header-utilities .utility-account-btn {
    display: none !important;
  }
}

/* ==========================================================================
   Product Detail Page (PDP) Modern Luxury Styles
   ========================================================================== */

.pdp-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Breadcrumb Navigation */
.breadcrumb-container {
  background-color: #0c0c0c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px 0;
}

.breadcrumb-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-family: var(--font-display);
  font-size: 13px;
  color: #888888;
  overflow-x: auto;
  white-space: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.breadcrumb-list::-webkit-scrollbar {
  display: none;
}

.breadcrumb-list a {
  color: #b3b3b3;
  text-decoration: none;
  transition: color 0.25s ease;
}

.breadcrumb-list a:hover {
  color: var(--primary-purple);
}

.bc-sep {
  color: #555555;
}

.bc-active {
  color: #ffffff;
  font-weight: 500;
}

/* Main PDP Layout Grid */
.pdp-main-section {
  background-color: #060606;
  color: #ffffff;
  padding: 60px 0 100px;
}

.pdp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Gallery & Media Frame */
.pdp-main-image-wrap {
  position: relative;
  aspect-ratio: 1 / 1.1;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: #121212;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.pdp-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 5;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 20px;
}

.pdp-badge.sale {
  background-color: rgba(122, 0, 153, 0.25);
  color: #e58cff;
  border: 1px solid rgba(122, 0, 153, 0.4);
}

.pdp-badge-auth {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 5;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: 20px;
  background-color: rgba(6, 6, 6, 0.7);
  backdrop-filter: blur(8px);
  color: #e5e5e5;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pdp-image-viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pdp-featured-img {
  width: 320%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pdp-main-image-wrap:hover .pdp-featured-img {
  transform: scale(1.05);
}

/* Thumbnails Strip */
.pdp-thumbs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.thumb-btn {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #121212;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  padding: 0;
  transition: var(--transition-smooth);
}

.thumb-btn:hover,
.thumb-btn.active {
  border-color: var(--primary-purple);
  box-shadow: 0 0 15px rgba(122, 0, 153, 0.4);
  transform: translateY(-2px);
}

.thumb-crop-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.thumb-img {
  width: 320%;
  height: 100%;
  object-fit: cover;
}

.thumb-img.t-aventus-1 {
  object-position: 7% center;
}

.thumb-img.t-aventus-2 {
  object-position: 7% center;
}

.thumb-img.t-aventus-3 {
  object-position: 37.5% center;
}

.thumb-img.t-aventus-4 {
  object-position: 7% center;
}

/* PDP Trust Callout Box */
.pdp-trust-box {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: 14px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #b3b3b3;
}

.trust-item-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(122, 0, 153, 0.15);
  border: 1px solid rgba(122, 0, 153, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #e58cff;
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2px;
}

.trust-item span {
  font-size: 11px;
  line-height: 1.4;
  color: #a0a0a0;
}

/* Info Column Details */
.pdp-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.pdp-brand-tag {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--primary-purple);
}

.pdp-category-tag {
  font-family: var(--font-display);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #888888;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 12px;
}

.pdp-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  line-height: 1.12;
  color: #ffffff;
  margin-bottom: 16px;
}

.pdp-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}

.pdp-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.stars {
  color: #d4af37;
  letter-spacing: 2px;
}

.rating-num {
  font-weight: 600;
  color: #ffffff;
  font-family: var(--font-display);
}

.review-count-link {
  color: #888888;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.review-count-link:hover {
  color: var(--primary-purple);
}

.pdp-stock-badge {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pdp-stock-badge.in-stock {
  background-color: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background-color: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(74, 222, 128, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
  }
}

/* Price Box */
.pdp-price-box {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.pdp-price-current {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: #ffffff;
}

.pdp-price-original {
  font-size: 18px;
  text-decoration: line-through;
  color: #777777;
}

.pdp-discount-pill {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  color: #e58cff;
  background-color: rgba(122, 0, 153, 0.2);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(122, 0, 153, 0.4);
}

.pdp-short-desc {
  font-size: 15px;
  color: #b3b3b3;
  line-height: 1.65;
  margin-bottom: 32px;
}

/* Size Selector Pills */
.pdp-option-group {
  margin-bottom: 32px;
}

.option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.option-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #e0e0e0;
}

.option-selected-val {
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--primary-purple);
  font-weight: 500;
}

.size-pill-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.size-pill {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  padding: 14px 12px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: var(--transition-smooth);
}

.size-pill:hover {
  border-color: rgba(122, 0, 153, 0.6);
  background-color: rgba(122, 0, 153, 0.08);
}

.size-pill.active {
  border-color: var(--primary-purple);
  background-color: rgba(122, 0, 153, 0.2);
  box-shadow: 0 0 20px rgba(122, 0, 153, 0.25);
}

.size-ml {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;

}

.size-sub {
  font-size: 10px;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.size-pill.active .size-sub {
  color: #e58cff;
}

/* PDP Buying Action Controls */
.pdp-action-block {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.quantity-stepper {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
  height: 54px;
  padding: 0 6px;
  flex-shrink: 0;
}

.qty-btn {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 18px;
  width: 38px;
  height: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.qty-btn:hover {
  color: var(--primary-purple);
}

.quantity-stepper input {
  width: 40px;
  height: 100%;
  background: none;
  border: none;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  outline: none;
  appearance: textfield;
  -webkit-appearance: none;
  -moz-appearance: textfield;
}

.quantity-stepper input::-webkit-outer-spin-button,
.quantity-stepper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.btn-pdp-add-bag {
  flex-grow: 1;
  height: 54px;
  background-color: #ffffff;
  color: #060606;
  border: none;
  border-radius: 30px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition-smooth);
}

.btn-pdp-add-bag:hover {
  background-color: var(--primary-purple);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(122, 0, 153, 0.3);
}

.btn-pdp-buy-now {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 54px;
  background-color: var(--primary-purple);
  color: #ffffff;
  border-radius: 30px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 25px rgba(122, 0, 153, 0.25);
}

.btn-pdp-buy-now:hover {
  background-color: var(--primary-purple-hover);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(122, 0, 153, 0.4);
}

/* Scent Pyramid Section */
.scent-pyramid-section {
  background-color: #0c0012;
  padding: 100px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pyramid-header {
  text-align: center;
  margin-bottom: 50px;
}

.pyramid-supheading {
  font-family: var(--font-display);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #a0a0a0;
  display: block;
  margin-bottom: 8px;
}

.pyramid-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px;
  font-weight: 300;
  font-style: italic;
  color: #ffffff;
}

.pyramid-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pyramid-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition-smooth);
}

.pyramid-card:hover {
  transform: translateY(-4px);
  border-color: rgba(122, 0, 153, 0.4);
  background: rgba(122, 0, 153, 0.05);
}

.highlight-card {
  border-color: rgba(122, 0, 153, 0.3);
  background: rgba(122, 0, 153, 0.08);
}

.pyramid-tier-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #e58cff;
  background-color: rgba(122, 0, 153, 0.2);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.pyramid-timing {
  font-size: 12px;
  color: #888888;
  margin-bottom: 24px;
}

.notes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.notes-list li {
  font-family: var(--font-display);
  font-size: 15px;
  color: #e0e0e0;
}

.note-dot {
  color: #d4af37;
  margin-right: 6px;
  font-size: 11px;
}

/* Performance Meter Bar */
.performance-bar-container {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 30px;
}

.perf-metric {
  display: flex;
  flex-direction: column;
}

.perf-label {
  font-family: var(--font-display);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #888888;
  margin-bottom: 6px;
}

.perf-value {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.meter-bg {
  width: 100%;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.meter-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-purple) 0%, #e58cff 100%);
  border-radius: 3px;
}

/* Accordion Tabs Section */
.pdp-details-tabs-section {
  padding: 80px 0;
  background-color: #060606;
}

.tabs-nav-bar {
  display: flex;
  justify-content: center;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 16px;
  margin-bottom: 40px;
}

.pdp-tab-btn {
  background: none;
  border: none;
  color: #888888;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  padding: 10px 24px;
  border-radius: 30px;
  transition: var(--transition-smooth);
}

.pdp-tab-btn:hover {
  color: #ffffff;
}

.pdp-tab-btn.active {
  color: #ffffff;
  background-color: rgba(122, 0, 153, 0.2);
  border: 1px solid rgba(122, 0, 153, 0.35);
}

.tabs-content-body {
  max-width: 900px;
  margin: 0 auto;
}

.pdp-tab-panel {
  display: none;
  line-height: 1.7;
  color: #b3b3b3;
}

.pdp-tab-panel.active {
  display: block;
}

.panel-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  color: #ffffff;
  margin-bottom: 20px;
}

.pdp-tab-panel p {
  margin-bottom: 16px;
}

.application-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.application-steps li {
  padding-left: 20px;
  border-left: 2px solid var(--primary-purple);
}

.application-steps strong {
  color: #ffffff;
  display: block;
  margin-bottom: 4px;
}

/* Customer Reviews Section */
.pdp-reviews-section {
  padding: 80px 0;
  background-color: #090909;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.reviews-header {
  margin-bottom: 48px;
}

.reviews-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 300;
  text-align: center;
  color: #ffffff;
  margin-bottom: 32px;
}

.reviews-summary-card {
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 32px;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
}

.summary-score-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding-right: 20px;
}

.big-score {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.stars-gold {
  color: #d4af37;
  margin: 8px 0;
  letter-spacing: 2px;
}

.total-reviews {
  font-size: 12px;
  color: #888888;
}

.summary-bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: #b3b3b3;
}

.bar-track {
  flex-grow: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: #d4af37;
  border-radius: 3px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.review-author {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.verified-badge {
  font-size: 10px;
  color: #4ade80;
  background: rgba(34, 197, 94, 0.1);
  padding: 2px 8px;
  border-radius: 10px;
}

.review-date {
  font-size: 11px;
  color: #777777;
  margin-left: auto;
}

.review-rating {
  color: #d4af37;
  margin-bottom: 12px;
  font-size: 14px;
  letter-spacing: 2px;
}

.review-headline {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.review-text {
  font-size: 13.5px;
  color: #b3b3b3;
  line-height: 1.6;
}

/* Related Products Section */
.related-products-section {
  padding: 100px 0;
  background-color: #FAF7FC;
  color: #1b1b1b;
}

.center-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;
}

.title-accent-bar-center {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-purple) 0%, #e58cff 100%);
  margin: 12px auto 0 auto;
  border-radius: 2px;
}

/* ==========================================================================
   Responsive Breakpoints for PDP
   ========================================================================== */

/* ==========================================================================
   Responsive Breakpoints for PDP (Super Mobile Friendly)
   ========================================================================== */

@media (max-width: 1024px) {
  .pdp-grid {
    gap: 40px;
  }

  .pdp-title {
    font-size: 36px;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .pdp-wrapper {
    padding: 0 16px;
  }

  .breadcrumb-container {
    padding: 10px 0;
  }

  .breadcrumb-list {
    font-size: 11.5px;
    gap: 6px;
  }

  .pdp-main-section {
    padding: 20px 0 40px;
  }

  .pdp-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pdp-main-image-wrap {
    aspect-ratio: 1 / 1;
    border-radius: 10px;
  }

  .pdp-badge,
  .pdp-badge-auth {
    top: 12px;
    font-size: 9px;
    padding: 4px 10px;
  }

  .pdp-badge {
    left: 12px;
  }

  .pdp-badge-auth {
    right: 12px;
  }

  .pdp-thumbs-grid {
    gap: 10px;
    margin-top: 12px;
  }

  .pdp-trust-box {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 16px;
    margin-top: 20px;
    border-radius: 10px;
  }

  .trust-item strong {
    font-size: 12px;
  }

  .trust-item span {
    font-size: 10.5px;
  }

  .pdp-brand-row {
    margin-bottom: 8px;
  }

  .pdp-brand-tag {
    font-size: 11px;
    letter-spacing: 0.2em;
  }

  .pdp-category-tag {
    font-size: 10px;
  }

  .pdp-title {
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .pdp-meta-row {
    padding-bottom: 14px;
    margin-bottom: 18px;
  }

  .pdp-rating {
    font-size: 12px;
  }

  .pdp-price-box {
    gap: 10px;
    margin-bottom: 18px;
  }

  .pdp-price-current {
    font-size: 28px;
  }

  .pdp-price-original {
    font-size: 15px;
  }

  .pdp-discount-pill {
    font-size: 10px;
    padding: 3px 8px;
  }

  .pdp-short-desc {
    font-size: 13.5px;
    line-height: 1.55;
    margin-bottom: 24px;
  }

  .pdp-option-group {
    margin-bottom: 24px;
  }

  .option-header {
    margin-bottom: 10px;
  }

  .option-label {
    font-size: 12px;
  }

  .option-selected-val {
    font-size: 12px;
  }

  /* 3-Column side-by-side pill grid for mobile size selector */
  .size-pill-group {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .size-pill {
    padding: 10px 4px;
    text-align: center;
    border-radius: 8px;
  }

  .size-ml {
    font-size: 13px;
    display: block;
  }

  .size-sub {
    font-size: 9px;
    display: block;
    margin-top: 2px;
  }

  .pdp-action-block {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
  }

  .quantity-stepper {
    width: 100%;
    height: 48px;
    justify-content: space-between;
  }

  .qty-btn {
    width: 48px;
    height: 100%;
    font-size: 18px;
  }

  .btn-pdp-add-bag {
    width: 100%;
    height: 50px;
    font-size: 14px;
    border-radius: 8px;
    justify-content: center;
  }

  .btn-pdp-buy-now {
    width: 100%;
    height: 50px;
    font-size: 14px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pdp-reviews-section {
    padding: 40px 0;
  }

  .reviews-header {
    margin-bottom: 28px;
  }

  .reviews-title {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .reviews-summary-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 16px;
    border-radius: 10px;
  }

  .summary-score-box {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-right: 0;
    padding-bottom: 16px;
  }

  .big-score {
    font-size: 44px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .review-card {
    padding: 20px 16px;
    border-radius: 10px;
  }

  .review-headline {
    font-size: 15px;
  }

  .review-text {
    font-size: 13px;
  }

  .related-products-section {
    padding: 50px 0;
  }

  .related-products-section .center-header {
    margin-bottom: 28px;
  }

  .related-products-section .section-title {
    font-size: 24px;
  }

  .related-products-section .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .pdp-wrapper {
    padding: 0 14px;
  }

  .pdp-price-current {
    font-size: 25px;
  }

  .pdp-title {
    font-size: 22px;
  }

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

  .related-products-section .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* ==========================================================================
   Shop / Collections Page (shop.html) Styles - Professional Full Width Layout
   ========================================================================== */

.shop-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.shop-hero-section {
  background: radial-gradient(circle at 50% 0%, rgba(122, 0, 153, 0.18) 0%, #08080a 65%, #050507 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 0 40px;
  text-align: center;
  position: relative;
}

.shop-hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.shop-supheading {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: #e58cff;
  display: inline-block;
  margin-bottom: 12px;
  background: rgba(122, 0, 153, 0.18);
  padding: 4px 14px;
  border-radius: 20px;
  border: 1px solid rgba(122, 0, 153, 0.35);
}

.shop-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.shop-hero-desc {
  font-size: 15px;
  color: #a1a1aa;
  line-height: 1.6;
  margin-bottom: 32px;
}

.shop-pill-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.shop-nav-pill {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #d4d4d8;
  padding: 9px 22px;
  border-radius: 25px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}

.shop-nav-pill:hover {
  background: rgba(122, 0, 153, 0.25);
  border-color: rgba(229, 140, 255, 0.35);
  color: #ffffff;
}

.shop-nav-pill.active {
  background: var(--primary-purple);
  color: #ffffff;
  border-color: #e58cff;
  box-shadow: 0 4px 18px rgba(122, 0, 153, 0.45);
}

.shop-main-section {
  background-color: #060606;
  padding: 50px 0 100px;
  color: #ffffff;
}

.shop-full-container {
  width: 100%;
}

/* Shop Catalog Toolbar */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(18, 18, 22, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 24px;
  border-radius: 12px;
  margin-bottom: 32px;
}

.toolbar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.results-counter {
  font-family: var(--font-display);
  font-size: 13.5px;
  color: #a1a1aa;
  font-weight: 500;
}

.toolbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sort-label {
  font-family: var(--font-display);
  font-size: 13px;
  color: #71717a;
}

.sort-dropdown {
  background: #121215;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 8px 16px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s ease;
}

.sort-dropdown:focus {
  border-color: var(--primary-purple);
}

/* Full Width 4-Column Shop Product Grid */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 50px;
}

/* Pagination */
.shop-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.page-num {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.page-num:hover,
.page-num.active {
  background: var(--primary-purple);
  border-color: #e58cff;
  box-shadow: 0 4px 15px rgba(122, 0, 153, 0.4);
}

.page-next {
  height: 42px;
  padding: 0 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.page-next:hover {
  background: rgba(122, 0, 153, 0.25);
  border-color: rgba(229, 140, 255, 0.4);
}

/* Responsive Grid Breakpoints */
@media (max-width: 1200px) {
  .shop-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 1024px) {
  .shop-wrapper {
    padding: 0 24px;
  }

  .shop-hero-title {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .shop-main-section {
    padding: 36px 0 70px;
  }

  .shop-hero-section {
    padding: 40px 0 28px;
  }

  .shop-hero-title {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .shop-hero-desc {
    font-size: 13.5px;
    margin-bottom: 22px;
  }

  .shop-pill-nav {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 8px;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .shop-pill-nav::-webkit-scrollbar {
    display: none;
  }

  .shop-nav-pill {
    padding: 7px 16px;
    font-size: 12px;
  }

  .shop-toolbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    margin-bottom: 20px;
  }

  .results-counter {
    font-size: 12px;
  }

  .sort-dropdown {
    padding: 6px 12px;
    font-size: 12px;
  }

  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .shop-grid .product-title {
    font-size: 13px;
    line-height: 1.35;
    min-height: 35px;
    margin-bottom: 6px;
  }

  .shop-grid .product-title a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #ffffff;
  }

  .shop-grid .price-current {
    font-size: 14.5px;
  }

  .shop-grid .price-original {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .shop-wrapper {
    padding: 0 14px;
  }

  .shop-hero-title {
    font-size: 24px;
  }

  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .shop-grid .product-info {
    padding: 10px 2px 2px;
  }

  .page-num,
  .page-next {
    height: 38px;
    font-size: 13px;
  }
}

/* ==========================================================================
   Express Checkout Page (checkout.html) Styles
   ========================================================================== */

.checkout-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.checkout-main-section {
  background-color: #060606;
  padding: 40px 0 100px;
  color: #ffffff;
}

.checkout-hero-header {
  text-align: center;
  margin-bottom: 28px;
}

.checkout-badge-tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #4ade80;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
}

.checkout-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 8px;
}

.checkout-subtitle {
  font-size: 14.5px;
  color: #a1a1aa;
}

.checkout-layout-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: start;
}

/* Form Column */
.checkout-card-box {
  background: rgba(18, 18, 22, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.checkout-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-purple);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(122, 0, 153, 0.5);
}

.checkout-card-header h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.form-group-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.input-field-wrap.span-2 {
  grid-column: span 2;
}

.input-field-wrap label {
  display: block;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  color: #d4d4d8;
  margin-bottom: 8px;
}

.form-input,
.form-select {
  width: 100%;
  height: 48px;
  background: #121215;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 0 16px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: all 0.25s ease;
}

.form-input:focus,
.form-select:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 15px rgba(122, 0, 153, 0.3);
}

.input-error-msg {
  display: none;
  font-size: 11.5px;
  color: #ef4444;
  margin-top: 6px;
}

/* Payment Options List */
.payment-options-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.payment-radio-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.payment-radio-card.active {
  border-color: var(--primary-purple);
  background: rgba(122, 0, 153, 0.1);
  box-shadow: 0 0 20px rgba(122, 0, 153, 0.25);
}

.payment-radio-card input[type="radio"] {
  display: none;
}

.radio-custom-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.payment-radio-card input[type="radio"]:checked+.radio-custom-circle {
  border-color: #e58cff;
}

.payment-radio-card input[type="radio"]:checked+.radio-custom-circle::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e58cff;
}

.payment-card-content {
  flex-grow: 1;
}

.payment-card-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.payment-card-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

.payment-badge-rec {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: #4ade80;
  background: rgba(34, 197, 94, 0.15);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.card-icons-inline {
  display: flex;
  gap: 6px;
}

.card-icon-pill {
  font-size: 10px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
  color: #d4d4d8;
  padding: 2px 6px;
  border-radius: 4px;
}

.payment-card-desc {
  font-size: 13px;
  color: #a1a1aa;
  margin: 0;
}

/* Submit Button */
.btn-submit-order {
  width: 100%;
  height: 56px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(122, 0, 153, 0.4);
}

/* Summary Column */
.summary-card-box {
  background: rgba(18, 18, 22, 0.8);
  border: 1px solid rgba(122, 0, 153, 0.25);
  border-radius: 16px;
  padding: 28px;
  position: sticky;
  top: 100px;
  backdrop-filter: blur(12px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.summary-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-items-list {
  margin-bottom: 24px;
}

.summary-item-card {
  display: flex;
  align-items: center;
  gap: 16px;
}

.summary-item-thumb {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #121212;
  flex-shrink: 0;
}

.summary-item-thumb img {
  width: 320%;
  height: 100%;
  object-fit: cover;
  object-position: 7% center;
}

.summary-qty-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  background: var(--primary-purple);
  color: #ffffff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.summary-item-info {
  flex-grow: 1;
}

.summary-item-title {
  font-size: 13.5px;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 4px;
}

.summary-item-meta {
  font-size: 12px;
  color: #a1a1aa;
}

.summary-item-price {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 700;
  color: #ffffff;
}

/* Coupon Box */
.coupon-box-wrap {
  margin-bottom: 20px;
}

.coupon-input-group {
  display: flex;
  gap: 10px;
}

.coupon-input {
  flex-grow: 1;
  height: 44px;
  background: #121215;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 0 14px;
  color: #ffffff;
  font-size: 13px;
  outline: none;
}

.btn-coupon-apply {
  background: rgba(122, 0, 153, 0.2);
  border: 1px solid rgba(122, 0, 153, 0.4);
  color: #e58cff;
  padding: 0 18px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-coupon-apply:hover {
  background: var(--primary-purple);
  color: #ffffff;
}

.coupon-feedback-msg {
  display: block;
  font-size: 11.5px;
  margin-top: 6px;
}

.coupon-feedback-msg.success {
  color: #4ade80;
}

.coupon-feedback-msg.error {
  color: #ef4444;
}

.summary-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 16px 0;
}

/* Cost Table */
.cost-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13.5px;
}

.cost-row {
  display: flex;
  justify-content: space-between;
  color: #a1a1aa;
}

.free-delivery-text {
  color: #4ade80;
  font-weight: 700;
}

.discount-val {
  color: #4ade80;
  font-weight: 700;
}

.total-row {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

.total-val {
  font-size: 20px;
  color: #e58cff;
}

.checkout-trust-box {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(255, 255, 255, 0.02);
  padding: 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-pill-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #d4d4d8;
}

/* Order Success Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.order-success-card {
  background: #100d16;
  border: 1px solid rgba(122, 0, 153, 0.35);
  border-radius: 20px;
  max-width: 500px;
  width: 100%;
  padding: 36px 30px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

.success-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e 0%, #15803d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 25px rgba(34, 197, 94, 0.5);
}

.success-tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #4ade80;
  display: inline-block;
  margin-bottom: 8px;
}

.success-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 12px;
}

.success-desc {
  font-size: 13.5px;
  color: #a1a1aa;
  line-height: 1.5;
  margin-bottom: 24px;
}

.order-details-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #a1a1aa;
}

.detail-row strong {
  color: #ffffff;
}

.detail-row .highlight-price {
  color: #e58cff;
}

.btn-modal-done {
  width: 100%;
  height: 48px;
  border-radius: 10px;
}

/* Section-by-Section Mobile Responsive Styles for Checkout */
@media (max-width: 1024px) {
  .checkout-wrapper {
    padding: 0 24px;
  }

  .checkout-layout-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .checkout-summary-col {
    order: -1;
    /* Order Summary displayed at top on mobile */
  }

  .checkout-form-col {
    order: 1;
  }

  .summary-card-box {
    position: static;
  }
}

@media (max-width: 768px) {
  .checkout-main-section {
    padding: 24px 0 60px;
  }

  .checkout-hero-header {
    margin-bottom: 20px;
  }

  .checkout-title {
    font-size: 28px;
  }

  .checkout-card-box {
    padding: 20px 16px;
    border-radius: 14px;
    margin-bottom: 18px;
  }

  .checkout-card-header {
    margin-bottom: 18px;
    padding-bottom: 12px;
    gap: 10px;
  }

  .step-num {
    width: 28px;
    height: 28px;
    font-size: 12.5px;
  }

  .checkout-card-header h3 {
    font-size: 16px;
  }

  .form-group-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .input-field-wrap.span-2 {
    grid-column: span 1;
  }

  .input-field-wrap label {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .form-input,
  .form-select {
    height: 46px;
    font-size: 14px;
    padding: 0 14px;
    border-radius: 8px;
  }

  .payment-radio-card {
    padding: 16px 14px;
    gap: 12px;
    border-radius: 10px;
  }

  .payment-card-name {
    font-size: 14px;
  }

  .payment-card-desc {
    font-size: 12px;
  }

  .btn-submit-order {
    height: 52px;
    font-size: 14.5px;
    border-radius: 10px;
  }

  .summary-card-box {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .summary-title {
    font-size: 18px;
    margin-bottom: 18px;
    padding-bottom: 12px;
  }

  .summary-item-card {
    gap: 12px;
  }

  .summary-item-thumb {
    width: 54px;
    height: 54px;
    border-radius: 8px;
  }

  .summary-item-title {
    font-size: 13px;
  }

  .summary-item-price {
    font-size: 13.5px;
  }

  .coupon-input {
    height: 42px;
    font-size: 12.5px;
  }

  .btn-coupon-apply {
    padding: 0 14px;
    font-size: 12px;
  }

  .order-success-card {
    padding: 28px 18px;
    border-radius: 16px;
  }

  .success-icon-wrap {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
  }

  .success-title {
    font-size: 26px;
  }

  .success-desc {
    font-size: 13px;
  }

  .order-details-box {
    padding: 14px 16px;
    font-size: 12.5px;
  }
}

@media (max-width: 480px) {
  .checkout-wrapper {
    padding: 0 14px;
  }

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

  .payment-card-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .payment-badge-rec {
    font-size: 9.5px;
  }

  .trust-pill-item {
    font-size: 11px;
  }
}

/* ==========================================================================
   404 Error Page (404.html / WP 404.php) Styles
   ========================================================================== */

.error-404-section {
  position: relative;
  overflow: hidden;
  background-color: #060606;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px 100px;
  color: #ffffff;
  text-align: center;
}

.error-glow-ambient {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(122, 0, 153, 0.22) 0%, rgba(6, 6, 6, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.error-container {
  position: relative;
  z-index: 2;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
}

.error-code-wrap {
  margin-bottom: -40px;
}

.error-code-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 200px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
  background: linear-gradient(180deg, rgba(229, 140, 255, 0.4) 0%, rgba(122, 0, 153, 0.05) 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  user-select: none;
}

.error-content-box {
  background: rgba(18, 18, 22, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 44px 36px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.error-supheading {
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #e58cff;
  display: block;
  margin-bottom: 12px;
}

.error-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.15;
}

.error-subtitle {
  font-size: 15px;
  color: #a1a1aa;
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.error-search-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto 36px;
}

.error-search-input {
  flex-grow: 1;
  height: 52px;
  background: #121215;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 0 18px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: all 0.25s ease;
}

.error-search-input:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 15px rgba(122, 0, 153, 0.3);
}

.btn-error-search {
  height: 52px;
  padding: 0 24px;
  background: var(--primary-purple);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(122, 0, 153, 0.4);
}

.btn-error-search:hover {
  background: #9000b5;
  transform: translateY(-1px);
}

.error-pills-section {
  margin-bottom: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.error-pills-label {
  display: block;
  font-size: 12px;
  color: #a1a1aa;
  margin-bottom: 14px;
}

.error-pills-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.error-pill {
  font-size: 12.5px;
  font-weight: 500;
  color: #d4d4d8;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.error-pill:hover {
  background: rgba(122, 0, 153, 0.25);
  border-color: #e58cff;
  color: #ffffff;
}

.error-cta-row {
  display: flex;
  justify-content: center;
}

.btn-error-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 32px;
  height: 52px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
}

/* 404 Responsive Media Queries */
@media (max-width: 768px) {
  .error-code-text {
    font-size: 140px;
  }

  .error-code-wrap {
    margin-bottom: -28px;
  }

  .error-content-box {
    padding: 32px 20px;
  }

  .error-title {
    font-size: 30px;
  }

  .error-subtitle {
    font-size: 13.5px;
    margin-bottom: 24px;
  }

  .error-search-form {
    flex-direction: column;
    gap: 10px;
  }

  .btn-error-search {
    width: 100%;
    justify-content: center;
    height: 48px;
  }

  .error-search-input {
    height: 48px;
  }
}

@media (max-width: 480px) {
  .error-code-text {
    font-size: 110px;
  }

  .error-title {
    font-size: 25px;
  }

  .error-pill {
    font-size: 11.5px;
    padding: 6px 12px;
  }
}

/* ==========================================================================
   About Us & Heritage Page (about.html) Styles
   ========================================================================== */

.about-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* About Hero */
.about-hero-section {
  position: relative;
  background-color: #060606;
  padding: 90px 0 100px;
  overflow: hidden;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.about-hero-content {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-badge {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #e58cff;
  background: rgba(122, 0, 153, 0.2);
  border: 1px solid rgba(229, 140, 255, 0.35);
  padding: 6px 18px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 18px;
}

.about-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 54px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 16px;
}

.about-hero-desc {
  font-size: 16px;
  color: #a1a1aa;
  line-height: 1.7;
}

/* Story Section */
.about-story-section {
  background-color: #0c0c0f;
  padding: 100px 0;
  color: #ffffff;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.about-image-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(6, 6, 6, 0.85);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 20px;
  font-family: var(--font-display);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #e58cff;
  border: 1px solid rgba(229, 140, 255, 0.3);
}

.about-subheading {
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--primary-purple);
  display: block;
  margin-bottom: 10px;
}

.about-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.about-paragraph {
  font-size: 15px;
  color: #a1a1aa;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-quote-box {
  margin-top: 28px;
  padding: 20px 24px;
  background: rgba(122, 0, 153, 0.08);
  border-left: 3px solid var(--primary-purple);
  border-radius: 0 10px 10px 0;
}

.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 8px;
}

.quote-author {
  font-family: var(--font-display);
  font-size: 12px;
  color: #a1a1aa;
}

/* Pillars Section */
.about-pillars-section {
  background-color: #060606;
  padding: 100px 0;
  color: #ffffff;
}

.section-header-center {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.pillar-card {
  background: rgba(18, 18, 22, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px 24px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pillar-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-purple);
  box-shadow: 0 15px 35px rgba(122, 0, 153, 0.2);
}

.pillar-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(122, 0, 153, 0.18);
  border: 1px solid rgba(229, 140, 255, 0.25);
  color: #e58cff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}

.pillar-card:hover .pillar-icon {
  transform: scale(1.08);
  background: rgba(122, 0, 153, 0.3);
  border-color: #e58cff;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 17.5px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  text-align: center;
}

.pillar-desc {
  font-size: 13.5px;
  color: #a1a1aa;
  line-height: 1.6;
  text-align: center;
}

/* Stats Section */
.about-stats-section {
  background-color: #0c0c0f;
  padding: 40px 0 80px;
}

.about-stats-box {
  background: linear-gradient(135deg, rgba(75, 0, 96, 0.4) 0%, rgba(122, 0, 153, 0.2) 100%);
  border: 1px solid rgba(229, 140, 255, 0.25);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.about-stats-box .stat-item {
  text-align: center;
}

.about-stats-box .stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
}

.about-stats-box .stat-label {
  font-family: var(--font-display);
  font-size: 13px;
  color: #e58cff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.12);
}

/* CTA Section */
.about-cta-section {
  background-color: #060606;
  padding: 80px 0 100px;
  text-align: center;
}

.about-cta-card {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(18, 18, 22, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 50px 40px;
}

.about-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 14px;
}

.about-cta-desc {
  font-size: 15px;
  color: #a1a1aa;
  margin-bottom: 30px;
}

/* Responsive Media Queries for About Page */
@media (max-width: 1024px) {
  .about-hero-section {
    padding: 70px 0 80px;
  }

  .about-story-section,
  .about-pillars-section {
    padding: 80px 0;
  }

  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .about-img {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .about-wrapper {
    padding: 0 20px;
  }

  .about-hero-section {
    padding: 50px 0 60px;
  }

  .about-hero-title {
    font-size: 36px;
  }

  .about-hero-desc {
    font-size: 14px;
  }

  .about-story-section,
  .about-pillars-section {
    padding: 60px 0;
  }

  .about-text-column {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-heading {
    font-size: 30px;
    text-align: center;
  }

  .about-paragraph {
    font-size: 14px;
    text-align: center;
  }

  .about-quote-box {
    padding: 18px 20px;
    margin-top: 20px;
    border-left: none;
    border-top: 2px solid var(--primary-purple);
    border-bottom: 2px solid var(--primary-purple);
    border-radius: 8px;
    text-align: center;
    width: 100%;
  }

  .quote-text {
    font-size: 16px;
    text-align: center;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pillar-card {
    padding: 24px 20px;
  }

  .about-stats-section {
    padding: 20px 0 60px;
  }

  .about-stats-box {
    flex-direction: column;
    gap: 24px;
    padding: 28px 20px;
  }

  .about-stats-box .stat-number {
    font-size: 34px;
  }

  .about-stats-box .stat-label {
    font-size: 12px;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .about-cta-section {
    padding: 60px 0 80px;
  }

  .about-cta-card {
    padding: 32px 20px;
  }

  .about-cta-title {
    font-size: 26px;
  }

  .about-cta-desc {
    font-size: 13.5px;
  }

  .about-cta-card .btn-luxury-primary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .about-img {
    height: 250px;
  }

  .about-hero-title {
    font-size: 30px;
  }
}

/* ==========================================================================
   Fragrance Journal Page (blog.html) Styles
   ========================================================================== */

.blog-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Blog Hero */
.blog-hero-section {
  position: relative;
  background-color: #060606;
  padding: 90px 0 60px;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-hero-content {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.blog-badge {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #e58cff;
  background: rgba(122, 0, 153, 0.2);
  border: 1px solid rgba(229, 140, 255, 0.35);
  padding: 6px 18px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 18px;
}

.blog-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 54px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 16px;
}

.blog-hero-desc {
  font-size: 16px;
  color: #a1a1aa;
  line-height: 1.7;
  margin-bottom: 32px;
}

.blog-pill-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.blog-nav-pill {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #d4d4d8;
  padding: 9px 22px;
  border-radius: 25px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}

.blog-nav-pill:hover {
  background: rgba(122, 0, 153, 0.25);
  border-color: rgba(229, 140, 255, 0.35);
  color: #ffffff;
}

.blog-nav-pill.active {
  background: var(--primary-purple);
  color: #ffffff;
  border-color: #e58cff;
  box-shadow: 0 4px 18px rgba(122, 0, 153, 0.45);
}

/* Featured Article Banner Card */
.blog-featured-section {
  background-color: #060606;
  padding: 60px 0 40px;
}

.featured-article-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  background: rgba(18, 18, 22, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  backdrop-filter: blur(10px);
}

.featured-article-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-purple);
  box-shadow: 0 20px 45px rgba(122, 0, 153, 0.2);
}

.featured-image-wrap {
  position: relative;
  height: 100%;
  min-height: 360px;
  overflow: hidden;
}

.featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.featured-article-card:hover .featured-img {
  transform: scale(1.05);
}

.article-category-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(6, 6, 6, 0.85);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 16px;
  font-family: var(--font-display);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #e58cff;
  border: 1px solid rgba(229, 140, 255, 0.3);
}

.featured-content {
  padding: 40px 40px 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12.5px;
  color: #a1a1aa;
  margin-bottom: 14px;
}

.meta-dot {
  color: var(--primary-purple);
}

.featured-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 300;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 16px;
  transition: color 0.25s ease;
}

.featured-article-card:hover .featured-title {
  color: #e58cff;
}

.featured-excerpt {
  font-size: 14.5px;
  color: #a1a1aa;
  line-height: 1.65;
  margin-bottom: 24px;
}

.read-article-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  color: #e58cff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: gap 0.25s ease;
}

.featured-article-card:hover .read-article-link {
  gap: 12px;
}

/* Journal Grid Feed */
.blog-grid-section {
  background-color: #060606;
  padding: 40px 0 100px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.journal-card-item {
  background: rgba(18, 18, 22, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.journal-card-item:hover {
  transform: translateY(-6px);
  border-color: var(--primary-purple);
  box-shadow: 0 15px 35px rgba(122, 0, 153, 0.15);
}

.card-image-link {
  display: block;
  text-decoration: none;
}

.card-image-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.journal-card-item:hover .card-img {
  transform: scale(1.06);
}

.card-category-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(6, 6, 6, 0.85);
  backdrop-filter: blur(6px);
  padding: 5px 12px;
  border-radius: 14px;
  font-family: var(--font-display);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #e58cff;
  border: 1px solid rgba(229, 140, 255, 0.25);
}

.card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-article-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 12px;
}

.card-article-title a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.25s ease;
}

.card-article-title a:hover {
  color: #e58cff;
}

.card-article-excerpt {
  font-size: 13.5px;
  color: #a1a1aa;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.card-read-more {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: #e58cff;
  text-decoration: none;
  transition: color 0.25s ease;
}

.card-read-more:hover {
  color: #ffffff;
}

/* Responsive Breakpoints for Blog Page */
@media (max-width: 1024px) {
  .featured-article-card {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .featured-content {
    padding: 30px;
  }

  .featured-image-wrap {
    min-height: 280px;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .blog-wrapper {
    padding: 0 20px;
  }

  .blog-hero-title {
    font-size: 36px;
  }

  .blog-hero-desc {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .blog-pill-nav {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 8px;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .blog-pill-nav::-webkit-scrollbar {
    display: none;
  }

  .blog-nav-pill {
    padding: 7px 16px;
    font-size: 12px;
  }

  .featured-title {
    font-size: 26px;
  }

  .featured-excerpt {
    font-size: 13.5px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card-body {
    padding: 20px;
  }

  .card-article-title {
    font-size: 22px;
  }
}

/* ==========================================================================
   Single Journal Article Reader Page (blog-post.html) Styles
   ========================================================================== */

.post-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Article Header */
.post-header-section {
  background-color: #060606;
  padding: 70px 0 30px;
}

.post-header-content {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 40px;
}

.post-category-badge {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #e58cff;
  background: rgba(122, 0, 153, 0.2);
  border: 1px solid rgba(229, 140, 255, 0.35);
  padding: 6px 18px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 18px;
}

.post-main-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 24px;
}

.post-author-meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}

.author-avatar-wrap {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(229, 140, 255, 0.3);
}

.author-name {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.post-date-read {
  display: block;
  font-size: 12.5px;
  color: #a1a1aa;
}

/* Banner Frame */
.post-banner-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
  aspect-ratio: 16 / 9;
}

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

/* Article Body Layout */
.post-article-layout {
  background-color: #060606;
  padding: 40px 0 80px;
}

.post-body-container {
  color: #d4d4d8;
  font-size: 16.5px;
  line-height: 1.8;
}

.lead-paragraph {
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.65;
  margin-bottom: 28px;
}

.post-text {
  margin-bottom: 24px;
  color: #d4d4d8;
}

.post-heading-2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: #ffffff;
  margin: 44px 0 18px;
  line-height: 1.25;
}

.post-callout-box {
  background: rgba(122, 0, 153, 0.1);
  border: 1px solid rgba(229, 140, 255, 0.3);
  border-radius: 16px;
  padding: 24px 28px;
  margin: 32px 0;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.callout-icon {
  font-size: 24px;
}

.callout-title {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #e58cff;
  margin-bottom: 6px;
}

.callout-content p {
  font-size: 14.5px;
  color: #e4e4e7;
  line-height: 1.65;
  margin: 0;
}

.post-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.post-checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15.5px;
}

.post-checklist li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #e58cff;
}

.post-blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: #ffffff;
  line-height: 1.5;
  border-left: 3px solid var(--primary-purple);
  padding: 10px 0 10px 24px;
  margin: 36px 0;
}

/* Social Share Bar */
.post-share-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin: 50px 0 40px;
}

.share-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a1a1aa;
}

.share-buttons {
  display: flex;
  gap: 12px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 20px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
}

.share-btn:hover {
  background: var(--primary-purple);
  border-color: #e58cff;
}

.share-btn.whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
}

/* Author Box */
.post-author-box {
  background: rgba(18, 18, 22, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  gap: 24px;
  align-items: center;
}

.author-box-avatar {
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(229, 140, 255, 0.3);
}

.author-box-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.author-box-bio {
  font-size: 13.5px;
  color: #a1a1aa;
  line-height: 1.6;
  margin: 0;
}

/* Related Section */
.post-related-section {
  background-color: #0c0c0f;
  padding: 80px 0 100px;
}

/* Mobile Responsiveness for Post Page */
@media (max-width: 768px) {
  .post-wrapper {
    padding: 0 20px;
  }

  .post-main-title {
    font-size: 32px;
  }

  .lead-paragraph {
    font-size: 17px;
  }

  .post-heading-2 {
    font-size: 25px;
  }

  .post-body-container {
    font-size: 15px;
  }

  .post-callout-box {
    flex-direction: column;
    gap: 10px;
    padding: 20px;
  }

  .post-share-bar {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .post-author-box {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }
}

/* ==========================================================================
   Contact Concierge Page (contact.html) Styles
   ========================================================================== */

.contact-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Contact Hero */
.contact-hero-section {
  position: relative;
  background-color: #060606;
  padding: 90px 0 60px;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-hero-content {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-badge {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #e58cff;
  background: rgba(122, 0, 153, 0.2);
  border: 1px solid rgba(229, 140, 255, 0.35);
  padding: 6px 18px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 18px;
}

.contact-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 54px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 16px;
}

.contact-hero-desc {
  font-size: 16px;
  color: #a1a1aa;
  line-height: 1.7;
}

/* Main Layout Grid */
.contact-main-section {
  background-color: #060606;
  padding: 80px 0 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: start;
}

.contact-subheading {
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--primary-purple);
  display: block;
  margin-bottom: 10px;
}

.contact-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 32px;
}

/* Info Cards */
.contact-card-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(18, 18, 22, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:not(.static):hover {
  transform: translateY(-4px);
  border-color: var(--primary-purple);
  box-shadow: 0 15px 35px rgba(122, 0, 153, 0.18);
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(122, 0, 153, 0.15);
  border: 1px solid rgba(229, 140, 255, 0.25);
  color: #e58cff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon.whatsapp {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.3);
  color: #25D366;
}

.contact-card-label {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #a1a1aa;
  margin-bottom: 4px;
}

.contact-card-value {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.contact-card-sub {
  display: block;
  font-size: 13px;
  color: #71717a;
}

/* Inquiry Form Box */
.contact-form-box {
  background: rgba(18, 18, 22, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.form-box-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 8px;
}

.form-box-desc {
  font-size: 14px;
  color: #a1a1aa;
  margin-bottom: 28px;
}

.form-row-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  color: #d4d4d8;
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(6, 6, 6, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 12px 16px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 3px rgba(122, 0, 153, 0.25);
}

.form-select option {
  background: #18181b;
  color: #ffffff;
}

.btn-full-submit {
  width: 100%;
  justify-content: center;
  height: 52px;
  margin-top: 10px;
}

/* FAQ Accordion Section */
.contact-faq-section {
  background-color: #0c0c0f;
  padding: 90px 0 100px;
}

.faq-accordion-grid {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(18, 18, 22, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item[open] {
  border-color: var(--primary-purple);
}

.faq-question {
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-chevron {
  transition: transform 0.3s ease;
  color: #e58cff;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 14.5px;
  color: #a1a1aa;
  line-height: 1.65;
}

.faq-answer p {
  margin: 0;
}

/* Mobile Responsiveness for Contact Page */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact-wrapper {
    padding: 0 20px;
  }

  .contact-hero-title {
    font-size: 36px;
  }

  .contact-hero-desc {
    font-size: 14px;
  }

  .contact-heading {
    font-size: 30px;
  }

  .form-row-dual {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form-box {
    padding: 24px 20px;
  }

  .faq-question {
    font-size: 14.5px;
    padding: 16px 18px;
  }

  .faq-answer {
    padding: 0 18px 16px;
    font-size: 13.5px;
  }
}

/* ==========================================================================
   Global Mobile Polish & Ultra-Responsive Breakpoints (All Screen Sizes)
   ========================================================================== */

@media (max-width: 768px) {
  /* Breadcrumbs Horizontal Touch Scroll */
  .breadcrumb-container {
    padding: 12px 0;
  }

  .breadcrumb-wrapper {
    padding: 0 20px;
  }

  .breadcrumb-list {
    display: flex;
    align-items: center;
    overflow-x: auto;
    white-space: nowrap;
    font-size: 12px;
    padding-bottom: 2px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .breadcrumb-list::-webkit-scrollbar {
    display: none;
  }

  /* Form & Input Touch Enhancements */
  .form-input,
  .form-select,
  .form-textarea {
    font-size: 16px !important; /* Prevents iOS auto-zoom on input focus */
    border-radius: 10px;
  }
}

@media (max-width: 480px) {
  /* Global Wrappers */
  .blog-wrapper,
  .post-wrapper,
  .contact-wrapper,
  .about-wrapper {
    padding: 0 16px;
  }

  /* Hero Headers */
  .blog-hero-section,
  .post-header-section,
  .contact-hero-section,
  .about-hero-section {
    padding: 40px 0 35px;
  }

  .blog-hero-title,
  .post-main-title,
  .contact-hero-title,
  .about-hero-title {
    font-size: 28px;
    line-height: 1.15;
  }

  .blog-hero-desc,
  .contact-hero-desc,
  .about-hero-desc {
    font-size: 13.5px;
    line-height: 1.6;
  }

  /* Contact Page Mobile Cards */
  .contact-info-card {
    padding: 16px;
    gap: 14px;
  }

  .contact-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .contact-card-value {
    font-size: 15px;
    word-break: break-word;
  }

  .contact-card-sub {
    font-size: 12px;
  }

  .contact-form-box {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .form-box-title {
    font-size: 26px;
  }

  /* Journal & Article Cards */
  .featured-image-wrap {
    min-height: 200px;
    height: 200px;
  }

  .featured-content {
    padding: 20px 16px;
  }

  .featured-title {
    font-size: 22px;
  }

  .post-banner-frame {
    aspect-ratio: 4 / 3;
    border-radius: 14px;
  }

  .post-callout-box {
    padding: 16px;
    border-radius: 12px;
  }

  .callout-title {
    font-size: 14px;
  }

  .callout-content p {
    font-size: 13.5px;
  }

  .post-share-bar {
    padding: 18px 0;
  }

  .share-buttons {
    flex-wrap: wrap;
    gap: 8px;
  }

  .share-btn {
    padding: 7px 14px;
    font-size: 11.5px;
  }

  /* About Page Mobile Polish */
  .about-heading {
    font-size: 26px;
  }

  .pillar-card {
    padding: 20px 16px;
  }

  .pillar-title {
    font-size: 16px;
  }

  .pillar-desc {
    font-size: 13px;
  }

  .about-stats-box .stat-number {
    font-size: 28px;
  }

  .about-stats-box .stat-label {
    font-size: 11px;
  }
}