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

/* --- SWISS MINIMALIST & CUSTOM CSS PLATFORM --- */

/* Reset & Base variables */
:root {
  --color-royal-50: #f0f4ff;
  --color-royal-100: #e0e8ff;
  --color-royal-200: #c2d1ff;
  --color-royal-500: #0033A0; /* True Royal Blue */
  --color-royal-600: #002c8c;
  --color-royal-700: #00267a;
  --color-royal-800: #001f66;
  --color-royal-850: #001952;
  --color-royal-900: #001440;
  --color-royal-950: #000c26;

  --color-orange-50: #fff5ee;
  --color-orange-100: #ffe6d4;
  --color-orange-500: #FF6B00; /* Vivid Pop Orange */
  --color-orange-600: #FF6B00;
  --color-orange-700: #E65F00;

  --color-grey-50: #F3F4F6; /* Grey Background */
  --color-grey-100: #F3F4F6;
  --color-grey-200: #E5E7EB; /* Minimal Grey Border */
  --color-grey-300: #D1D5DB;
  --color-grey-400: #9CA3AF;
  --color-grey-500: #6B7280; /* Neutral Light Text */
  --color-grey-550: #4B5563; /* Price/Links Text */
  --color-grey-600: #4B5563;
  --color-grey-700: #1F2937; /* Body Dark Text */
  --color-grey-800: #111827; /* Headings */
  --color-grey-900: #111827;

  --color-white: #FFFFFF;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --font-sans: "Inter", "Helvetica Neue", Arial, sans-serif;
}

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

html {
  font-family: var(--font-sans);
  background-color: var(--color-grey-50);
  color: var(--color-grey-700);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* Scroll Bar Hidden utility */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* --- MAIN CONTAINER --- */
.max-width-limit {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* --- TOP PROMOTIONAL ACCENT STRIP --- */
.top-strip {
  background-color: var(--color-royal-900);
  color: var(--color-white);
  padding: 0.5rem 0;
  font-size: 0.75rem;
  font-weight: 500;
  position: relative;
  z-index: 40;
}

.top-strip-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .top-strip-container {
    flex-direction: row;
  }
}

.promo-badge {
  background-color: var(--color-orange-500);
  color: var(--color-white);
  font-weight: 800;
  padding: 0.125rem 0.375rem;
  border-radius: 4px;
  font-size: 0.625rem;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  display: inline-block;
  margin-right: 0.5rem;
}

.top-strip-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--color-grey-300);
}

.wa-hotline-wrap {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.wa-hotline-wrap i {
  color: var(--color-orange-500);
}

.wa-hotline-wrap strong {
  font-family: monospace;
  color: var(--color-white);
}

.change-number-btn {
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 0.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: var(--transition-fast);
}

.change-number-btn:hover {
  color: var(--color-orange-500);
}

.change-number-btn i {
  color: var(--color-grey-450);
  transition: transform 0.3s;
}

.change-number-btn:hover i {
  transform: rotate(45deg);
  color: var(--color-orange-500);
}


/* --- STICKY GLASSMORPHISM HEADER --- */
.header-bar {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
  height: 80px;
  display: flex;
  align-items: center;
  z-index: 30;
  width: 100%;
}

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

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.logo-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  box-shadow: 0 4px 6px -1px rgba(0, 51, 160, 0.2);
  transition: var(--transition-fast);
}

.logo-link:hover .logo-icon-box {
  background-color: var(--color-white);
}

.logo-inner-box {
  width: 100%;
  height: 100%;
  
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.logo-inner-box span {
  font-weight: 900;
  
  font-size: 1rem;
}

.logo-dot {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--color-orange-500);
  border: 2px solid var(--color-white);
}

.logo-words {
  display: flex;
  flex-direction: column;
}

.logo-title-row {
  display: flex;
  align-items: center;
  line-height: 1;
}

.logo-word-bold {
  font-weight: 800;
  color: var(--color-royal-800);
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}

.logo-word-light {
  font-weight: 300;
  color: var(--color-grey-500);
  font-size: 1.25rem;
}

.logo-words-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-orange-500);
  border-radius: 100%;
  margin-left: 4px;
}

.logo-subtitle {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--color-grey-400);
  margin-top: 4px;
}

.logo-image {
    width: 100%;
    height: 100%;
    
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-grey-600);
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }
}

.desktop-nav a {
  padding-bottom: 2px;
  transition: var(--transition-fast);
}

.desktop-nav a.active, .desktop-nav a:hover {
  color: var(--color-royal-600);
  border-bottom: 2px solid var(--color-royal-600);
}

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

.inquiry-status-group {
  display: none;
  flex-direction: column;
  text-align: right;
}

@media (min-width: 640px) {
  .inquiry-status-group {
    display: flex;
  }
}

.inquiry-status-hdr {
  font-size: 0.75rem;
  color: var(--color-grey-400);
  font-weight: 500;
}

