/* ==========================================================================
   Vietnam on the Move - Brand Style Sheet
   ========================================================================== */

/* --- Custom Font Declarations --- */
@font-face {
  font-family: 'BDStreetSignSans';
  src: url('landingpage/Brand Guideline/Typography/Heading - BDStreetSignSans_Variable.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('landingpage/Brand Guideline/Typography/Body text - FZ Poppins-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* --- Core Theme Variables --- */
:root {
  --color-bg: #1B1515;
  --color-primary: #EF4A38;     /* Red */
  --color-yellow: #F8EE23;      /* Neon Yellow */
  --color-pink: #EC1385;        /* Neon Pink */
  --color-lime: #BCD531;        /* Lime Green */
  --color-purple: #512E8E;      /* Royal Purple */
  --color-teal: #A6DAD4;        /* Light Teal */
  --color-orange: #F58521;      /* Bright Orange */
  
  --color-white: #FFFFFF;
  --color-text-body: #E5E5E5;
  --color-text-muted: #A09E9E;
  
  --color-glass-bg: rgba(30, 24, 24, 0.65);
  --color-glass-border: rgba(255, 255, 255, 0.08);
  --color-glass-border-hover: rgba(255, 255, 255, 0.2);
  
  --font-heading: 'BDStreetSignSans', 'Arial Black', sans-serif;
  --font-body: 'Poppins', 'Segoe UI', Roboto, sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  --container-max-width: 1200px;
  --header-height: 80px;
}

/* --- Reset & Base Styles --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-bg);
}

body {
  font-family: var(--font-body);
  color: var(--color-text-body);
  background-color: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* --- Decorative Canvas Background --- */
.bg-pattern-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: linear-gradient(rgba(27, 21, 21, 0.94), rgba(27, 21, 21, 0.94)), 
                    url('landingpage/Background image (màu nền chính + pattern opacity)/back.png');
  background-repeat: repeat;
  background-size: 600px auto;
  opacity: 0.85;
  z-index: -3;
  pointer-events: none;
}

/* Background glowing orbs */
.bg-gradient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.15;
  z-index: -2;
  pointer-events: none;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--color-purple) 0%, transparent 70%);
  top: -10%;
  right: -10%;
  animation: orb-float 20s infinite alternate ease-in-out;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
  bottom: 10%;
  left: -10%;
  animation: orb-float 25s infinite alternate-reverse ease-in-out;
}

@keyframes orb-float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(100px, 50px) scale(1.2); }
}

