    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       ROOT & RESET
    â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --black: #000000;
      --white: #ffffff;
      --gray-100: #ffffff;
      --gray-200: #ffffff;
      --gray-300: #ffffff;
      --gray-400: #ffffff;
      --gray-500: #ffffff;
      --gray-600: #ffffff;
      --gray-700: #ffffff;
      --gray-800: #ffffff;
      --font-serif: 'Cormorant Garamond', Georgia, serif;
      --font-display: 'Playfair Display', serif;
      --font-sans: 'Montserrat', sans-serif;
      --transition: cubic-bezier(0.76, 0, 0.24, 1);
      --transition-fast: cubic-bezier(0.4, 0, 0.2, 1);
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
      -webkit-font-smoothing: antialiased;
    }

    body {
      font-family: var(--font-sans);
      background: var(--black);
      color: var(--white);
      overflow-x: hidden;
      cursor: none;
    }

    body.light-mode {
      background: var(--white);
      color: var(--black);
    }

    ::selection {
      background: var(--white);
      color: var(--black);
    }

    body.light-mode ::selection {
      background: var(--black);
      color: var(--white);
    }

    ::-webkit-scrollbar {
      width: 2px;
    }

    ::-webkit-scrollbar-track {
      background: var(--black);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--gray-500);
    }

    body.light-mode ::-webkit-scrollbar-track {
      background: var(--white);
    }

    img {
      display: block;
      max-width: 100%;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button {
      cursor: none;
      border: none;
      background: none;
      font-family: inherit;
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       CUSTOM CURSOR
    â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    .cursor {
      position: fixed;
      pointer-events: none;
      z-index: 99999;
      mix-blend-mode: difference;
    }

    .cursor-dot {
      width: 8px;
      height: 8px;
      background: var(--white);
      border-radius: 50%;
      position: fixed;
      top: 0;
      left: 0;
      transform: translate(-50%, -50%);
      transition: width 0.3s, height 0.3s, opacity 0.3s;
      pointer-events: none;
      z-index: 99999;
      mix-blend-mode: difference;
    }

    .cursor-ring {
      width: 40px;
      height: 40px;
      border: 1px solid rgba(255, 255, 255, 0.6);
      border-radius: 50%;
      position: fixed;
      top: 0;
      left: 0;
      transform: translate(-50%, -50%);
      pointer-events: none;
      z-index: 99998;
      transition: width 0.4s var(--transition), height 0.4s var(--transition), border-color 0.3s;
      mix-blend-mode: difference;
    }

    .cursor-dot.hovering {
      width: 0;
      height: 0;
      opacity: 0;
    }

    .cursor-ring.hovering {
      width: 70px;
      height: 70px;
      border-color: rgba(255, 255, 255, 0.9);
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       LOADER
    â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    #loader {
      position: fixed;
      inset: 0;
      background: var(--black);
      z-index: 99990;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 24px;
      overflow: hidden;
    }

    .loader-logo {
      font-family: var(--font-serif);
      font-size: clamp(2rem, 6vw, 5rem);
      font-weight: 300;
      letter-spacing: 0.5em;
      color: var(--white);
      opacity: 0;
      transform: translateY(20px);
    }

    .loader-sub {
      font-family: var(--font-sans);
      font-size: 0.65rem;
      font-weight: 300;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--gray-400);
      opacity: 0;
    }

    .loader-bar-track {
      width: 200px;
      height: 1px;
      background: var(--gray-700);
      position: relative;
      overflow: hidden;
    }

    .loader-bar-fill {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 0%;
      background: var(--white);
      transition: width 0.05s linear;
    }

    .loader-percent {
      font-family: var(--font-sans);
      font-size: 0.7rem;
      font-weight: 200;
      letter-spacing: 0.2em;
      color: var(--gray-500);
    }

    .loader-wipe {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 0%;
      background: var(--white);
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       NAVIGATION
    â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 28px 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      mix-blend-mode: difference;
    }

    nav.no-blend {
      mix-blend-mode: normal;
    }

    .nav-logo {
      font-family: var(--font-serif);
      font-size: 1.6rem;
      font-weight: 300;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--white);
      position: relative;
      z-index: 2;
    }

    .nav-logo span {
      font-size: 0.5rem;
      display: block;
      letter-spacing: 0.5em;
      font-family: var(--font-sans);
      font-weight: 300;
      color: var(--gray-300);
      margin-top: 2px;
      text-align: center;
    }

    .nav-links {
      display: flex;
      gap: 40px;
      list-style: none;
    }

    .nav-links a {
      font-family: var(--font-sans);
      font-size: 0.65rem;
      font-weight: 400;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--white);
      transition: width 0.5s var(--transition);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .cart-btn {
      position: relative;
      cursor: none;
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--white);
      font-family: var(--font-sans);
      font-size: 0.65rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .cart-count {
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--white);
      color: var(--black);
      width: 18px;
      height: 18px;
      border-radius: 50%;
      font-size: 0.6rem;
      font-weight: 600;
      letter-spacing: 0;
    }

    body.light-mode .cart-btn {
      color: var(--black);
    }

    body.light-mode .cart-count {
      background: var(--black);
      color: var(--white);
    }

    .music-toggle {
      cursor: pointer;
      font-size: 1.1rem;
      line-height: 1;
      opacity: 0.6;
      transition: opacity 0.3s ease, text-shadow 0.3s ease;
      user-select: none;
    }
    .music-toggle:hover {
      opacity: 1;
    }
    .music-toggle.playing {
      opacity: 1;
      text-shadow: 0 0 12px rgba(255,255,255,0.4);
      animation: musicPulse 2s ease-in-out infinite;
    }
    @keyframes musicPulse {
      0%, 100% { text-shadow: 0 0 8px rgba(255,255,255,0.3); }
      50% { text-shadow: 0 0 20px rgba(255,255,255,0.6); }
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       COLLECTION GRID
    â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    .product-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: var(--gray-800);
      border: 1px solid var(--gray-800);
      max-width: 1400px;
      margin: 0 auto 100px;
    }

    body.light-mode .product-grid {
      background: var(--gray-200);
      border-color: var(--gray-200);
    }

    .product-item {
      position: relative;
      background: var(--black);
      aspect-ratio: 1 / 1;
      overflow: hidden;
      cursor: none;
    }

    body.light-mode .product-item {
      background: var(--white);
    }

    .product-item-img {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0; /* Changed to 0 for full-bleed look if cover */
      transition: transform 0.8s var(--transition);
    }

    .product-item:hover .product-item-img {
      transform: scale(1.05);
    }

    .product-item-bottle {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .product-item-bottle img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.9);
      transition: filter 0.5s;
    }

    .product-item:hover .product-item-bottle img {
      filter: brightness(1.05);
    }

    .product-item-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 30px;
      opacity: 1; /* Always show info for better mobile/UX */
      transition: background 0.5s;
    }

    .product-item-info {
      color: var(--white);
      transform: translateY(0);
      transition: transform 0.5s var(--transition);
    }

    .product-item-name {
      font-family: var(--font-serif);
      font-size: 1.4rem;
      font-weight: 300;
      margin-bottom: 4px;
    }

    .product-item-sub {
      font-family: var(--font-sans);
      font-size: 0.6rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gray-400);
      margin-bottom: 12px;
    }

    .product-item-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      opacity: 0;
      transform: translateY(10px);
      transition: all 0.4s var(--transition);
    }

    .product-item:hover .product-item-bottom {
      opacity: 1;
      transform: translateY(0);
    }

    .product-item-price {
      font-family: var(--font-sans);
      font-size: 0.75rem;
      letter-spacing: 0.1em;
    }

    .product-item-add {
      font-family: var(--font-sans);
      font-size: 0.6rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       PRODUCT DETAIL PAGE
    â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    .product-detail-container {
      display: flex;
      min-height: 100vh;
      padding: 140px 5% 80px;
      gap: 80px;
    }

    .product-detail-visual {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--gray-800);
      border-radius: 4px;
      position: relative;
      overflow: hidden;
    }

    body.light-mode .product-detail-visual {
      background: var(--gray-100);
    }

    .product-detail-visual img {
      max-height: 70vh;
      object-fit: contain;
      z-index: 2;
    }

    .product-detail-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .product-detail-brand {
      font-family: var(--font-sans);
      font-size: 0.7rem;
      font-weight: 300;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--gray-500);
      margin-bottom: 12px;
    }

    .product-detail-title {
      font-family: var(--font-serif);
      font-size: clamp(2.5rem, 5vw, 4.5rem);
      font-weight: 300;
      line-height: 1.1;
      margin-bottom: 24px;
    }

    .product-detail-desc {
      font-family: var(--font-sans);
      font-size: 0.9rem;
      line-height: 1.8;
      color: var(--gray-400);
      margin-bottom: 40px;
      max-width: 500px;
    }

    .variant-selector {
      margin-bottom: 48px;
    }

    .variant-label {
      font-family: var(--font-sans);
      font-size: 0.6rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-bottom: 16px;
      display: block;
    }

    .variant-options {
      display: flex;
      gap: 16px;
    }

    .variant-opt {
      border: 1px solid var(--gray-700);
      padding: 12px 24px;
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      transition: all 0.3s;
      background: transparent;
      color: var(--white);
      cursor: pointer;
    }

    .variant-opt.active {
      border-color: var(--white);
      background: var(--white);
      color: var(--black);
    }

    body.light-mode .variant-opt {
      border-color: var(--gray-300);
      color: var(--black);
    }

    body.light-mode .variant-opt.active {
      background: var(--black);
      color: var(--white);
    }

    .product-detail-price {
      font-family: var(--font-serif);
      font-size: 2rem;
      margin-bottom: 32px;
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       CART PAGE
    â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    .cart-container {
      padding: 160px 10% 100px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .cart-title {
      font-family: var(--font-serif);
      font-size: 3.5rem;
      font-weight: 300;
      margin-bottom: 60px;
      text-align: center;
    }

    .cart-items {
      display: flex;
      flex-direction: column;
      gap: 1px;
      background: var(--gray-800);
      border: 1px solid var(--gray-800);
    }

    body.light-mode .cart-items {
      background: var(--gray-200);
      border-color: var(--gray-200);
    }

    .cart-item {
      display: grid;
      grid-template-columns: 120px 1fr auto auto;
      align-items: center;
      padding: 24px;
      background: var(--black);
      gap: 32px;
    }

    body.light-mode .cart-item {
      background: var(--white);
    }

    .cart-item-img {
      width: 100px;
      height: 100px;
      background: var(--gray-800);
      padding: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    body.light-mode .cart-item-img {
      background: var(--gray-100);
    }

    .cart-item-info h3 {
      font-family: var(--font-serif);
      font-size: 1.4rem;
      font-weight: 400;
      margin-bottom: 4px;
    }

    .cart-item-info p {
      font-family: var(--font-sans);
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--gray-500);
    }

    .cart-item-price {
      font-family: var(--font-sans);
      font-size: 1.1rem;
    }

    .cart-item-remove {
      font-family: var(--font-sans);
      font-size: 0.6rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--gray-500);
      text-decoration: underline;
      transition: color 0.3s;
    }

    .cart-item-remove:hover {
      color: var(--white);
    }

    body.light-mode .cart-item-remove:hover {
      color: var(--black);
    }

    .cart-summary {
      margin-top: 60px;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 24px;
    }

    .cart-total {
      display: flex;
      gap: 40px;
      align-items: baseline;
    }

    .cart-total-label {
      font-family: var(--font-sans);
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.3em;
      color: var(--gray-500);
    }

    .cart-total-value {
      font-family: var(--font-serif);
      font-size: 2.5rem;
    }

    .cart-empty {
      text-align: center;
      padding: 100px 0;
    }

    .cart-empty p {
      font-family: var(--font-serif);
      font-size: 1.5rem;
      font-style: italic;
      color: var(--gray-500);
      margin-bottom: 32px;
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       CHECKOUT PAGE
    â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    .checkout-container {
      padding: 160px 5% 100px;
      max-width: 1000px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 80px;
    }

    .checkout-form h2 {
      font-family: var(--font-serif);
      font-size: 2.5rem;
      margin-bottom: 40px;
      font-weight: 300;
    }

    .checkout-order-summary {
      background: var(--gray-800);
      padding: 40px;
      height: fit-content;
    }

    body.light-mode .checkout-order-summary {
      background: var(--gray-100);
    }

    .checkout-order-summary h3 {
      font-family: var(--font-serif);
      font-size: 1.8rem;
      margin-bottom: 32px;
      font-weight: 300;
      color: var(--black);
    }

    .summary-line {
      display: flex;
      justify-content: space-between;
      margin-bottom: 16px;
      font-family: var(--font-sans);
      font-size: 0.85rem;
      color: var(--black);
    }

    .summary-total {
      margin-top: 32px;
      padding-top: 32px;
      border-top: 1px solid rgba(0,0,0,0.15);
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--black);
    }

    body.light-mode .summary-total {
      border-color: rgba(0,0,0,0.15);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: none;
      position: relative;
      z-index: 2;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 1px;
      background: var(--white);
      transition: all 0.4s var(--transition);
    }

    .hamburger.open span:nth-child(1) {
      transform: translateY(6px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }

    .hamburger.open span:nth-child(3) {
      transform: translateY(-6px) rotate(-45deg);
    }

    /* Mobile Nav */
    .mobile-nav {
      position: fixed;
      inset: 0;
      background: var(--black);
      z-index: 900;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 40px;
      clip-path: circle(0% at calc(100% - 50px) 50px);
      transition: clip-path 0.8s var(--transition);
    }

    .mobile-nav.open {
      clip-path: circle(150% at calc(100% - 50px) 50px);
    }

    .mobile-nav a {
      font-family: var(--font-serif);
      font-size: clamp(2.5rem, 8vw, 5rem);
      font-weight: 300;
      letter-spacing: 0.1em;
      color: var(--white);
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.5s, transform 0.5s;
      position: relative;
    }

    .mobile-nav.open a {
      opacity: 1;
      transform: translateY(0);
    }

    .mobile-nav a:nth-child(1) {
      transition-delay: 0.1s;
    }

    .mobile-nav a:nth-child(2) {
      transition-delay: 0.2s;
    }

    .mobile-nav a:nth-child(3) {
      transition-delay: 0.3s;
    }

    .mobile-nav a:nth-child(4) {
      transition-delay: 0.4s;
    }

    .mobile-nav a:nth-child(5) {
      transition-delay: 0.5s;
    }

    .mobile-nav a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 1px;
      background: var(--white);
      transition: width 0.4s;
    }

    .mobile-nav a:hover::after {
      width: 100%;
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       HOME PAGE â€” HERO
    â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    #home {
      display: block;
    }

    .hero {
      position: relative;
      height: 100vh;
      width: 100%;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      background: radial-gradient(ellipse at 30% 50%, #000, #000 70%);
    }

    /* Particle Canvas */
    #heroCanvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      opacity: 0.3;
      z-index: 1;
    }

    /* Hero Noise Texture */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      background-size: 200px;
      pointer-events: none;
      z-index: 2;
    }

    .hero-inner {
      position: relative;
      z-index: 4;
      text-align: center;
      padding: 0 5%;
    }

    .hero-eyebrow {
      font-family: var(--font-sans);
      font-size: 0.6rem;
      font-weight: 300;
      letter-spacing: 0.5em;
      text-transform: uppercase;
      color: var(--gray-400);
      margin-bottom: 24px;
      opacity: 0;
    }

    .hero-title {
      font-family: var(--font-serif);
      font-size: clamp(4rem, 12vw, 11rem);
      font-weight: 300;
      line-height: 0.9;
      letter-spacing: 0.05em;
      color: var(--white);
      overflow: hidden;
    }

    .hero-title .line {
      display: block;
      overflow: hidden;
    }

    .hero-title .line span {
      display: block;
    }

    .hero-title em {
      font-style: italic;
      font-weight: 300;
    }

    .hero-subtitle {
      font-family: var(--font-serif);
      font-size: clamp(0.8rem, 2vw, 1.1rem);
      font-weight: 300;
      font-style: italic;
      letter-spacing: 0.3em;
      color: var(--gray-300);
      margin-top: 28px;
      opacity: 0;
    }

    .hero-cta {
      margin-top: 56px;
      opacity: 0;
    }

    .btn-luxury {
      display: inline-flex;
      align-items: center;
      gap: 16px;
      font-family: var(--font-sans);
      font-size: 0.65rem;
      font-weight: 400;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--white);
      border: 1px solid rgba(255, 255, 255, 0.3);
      padding: 18px 48px;
      position: relative;
      overflow: hidden;
      transition: color 0.5s;
    }

    .btn-luxury::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--white);
      transform: translateX(-101%);
      transition: transform 0.6s var(--transition);
    }

    .btn-luxury:hover {
      color: var(--black);
    }

    .btn-luxury:hover::before {
      transform: translateX(0);
    }

    .btn-luxury span {
      position: relative;
      z-index: 1;
    }

    .btn-luxury .arrow {
      position: relative;
      z-index: 1;
      width: 20px;
      height: 1px;
      background: currentColor;
      transition: width 0.3s;
    }

    .btn-luxury .arrow::after {
      content: '';
      position: absolute;
      right: 0;
      top: -3px;
      width: 6px;
      height: 6px;
      border-right: 1px solid currentColor;
      border-top: 1px solid currentColor;
      transform: rotate(45deg);
    }

    .btn-luxury:hover .arrow {
      width: 30px;
    }

    body.light-mode .btn-luxury {
      color: var(--black);
      border-color: rgba(0, 0, 0, 0.3);
    }

    body.light-mode .btn-luxury::before {
      background: var(--black);
    }

    body.light-mode .btn-luxury:hover {
      color: var(--white);
    }

    /* Hero Scroll Indicator */
    .scroll-indicator {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 4;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      opacity: 0;
    }

    .scroll-indicator span {
      font-size: 0.55rem;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--gray-500);
      font-family: var(--font-sans);
    }

    .scroll-line {
      width: 1px;
      height: 50px;
      background: linear-gradient(to bottom, var(--gray-500), transparent);
      animation: scrollLine 2s ease-in-out infinite;
    }

    @keyframes scrollLine {
      0% {
        transform: scaleY(0);
        transform-origin: top;
      }

      50% {
        transform: scaleY(1);
        transform-origin: top;
      }

      51% {
        transform: scaleY(1);
        transform-origin: bottom;
      }

      100% {
        transform: scaleY(0);
        transform-origin: bottom;
      }
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.25) 100%);
      z-index: 2;
      pointer-events: none;
    }

    .hero-logo {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 3;
      font-family: var(--font-serif);
      font-size: clamp(4rem, 15vw, 12rem);
      font-weight: 200;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--white);
      opacity: 0.12;
      pointer-events: none;
      user-select: none;
      white-space: nowrap;
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       MARQUEE STRIP
    â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    .marquee-strip {
      border-top: 1px solid var(--gray-700);
      border-bottom: 1px solid var(--gray-700);
      padding: 14px 0;
      overflow: hidden;
      position: relative;
    }

    body.light-mode .marquee-strip {
      border-color: var(--gray-300);
    }

    .marquee-inner {
      display: flex;
      animation: marqueeScroll 25s linear infinite;
      white-space: nowrap;
    }

    .marquee-item {
      display: inline-flex;
      align-items: center;
      gap: 24px;
      padding: 0 24px;
      font-family: var(--font-sans);
      font-size: 0.6rem;
      font-weight: 300;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gray-500);
    }

    .marquee-diamond {
      width: 4px;
      height: 4px;
      background: var(--gray-600);
      transform: rotate(45deg);
      flex-shrink: 0;
    }

    @keyframes marqueeScroll {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       SECTION INTRO / FEATURED
    â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    .section-label {
      font-family: var(--font-sans);
      font-size: 0.6rem;
      font-weight: 400;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--gray-500);
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .section-label::before {
      display: none;
    }

    .float-particle {
      position: fixed;
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
    }

    .newsletter-section {
      padding: 80px 5%;
      background: var(--gray-800);
      text-align: center;
    }

    body.light-mode .newsletter-section {
      background: var(--gray-100);
    }

    .newsletter-inner {
      max-width: 500px;
      margin: 0 auto;
    }

    .newsletter-title {
      font-family: var(--font-serif);
      font-size: clamp(1.5rem, 3vw, 2.5rem);
      font-weight: 300;
      margin-bottom: 16px;
      color: var(--black);
    }

    .newsletter-sub {
      font-family: var(--font-sans);
      font-size: 0.7rem;
      font-weight: 300;
      color: var(--black);
      line-height: 1.8;
      margin-bottom: 32px;
    }

    body.light-mode .newsletter-sub {
      color: var(--black);
    }

    .newsletter-form {
      display: flex;
      gap: 12px;
      max-width: 400px;
      margin: 0 auto;
    }

    .newsletter-form input {
      flex: 1;
      background: transparent;
      border: 1px solid var(--black);
      padding: 12px 16px;
      font-family: var(--font-sans);
      font-size: 0.7rem;
      color: var(--black);
      outline: none;
    }

    body.light-mode .newsletter-form input {
      border-color: var(--gray-300);
      color: var(--black);
    }

    .newsletter-form button {
      background: var(--white);
      color: var(--black);
      border: none;
      padding: 12px 24px;
      font-family: var(--font-sans);
      font-size: 0.6rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      cursor: pointer;
    }

    /* Featured Section */
    .featured-section {
      padding: 120px 5%;
      position: relative;
    }

    .featured-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 80px;
      gap: 40px;
    }

    .featured-title {
      font-family: var(--font-serif);
      font-size: clamp(2.5rem, 5vw, 4.5rem);
      font-weight: 300;
      line-height: 1.1;
      max-width: 500px;
    }

    .featured-title em {
      font-style: italic;
    }

    .featured-desc {
      max-width: 300px;
      font-size: 0.8rem;
      font-weight: 300;
      line-height: 1.9;
      color: var(--gray-500);
      text-align: right;
    }

    body.light-mode .featured-desc {
      color: var(--gray-600);
    }

    /* Perfume Cards */
    .featured-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .perfume-card {
      position: relative;
      overflow: hidden;
      aspect-ratio: 1 / 1;
      background: var(--gray-800);
      cursor: none;
    }

    body.light-mode .perfume-card {
      background: var(--gray-100);
    }

    .perfume-card-bg {
      position: absolute;
      inset: 0;
      background: var(--gray-800);
      transition: transform 0.8s var(--transition);
    }

    body.light-mode .perfume-card-bg {
      background: var(--gray-100);
    }

    .perfume-card:hover .perfume-card-bg {
      transform: scale(1.08);
    }

    /* SVG Bottle Illustration inside card */
    .card-bottle-wrap {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.8s var(--transition);
    }

    .perfume-card:hover .card-bottle-wrap {
      transform: scale(1.05) translateY(-10px);
    }

    .card-bottle-svg {
      width: 45%;
      opacity: 0.85;
      filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
      transition: filter 0.5s;
    }

    .perfume-card:hover .card-bottle-svg {
      filter: drop-shadow(0 30px 60px rgba(255, 255, 255, 0.1));
    }

    body.light-mode .card-bottle-svg {
      filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    }

    .card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
      transition: opacity 0.5s;
    }

    body.light-mode .card-overlay {
      background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
    }

    .card-info {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 36px 28px;
      transform: translateY(20px);
      transition: transform 0.5s var(--transition);
    }

    .perfume-card:hover .card-info {
      transform: translateY(0);
    }

    .card-name {
      font-family: var(--font-serif);
      font-size: 1.5rem;
      font-weight: 300;
      letter-spacing: 0.05em;
      color: var(--white);
      margin-bottom: 4px;
    }

    .card-type {
      font-family: var(--font-sans);
      font-size: 0.6rem;
      font-weight: 300;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.5);
      margin-bottom: 16px;
    }

    .card-price {
      font-family: var(--font-sans);
      font-size: 0.75rem;
      font-weight: 400;
      letter-spacing: 0.15em;
      color: var(--white);
      opacity: 0;
      transform: translateY(10px);
      transition: all 0.4s 0.1s var(--transition);
    }

    .perfume-card:hover .card-price {
      opacity: 1;
      transform: translateY(0);
    }

    .card-number {
      position: absolute;
      top: 24px;
      right: 24px;
      font-family: var(--font-sans);
      font-size: 0.6rem;
      font-weight: 200;
      letter-spacing: 0.2em;
      color: rgba(255, 255, 255, 0.3);
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       PARALLAX BANNER
    â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    .parallax-banner {
      position: relative;
      height: 70vh;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .parallax-bg {
      position: absolute;
      inset: -20%;
      background:
        radial-gradient(ellipse at center, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.6) 100%),
        url('gemini-3.1-flash-image-preview (nano-banana-2) [web-search]_a_no_like_that,keeep_t.png') center/cover no-repeat;
      will-change: transform;
      opacity: 0.8;
    }

    .parallax-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, var(--black) 0%, transparent 20%, transparent 80%, var(--black) 100%);
      pointer-events: none;
    }

    body.light-mode .parallax-bg {
      background:
        radial-gradient(ellipse at center, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.6) 100%),
        url('gemini-3.1-flash-image-preview (nano-banana-2) [web-search]_a_no_like_that,keeep_t.png') center/cover no-repeat;
    }

    .parallax-smoke {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
    }

    .parallax-smoke span {
      position: absolute;
      border-radius: 50%;
      background: rgba(255,255,255,0.03);
      filter: blur(40px);
      animation: smokeFloat 12s ease-in-out infinite;
    }

    .parallax-smoke span:nth-child(1) {
      width: 300px; height: 300px;
      top: 10%; left: -5%;
      animation-delay: 0s;
      animation-duration: 14s;
    }

    .parallax-smoke span:nth-child(2) {
      width: 250px; height: 250px;
      bottom: 15%; right: 5%;
      animation-delay: -4s;
      animation-duration: 16s;
    }

    .parallax-smoke span:nth-child(3) {
      width: 200px; height: 200px;
      top: 50%; left: 60%;
      animation-delay: -8s;
      animation-duration: 12s;
    }

    .parallax-smoke span:nth-child(4) {
      width: 180px; height: 180px;
      top: 30%; right: 30%;
      animation-delay: -2s;
      animation-duration: 18s;
      background: rgba(255,255,255,0.02);
    }

    @keyframes smokeFloat {
      0% { transform: translate(0, 0) scale(1); opacity: 0.4; }
      25% { transform: translate(30px, -20px) scale(1.15); opacity: 0.7; }
      50% { transform: translate(-20px, 20px) scale(0.9); opacity: 0.3; }
      75% { transform: translate(15px, -30px) scale(1.1); opacity: 0.6; }
      100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
    }

    /* Rings */
    .ring {
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.06);
    }

    body.light-mode .ring {
      border-color: rgba(0, 0, 0, 0.06);
    }

    .ring-1 {
      width: 300px;
      height: 300px;
    }

    .ring-2 {
      width: 500px;
      height: 500px;
    }



    .parallax-content {
      position: relative;
      z-index: 2;
      text-align: center;
    }

    .parallax-quote {
      font-family: var(--font-serif);
      font-size: clamp(1.8rem, 4vw, 3.5rem);
      font-weight: 300;
      font-style: italic;
      line-height: 1.3;
      max-width: 800px;
      padding: 0 5%;
    }

    .parallax-author {
      margin-top: 24px;
      font-family: var(--font-sans);
      font-size: 0.6rem;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--gray-500);
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       NOTES / INGREDIENTS SECTION
    â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    .notes-section {
      padding: 160px 5% 140px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: center;
    }

    .notes-left {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .notes-visual {
      position: relative;
      width: 72%;
      aspect-ratio: 1;
    }

    .notes-visual-inner {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.06) 0%, transparent 100%);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: inset 0 0 80px rgba(255,255,255,0.03);
    }

    body.light-mode .notes-visual-inner {
      background: radial-gradient(circle at 50% 50%, rgba(0,0,0,0.035) 0%, transparent 100%);
      box-shadow: inset 0 0 80px rgba(0,0,0,0.02);
    }

    .notes-orbit {
      position: absolute;
      inset: 0;
      animation: orbit 20s linear infinite;
    }

    .notes-orbit-2 {
      animation: orbit 30s linear infinite reverse;
    }

    .notes-orbit-3 {
      animation: orbit 15s linear infinite;
    }

    @keyframes orbit {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(360deg);
      }
    }

    .orbit-dot {
      position: absolute;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--white);
      opacity: 0.4;
    }

    body.light-mode .orbit-dot {
      background: var(--black);
    }

    .orbit-dot-1 {
      top: 0;
      left: 50%;
      transform: translateX(-50%);
    }

    .orbit-dot-2 {
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
    }

    .orbit-dot-3 {
      left: 0;
      top: 50%;
      transform: translateY(-50%);
    }

    .orbit-dot-4 {
      right: 0;
      top: 50%;
      transform: translateY(-50%);
    }

    .notes-center-label {
      text-align: center;
    }

    .notes-center-label h3 {
      font-family: var(--font-serif);
      font-size: 2rem;
      font-weight: 300;
      margin-bottom: 4px;
    }

    .notes-center-label p {
      font-family: var(--font-sans);
      font-size: 0.6rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gray-500);
    }

    .notes-bottle {
      position: absolute;
      z-index: 5;
      pointer-events: none;
      background: rgba(255,255,255,0.9);
      filter: drop-shadow(0 0 10px rgba(255,255,255,0.25));
      mask-size: contain;
      mask-repeat: no-repeat;
      mask-position: center;
      -webkit-mask-size: contain;
      -webkit-mask-repeat: no-repeat;
      -webkit-mask-position: center;
    }

    .notes-bottle-1 {
      width: 110px;
      height: 150px;
      top: 5%;
      left: 35%;
      mask-image: url('Product images/Creed Aventus.png');
      -webkit-mask-image: url('Product images/Creed Aventus.png');
      animation: bottleFloat 4s ease-in-out infinite;
    }

    .notes-bottle-2 {
      width: 120px;
      height: 160px;
      top: 40%;
      right: -5%;
      mask-image: url('Product images/Jean Paul Gaultier Elexir.png');
      -webkit-mask-image: url('Product images/Jean Paul Gaultier Elexir.png');
      animation: bottleFloat 5s ease-in-out infinite 1s;
    }

    .notes-bottle-3 {
      width: 100px;
      height: 140px;
      bottom: 10%;
      left: 20%;
      mask-image: url('Product images/Light Blue Intense.png');
      -webkit-mask-image: url('Product images/Light Blue Intense.png');
      animation: bottleFloat 3.5s ease-in-out infinite 0.5s;
    }

    @keyframes bottleFloat {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
    }

    body.light-mode .notes-bottle {
      background: rgba(0,0,0,0.8);
      filter: drop-shadow(0 0 10px rgba(0,0,0,0.2));
    }

    .note-pill {
      position: absolute;
      background: var(--black);
      border: 1px solid var(--white);
      border-radius: 50px;
      padding: 8px 18px;
      font-family: var(--font-sans);
      font-size: 0.65rem;
      font-weight: 300;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      white-space: nowrap;
      color: var(--white);
    }

    body.light-mode .note-pill {
      background: var(--white);
      border-color: var(--black);
      color: var(--black);
    }

    .note-top {
      top: 6%;
      left: 50%;
      transform: translateX(-50%);
    }

    .note-right {
      right: 3%;
      top: 38%;
    }

    .note-bottom-r {
      bottom: 18%;
      right: 8%;
    }

    .note-bottom-l {
      bottom: 18%;
      left: 6%;
    }

    .note-left {
      left: 0%;
      top: 38%;
    }

    .notes-label {
      margin-bottom: 24px;
    }

    .notes-title {
      font-family: var(--font-serif);
      font-size: clamp(2.2rem, 4.5vw, 3.8rem);
      font-weight: 300;
      line-height: 1.1;
      letter-spacing: 0.02em;
      margin-bottom: 32px;
    }

    .notes-title em {
      font-style: italic;
    }

    .notes-body {
      font-size: 0.85rem;
      font-weight: 300;
      line-height: 2;
      color: rgba(255,255,255,0.55);
      margin-bottom: 48px;
      max-width: 480px;
    }

    body.light-mode .notes-body {
      color: rgba(0,0,0,0.55);
    }

    .notes-list {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .note-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 0;
    }

    .note-item + .note-item {
      border-top: 1px solid rgba(255,255,255,0.06);
    }

    body.light-mode .note-item + .note-item {
      border-color: rgba(0,0,0,0.06);
    }

    .note-item-left {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .note-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: rgba(255,255,255,0.25);
      flex-shrink: 0;
      box-shadow: 0 0 12px rgba(255,255,255,0.1);
    }

    body.light-mode .note-dot {
      background: rgba(0,0,0,0.2);
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
    }

    .note-name {
      font-family: var(--font-serif);
      font-size: 1.05rem;
      font-weight: 400;
      letter-spacing: 0.03em;
    }

    .note-category {
      font-family: var(--font-sans);
      font-size: 0.55rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      font-weight: 400;
    }

    body.light-mode .note-category {
      color: rgba(0,0,0,0.35);
    }

    /* â”€â”€â”€ FRAGRANCE JOURNEY INTERACTIVE â”€â”€â”€ */
    .notes-section {
      position: relative;
    }
    .notes-section > * {
      position: relative;
      z-index: 1;
    }
    .notes-section::before {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      transition: background 1.8s ease;
    }
    .notes-section.tone-top::before {
      background: radial-gradient(ellipse at 50% 20%, rgba(255,215,175,0.04) 0%, transparent 65%);
    }
    .notes-section.tone-heart::before {
      background: radial-gradient(ellipse at 50% 30%, rgba(255,195,185,0.05) 0%, transparent 65%);
    }
    .notes-section.tone-base::before {
      background: radial-gradient(ellipse at 50% 45%, rgba(195,160,125,0.05) 0%, transparent 65%);
    }
    .notes-section.tone-fixatives::before {
      background: radial-gradient(ellipse at 50% 55%, rgba(170,135,115,0.06) 0%, transparent 65%);
    }
    .notes-section.tone-finish::before {
      background: radial-gradient(ellipse at 50% 50%, rgba(195,175,195,0.05) 0%, transparent 65%);
    }

    /* Note item progressive reveal */
    .note-item {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 1.2s cubic-bezier(0.25,0.46,0.45,0.94),
                  transform 1.2s cubic-bezier(0.25,0.46,0.45,0.94);
    }
    .note-item.revealed {
      opacity: 1;
      transform: translateY(0);
    }
    .note-item:nth-child(1).revealed { transition-delay: 0s; }
    .note-item:nth-child(2).revealed { transition-delay: 0.15s; }
    .note-item:nth-child(3).revealed { transition-delay: 0.3s; }
    .note-item:nth-child(4).revealed { transition-delay: 0.45s; }
    .note-item:nth-child(5).revealed { transition-delay: 0.6s; }

    /* Wheel highlight overlay */
    .notes-visual-inner::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 50%;
      pointer-events: none;
      z-index: 1;
      transition: background 1.4s ease;
    }
    .notes-orbit { z-index: 2; }
    .notes-center-label { z-index: 2; }

    .notes-visual-inner.highlight-top::after {
      background: radial-gradient(circle at 50% 22%, rgba(255,210,170,0.12) 0%, transparent 55%);
    }
    .notes-visual-inner.highlight-heart::after {
      background: radial-gradient(circle at 74% 48%, rgba(255,195,180,0.12) 0%, transparent 55%);
    }
    .notes-visual-inner.highlight-base::after {
      background: radial-gradient(circle at 32% 70%, rgba(200,165,130,0.12) 0%, transparent 55%);
    }
    .notes-visual-inner.highlight-fixatives::after {
      background: radial-gradient(circle at 66% 68%, rgba(175,140,120,0.12) 0%, transparent 55%);
    }
    .notes-visual-inner.highlight-finish::after {
      background: radial-gradient(circle at 50% 50%, rgba(200,185,200,0.12) 0%, transparent 50%);
    }

    /* Note dot hover interaction */
    .note-item:hover .note-dot {
      transform: scale(2.5);
      background: rgba(255,255,255,0.5);
      box-shadow: 0 0 24px rgba(255,255,255,0.2);
      transition: all 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
    }
    body.light-mode .note-item:hover .note-dot {
      background: rgba(0,0,0,0.35);
      box-shadow: 0 0 20px rgba(0,0,0,0.08);
    }

    /* Mist particles */
    .mist-particle {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
      background: rgba(255,255,255,0.1);
      will-change: transform, opacity;
    }
    body.light-mode .mist-particle {
      background: rgba(0,0,0,0.05);
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
        ABOUT PAGE
    â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    .about-hero {
      height: 100vh;
      display: flex;
      position: relative;
      overflow: hidden;
    }

    .about-content {
      width: 40%;
      max-width: 550px;
      flex-shrink: 0;
      padding: 0 0 0 5%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      z-index: 2;
    }

    .about-hero-label {
      margin-bottom: 32px;
    }

    /* About page: scrolling video gallery fills the right side */
    .about-video-gallery {
      flex: 1;
      height: 100%;
      display: flex;
      gap: 10px;
      padding: 0 20px 0 0;
      overflow: hidden;
      position: relative;
      z-index: 1;
      contain: layout paint style;
    }
    .about-video-gallery::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 40%;
      background: linear-gradient(to top, var(--black) 0%, transparent 100%);
      pointer-events: none;
      z-index: 2;
    }

    .gallery-column {
      flex: 1;
      min-width: 0;
      overflow: hidden;
      position: relative;
      height: 100%;
    }

    .gallery-track {
      display: flex;
      flex-direction: column;
      gap: 10px;
      will-change: transform;
      transform: translateZ(0);
      animation: scrollDown 20s linear infinite;
    }

    .gallery-track video {
      width: 100%;
      aspect-ratio: 9/16;
      object-fit: cover;
      border-radius: 12px;
      display: block;
      background: #000;
    }

    .col-2 .gallery-track {
      animation-name: scrollDown2;
      animation-duration: 26s;
    }

    .col-3 .gallery-track {
      animation-duration: 22s;
    }

    @keyframes scrollDown {
      0% { transform: translateY(0); }
      100% { transform: translateY(-50%); }
    }

    @keyframes scrollDown2 {
      0% { transform: translateY(-16.667%); }
      100% { transform: translateY(-66.667%); }
    }

    .about-title {
      font-family: var(--font-serif);
      font-size: clamp(3rem, 6vw, 6rem);
      font-weight: 300;
      line-height: 1.05;
      margin-bottom: 32px;
    }

    .about-title em {
      font-style: italic;
    }

    .about-body {
      font-size: 0.85rem;
      font-weight: 300;
      line-height: 2.1;
      color: var(--gray-400);
      margin-bottom: 48px;
    }

    body.light-mode .about-body {
      color: var(--gray-600);
    }

    .about-stats {
      display: flex;
      gap: 48px;
      padding-top: 48px;
      border-top: 1px solid var(--gray-800);
    }

    body.light-mode .about-stats {
      border-color: var(--gray-200);
    }

    .stat-num {
      font-family: var(--font-serif);
      font-size: 2.5rem;
      font-weight: 300;
      display: block;
    }

    .stat-label {
      font-family: var(--font-sans);
      font-size: 0.6rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gray-500);
    }

    /* About Grid */
    .about-grid {
      padding: 100px 5%;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2px;
    }

    .about-cell {
      padding: 80px 60px;
      background: var(--gray-800);
      position: relative;
      overflow: hidden;
    }

    body.light-mode .about-cell {
      background: var(--gray-100);
    }

    .about-cell:nth-child(2) {
      background: var(--gray-700);
    }

    body.light-mode .about-cell:nth-child(2) {
      background: var(--gray-200);
    }

    .about-cell h3 {
      font-family: var(--font-serif);
      font-size: clamp(1.5rem, 3vw, 2.5rem);
      font-weight: 300;
      margin-bottom: 20px;
      line-height: 1.2;
      color: var(--black);
    }

    .about-cell p {
      font-size: 0.8rem;
      line-height: 2;
      color: var(--black);
      font-weight: 300;
    }

    body.light-mode .about-cell p {
      color: var(--black);
    }

    .cell-number {
      font-family: var(--font-serif);
      font-size: 6rem;
      font-weight: 300;
      color: rgba(0, 0, 0, 0.04);
      position: absolute;
      bottom: 20px;
      right: 30px;
      line-height: 1;
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       COLLECTION / PRODUCTS PAGE
    â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    .collection-hero {
      height: 60vh;
      display: flex;
      align-items: flex-end;
      padding: 0 5% 60px;
      border-bottom: 1px solid var(--gray-800);
      position: relative;
      overflow: hidden;
    }

    body.light-mode .collection-hero {
      border-color: var(--gray-200);
    }

    .collection-hero-title {
      font-family: var(--font-serif);
      font-size: clamp(4rem, 10vw, 9rem);
      font-weight: 300;
      line-height: 0.95;
    }

    .collection-hero-title em {
      font-style: italic;
    }

    .collection-meta {
      margin-left: auto;
      align-self: flex-end;
      text-align: right;
    }

    .collection-meta p {
      font-size: 0.75rem;
      font-weight: 300;
      color: var(--gray-500);
      line-height: 1.8;
    }

    /* Filter Bar */
    .filter-bar {
      display: flex;
      align-items: center;
      gap: 0;
      padding: 0 5%;
      border-bottom: 1px solid var(--gray-800);
      overflow-x: auto;
    }

    body.light-mode .filter-bar {
      border-color: var(--gray-200);
    }

    .filter-btn {
      font-family: var(--font-sans);
      font-size: 0.6rem;
      font-weight: 400;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gray-500);
      padding: 20px 28px;
      border-right: 1px solid var(--gray-800);
      transition: color 0.3s;
      white-space: nowrap;
      cursor: none;
    }

    body.light-mode .filter-btn {
      border-color: var(--gray-200);
      color: var(--gray-600);
    }

    .filter-btn:hover,
    .filter-btn.active {
      color: var(--white);
    }

    body.light-mode .filter-btn:hover,
    body.light-mode .filter-btn.active {
      color: var(--black);
    }

    .filter-btn:first-child {
      border-left: 1px solid var(--gray-800);
    }

    body.light-mode .filter-btn:first-child {
      border-color: var(--gray-200);
    }

    /* Product Grid */
    .product-grid {
      padding: 80px 5%;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 60px 40px;
    }

    .product-item {
      cursor: none;
    }

    .product-item-img {
      position: relative;
      aspect-ratio: 3/4;
      background: var(--gray-800);
      overflow: hidden;
      margin-bottom: 24px;
    }

    body.light-mode .product-item-img {
      background: var(--gray-100);
    }

    .product-item-bottle {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.7s var(--transition);
    }

    .product-item:hover .product-item-bottle {
      transform: scale(1.07) translateY(-8px);
    }

    .product-item-bottle svg {
      width: 40%;
      filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
    }

    .product-item-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0);
      transition: background 0.5s;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
    }

    .product-item:hover .product-item-overlay {
      background: rgba(0, 0, 0, 0.3);
    }

    .product-item-add {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) translateY(10px);
      z-index: 2;
      font-family: var(--font-sans);
      font-size: 0.6rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--black);
      background: var(--white);
      border: none;
      padding: 14px 28px;
      opacity: 0;
      transition: all 0.4s var(--transition);
    }

    .product-item:hover .product-item-add {
      opacity: 1;
      transform: translate(-50%, -50%) translateY(0);
    }

    .product-item-tag {
      position: absolute;
      top: 16px;
      left: 16px;
      font-size: 0.55rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--white);
      background: var(--black);
      padding: 5px 12px;
    }

    body.light-mode .product-item-tag {
      background: var(--black);
    }

    .product-item-info {}

    .product-item-name {
      font-family: var(--font-serif);
      font-size: 1.2rem;
      font-weight: 300;
      margin-bottom: 4px;
    }

    .product-item-sub {
      font-family: var(--font-sans);
      font-size: 0.6rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gray-500);
      margin-bottom: 12px;
    }

    .product-item-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .product-item-price {
      font-family: var(--font-sans);
      font-size: 0.8rem;
      font-weight: 300;
      letter-spacing: 0.1em;
    }

    .product-item-sizes {
      display: flex;
      gap: 6px;
    }

    .size-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gray-700);
    }

    body.light-mode .size-dot {
      background: var(--gray-300);
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       CONTACT PAGE
    â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    .contact-section {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
    }

    .contact-left {
      padding: 160px 8% 80px;
      background: var(--gray-800);
      position: relative;
      overflow: hidden;
    }

    body.light-mode .contact-left {
      background: var(--gray-100);
    }

    .contact-left-title {
      font-family: var(--font-serif);
      font-size: clamp(3rem, 5vw, 5rem);
      font-weight: 300;
      line-height: 1.1;
      margin-bottom: 32px;
      color: var(--black);
    }

    .contact-left-title em {
      font-style: italic;
    }

    .contact-left-body {
      font-size: 0.82rem;
      line-height: 2;
      color: var(--black);
      font-weight: 300;
      margin-bottom: 60px;
    }

    body.light-mode .contact-left-body {
      color: var(--black);
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .contact-info-item {}

    .contact-info-label {
      font-size: 0.55rem;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--black);
      margin-bottom: 4px;
    }

    body.light-mode .contact-info-label {
      color: var(--black);
    }

    .contact-info-value {
      font-family: var(--font-serif);
      font-size: 1rem;
      font-weight: 300;
      color: var(--black);
    }

    .contact-social {
      display: flex;
      gap: 20px;
      margin-top: 60px;
    }

    .social-link {
      font-size: 0.6rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--black);
      position: relative;
    }

    .social-link::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--black);
      transition: width 0.4s var(--transition);
    }

    .social-link:hover::after {
      width: 100%;
    }

    .social-link:hover {
      color: var(--black);
    }

    body.light-mode .social-link::after {
      background: var(--black);
    }

    .contact-right {
      padding: 160px 8% 80px;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }

    .form-group {
      position: relative;
    }

    .form-input {
      width: 100%;
      background: none;
      border: none;
      border-bottom: 1px solid var(--gray-700);
      padding: 16px 0;
      font-family: var(--font-sans);
      font-size: 0.85rem;
      font-weight: 300;
      color: var(--white);
      outline: none;
      transition: border-color 0.4s;
    }

    body.light-mode .form-input {
      color: var(--black);
      border-color: var(--gray-300);
    }

    .form-input:focus {
      border-color: var(--white);
    }

    body.light-mode .form-input:focus {
      border-color: var(--black);
    }

    .form-input::placeholder {
      color: var(--gray-600);
      font-size: 0.8rem;
      letter-spacing: 0.1em;
    }

    body.light-mode .form-input::placeholder {
      color: var(--gray-400);
    }

    .form-input.textarea {
      resize: none;
      height: 100px;
    }

    .form-line {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--white);
      transition: width 0.5s var(--transition);
    }

    body.light-mode .form-line {
      background: var(--black);
    }

    .form-input:focus~.form-line {
      width: 100%;
    }

    .form-label {
      position: absolute;
      top: 16px;
      left: 0;
      font-size: 0.6rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gray-600);
      transition: all 0.4s;
      pointer-events: none;
    }

    body.light-mode .form-label {
      color: var(--gray-400);
    }

    .form-input:focus+.form-label,
    .form-input:not(:placeholder-shown)+.form-label {
      top: -8px;
      font-size: 0.5rem;
      color: var(--gray-400);
    }

    .form-select {
      appearance: none;
      -webkit-appearance: none;
      background: none;
      border: none;
      border-bottom: 1px solid var(--gray-700);
      padding: 16px 0;
      font-family: var(--font-sans);
      font-size: 0.8rem;
      font-weight: 300;
      color: var(--gray-500);
      outline: none;
      width: 100%;
      cursor: none;
    }

    body.light-mode .form-select {
      color: var(--gray-600);
      border-color: var(--gray-300);
    }

    .form-select option {
      background: var(--black);
      color: var(--white);
    }

    .form-submit {
      display: inline-flex;
      align-items: center;
      gap: 16px;
      font-family: var(--font-sans);
      font-size: 0.65rem;
      font-weight: 400;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--white);
      border: 1px solid rgba(255, 255, 255, 0.3);
      padding: 18px 48px;
      position: relative;
      overflow: hidden;
      transition: color 0.5s;
      align-self: flex-start;
      cursor: none;
    }

    body.light-mode .form-submit {
      color: var(--black);
      border-color: rgba(0, 0, 0, 0.3);
    }

    .form-submit::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--white);
      transform: translateX(-101%);
      transition: transform 0.6s var(--transition);
    }

    body.light-mode .form-submit::before {
      background: var(--black);
    }

    .form-submit:hover {
      color: var(--black);
    }

    body.light-mode .form-submit:hover {
      color: var(--white);
    }

    .form-submit:hover::before {
      transform: translateX(0);
    }

    .form-submit span,
    .form-submit .arrow {
      position: relative;
      z-index: 1;
    }

    .form-submit .arrow {
      width: 20px;
      height: 1px;
      background: currentColor;
      transition: width 0.3s;
    }

    .form-submit .arrow::after {
      content: '';
      position: absolute;
      right: 0;
      top: -3px;
      width: 6px;
      height: 6px;
      border-right: 1px solid currentColor;
      border-top: 1px solid currentColor;
      transform: rotate(45deg);
    }

    .form-submit:hover .arrow {
      width: 30px;
    }

    .form-success {
      display: none;
      font-family: var(--font-serif);
      font-size: 1.2rem;
      font-weight: 300;
      font-style: italic;
      color: var(--gray-400);
      padding: 20px 0;
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       GALLERY PAGE
    â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    .gallery-hero {
      height: 50vh;
      display: flex;
      align-items: flex-end;
      padding: 0 5% 60px;
    }

    .gallery-hero-title {
      font-family: var(--font-serif);
      font-size: clamp(4rem, 10vw, 9rem);
      font-weight: 300;
      line-height: 0.95;
    }

    .gallery-grid {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 5% 120px;
      column-count: 4;
      column-gap: 24px;
    }

    .gallery-item {
      break-inside: avoid;
      margin-bottom: 24px;
      position: relative;
      overflow: hidden;
      cursor: none;
      border-radius: 6px;
      background: var(--gray-800);
    }

    body.light-mode .gallery-item {
      background: var(--gray-100);
    }

    .gallery-item-inner {
      position: relative;
      overflow: hidden;
      border-radius: 6px;
    }

    .gallery-item-img {
      display: block;
      width: 100%;
      height: auto;
      transition: transform 0.8s var(--transition);
    }

    .gallery-item-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.35);
      opacity: 0;
      transition: opacity 0.5s var(--transition);
      pointer-events: none;
    }

    .gallery-item-glow {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.08) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.5s var(--transition);
      pointer-events: none;
    }

    .gallery-item:hover .gallery-item-img {
      transform: scale(1.05);
    }

    .gallery-item:hover .gallery-item-overlay {
      opacity: 1;
    }

    .gallery-item:hover .gallery-item-glow {
      opacity: 1;
    }

    .gallery-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 40px 24px 20px;
      background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
      opacity: 0;
      transform: translateY(12px);
      transition: opacity 0.5s var(--transition), transform 0.5s var(--transition);
      pointer-events: none;
    }

    .gallery-item:hover .gallery-caption {
      opacity: 1;
      transform: translateY(0);
    }

    .gallery-caption span {
      display: block;
      font-family: var(--font-serif);
      font-size: 0.95rem;
      font-weight: 300;
      color: var(--white);
      letter-spacing: 0.02em;
    }

    .gallery-caption-sub {
      font-size: 0.7rem !important;
      font-weight: 200 !important;
      color: rgba(255,255,255,0.5) !important;
      margin-top: 2px;
      letter-spacing: 0.04em !important;
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       FOOTER
    â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    footer {
      border-top: 1px solid var(--gray-800);
      padding: 80px 5% 40px;
    }

    body.light-mode footer {
      border-color: var(--gray-200);
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 60px;
      margin-bottom: 80px;
    }

    .footer-brand-logo {
      font-family: var(--font-serif);
      font-size: 2rem;
      font-weight: 300;
      letter-spacing: 0.3em;
      margin-bottom: 20px;
    }

    .footer-brand-tagline {
      font-family: var(--font-serif);
      font-size: 0.85rem;
      font-style: italic;
      color: var(--gray-500);
      line-height: 1.8;
      margin-bottom: 32px;
    }

    .footer-col-title {
      font-size: 0.55rem;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--gray-600);
      margin-bottom: 24px;
    }

    body.light-mode .footer-col-title {
      color: var(--gray-400);
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-links a {
      font-size: 0.82rem;
      font-weight: 300;
      color: var(--gray-400);
      transition: color 0.3s;
      position: relative;
      display: inline-block;
    }

    body.light-mode .footer-links a {
      color: var(--gray-600);
    }

    .footer-links a:hover {
      color: var(--white);
    }

    body.light-mode .footer-links a:hover {
      color: var(--black);
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 40px;
      border-top: 1px solid var(--gray-800);
    }

    body.light-mode .footer-bottom {
      border-color: var(--gray-200);
    }

    .footer-copy {
      font-size: 0.65rem;
      letter-spacing: 0.1em;
      color: var(--gray-600);
    }

    .footer-bottom-links {
      display: flex;
      gap: 24px;
    }

    .footer-bottom-links a {
      font-size: 0.6rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gray-600);
    }

    .footer-bottom-links a:hover {
      color: var(--white);
    }

    body.light-mode .footer-bottom-links a:hover {
      color: var(--black);
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       LIGHT MODE OVERRIDES (Nav / misc)
    â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    body.light-mode nav {
      mix-blend-mode: normal;
    }

    body.light-mode .nav-logo {
      color: var(--black);
    }

    body.light-mode .nav-links a {
      color: var(--black);
    }

    body.light-mode .nav-links a::after {
      background: var(--black);
    }

    body.light-mode .hamburger span {
      background: var(--black);
    }

    body.light-mode .mobile-nav {
      background: var(--white);
    }

    body.light-mode .mobile-nav a {
      color: var(--black);
    }

    body.light-mode .mobile-nav a::after {
      background: var(--black);
    }

    body.light-mode ::-webkit-scrollbar-thumb {
      background: var(--gray-400);
    }

    body.light-mode .hero-title {
      color: var(--black);
    }

    body.light-mode .hero-eyebrow {
      color: var(--gray-500);
    }

    body.light-mode .hero-subtitle {
      color: var(--gray-600);
    }

    body.light-mode #heroCanvas {
      opacity: 0.08;
    }

    body.light-mode .ring {
      border-color: rgba(0, 0, 0, 0.04);
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       UTILS
    â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    .overflow-hidden {
      overflow: hidden;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
    }

    /* Divider */
    .divider {
      height: 1px;
      background: var(--gray-800);
      margin: 0 5%;
    }

    body.light-mode .divider {
      background: var(--gray-200);
    }

    /* TOAST */
    .toast {
      position: fixed;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%) translateY(20px);
      background: var(--white);
      color: var(--black);
      font-family: var(--font-sans);
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 14px 32px;
      z-index: 99000;
      opacity: 0;
      transition: all 0.4s var(--transition);
      pointer-events: none;
    }
    body.light-mode .toast {
      background: var(--black);
      color: var(--white);
    }
    .toast.show {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }

    /* QUICK VIEW MODAL */
    .quick-view-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.7);
      z-index: 8000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
      padding: 20px;
    }
    .quick-view-overlay.open {
      opacity: 1;
      pointer-events: auto;
    }
    .quick-view-modal {
      background: var(--gray-800);
      padding: 40px;
      max-width: 700px;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      position: relative;
      max-height: 90vh;
      overflow-y: auto;
      color: var(--black);
    }
    body.light-mode .quick-view-modal {
      background: var(--gray-100);
    }
    .quick-view-close {
      position: absolute;
      top: 16px;
      right: 20px;
      background: none;
      border: none;
      color: var(--black);
      font-size: 1.2rem;
      cursor: pointer;
    }
    .quick-view-image {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .quick-view-image img {
      width: 100%;
      max-height: 400px;
      object-fit: contain;
    }
    .quick-view-details {
      display: flex;
      flex-direction: column;
      gap: 16px;
      align-items: flex-start;
    }
    .quick-view-add {
      align-self: center;
    }
    .quick-view-brand {
      font-family: var(--font-sans);
      font-size: 0.55rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--black);
    }
    .quick-view-name {
      font-family: var(--font-serif);
      font-size: 1.6rem;
      font-weight: 300;
      color: var(--black);
    }
    .quick-view-desc {
      font-family: var(--font-sans);
      font-size: 0.7rem;
      line-height: 1.8;
      color: var(--black);
    }
    .quick-view-price {
      font-family: var(--font-serif);
      font-size: 1.3rem;
      font-weight: 300;
      color: var(--black);
    }
    .quick-view-sizes {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }
    .quick-view-size-btn {
      background: transparent;
      border: 1px solid var(--black);
      padding: 8px 16px;
      font-family: var(--font-sans);
      font-size: 0.6rem;
      color: var(--black);
      cursor: pointer;
      transition: all 0.3s;
    }
    body.light-mode .quick-view-size-btn {
      border-color: var(--black);
      color: var(--black);
    }
    .quick-view-size-btn.active,
    .quick-view-size-btn:hover {
      border-color: var(--black);
      color: var(--black);
      background: var(--gray-200);
    }
    body.light-mode .quick-view-size-btn.active,
    body.light-mode .quick-view-size-btn:hover {
      border-color: var(--black);
      color: var(--black);
      background: var(--gray-200);
    }

    /* BUY IT NOW MODAL */
    .buy-modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.75);
      z-index: 8500;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
      padding: 20px;
    }
    .buy-modal-overlay.open {
      opacity: 1;
      pointer-events: auto;
    }
    .buy-modal {
      background: var(--gray-800);
      color: var(--black);
      padding: 48px 40px 40px;
      max-width: 520px;
      width: 100%;
      position: relative;
      max-height: 90vh;
      overflow-y: auto;
      border-radius: 6px;
    }
    body.light-mode .buy-modal {
      background: var(--gray-100);
    }
    .buy-modal-close {
      position: absolute;
      top: 16px;
      right: 20px;
      background: none;
      border: none;
      color: rgba(0,0,0,0.5);
      font-size: 1.3rem;
      cursor: pointer;
      transition: color 0.3s;
      line-height: 1;
    }
    .buy-modal-close:hover {
      color: var(--black);
    }
    .buy-modal-title {
      font-family: var(--font-serif);
      font-size: 1.6rem;
      font-weight: 300;
      margin-bottom: 28px;
      letter-spacing: 0.02em;
    }
    .buy-form-group {
      margin-bottom: 20px;
    }
    .buy-form-label {
      display: block;
      font-family: var(--font-sans);
      font-size: 0.55rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(0,0,0,0.55);
      margin-bottom: 6px;
    }
    body.light-mode .buy-form-label {
      color: rgba(0,0,0,0.55);
    }
    .buy-form-input {
      width: 100%;
      background: transparent;
      border: 1px solid rgba(0,0,0,0.3);
      padding: 12px 14px;
      font-family: var(--font-sans);
      font-size: 0.85rem;
      color: var(--black);
      outline: none;
      transition: border-color 0.3s;
      border-radius: 0;
    }
    body.light-mode .buy-form-input {
      border-color: rgba(0,0,0,0.3);
      color: var(--black);
    }
    .buy-form-input:focus {
      border-color: var(--black);
    }
    body.light-mode .buy-form-input:focus {
      border-color: var(--black);
    }
    .buy-form-input::placeholder {
      color: rgba(0,0,0,0.35);
      font-size: 0.75rem;
    }
    body.light-mode .buy-form-input::placeholder {
      color: rgba(0,0,0,0.35);
    }
    .buy-form-textarea {
      resize: vertical;
      min-height: 80px;
    }
    .buy-summary {
      border-top: 1px solid rgba(0,0,0,0.15);
      padding-top: 20px;
      margin-top: 24px;
    }
    body.light-mode .buy-summary {
      border-color: rgba(0,0,0,0.15);
    }
    .buy-summary-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 8px;
      font-size: 0.85rem;
    }
    .buy-summary-label {
      color: rgba(0,0,0,0.5);
    }
    body.light-mode .buy-summary-label {
      color: rgba(0,0,0,0.5);
    }
    .buy-summary-value {
      font-family: var(--font-serif);
      text-align: right;
    }
    .buy-summary-total {
      border-top: 1px solid rgba(0,0,0,0.15);
      margin-top: 8px;
      padding-top: 12px;
      font-family: var(--font-serif);
      font-size: 1.1rem;
      font-weight: 400;
    }
    body.light-mode .buy-summary-total {
      border-color: rgba(0,0,0,0.15);
    }
    .buy-confirm-btn {
      margin-top: 24px;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .product-detail-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }
    .btn-buy-now {
      background: transparent !important;
      border: 1px solid rgba(0,0,0,0.4) !important;
    }
    .btn-buy-now:hover {
      border-color: var(--black) !important;
    }

    /* ─── PRODUCT PAGE ─── */
    .product-page {
      display: flex;
      min-height: 100vh;
      padding: 140px 5% 80px;
      gap: 80px;
      align-items: center;
    }
    .product-page-left {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .product-page-image-wrap {
      width: 100%;
      max-width: 500px;
      aspect-ratio: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--gray-800);
      border-radius: 4px;
      overflow: hidden;
    }
    body.light-mode .product-page-image-wrap {
      background: var(--gray-100);
    }
    .product-page-image-wrap img {
      max-height: 70vh;
      object-fit: contain;
      z-index: 2;
    }
    .product-page-right {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .product-page-breadcrumb {
      font-family: var(--font-sans);
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      color: var(--gray-500);
      margin-bottom: 24px;
    }
    .product-page-breadcrumb a {
      color: var(--gray-400);
      text-decoration: none;
      transition: color 0.3s;
    }
    .product-page-breadcrumb a:hover {
      color: var(--white);
    }
    body.light-mode .product-page-breadcrumb a:hover {
      color: var(--black);
    }
    .product-page-brand {
      font-family: var(--font-sans);
      font-size: 0.7rem;
      font-weight: 300;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--gray-500);
      margin-bottom: 12px;
    }
    .product-page-name {
      font-family: var(--font-serif);
      font-size: clamp(2.5rem, 5vw, 4.5rem);
      font-weight: 300;
      line-height: 1.1;
      margin-bottom: 24px;
    }
    .product-page-desc {
      font-family: var(--font-sans);
      font-size: 0.9rem;
      line-height: 1.8;
      color: var(--gray-400);
      margin-bottom: 40px;
      max-width: 500px;
    }
    .product-page-variants {
      margin-bottom: 32px;
    }
    .product-page-variant-label {
      font-family: var(--font-sans);
      font-size: 0.6rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-bottom: 16px;
      display: block;
    }
    .product-page-variant-options {
      display: flex;
      gap: 16px;
    }
    .product-page-price {
      font-family: var(--font-serif);
      font-size: 2rem;
      margin-bottom: 32px;
    }
    .product-page-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }
    @media (max-width: 768px) {
      .product-page {
        flex-direction: column;
        padding: 120px 5% 60px;
        gap: 40px;
      }
      .product-page-image-wrap {
        max-width: 100%;
      }
    }

    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 500;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--gray-800);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.4s ease;
    }
    body.light-mode .back-to-top {
      background: var(--gray-200);
    }
    .back-to-top.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .back-to-top svg {
      width: 18px;
      height: 18px;
      stroke: var(--black);
    }

    @media (max-width: 1024px) {
      .gallery-grid {
        column-count: 3;
      }

      .featured-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .product-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .notes-section {
        grid-template-columns: 1fr;
        gap: 60px;
      }

      .notes-left {
        display: none;
      }

      .footer-top {
        grid-template-columns: 1fr 1fr;
      }

      .contact-section {
        grid-template-columns: 1fr;
      }

      .contact-left {
        padding-top: 120px;
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      nav {
        padding: 24px 5%;
      }

      .hero-title {
        font-size: clamp(3rem, 12vw, 6rem);
      }

      .featured-grid {
        grid-template-columns: 1fr;
      }

      .featured-header {
        flex-direction: column;
        align-items: flex-start;
      }

      .featured-desc {
        text-align: left;
      }

      .product-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .about-grid {
        grid-template-columns: 1fr;
      }

      .contact-section {
        grid-template-columns: 1fr;
      }

      .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .gallery-grid {
        column-count: 3;
      }

      .filter-bar {
        gap: 0;
      }

      .theme-toggle,
      .music-toggle {
        display: none;
      }

      .about-stats {
        flex-wrap: wrap;
        gap: 24px;
      }

      .about-hero {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
      }

      .about-content {
        width: 100%;
        max-width: none;
        padding: 100px 5% 40px;
        flex-shrink: 0;
      }

      .about-video-gallery {
        width: 100%;
        height: 60vh;
        position: relative;
        padding: 0 10px;
        flex-shrink: 0;
      }

      .col-3 {
        display: none;
      }

      .hero-subtitle {
        font-size: 0.65rem;
      }

      .hero-eyebrow {
        font-size: 0.45rem;
      }

      .hero-cta {
        margin-top: 24px;
      }

      .hero-logo {
        font-size: clamp(2rem, 8vw, 4rem);
        opacity: 0.12;
      }

      .gallery-hero {
        padding: 80px 5% 40px !important;
      }

      .gallery-hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem) !important;
      }

      .gallery-grid {
        padding: 40px 4% !important;
      }

      .contact-left-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
      }

      .about-cell {
        padding: 40px 24px;
      }

      .quick-view-modal {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px;
        margin: 0 10px;
      }

      .buy-modal {
        padding: 40px 24px 32px;
        margin: 0 10px;
      }

      .quick-view-image img {
        max-height: 250px;
      }

      .marquee-item {
        font-size: 0.55rem;
      }

      .featured-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
      }

      .about-title {
        font-size: clamp(2rem, 8vw, 3rem);
      }

      .collection-hero {
        padding: 70px 5% 30px !important;
        height: 40vh !important;
      }

      .collection-hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem) !important;
      }

      .cart-section,
      .checkout-container {
        padding: 100px 5% 60px;
      }

      .checkout-container {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .cart-item {
        grid-template-columns: 60px 1fr auto;
        gap: 12px;
        padding: 16px;
      }
    }

    @media (max-width: 1024px) {
      .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px 20px !important;
        padding: 30px 4% 60px !important;
      }
      .collection-hero {
        padding: 80px 4% 30px !important;
      }
      .collection-hero-title {
        font-size: clamp(2rem, 5vw, 3.5rem) !important;
      }
    }

    @media (max-width: 768px) {
      .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px 16px !important;
        padding: 24px 4% 50px !important;
      }
      .collection-hero {
        padding: 70px 4% 24px !important;
      }
      .filter-btn {
        padding: 10px 16px !important;
        font-size: 0.5rem !important;
      }
      .product-item-index {
        font-size: 2.5rem !important;
      }
    }

    @media (max-width: 480px) {
      .hero-title {
        font-size: clamp(2.2rem, 10vw, 3rem);
      }

      .hero-logo {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
      }

      .hero-subtitle {
        font-size: 0.55rem;
      }

      .about-video-gallery {
        height: 40vh;
      }

      .product-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 16px 12px !important;
        padding: 20px 3% 40px !important;
      }
      .collection-hero {
        padding: 60px 3% 20px !important;
      }
      .collection-hero-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem) !important;
      }
    }