.inquiry-status-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-royal-800);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin-top: 2px;
}

.status-indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: #10b981;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.header-settings-trigger {
  border: none;
  cursor: pointer;
  padding: 0.625rem;
  color: var(--color-grey-500);
  background-color: rgba(243, 244, 246, 0.8);
  border-radius: 12px;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-settings-trigger:hover {
  color: var(--color-royal-600);
  background-color: var(--color-royal-50);
}

.browse-catalog-link {
  background-color: var(--color-royal-600);
  color: var(--color-white);
  padding: 0.625rem 1.25rem;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  box-shadow: 0 4px 6px -1px rgba(0, 51, 160, 0.1);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.browse-catalog-link:hover {
  background-color: var(--color-royal-700);
  transform: translateY(-1px);
}


/* --- HERO SHOWCASE SECTION --- */
.hero-wrapper {
  position: relative;
  background: linear-gradient(135deg, var(--color-royal-900) 0%, var(--color-royal-950) 50%, #111827 100%);
  color: var(--color-white);
  overflow: hidden;
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .hero-wrapper {
    padding: 6rem 0;
  }
}

.hero-radial-shade {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at right, rgba(29, 78, 216, 0.15), transparent 45%);
  pointer-events: none;
}

.hero-bottom-shader {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--color-grey-50) 0%, transparent 100%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
  }
}

.hero-left-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-left-col {
    grid-column: span 7;
    text-align: left;
  }
}

.hero-accent-tag {
  display: inline-flex;
  align-self: center;
  align-items: center;
  gap: 0.375rem;
  background-color: var(--color-royal-850);
  border: 1px solid var(--color-royal-700);
  color: var(--color-royal-200);
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  width: fit-content;
}

@media (min-width: 1024px) {
  .hero-accent-tag {
    align-self: flex-start;
  }
}

.hero-accent-tag i {
  color: var(--color-orange-500);
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

.orange-gradient-text {
  background: linear-gradient(to right, #fb923c, var(--color-orange-500), #fcd34d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  color: var(--color-grey-300);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .hero-desc {
    font-size: 1.125rem;
    margin-left: 0;
    margin-right: 0;
  }
}

.hero-desc strong {
  color: var(--color-white);
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

@media (min-width: 640px) {
  .hero-cta-group {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .hero-cta-group {
    justify-content: flex-start;
  }
}

.hero-btn-primary {
  background-color: var(--color-orange-500);
  color: var(--color-white);
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(255, 107, 0, 0.3);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
}

@media (min-width: 640px) {
  .hero-btn-primary {
    width: auto;
  }
}

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

.hero-btn-secondary {
  background-color: rgba(0, 31, 102, 0.8);
  color: var(--color-grey-200);
  border: 1px solid var(--color-royal-700);
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 12px;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
}

@media (min-width: 640px) {
  .hero-btn-secondary {
    width: auto;
  }
}

.hero-btn-secondary:hover {
  background-color: var(--color-royal-800);
  color: var(--color-white);
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-royal-850);
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-stats-row {
    margin-left: 0;
    margin-right: 0;
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num-orange {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-orange-400);
}

.stat-num-blue {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-royal-200);
}

.stat-label-grey {
  font-size: 0.75rem;
  color: var(--color-grey-400);
  margin-top: 4px;
}

.hero-right-col {
  position: relative;
}

@media (min-width: 1024px) {
  .hero-right-col {
    grid-column: span 5;
  }
}

.hero-featured-wrapper {
  position: relative;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  border: 4px solid rgba(0, 31, 102, 0.8);
  background-color: var(--color-grey-900);
}

.hero-featured-img {
  width: 100%;
  height: 100%;
  object-cover: cover;
  opacity: 0.85;
  transition: transform 0.5s;
}

.hero-featured-wrapper:hover .hero-featured-img {
  transform: scale(1.05);
}

.hero-featured-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .hero-featured-content {
    padding: 2rem;
  }
}

.featured-pill {
  background-color: var(--color-orange-500);
  color: var(--color-white);
  font-weight: 700;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.625rem;
  border-radius: 6px;
  align-self: flex-start;
  margin-bottom: 0.5rem;
}

.featured-title {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
  .featured-title {
    font-size: 1.5rem;
  }
}

.featured-desc {
  font-size: 0.75rem;
  color: var(--color-grey-300);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.featured-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-price {
  font-weight: 700;
  font-size: 1.5rem;
  color: #fbbf24;
}

.featured-inquire-btn {
  background-color: var(--color-white);
  color: var(--color-royal-900);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.625rem 1.25rem;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-md);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.375rem;
  border: none;
  cursor: pointer;
}

.featured-inquire-btn:hover {
  background-color: var(--color-orange-500);
  color: var(--color-white);
}

.hero-reviews-floating-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background-color: var(--color-white);
  color: var(--color-grey-900);
  padding: 1rem;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-grey-200);
  display: flex;
  align-items: center;
  gap: 0.875rem;
  max-width: 20rem;
  animation: bounce 4s infinite ease-in-out;
}