/* --- Typography Utilities --- */
.font-heading-main {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 1.1;
  letter-spacing: 0.5px;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Layout Elements --- */
.container {
  max-width: var(--container-max-width);
  width: 90%;
  margin: 0 auto;
}

.grid {
  display: grid;
  gap: 30px;
}

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

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

.align-center {
  align-items: center;
}

.text-center {
  text-align: center;
}

.text-neon-yellow {
  color: var(--color-yellow);
  text-shadow: 0 0 10px rgba(248, 238, 35, 0.4);
}

.text-neon-pink {
  color: var(--color-pink);
  text-shadow: 0 0 10px rgba(236, 19, 133, 0.4);
}

.text-neon-teal {
  color: var(--color-teal);
  text-shadow: 0 0 10px rgba(166, 218, 212, 0.4);
}

.text-neon-red {
  color: var(--color-primary);
  text-shadow: 0 0 10px rgba(239, 74, 56, 0.4);
}

.text-neon-orange {
  color: var(--color-orange);
  text-shadow: 0 0 10px rgba(245, 133, 33, 0.4);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 1px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(239, 74, 56, 0.4);
}

.btn-primary:hover {
  background-color: var(--color-yellow);
  color: var(--color-bg);
  box-shadow: 0 4px 20px rgba(248, 238, 35, 0.6);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

.btn-icon-play {
  gap: 10px;
}

.btn-play-svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.btn-full {
  width: 100%;
}

/* --- Header / Nav Bar --- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  background: rgba(27, 21, 21, 0.4);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-glass-border);
  transition: var(--transition-smooth);
}

.main-header.scrolled {
  background: rgba(20, 15, 15, 0.85);
  height: 70px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-link {
  display: block;
}

#vnotm-logo {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}

#jogarbola-logo {
  height: 38px;
  width: auto;
}

.logo-separator {
  width: 1px;
  height: 25px;
  background-color: var(--color-glass-border);
}

.nav-bar ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-item {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  color: var(--color-text-muted);
  position: relative;
  padding: 8px 0;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--transition-smooth);
}

.nav-item:hover, .nav-item.active {
  color: var(--color-white);
}

.nav-item:hover::after, .nav-item.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

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

.icon-btn:hover {
  color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.08);
}

.icon-svg {
  width: 22px;
  height: 22px;
}

.badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background-color: var(--color-pink);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: bold;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 5px rgba(236, 19, 133, 0.8);
}

.btn-nav {
  padding: 8px 20px;
  font-size: 0.9rem;
}

/* Mobile Toggle */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 110;
}

.mobile-menu-btn span {
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  transition: var(--transition-smooth);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(27, 21, 21, 0.98);
  backdrop-filter: blur(15px);
  z-index: 95;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-menu ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  align-items: center;
  gap: 30px;
}

.mobile-nav-menu a {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 1.8rem;
  color: var(--color-text-muted);
}

.mobile-nav-menu a:hover {
  color: var(--color-white);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* --- Section Formatting --- */
section {
  padding: 100px 0;
  position: relative;
}

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

.section-tag {
  font-size: 1rem;
  letter-spacing: 3px;
  display: inline-block;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-muted);
}

.max-w-700 {
  max-width: 700px;
  margin: 0 auto;
}

/* --- Block A: Hero Banner Section --- */
.section-hero {
  padding-top: calc(var(--header-height) + 60px);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-marquee {
  position: absolute;
  top: var(--header-height);
  left: 0;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  background-color: rgba(239, 74, 56, 0.05);
  border-top: 1px solid rgba(239, 74, 56, 0.15);
  border-bottom: 1px solid rgba(239, 74, 56, 0.15);
  padding: 10px 0;
  z-index: 1;
}

.marquee-content {
  display: inline-flex;
  animation: marquee 30s linear infinite;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--color-primary);
  opacity: 0.6;
}

.marquee-content span {
  padding: 0 20px;
}

@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}

.hero-container {
  position: relative;
  z-index: 2;
}

.brand-tag {
  font-family: var(--font-heading);
  color: var(--color-primary);
  letter-spacing: 2px;
  font-size: 0.95rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 1.0;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 25px;
  font-weight: normal;
  text-transform: none;
  font-family: var(--font-body);
  color: var(--color-white);
  line-height: 1.4;
}

.hero-desc {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 35px;
  max-width: 540px;
}

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

/* Hero Visual Graphic Layering */
.hero-visual-block {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.visual-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--color-glass-border);
  position: relative;
  z-index: 5;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

.hero-decor-drum {
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  object-fit: contain;
  opacity: 0.08;
  z-index: 2;
  animation: spin-slow 40s linear infinite;
  pointer-events: none;
}

.hero-decor-ring {
  position: absolute;
  width: 130%;
  height: 130%;
  top: -15%;
  left: -15%;
  object-fit: contain;
  opacity: 0.15;
  z-index: 3;
  animation: spin-reverse 25s linear infinite;
  pointer-events: none;
}

.glow-backdrop {
  position: absolute;
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 74, 56, 0.3) 0%, transparent 70%);
  z-index: 1;
  filter: blur(30px);
}

@keyframes spin-slow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes spin-reverse {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}

/* --- Block B: Our Story Section --- */
.section-story {
  border-top: 1px solid var(--color-glass-border);
  position: relative;
}

.story-block {
  margin-bottom: 120px;
}

.story-block-title {
  font-size: 2.2rem;
  margin-bottom: 25px;
}

.story-block-desc {
  color: var(--color-text-muted);
  margin-bottom: 25px;
  font-size: 1.05rem;
  text-align: justify;
}

/* Timeline Components styling */
.timeline-container {
  margin: 40px 0;
  position: relative;
  padding-bottom: 20px;
}

.timeline-line {
  position: absolute;
  top: 36px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-glass-border);
  z-index: 1;
}