.reviewer-avatar-box {
  width: 40px;
  height: 40px;
  background-color: var(--color-royal-100);
  color: var(--color-royal-600);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.review-detail-group {
  display: flex;
  flex-direction: column;
  font-size: 0.75rem;
}

.review-rating-stars-row {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--color-orange-500);
  margin-bottom: 0.125rem;
}

.reviewer-quote {
  font-weight: 500;
  color: var(--color-grey-800);
  line-height: 1.25;
}

.reviewer-name {
  font-size: 10px;
  color: var(--color-grey-450);
  margin-top: 0.125rem;
  font-weight: 600;
}


/* --- CONTROLS STRIP (STICKY FILTERS & SEARCH) --- */
.filters-strip {
  background-color: var(--color-white);
  border-top: 1px solid var(--color-grey-200);
  border-bottom: 1px solid var(--color-grey-200);
  position: sticky;
  top: 80px;
  z-index: 20;
}

.filters-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem 0;
}

@media (min-width: 1024px) {
  .filters-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.category-filter-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  width: 100%;
}

@media (min-width: 1024px) {
  .category-filter-row {
    width: auto;
    padding-bottom: 0;
  }
}

.filter-btn {
  white-space: nowrap;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 9999px;
  cursor: pointer;
  transition: var(--transition-fast);
  border: 1px solid var(--color-grey-200);
  background-color: var(--color-white);
  color: var(--color-grey-700);
}

.filter-btn:hover {
  color: var(--color-royal-600);
  background-color: rgba(0, 51, 160, 0.05);
}

.filter-btn.active {
  background-color: var(--color-royal-600);
  color: var(--color-white);
  border-color: var(--color-royal-600);
}

.search-and-destination {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

@media (min-width: 640px) {
  .search-and-destination {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .search-and-destination {
    width: auto;
  }
}

.search-bar-wrap {
  position: relative;
  flex-1: 1;
}

@media (min-width: 640px) {
  .search-bar-wrap {
    width: 16rem;
  }
}

.search-input {
  width: 100%;
  padding: 0.625rem 1rem 0.625rem 2.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid var(--color-grey-200);
  border-radius: 12px;
  background-color: var(--color-grey-50);
  transition: border-color var(--transition-fast);
}

.search-input:focus {
  outline: none;
  border-color: var(--color-royal-500);
  background-color: var(--color-white);
}

.search-bar-wrap i {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-grey-450);
  pointer-events: none;
}

.destination-display-box {
  background-color: var(--color-royal-50);
  border: 1px solid var(--color-royal-100);
  border-radius: 12px;
  padding: 0.625rem 0.875rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.destination-label {
  color: var(--color-grey-500);
  font-weight: 500;
}

.destination-phone-number {
  background-color: var(--color-royal-100);
  color: var(--color-royal-700);
  padding: 0.125rem 0.5rem;
  border-radius: 6px;
  font-family: monospace;
  font-weight: 700;
}


/* --- CATALOG LINE (PRODUCTS GRID) --- */
.products-layout-wrapper {
  padding: 3rem 0;
  background-color: #f8fafc;
}

.products-header-deck {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .products-header-deck {
    text-align: left;
  }
}

.products-header-deck h2 {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--color-grey-900);
  letter-spacing: -0.025em;
}

.products-title-decor-line {
  height: 4px;
  width: 80px;
  background-color: var(--color-orange-500);
  border-radius: 9999px;
  margin-top: 0.5rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .products-title-decor-line {
    margin-left: 0;
    margin-right: 0;
  }
}

.products-intro-paragraph {
  font-size: 0.875rem;
  color: var(--color-grey-550);
  margin-top: 0.75rem;
  max-width: 42rem;
  line-height: 1.5;
}

.products-grid-deck {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .products-grid-deck {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid-deck {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .products-grid-deck {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Base loading spinner card inside catalog grid */
.spinner-card {
  grid-column: 1 / -1;
  padding: 4rem 0;
  text-align: center;
  color: var(--color-grey-500);
}

.spinner-icon {
  width: 32px;
  height: 32px;
  border-radius: 100%;
  border: 4px solid var(--color-royal-600);
  border-top-color: transparent;
  animation: rotate 1s linear infinite;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.75rem;
}

@keyframes rotate {
  100% { transform: rotate(360deg); }
}

/* Individual Product Card style */
.product-card {
  background-color: var(--color-white);
  border-radius: 16px;
  border: 1px solid var(--color-grey-200);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.product-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: var(--color-grey-50);
  overflow: hidden;
  user-select: none;
}

.product-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

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

.product-cat-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  color: var(--color-royal-800);
  font-size: 0.75rem;
  font-weight: 650;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.product-cat-tag-bullet {
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: var(--color-royal-600);
  animation: pulse 2s infinite;
}

.product-quick-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1rem;
}

.product-card:hover .product-quick-overlay {
  opacity: 1;
}

.product-quick-btn {
  background-color: var(--color-white);
  color: var(--color-royal-800);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.375rem;
  transform: translateY(8px);
  transition: transform 0.3s, background-color var(--transition-fast), color var(--transition-fast);
}

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

.product-card-body {
  padding: 1.25rem;
  flex-1: 1;
  display: flex;
  flex-direction: column;
}

.product-ref-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.product-ref-code {
  font-family: monospace;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-grey-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-rating-box {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.15);
  color: var(--color-orange-700);
  padding: 0.125rem 0.375rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.product-rating-box i {
  color: var(--color-orange-500);
}

.product-name-heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-grey-900);
  transition: color var(--transition-fast);
  line-clamp: 1;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card:hover .product-name-heading {
  color: var(--color-royal-600);
}

.product-card-tagline {
  font-size: 0.75rem;
  color: var(--color-grey-500);
  margin-top: 0.25rem;
  line-height: 1.4;
  height: 2.25rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-quick-specs-table {
  border-top: 1px solid var(--color-grey-100);
  padding-top: 0.75rem;
  margin-top: 1rem;
  font-size: 0.75rem;
}

.spec-brief-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.375rem;
}

.spec-brief-row:last-child {
  margin-bottom: 0;
}

.spec-brief-label {
  color: var(--color-grey-450);
}

.spec-brief-value {
  color: var(--color-grey-700);
  font-weight: 500;
  text-align: right;
  max-width: 9.5rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

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

.card-price-block {
  display: flex;
  flex-direction: column;
}

.card-price-hdr {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-grey-450);
  letter-spacing: 0.05em;
  line-height: 1;
}

.card-price-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-grey-900);
  margin-top: 0.25rem;
}

.card-inquiry-btn {
  background-color: var(--color-orange-500);
  border: none;
  border-radius: 12px;
  color: var(--color-white);
  padding: 0.625rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  cursor: pointer;
  transition: var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.card-inquiry-btn:hover {
  background-color: var(--color-orange-600);
  transform: translateY(-1px);
}


/* --- THE AEROLUX PROMISE SECTION --- */
.promise-pane {
  padding: 4rem 0;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-grey-200);
}

.promise-heading-wrap {
  text-align: center;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4rem;
}

.promise-section-badge {
  color: var(--color-royal-600);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  background-color: var(--color-royal-50);
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  display: inline-block;
}

.promise-section-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--color-grey-900);
  letter-spacing: -0.025em;
  margin-top: 0.75rem;
}

.promise-section-desc {
  font-size: 0.875rem;
  color: var(--color-grey-500);
  margin-top: 0.75rem;
  line-height: 1.5;
}

.promise-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .promise-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .promise-cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.promise-block-card {
  background-color: var(--color-grey-50);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--color-grey-100);
  display: flex;
  flex-direction: column;
  transition: var(--transition-fast);
}

.promise-block-card:hover {
  box-shadow: var(--shadow-lg);
  background-color: var(--color-white);
}

.promise-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.promise-icon-royal {
  background-color: var(--color-royal-100);
  color: var(--color-royal-600);
}

.promise-icon-orange {
  background-color: var(--color-orange-100);
  color: var(--color-orange-600);
}

.promise-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-grey-900);
  margin-bottom: 0.5rem;
}

.promise-card-desc {
  font-size: 0.75rem;
  color: var(--color-grey-600);
  line-height: 1.5;
}


/* --- FAQS ACCORDION SECTION --- */
.faq-pane {
  padding: 4rem 0;
  background-color: var(--color-grey-50);
  border-top: 1px solid var(--color-grey-200);
}

.faq-heading-deck {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.faq-section-badge {
  color: var(--color-orange-600);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  background-color: var(--color-orange-50);
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  display: inline-block;
}

.faq-section-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--color-grey-900);
  letter-spacing: -0.025em;
  margin-top: 0.75rem;
}

.faq-section-desc {
  font-size: 0.875rem;
  color: var(--color-grey-500);
  margin-top: 0.5rem;
}

.faq-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.faq-card-wrapper {
  background-color: var(--color-white);
  border: 1px solid var(--color-grey-200);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-card-wrapper:hover {
  border-color: var(--color-royal-300);
}

.faq-toggle-header {
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}

.faq-toggle-header span {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-grey-900);
}

@media (min-width: 640px) {
  .faq-toggle-header span {
    font-size: 1rem;
  }
}