.timeline-progress {
  width: 0%;
  height: 100%;
  background: linear-gradient(to right, var(--color-primary), var(--color-teal));
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-nodes {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.timeline-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.node-year {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 10px;
  transition: var(--transition-fast);
}

.node-dot {
  width: 16px;
  height: 16px;
  background-color: var(--color-bg);
  border: 3px solid var(--color-text-muted);
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.timeline-node:hover .node-dot {
  border-color: var(--color-yellow);
  box-shadow: 0 0 10px var(--color-yellow);
}

.timeline-node.active .node-dot {
  border-color: var(--color-primary);
  background-color: var(--color-white);
  box-shadow: 0 0 15px var(--color-primary);
  transform: scale(1.3);
}

.timeline-node.active .node-year {
  color: var(--color-white);
  font-weight: bold;
}

.timeline-tooltip {
  margin-top: 25px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-glass-border);
  border-radius: 6px;
  padding: 15px;
  font-size: 0.95rem;
  color: var(--color-text-body);
  backdrop-filter: blur(5px);
  transition: var(--transition-smooth);
}

/* Glassmorphism Stats Cards */
.story-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stats-card {
  background: var(--color-glass-bg);
  border: 1px solid var(--color-glass-border);
  border-radius: 12px;
  padding: 30px;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.stats-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-glass-border-hover);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.glow-red:hover { box-shadow: 0 15px 40px rgba(239, 74, 56, 0.15); border-color: rgba(239, 74, 56, 0.4); }
.glow-yellow:hover { box-shadow: 0 15px 40px rgba(248, 238, 35, 0.15); border-color: rgba(248, 238, 35, 0.4); }
.glow-pink:hover { box-shadow: 0 15px 40px rgba(236, 19, 133, 0.15); border-color: rgba(236, 19, 133, 0.4); }
.glow-teal:hover { box-shadow: 0 15px 40px rgba(166, 218, 212, 0.15); border-color: rgba(166, 218, 212, 0.4); }
.glow-purple:hover { box-shadow: 0 15px 40px rgba(81, 46, 142, 0.2); border-color: rgba(81, 46, 142, 0.4); }

.stats-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 10px;
}

.stats-title {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.stats-label {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.span-2 {
  grid-column: span 2;
}

/* Khối 2: Where We Begin elements */
.story-visual {
  position: relative;
}

.story-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.story-img {
  width: 100%;
  transition: transform 0.6s ease;
}

.story-image-wrapper:hover .story-img {
  transform: scale(1.03);
}

.story-decor-nonla {
  position: absolute;
  top: -12%;
  right: -12%;
  width: 60%;
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
  animation: spin-slow 35s linear infinite;
}

.story-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(27, 21, 21, 0.8), transparent);
  z-index: 1;
}

/* Village Stats Grid */
.village-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.v-stats-card {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-glass-border);
  border-radius: 8px;
  padding: 20px;
  transition: var(--transition-fast);
}

.v-stats-card:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.v-stats-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 1.1;
  margin-bottom: 5px;
}

.v-stats-lbl {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.span-all {
  grid-column: span 2;
}

/* Giant Marquee Banner */
.giant-typography-banner {
  margin-top: 80px;
  width: 100%;
  position: relative;
}

.giant-heading-text {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.0;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

.giant-heading-text:hover {
  color: var(--color-yellow);
  text-shadow: 0 0 30px rgba(248, 238, 35, 0.6);
}

.marquee-sub-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 5px;
  color: var(--color-text-muted);
}

/* --- Block C: Collection Section --- */
.section-collection {
  border-top: 1px solid var(--color-glass-border);
}

/* 01. Campaign Video styling */
.campaign-video-section {
  margin-bottom: 100px;
}

.video-card-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--color-glass-border);
}

.video-overlay-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(27, 21, 21, 0.2) 0%, rgba(27, 21, 21, 0.8) 100%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 6% 8%;
  pointer-events: none;
}

.video-tag {
  font-family: var(--font-heading);
  color: var(--color-yellow);
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.video-title {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 15px;
  max-width: 600px;
}

.video-description {
  color: var(--color-text-muted);
  max-width: 500px;
  margin-bottom: 25px;
}

.video-play-trigger-large {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: var(--color-primary);
  border: none;
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 12;
  box-shadow: 0 0 30px rgba(239, 74, 56, 0.6);
  transition: var(--transition-smooth);
  pointer-events: auto;
}

.video-play-trigger-large:hover {
  background-color: var(--color-yellow);
  color: var(--color-bg);
  box-shadow: 0 0 40px rgba(248, 238, 35, 0.8);
  transform: translate(-50%, -50%) scale(1.1);
}

.play-svg-large {
  width: 32px;
  height: 32px;
  margin-left: 6px;
  fill: currentColor;
}

.video-frame-container {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.video-placeholder-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.video-card-wrapper:hover .video-placeholder-bg {
  transform: scale(1.05);
}

.video-color-filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, transparent 20%, rgba(27, 21, 21, 0.8) 100%),
              rgba(81, 46, 142, 0.15); /* Purple tint */
  z-index: 2;
}