.faq-chevron {
  color: var(--color-grey-400);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-chevron.rotate-180 {
  transform: rotate(180deg);
}

.faq-desc-panel {
  padding: 0 1.5rem 1.5rem 1.5rem;
  font-size: 0.75rem;
  color: var(--color-grey-600);
  border-top: 1px solid var(--color-grey-50);
  padding-top: 0.75rem;
  line-height: 1.6;
}

@media (min-width: 640px) {
  .faq-desc-panel {
    font-size: 0.875rem;
  }
}

.faq-desc-panel.hidden {
  display: none;
}


/* --- PREMIUM FOOTER CONFIG --- */
.luxury-footer {
  background-color: var(--color-grey-900);
  color: var(--color-grey-300);
  border-top: 1px solid #1e293b;
}

.footer-main-core {
  padding: 4rem 0;
}

.footer-grid-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid-row {
    grid-template-columns: repeat(12, 1fr);
  }
}

.footer-brand-segment {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .footer-brand-segment {
    grid-column: span 5;
  }
}

.footer-logo-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo-cube {
  width: 32px;
  height: 32px;
  background-color: var(--color-orange-500);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1px;
  box-shadow: var(--shadow-sm);
}

.footer-logo-cube span {
  font-weight: 900;
  color: var(--color-orange-600);
  font-size: 0.75rem;
}

.footer-logo-white-box {
  background-color: var(--color-white);
  border-radius: 6px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-brand-lbl {
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--color-white);
  letter-spacing: 0.1em;
  line-height: 1;
}

.footer-brand-text {
  font-size: 0.75rem;
  color: var(--color-grey-450);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-socials-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-button-card {
  padding: 0.5rem;
  background-color: #1e293b;
  border-radius: 8px;
  color: var(--color-grey-400);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  border: none;
  cursor: pointer;
}

.social-button-card:hover {
  background-color: var(--color-royal-650);
  color: var(--color-white);
}

.social-button-card.orange-hover:hover {
  background-color: var(--color-orange-500);
}

.footer-links-segment {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .footer-links-segment {
    grid-column: span 3;
  }
}

.footer-segment-title {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  padding-left: 0.5rem;
  border-left: 2px solid var(--color-orange-500);
}

.footer-segment-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  font-size: 0.75rem;
}

.footer-segment-list button {
  background: none;
  border: none;
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
  text-align: left;
  cursor: pointer;
  padding: 0;
  transition: var(--transition-fast);
}

.footer-segment-list button:hover, .footer-segment-list a:hover {
  color: var(--color-white);
  text-decoration: underline;
}

.footer-inquiries-segment {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .footer-inquiries-segment {
    grid-column: span 4;
  }
}

.footer-inquiries-segment .footer-segment-title {
  border-left-color: var(--color-royal-500);
}

.footer-inquiries-desc {
  font-size: 0.75rem;
  color: var(--color-grey-450);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-active-badge-card {
  background-color: #1e293b;
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid #334155;
}

.footer-badge-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.badge-micro-title {
  font-size: 9px;
  color: var(--color-grey-450);
  text-transform: uppercase;
  font-weight: 700;
}

.footer-badge-number-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.25rem;
}

.footer-phone-badge {
  font-size: 0.75rem;
  font-family: monospace;
  font-weight: 700;
  color: var(--color-white);
}