/* 02. Design Inspiration blocks */
.design-inspiration-section {
  margin-bottom: 120px;
}

.section-sub-header {
  margin-bottom: 50px;
}

.inspiration-title {
  font-size: 1.8rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.inspiration-desc {
  color: var(--color-text-muted);
}

.inspiration-grid {
  gap: 30px;
}

.inspiration-card {
  background: var(--color-glass-bg);
  border: 1px solid var(--color-glass-border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.inspiration-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-glass-border-hover);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.insp-img-container {
  width: 100%;
  aspect-ratio: 1;
  background-color: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-glass-border);
}

.insp-decor-img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  opacity: 0.85;
  transition: transform 0.6s ease;
}

.drum-scale {
  width: 75%;
  height: 75%;
}

.inspiration-card:hover .insp-decor-img {
  transform: scale(1.1) rotate(5deg);
}

.insp-card-body {
  padding: 30px;
  position: relative;
  flex-grow: 1;
}

.insp-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  opacity: 0.15;
  position: absolute;
  top: 10px;
  right: 25px;
  line-height: 1;
}

.insp-heading {
  font-size: 1.25rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.insp-text {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* 03. Product Showcase + Sidebar filters layout */
.showcase-header {
  margin-bottom: 50px;
  border-bottom: 1px solid var(--color-glass-border);
  padding-bottom: 20px;
}

.showcase-title {
  font-size: 2rem;
  margin-bottom: 10px;
}

.showcase-subtitle {
  color: var(--color-text-muted);
}

.showcase-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

/* Sidebar filter designs */
.sidebar-filters {
  background: var(--color-glass-bg);
  border: 1px solid var(--color-glass-border);
  border-radius: 12px;
  padding: 30px 25px;
  height: fit-content;
  backdrop-filter: blur(10px);
}

.filter-section {
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 25px;
}

.filter-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.filter-title {
  font-size: 1rem;
  margin-bottom: 15px;
  color: var(--color-white);
  letter-spacing: 0.5px;
}

.filter-list {
  list-style: none;
}

.filter-list li {
  margin-bottom: 12px;
}

.filter-list li:last-child {
  margin-bottom: 0;
}

/* Custom checkbox */
.filter-checkbox-container {
  display: block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  user-select: none;
  transition: var(--transition-fast);
}

.filter-checkbox-container:hover {
  color: var(--color-white);
}

.filter-checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 1px;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: rgba(255,255,255,0.05);
  border: 1px solid var(--color-glass-border);
  border-radius: 4px;
  transition: var(--transition-fast);
}

.filter-checkbox-container:hover input ~ .checkmark {
  border-color: rgba(255, 255, 255, 0.3);
}

.filter-checkbox-container input:checked ~ .checkmark {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.checkmark::after {
  content: "";
  position: absolute;
  display: none;
}

.filter-checkbox-container input:checked ~ .checkmark::after {
  display: block;
}

.filter-checkbox-container .checkmark::after {
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid var(--color-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Size Options Grid */
.size-options-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.size-btn {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-glass-border);
  color: var(--color-text-body);
  border-radius: 4px;
  padding: 8px 0;
  font-size: 0.85rem;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: var(--transition-fast);
}

.size-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.size-btn.active {
  background-color: var(--color-yellow);
  border-color: var(--color-yellow);
  color: var(--color-bg);
}

/* Custom Radio */
.gender-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.radio-container {
  display: block;
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  user-select: none;
  transition: var(--transition-fast);
}

.radio-container:hover {
  color: var(--color-white);
}

.radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radiomark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: rgba(255,255,255,0.05);
  border: 1px solid var(--color-glass-border);
  border-radius: 50%;
  transition: var(--transition-fast);
}

.radio-container:hover input ~ .radiomark {
  border-color: rgba(255, 255, 255, 0.3);
}

.radio-container input:checked ~ .radiomark {
  background-color: var(--color-teal);
  border-color: var(--color-teal);
}

.radiomark::after {
  content: "";
  position: absolute;
  display: none;
}

.radio-container input:checked ~ .radiomark::after {
  display: block;
}

.radio-container .radiomark::after {
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-bg);
}

.apparel-only-filters {
  transition: opacity 0.3s ease, height 0.3s ease;
}

.apparel-only-filters.disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* Product Cards Grid design */
.product-grid-wrapper {
  position: relative;
}

.no-products-msg {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  color: var(--color-text-muted);
  background: var(--color-glass-bg);
  border: 1px solid var(--color-glass-border);
  border-radius: 12px;
}

.no-products-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  opacity: 0.5;
}