.footer-adjust-btn {
  background-color: var(--color-royal-600);
  border: none;
  color: var(--color-white);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.footer-adjust-btn:hover {
  background-color: var(--color-royal-700);
}

.footer-bottom-deck {
  background-color: #0f172a;
  padding: 1.5rem 0;
  border-top: 1px solid #1e293b;
  font-size: 0.75rem;
  color: var(--color-grey-550);
}

.footer-bottom-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom-container {
    flex-direction: row;
    text-align: left;
  }
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.footer-scroll-top-btn {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  cursor: pointer;
  color: var(--color-grey-500);
  transition: var(--transition-fast);
}

.footer-scroll-top-btn:hover {
  color: var(--color-white);
}


/* --- DETAIL SPEC MODAL PLAN OVERLAY --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(17, 24, 39, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 0.75rem;
  overflow-y: auto;
  animation: fadeIn 0.2s ease-out;
}

.modal-overlay.hidden {
  display: none;
}

.modal-canvas {
  background-color: var(--color-white);
  border-radius: 24px;
  box-shadow: var(--shadow-2xl);
  max-width: 56rem;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  border: 1px solid rgba(229, 231, 235, 0.5);
  display: flex;
  flex-direction: column;
  animation: zoomIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 640px) {
  .modal-canvas {
    max-height: 88vh;
  }
}

.modal-header {
  padding: 1.25rem;
  border-bottom: 1px solid rgba(243, 244, 246, 0.8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background-color: var(--color-white);
  z-index: 10;
}

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

.modal-badge-theme {
  background-color: var(--color-royal-50);
  color: var(--color-royal-700);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.625rem;
  border-radius: 6px;
}

.modal-header-ref {
  font-size: 0.75rem;
  font-family: monospace;
  color: var(--color-grey-450);
}

.modal-close-icon {
  border: none;
  background: none;
  padding: 0.5rem;
  color: var(--color-grey-400);
  cursor: pointer;
  border-radius: 100%;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close-icon:hover {
  color: var(--color-grey-700);
  background-color: var(--color-grey-100);
}

.modal-double-body {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .modal-double-body {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

.modal-left-column {
  padding: 1.25rem;
  border-bottom: 1px solid var(--color-grey-100);
}

@media (min-width: 768px) {
  .modal-left-column {
    border-bottom: none;
    border-right: 1px solid var(--color-grey-100);
    padding: 1.5rem;
  }
}

.modal-hero-photo-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  background-color: var(--color-grey-50);
  overflow: hidden;
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  border: 1px solid var(--color-grey-200);
  margin-bottom: 1.5rem;
}

.modal-hero-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-specs-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-grey-400);
  margin-bottom: 0.875rem;
}

.modal-specs-title.border-top {
  border-top: 1px solid var(--color-grey-100);
  padding-top: 1rem;
  margin-top: 1.5rem;
}

.item-bullet-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.item-bullet-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--color-grey-600);
}

.item-bullet-features-list li i {
  color: var(--color-royal-500);
  flex-shrink: 0;
  margin-top: 2px;
}

.specs-grid-panel {
  background-color: var(--color-grey-50);
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid var(--color-grey-200);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.specs-sheet-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-grey-150);
}

.specs-sheet-row:last-child {
  border-bottom: none;
}

.specs-sheet-label {
  color: var(--color-grey-400);
  font-weight: 500;
}

.specs-sheet-value {
  color: var(--color-grey-800);
  font-weight: 600;
  text-align: right;
  max-width: 12.5rem;
}

.modal-right-column {
  padding: 1.25rem;
  background-color: rgba(243, 244, 246, 0.2);
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .modal-right-column {
    padding: 1.5rem;
  }
}

.modal-product-intro-block {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-grey-200);
}

.modal-product-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-grey-900);
  line-height: 1.2;
}

.modal-product-tagline {
  font-size: 0.75rem;
  color: var(--color-royal-650);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  margin-top: 4px;
}

.modal-rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 0.5rem;
}

.modal-rating-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--color-orange-500);
}

.modal-rating-text-label {
  font-size: 0.75rem;
  color: var(--color-grey-500);
  font-weight: 500;
}

.modal-product-price-row {
  margin-top: 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.modal-price-text {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-grey-900);
}

.modal-stock-badge {
  font-size: 0.75rem;
  font-weight: 600;
  background-color: #d1fae5;
  color: #065f46;
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
}

.modal-description-paragraph {
  font-size: 0.75rem;
  color: var(--color-grey-600);
  margin-top: 0.75rem;
  line-height: 1.5;
}

.modal-form-area {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-form-header-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  color: var(--color-royal-800);
}

.modal-input-group {
  display: flex;
  flex-direction: column;
}

.modal-input-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-grey-600);
  margin-bottom: 4px;
}

.modal-text-input, .modal-select-dropdown {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--color-grey-200);
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  background-color: var(--color-white);
}

.modal-text-input:focus, .modal-select-dropdown:focus {
  outline: none;
  border-color: var(--color-royal-500);
}

.modal-form-double-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .modal-form-double-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.qty-stepper-control {
  display: flex;
  border: 1px solid var(--color-grey-200);
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  background-color: var(--color-white);
  user-select: none;
}

.qty-stepper-btn {
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.375rem 0.625rem;
  cursor: pointer;
  color: var(--color-grey-550);
  transition: var(--transition-fast);
  text-align: center;
  flex: 1;
}

.qty-stepper-btn:hover {
  background-color: var(--color-grey-100);
}

.qty-stepper-input {
  width: 3rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  border: none;
  border-left: 1px solid var(--color-grey-200);
  border-right: 1px solid var(--color-grey-200);
}

/* Chrome/Safari spinner hiding */
.qty-stepper-input::-webkit-outer-spin-button,
.qty-stepper-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.qty-stepper-input[type=number] {
  -moz-appearance: textfield;
}

.modal-textarea-input {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--color-grey-200);
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  background-color: var(--color-white);
  resize: none;
}

.modal-textarea-input:focus {
  outline: none;
  border-color: var(--color-royal-500);
}

.whatsapp-preview-label {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-grey-400);
  display: block;
  margin-bottom: 0.5rem;
}