.product-card {
  background: var(--color-glass-bg);
  border: 1px solid var(--color-glass-border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(239, 74, 56, 0.3);
  box-shadow: 0 10px 25px rgba(239, 74, 56, 0.1);
}

.product-img-box {
  width: 100%;
  aspect-ratio: 1;
  background-color: #221c1c;
  position: relative;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-badge-gender {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--color-bg);
  color: var(--color-text-body);
  border: 1px solid var(--color-glass-border);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-family: var(--font-heading);
  z-index: 10;
}

/* Hover overlays */
.product-hover-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(27, 21, 21, 0.95) 0%, rgba(27, 21, 21, 0.5) 100%);
  padding: 20px;
  display: flex;
  gap: 10px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 11;
}

.product-card:hover .product-hover-actions {
  transform: translateY(0);
}

.product-card-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-title {
  font-size: 1.05rem;
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-title a:hover {
  color: var(--color-primary);
}

.product-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-white);
}

.product-btn-wishlist {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-glass-border);
  color: var(--color-text-body);
  padding: 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-btn-wishlist:hover {
  background-color: rgba(236, 19, 133, 0.1);
  border-color: var(--color-pink);
  color: var(--color-pink);
}

.product-btn-wishlist.active {
  background-color: var(--color-pink);
  border-color: var(--color-pink);
  color: var(--color-white);
  animation: heartPulse 0.3s linear;
}

@keyframes heartPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

.product-wishlist-svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.product-btn-cart {
  flex-grow: 1;
  padding: 8px 12px;
  font-size: 0.85rem;
}

.product-btn-quickview {
  padding: 8px 12px;
  font-size: 0.85rem;
}

/* --- Block D: Partners Section --- */
.section-partners {
  border-top: 1px solid var(--color-glass-border);
  overflow: hidden;
}

.partners-bg-decor {
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 50%;
  opacity: 0.03;
  z-index: -1;
  pointer-events: none;
}

.partners-grid {
  gap: 30px;
}

.partner-card {
  background: var(--color-glass-bg);
  border: 1px solid var(--color-glass-border);
  border-radius: 12px;
  padding: 40px 35px;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.partner-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 133, 33, 0.3); /* Orange accent glow */
  box-shadow: 0 10px 25px rgba(245, 133, 33, 0.1);
}

.partner-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.partner-logo-box {
  width: 65px;
  height: 65px;
  border-radius: 8px;
  background-color: var(--color-white);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.partner-logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.emblem-logo {
  background-color: var(--color-bg);
  border: 1px solid var(--color-glass-border);
}

.partner-meta {
  flex-grow: 1;
}

.partner-name {
  font-size: 1.15rem;
  margin-bottom: 5px;
}

.partner-role {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0px;
}

.partner-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: justify;
}

/* --- Footer Section --- */
.main-footer {
  border-top: 1px solid var(--color-glass-border);
  background-color: #141010;
  padding: 80px 0 40px;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr 1.5fr;
  gap: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: var(--color-white);
  position: relative;
  padding-bottom: 8px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-primary);
}

/* Brand col */
.footer-logo {
  height: 52px;
  width: auto;
  align-self: flex-start;
  margin-bottom: 20px;
  filter: brightness(0) invert(1) drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}

.footer-about {
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-tagline {
  font-family: var(--font-heading);
  color: var(--color-primary);
  letter-spacing: 1px;
}

/* Links Col */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a {
  color: var(--color-text-muted);
}

.footer-col ul a:hover {
  color: var(--color-white);
  padding-left: 5px;
}

/* Contact Col */
.contact-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  color: var(--color-text-muted);
  align-items: flex-start;
}