.whatsapp-bubble-envelope {
  background-color: #dcf8c6;
  border: 1px solid #c7eba4;
  color: #303030;
  padding: 1rem;
  border-radius: 16px;
  position: relative;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.whatsapp-bubble-header {
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(196, 230, 160, 0.8);
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}

.whatsapp-bubble-ping-indicator {
  width: 6px;
  height: 6px;
  background-color: #128c7e;
  border-radius: 100%;
  animation: pulse 2s infinite;
}

.whatsapp-bubble-dest-text {
  font-size: 10px;
  font-weight: 700;
  color: #128c7e;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.whatsapp-bubble-content-text {
  font-family: var(--font-sans);
  font-size: 11px;
  white-space: pre-wrap;
  line-height: 1.5;
  overflow-x: auto;
  max-height: 140px;
  user-select: none;
}

.whatsapp-bubble-timestamp {
  position: absolute;
  bottom: 8px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  color: var(--color-grey-450);
}

.whatsapp-bubble-timestamp i {
  color: #34b7f1;
}

.modal-submit-enquiry-btn {
  width: 100%;
  background-color: var(--color-orange-500);
  border: none;
  font-weight: 700;
  padding: 0.875rem 1.5rem;
  border-radius: 12px;
  color: var(--color-white);
  box-shadow: 0 10px 15px -3px rgba(255, 107, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
  margin-top: 1rem;
}

.modal-submit-enquiry-btn:hover {
  background-color: var(--color-orange-600);
}

.modal-submit-enquiry-btn:active {
  transform: scale(0.98);
}

.modal-submit-disclaimer-p {
  font-size: 10px;
  text-align: center;
  color: var(--color-grey-400);
  margin-top: 0.5rem;
  line-height: 1.3;
}


/* --- SETTINGS DRAWER STRIP PANEL --- */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(17, 24, 39, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 50;
  animation: fadeIn 0.2s ease-out;
}

.drawer-overlay.hidden {
  display: none;
}

.drawer-canvas {
  background-color: var(--color-white);
  width: 100%;
  max-width: 28rem;
  height: 100%;
  box-shadow: var(--shadow-2xl);
  display: flex;
  flex-direction: column;
  animation: slideInFromRight 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-grey-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.drawer-header-icon-box {
  padding: 0.5rem;
  background-color: var(--color-royal-50);
  color: var(--color-royal-600);
  border-radius: 8px;
}

.drawer-header-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-grey-900);
}

.drawer-close-btn {
  border: none;
  background: none;
  padding: 0.5rem;
  color: var(--color-grey-400);
  cursor: pointer;
  border-radius: 100%;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-close-btn:hover {
  color: var(--color-grey-700);
  background-color: var(--color-grey-100);
}

.drawer-body-inner {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
}

.drawer-vertical-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.drawer-info-block {
  background-color: var(--color-royal-50);
  border-radius: 16px;
  padding: 1rem;
  border: 1px solid var(--color-royal-100);
  font-size: 0.75rem;
  color: var(--color-royal-800);
  line-height: 1.5;
}

.drawer-info-block-bold {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 0.375rem;
}

.drawer-info-block-bold i {
  color: var(--color-royal-600);
}

.drawer-input-row {
  display: flex;
  flex-direction: column;
}

.drawer-input-row label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-grey-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.drawer-phone-input-wrap {
  position: relative;
}

.drawer-phone-input-wrap span {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-grey-450);
  font-weight: 700;
  font-family: monospace;
  font-size: 0.875rem;
}

.drawer-phone-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2rem;
  border: 1px solid var(--color-grey-300);
  border-radius: 12px;
  font-family: monospace;
  font-size: 0.875rem;
  background-color: var(--color-grey-50);
}

.drawer-phone-input:focus {
  outline: none;
  border-color: var(--color-royal-500);
  background-color: var(--color-white);
}

.drawer-phone-help {
  font-size: 10px;
  color: var(--color-grey-450);
  margin-top: 0.625rem;
  line-height: 1.4;
}

.drawer-presets-block {
  border-top: 1px solid var(--color-grey-100);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.drawer-presets-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-grey-550);
}

.drawer-presets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.drawer-preset-btn {
  padding: 0.5rem;
  border: 1px solid var(--color-grey-200);
  border-radius: 8px;
  text-align: left;
  font-size: 11px;
  font-family: monospace;
  background-color: var(--color-white);
  cursor: pointer;
  transition: var(--transition-fast);
}

.drawer-preset-btn:hover {
  border-color: var(--color-royal-500);
}

.drawer-actions-panel {
  border-top: 1px solid var(--color-grey-200);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
}

.drawer-action-btn-secondary {
  flex: 1;
  padding: 0.75rem 0;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  border: 1px solid var(--color-grey-300);
  border-radius: 12px;
  background-color: var(--color-white);
  color: var(--color-grey-500);
  cursor: pointer;
  transition: var(--transition-fast);
}

.drawer-action-btn-secondary:hover {
  color: var(--color-grey-750);
  background-color: var(--color-grey-50);
}

.drawer-action-btn-primary {
  flex: 1;
  padding: 0.75rem 0;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  background-color: var(--color-royal-600);
  color: var(--color-white);
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(0, 51, 160, 0.1);
  transition: var(--transition-fast);
}