.contact-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
  margin-top: 3px;
}

/* QR col & Socials */
.social-links-wrapper {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
}

.social-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-glass-border);
  color: var(--color-text-muted);
  transition: var(--transition-fast);
}

.social-icon-link:hover {
  color: var(--color-white);
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.social-svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.qr-code-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mock-qr {
  width: 75px;
  height: 75px;
  background-color: var(--color-white);
  border-radius: 6px;
  padding: 6px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 2px;
}

.qr-block {
  background-color: #000;
}

.qr-block.top-left { grid-area: 1 / 1 / 2 / 2; }
.qr-block.top-right { grid-area: 1 / 3 / 2 / 4; }
.qr-block.bottom-left { grid-area: 3 / 1 / 4 / 2; }

.qr-center {
  grid-area: 2 / 2 / 3 / 3;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}

.qr-label {
  color: var(--color-text-muted);
  font-size: 0.8rem;
  line-height: 1.4;
  max-width: 120px;
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

/* --- Modals --- */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 12, 12, 0.85);
  backdrop-filter: blur(10px);
}

.modal-content {
  position: relative;
  background-color: var(--color-bg);
  border: 1px solid var(--color-glass-border);
  border-radius: 16px;
  width: 90%;
  max-width: 900px;
  z-index: 10;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal.open .modal-content {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 15;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  color: var(--color-white);
}

/* Video Player Modal Content */
.video-modal-content {
  max-width: 1000px;
  aspect-ratio: 16/9;
  background-color: #000;
}

.video-player-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.modal-video-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Quick View Modal Content styling */
.quickview-modal-content {
  padding: 40px;
  max-width: 850px;
}

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

.qv-image-box {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background-color: #221c1c;
}

.qv-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qv-meta {
  display: flex;
  flex-direction: column;
}

.qv-title {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.qv-price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.qv-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.qv-option-label {
  font-size: 0.85rem;
  color: var(--color-white);
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: bold;
}

.qv-options-row {
  margin-bottom: 20px;
}

.qv-size-grid {
  display: flex;
  gap: 8px;
}

.qv-size-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-glass-border);
  color: var(--color-text-body);
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.qv-size-btn:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.qv-size-btn.active {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.qv-buy-row {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.qv-btn-cart {
  flex-grow: 1;
}

/* ==========================================================================
   Responsive Breakpoints & Media Queries
   ========================================================================== */

@media (max-width: 1024px) {
  /* Tables and large layout settings */
  .grid-3-col {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .showcase-layout {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-title {
    font-size: 3.8rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  .grid-2-col {
    grid-template-columns: 1fr;
  }
  
  .hero-container {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
  }
  
  .hero-text-block {
    text-align: center;
  }
  
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-cta-group {
    justify-content: center;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  /* Menu navigation */
  .nav-bar {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .btn-nav {
    display: none;
  }
  
  /* Timeline stack horizontally to vertically if small */
  .timeline-container {
    padding-left: 20px;
  }
  
  .timeline-line {
    top: 0;
    left: 8px;
    width: 3px;
    height: 100%;
  }
  
  .timeline-progress {
    width: 100%;
    height: 0%;
  }
  
  .timeline-nodes {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
  
  .timeline-node {
    flex-direction: row;
    align-items: center;
    gap: 15px;
  }
  
  .node-year {
    margin-bottom: 0;
    order: 2;
  }
  
  .node-dot {
    order: 1;
  }
  
  .timeline-tooltip {
    margin-left: 25px;
  }
  
  .story-stats-grid {
    grid-template-columns: 1fr;
  }
  
  .span-2 {
    grid-column: span 1;
  }
  
  .village-stats-grid {
    grid-template-columns: 1fr;
  }
  
  .span-all {
    grid-column: span 1;
  }
  
  .quickview-grid {
    grid-template-columns: 1fr;
  }
  
  .video-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.4rem;
  }
  
  .hero-cta-group {
    flex-direction: column;
    gap: 10px;
  }
  
  .btn {
    width: 100%;
  }
  
  .grid-3-col {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .quickview-modal-content {
    padding: 25px 15px;
  }
}