.drawer-action-btn-primary:hover {
  background-color: var(--color-royal-700);
}


/* --- CHAT SUPPORT WIDGET CORE LAYOUT --- */
.floating-assistant-wrap {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.875rem;
  user-select: none;
}

.assistant-panel {
  display: flex;
  flex-direction: column;
  background-color: var(--color-white);
  border-radius: 24px;
  box-shadow: var(--shadow-2xl);
  border: 1px solid rgba(229, 231, 235, 0.6);
  width: 20rem;
  max-width: 90vw;
  overflow: hidden;
  animation: slideInFromBottom 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideInFromBottom {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.assistant-panel.hidden {
  display: none;
}

.assistant-header {
  background-color: var(--color-royal-800);
  color: var(--color-white);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}

.assistant-headset-box {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background-color: rgba(255, 107, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.assistant-identity-block {
  display: flex;
  flex-direction: column;
}

.assistant-name-label {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1;
}

.assistant-status-line {
  font-size: 10px;
  color: var(--color-royal-200);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.assistant-badge-green-pulse {
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: #34d399;
  animation: pulse 2s infinite;
}

.assistant-header-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.assistant-header-close:hover {
  color: var(--color-white);
}

.assistant-chat-scroller {
  padding: 1rem;
  background-color: rgba(243, 244, 246, 0.2);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-height: 280px;
  overflow-y: auto;
}

.assistant-intro-bubble {
  background-color: var(--color-white);
  border: 1px solid rgba(229, 231, 235, 1);
  padding: 0.75rem;
  border-radius: 16px;
  border-top-left-radius: 0;
  font-size: 0.75rem;
  color: var(--color-grey-700);
  line-height: 1.4;
  max-width: 85%;
}

.assistant-intro-bubble.animate-bounce {
  animation: bounce 1s 1;
}

.assistant-fast-templates-box {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.assistant-fast-q-btn {
  padding: 0.625rem;
  background-color: var(--color-royal-50);
  border: 1px solid var(--color-royal-100);
  color: var(--color-royal-800);
  font-size: 11px;
  font-weight: 600;
  text-align: left;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  width: 100%;
}

.assistant-fast-q-btn:hover {
  background-color: var(--color-royal-100);
}

.assistant-fast-q-btn i {
  opacity: 0.6;
}

.assistant-fast-q-btn.orange-btn {
  background-color: var(--color-orange-50);
  border-color: var(--color-orange-100);
  color: #b45309;
}

.assistant-fast-q-btn.orange-btn:hover {
  background-color: var(--color-orange-100);
}

.assistant-fast-q-btn.neutral-btn {
  background-color: var(--color-grey-50);
  border-color: var(--color-grey-200);
  color: var(--color-grey-800);
}

.assistant-fast-q-btn.neutral-btn:hover {
  background-color: var(--color-grey-200);
}

.assistant-footer-label-strip {
  padding: 0.75rem;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-grey-200);
  text-align: center;
}

.assistant-footer-label-strip span {
  font-size: 9px;
  color: var(--color-grey-450);
  font-weight: 500;
}

.assistant-main-toggle-trigger {
  width: 56px;
  height: 56px;
  background-color: var(--color-orange-500);
  color: var(--color-white);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-2xl);
  border: 2px solid var(--color-white);
  cursor: pointer;
  position: relative;
  transition: transform 0.2s, background-color var(--transition-fast);
}

.assistant-main-toggle-trigger:hover {
  transform: scale(1.05);
  background-color: var(--color-orange-600);
}

.assistant-main-toggle-trigger:active {
  transform: scale(0.95);
}

.assistant-main-toggle-trigger i {
  position: absolute;
  transition: transform 0.2s, opacity 0.2s;
}

.assistant-main-toggle-trigger .icon-headset {
  opacity: 0;
  transform: scale(0);
}

.assistant-main-toggle-trigger:hover .icon-message {
  opacity: 0;
  transform: scale(0);
}

.assistant-main-toggle-trigger:hover .icon-headset {
  opacity: 1;
  transform: scale(1);
}


/* --- NOTIFICATION TOAST FEEDBACK --- */
.toast-notice {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-grey-900);
  border: 1px solid #1e293b;
  color: var(--color-white);
  padding: 0.875rem 1.25rem;
  border-radius: 16px;
  box-shadow: var(--shadow-2xl);
  display: flex;
  align-items: center;
  gap: 0.625rem;
  z-index: 9999;
  transition: opacity 0.3s;
}

.toast-notice.hidden {
  display: none;
}

.toast-notice.opacity-0 {
  opacity: 0;
}

.toast-notice.opacity-100 {
  opacity: 1;
}

.toast-icon-circle {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}

.toast-text-label {
  font-size: 0.75rem;
  font-weight: 600;
}
