/* 
  =========================================
  AEROLUXE - Premium AC Spare Parts Website
  CSS DESIGN SYSTEM & STYLESHEET
  =========================================
  Theme: Luxury White, Platinum Silver, Ice Blue
*/

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@200;300;400;500;600;700;800&display=swap');

/* --- Custom Properties (Design System) --- */
:root {
  /* Core Brand Colors - STRICT BLACK & WHITE */
  --bg-primary: #ffffff;
  --bg-secondary: #f4f4f4;
  --bg-tertiary: #ebebeb;
  --text-primary: #000000;
  --text-secondary: #333333;
  --text-muted: #666666;
  --border-color: #e0e0e0;
  --border-hover: #000000;
  --accent-color: #000000;
  --accent-light: #f0f0f0;
  --accent-cool: #333333;
  --gold-accent: #000000;

  /* Shadows (Soft & Luxury) */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 25px rgba(0, 119, 255, 0.15);

  /* Fonts */
  --font-headings: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-lux: 0.8s cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --header-height: 80px;
  --max-width: 1400px;
}

/* --- Base Reset & Setup --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-headings);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* --- Layout Utility Classes --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 8rem 0;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .section-padding {
    padding: 5rem 0;
  }
}

@media (max-width: 600px) {

  .grid-4,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 1.25rem;
  }

  .hero-slider-wrapper {
    border-radius: 16px;
    padding: 0.75rem;
  }

  .hero-slider-container {
    height: 320px;
    border-radius: 10px;
  }

  .hero-slide-img-box {
    height: calc(100% - 75px);
    border-radius: 8px;
  }

  .hero-slide-info {
    height: 75px;
    padding-top: 0.75rem;
  }

  .hero-slide-title {
    font-size: 0.95rem;
  }

  .hero-slide-tag {
    font-size: 0.65rem;
    padding: 0.15rem 0.5rem;
  }
}

/* --- Typography Utilities --- */
.title-large {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.title-large span {
  font-weight: 700;
  background: linear-gradient(135deg, var(--text-primary), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title-medium {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}

.title-medium span {
  font-weight: 700;
}

.subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  font-weight: 300;
}

.section-header {
  margin-bottom: 4rem;
  position: relative;
}

.section-header::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-cool));
}

.section-header.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-header.center::after {
  left: 50%;
  transform: translateX(-50%);
}

/* --- Buttons & Interactive Elements --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.25rem;
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--text-primary);
  color: var(--bg-primary);
  border: 1px solid var(--text-primary);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--text-primary);
  background-color: rgba(0, 0, 0, 0.02);
  transform: translateY(-2px);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  position: relative;
  padding-bottom: 4px;
}

.btn-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
  transition: var(--transition-smooth);
}

.btn-text:hover {
  color: var(--accent-color);
}

.btn-text:hover::after {
  width: 100%;
}

/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  height: 70px;
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  font-weight: 300;
  color: var(--text-secondary);
}

.logo-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-cool));
  border-radius: 4px;
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.logo-icon::before {
  content: '';
  position: absolute;
  top: 25%;
  left: 25%;
  width: 50%;
  height: 50%;
  border: 2px solid white;
  border-radius: 50%;
  animation: logo-spin 6s linear infinite;
}

@keyframes logo-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--font-headings);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.action-btn {
  background: none;
  cursor: pointer;
  padding: 0.5rem;
  position: relative;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.action-btn:hover {
  color: var(--accent-color);
  transform: translateY(-1px);
}

.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background-color: var(--accent-color);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 24px;
  cursor: pointer;
  z-index: 1100;
}

.mobile-nav-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-smooth);
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: -400px;
    right: 5%;
    width: 90%;
    max-width: none;
    height: auto;
    background-color: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 1.5rem;
    gap: 0.8rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
  }

  .nav-links.open {
    top: calc(100% + 15px);
    opacity: 1;
    pointer-events: auto;
  }
  
  .nav-links .nav-link {
    width: 100%;
    text-align: center;
    padding: 1.2rem 1.5rem;
    background-color: #FAFAFA;
    border: 1px solid #EEEEEE;
    border-radius: 50px;
    color: #111;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
    transition: all 0.3s ease;
  }
  
  .nav-links .nav-link::after {
    display: none;
  }

  .nav-links .nav-link:hover,
  .nav-links .nav-link.active {
    background-color: #FDFDF7;
    color: var(--gold-accent);
    border-color: var(--gold-accent);
    box-shadow: 0 4px 10px rgba(201, 160, 80, 0.1);
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .mobile-nav-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .mobile-nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .mobile-nav-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* --- New Hero Section (Screenshot-inspired) --- */
.hero-new-container {
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(0, 210, 255, 0.04) 0%, transparent 40%),
              radial-gradient(circle at 10% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 40%),
              #ffffff;
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 6rem;
  overflow: hidden;
}

.hero-grid-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

/* Left Column Styling */
.hero-content-col {
  display: flex;
  flex-direction: column;
}

.hero-tag-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-bottom: 1.5rem;
}

.hero-tag-badge span {
  font-family: var(--font-headings);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-color);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background-color: var(--accent-light);
  padding: 0.35rem 0.85rem;
  border-radius: 4px;
}

.hero-title-main {
  font-family: var(--font-headings);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

/* inline pill and avatars inside heading */
.title-with-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--text-primary), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.inline-avatar-capsule {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #f1f3f5;
  border: 1px solid var(--border-color);
  padding: 0.25rem 0.75rem 0.25rem 0.5rem;
  border-radius: 50px;
  -webkit-text-fill-color: initial; /* Reset text gradient for capsule */
  vertical-align: middle;
  height: 38px;
  box-shadow: var(--shadow-sm);
  margin-left: 0.25rem;
}

.overlap-avatars {
  display: inline-flex;
  align-items: center;
}

.avatar-img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
  margin-right: -8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.capsule-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-left: 10px;
  letter-spacing: 0.02em;
}

.hero-description-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 620px;
}

.hero-buttons-row {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 4rem;
}

.btn-discover {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.25rem;
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background-color: var(--text-primary);
  color: #ffffff;
  border: 1px solid var(--text-primary);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.btn-discover:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: #ffffff;
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn-explore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.25rem;
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.btn-explore:hover {
  border-color: var(--text-primary);
  background-color: rgba(18, 21, 26, 0.02);
  transform: translateY(-2px);
}

/* Stats Row Styling */
.hero-stats-row {
  display: flex;
  gap: 3rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

.hero-stat-card {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-headings);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* Right Column (Stacked Cards) */
.hero-promos-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.promo-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  overflow: hidden;
}

.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-hover);
}

.promo-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  padding-right: 1rem;
}

.promo-discount {
  font-family: var(--font-headings);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-cool);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.promo-title {
  font-family: var(--font-headings);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.promo-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-family: var(--font-headings);
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  background-color: var(--text-primary);
  transition: var(--transition-fast);
}

.promo-link-btn:hover {
  background-color: var(--accent-color);
  box-shadow: var(--shadow-glow);
}

.promo-img-box {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  background-color: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--border-color);
  flex-shrink: 0;
}

.promo-img-box img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  transition: transform var(--transition-smooth);
}

.promo-card:hover .promo-img-box img {
  transform: scale(1.1) rotate(2deg);
}

/* Floating Rotating Badge */
.floating-badge-wrapper {
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  z-index: 5;
  pointer-events: none;
}

.rotating-badge {
  position: relative;
  width: 120px;
  height: 120px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  transition: var(--transition-smooth);
  border: 1px solid var(--border-color);
}

.rotating-badge:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.rotating-badge svg {
  animation: spin 15s linear infinite;
  width: 100%;
  height: 100%;
}

.badge-center-icon {
  position: absolute;
  width: 44px;
  height: 44px;
  background-color: var(--accent-light);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Responsiveness */
@media (max-width: 1100px) {
  .floating-badge-wrapper {
    display: none;
  }
}

@media (max-width: 968px) {
  .hero-new-container {
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 4rem;
  }
  
  .hero-grid-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-buttons-row {
    margin-bottom: 3rem;
  }
  
  .hero-stats-row {
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-buttons-row {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .hero-stats-row {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .promo-card {
    padding: 1.25rem;
  }
  
  .promo-title {
    font-size: 1.05rem;
  }
}

/* --- Features Section --- */
.features-section {
  background-color: var(--bg-secondary);
}

.feature-card {
  background-color: var(--bg-primary);
  padding: 3rem 2.5rem;
  border: 1px solid var(--border-color);
  position: relative;
  transition: var(--transition-smooth);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-cool));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 2rem;
  display: inline-block;
}

.feature-card h3 {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 300;
}

/* --- Category Section --- */
.category-card {
  height: 400px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
  cursor: pointer;
}

.category-card-bg {
  width: 100%;
  height: 100%;
  background-color: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-lux);
}

.category-card-bg svg {
  width: 100px;
  height: 100px;
  color: var(--border-hover);
  transition: var(--transition-smooth);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.7;
  transition: var(--transition-lux);
}

.category-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
  color: white;
  z-index: 2;
  transition: var(--transition-smooth);
}

/* In luxury theme, if we have dark text we can make the text white on hover or adapt */
.category-card:hover .category-card-bg {
  transform: scale(1.05);
}

.category-card:hover .category-card-bg svg {
  color: var(--accent-color);
  transform: rotate(15deg);
}

.category-card:hover img {
  transform: scale(1.05);
  opacity: 0.95;
}

.category-content h3 {
  font-size: 1.5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.category-content p {
  font-size: 0.85rem;
  font-weight: 300;
  opacity: 0.8;
  transform: translateY(10px);
  opacity: 0;
  transition: var(--transition-smooth);
}

.category-card:hover .category-content p {
  transform: translateY(0);
  opacity: 1;
}

.category-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-cool);
}

/* --- Banner Showcase --- */
.showcase-banner {
  background: radial-gradient(circle at 10% 20%, #12151a 0%, #1a1e26 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.showcase-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle at 70% 50%, rgba(0, 119, 255, 0.15) 0%, transparent 70%);
  z-index: 1;
}

.showcase-banner .container {
  position: relative;
  z-index: 2;
}

.showcase-banner h2 {
  font-weight: 300;
}

.showcase-banner h2 span {
  color: var(--accent-cool);
  font-weight: 700;
}

.showcase-banner p {
  font-weight: 300;
  opacity: 0.8;
  margin-bottom: 2.5rem;
}

.showcase-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.spec-item {
  border-left: 2px solid var(--accent-color);
  padding-left: 1.5rem;
}

.spec-item h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.spec-item p {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0;
}

.showcase-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
}

.showcase-box {
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
}

.showcase-box svg {
  width: 120px;
  height: 120px;
  color: rgba(255, 255, 255, 0.2);
}

.showcase-box::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 1px solid rgba(0, 210, 255, 0.2);
  pointer-events: none;
}

/* --- Product Page Layout --- */
.product-page-layout {
  padding-top: calc(var(--header-height) + 3rem);
}

.product-shop-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
}

@media (max-width: 992px) {
  .product-shop-grid {
    grid-template-columns: 1fr;
  }
}

/* Sidebar / Filters */
.filter-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  height: fit-content;
}

.filter-widget {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 2rem;
  margin-bottom: 2rem;
}

.filter-widget h3 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-color);
}

.filter-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.filter-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.filter-item:hover,
.filter-item.active {
  color: var(--accent-color);
}

.filter-count {
  font-size: 0.75rem;
  background-color: var(--bg-tertiary);
  color: var(--text-secondary);
  padding: 2px 8px;
  border-radius: 10px;
}

/* Search and Sort bar */
.shop-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  gap: 1.5rem;
}

.search-wrapper {
  position: relative;
  flex-grow: 1;
  max-width: 400px;
}

.search-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.search-input:focus {
  border-color: var(--text-primary);
  background-color: var(--bg-primary);
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.sort-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sort-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

.sort-select {
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  border: 1px solid var(--border-color);
  background-color: var(--bg-primary);
  font-size: 0.9rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%235a6578' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

/* Product Cards Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .shop-controls {
    flex-direction: column;
    align-items: stretch;
  }
}

.product-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  position: relative;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-hover);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--accent-color);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  z-index: 10;
}

.product-image-box {
  position: relative;
  padding-bottom: 100%;
  /* 1:1 Aspect Ratio */
  background-color: var(--bg-secondary);
  overflow: hidden;
}

.product-image-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.product-card:hover .product-image-box img {
  transform: scale(1.05);
}

.product-image-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 1.5rem;
  text-align: center;
}

.product-image-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--border-hover);
  margin-bottom: 1rem;
}

.product-actions-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
  display: flex;
  gap: 0.5rem;
  transform: translateY(100%);
  transition: var(--transition-smooth);
}

.product-card:hover .product-actions-overlay {
  transform: translateY(0);
}

.product-action-btn {
  flex-grow: 1;
  padding: 0.75rem 0.5rem;
  background-color: var(--text-primary);
  color: var(--bg-primary);
  font-family: var(--font-headings);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.product-action-btn:hover {
  background-color: var(--accent-color);
}

.product-action-icon-btn {
  width: 38px;
  height: 38px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.product-action-icon-btn:hover {
  background-color: var(--bg-secondary);
  border-color: var(--text-primary);
}

.product-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.product-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.product-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.product-price {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.1rem;
}

.product-rating {
  display: flex;
  gap: 2px;
  color: #ffc107;
  font-size: 0.75rem;
}

/* --- Contact Page Layout --- */
.contact-hero {
  background-color: var(--bg-secondary);
  text-align: center;
  padding: 8rem 0 4rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  margin-top: -3rem;
  position: relative;
  z-index: 10;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-top: 2rem;
  }
}

.contact-info-card {
  background-color: var(--text-primary);
  color: white;
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 500px;
}

.contact-info-card h2 {
  font-size: 1.8rem;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.contact-info-card h2 span {
  font-weight: 700;
  color: var(--accent-cool);
}

.contact-info-card p {
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 3rem;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--accent-cool);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-detail-text h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-detail-text p {
  margin-bottom: 0;
  color: white;
  font-size: 1rem;
}

.contact-socials {
  display: flex;
  gap: 1rem;
  margin-top: 4rem;
}

.social-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
  border-radius: 50%;
}

.social-icon-link:hover {
  transform: translateY(-4px) scale(1.1);
  opacity: 0.9;
}

/* Contact Form */
.contact-form-wrapper {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 4rem;
  box-shadow: var(--shadow-md);
}

@media (max-width: 600px) {
  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }
}

.contact-form-title {
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.contact-form-desc {
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 3rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-group {
  position: relative;
}

.form-group.full-width {
  grid-column: span 2;
}

@media (max-width: 600px) {
  .form-group.full-width {
    grid-column: span 1;
  }
}

.form-control {
  width: 100%;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
  background-color: transparent;
  font-size: 1rem;
  color: var(--text-primary);
  transition: var(--transition-smooth);
}

.form-control:focus {
  border-bottom-color: var(--text-primary);
}

.form-label {
  position: absolute;
  left: 0;
  top: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  pointer-events: none;
  transition: var(--transition-smooth);
}

.form-control:focus~.form-label,
.form-control:not(:placeholder-shown)~.form-label {
  top: -1rem;
  font-size: 0.75rem;
  color: var(--accent-color);
  font-weight: 600;
}

textarea.form-control {
  min-height: 120px;
  resize: none;
}

/* Luxury Map Placeholder */
.map-section {
  width: 100%;
  height: 450px;
  background-color: var(--bg-secondary);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-color);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #ffffff 0%, #e9ecef 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}

.map-placeholder svg {
  width: 60px;
  height: 60px;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* --- Cart Drawer (Sidebar) --- */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 450px;
  max-width: 100%;
  height: 100vh;
  background-color: var(--bg-primary);
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  transition: var(--transition-lux);
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  right: 0;
}

.cart-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.cart-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-header {
  padding: 2rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cart-close-btn {
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-secondary);
}

.cart-close-btn:hover {
  color: var(--text-primary);
}

.cart-body {
  flex-grow: 1;
  padding: 2rem;
  overflow-y: auto;
}

.cart-empty-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.cart-empty-message svg {
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
  color: var(--border-color);
}

.cart-item {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.cart-item-image {
  width: 80px;
  height: 80px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.cart-item-image svg {
  width: 32px;
  height: 32px;
  color: var(--text-muted);
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.cart-item-category {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.cart-item-price {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.95rem;
}

.cart-item-qty-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
}

.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
}

.qty-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 700;
  transition: var(--transition-fast);
}

.qty-btn:hover {
  background-color: var(--bg-secondary);
}

.qty-val {
  width: 30px;
  text-align: center;
  font-size: 0.85rem;
}

.cart-item-remove {
  cursor: pointer;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cart-item-remove:hover {
  color: #ff3333;
}

.cart-footer {
  padding: 2rem;
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-secondary);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  font-family: var(--font-headings);
  font-weight: 600;
}

.cart-summary-total {
  font-size: 1.2rem;
  font-weight: 700;
}

.cart-checkout-btn {
  width: 100%;
  justify-content: center;
}

/* --- Quick View Modal --- */
.quickview-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  width: 90%;
  max-width: 900px;
  background-color: var(--bg-primary);
  z-index: 2100;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition-smooth), opacity var(--transition-smooth);
}

@media (max-width: 768px) {
  .quickview-modal {
    grid-template-columns: 1fr;
    max-height: 90vh;
    overflow-y: auto;
  }
}

.quickview-modal.open {
  transform: translate(-50%, -50%);
  opacity: 1;
  pointer-events: auto;
}

.quickview-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  z-index: 2099;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.quickview-modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.quickview-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  cursor: pointer;
  color: var(--text-primary);
  z-index: 10;
}

.quickview-image-container {
  background-color: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  position: relative;
  min-height: 400px;
}

.quickview-image-container svg {
  width: 150px;
  height: 150px;
  color: var(--border-hover);
}

.quickview-image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quickview-details {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 600px) {
  .quickview-details {
    padding: 2rem 1.5rem;
  }
}

.quickview-category {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.quickview-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.quickview-price {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.quickview-desc {
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.quickview-action-row {
  display: flex;
  gap: 1rem;
}

/* --- Footer --- */
.footer {
  background-color: #12151a;
  color: white;
  padding: 6rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.footer-brand .logo {
  color: white;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-weight: 300;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  max-width: 300px;
}

.footer-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: var(--accent-cool);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 300;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-newsletter p {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
  transition: var(--transition-smooth);
}

.newsletter-form:focus-within {
  border-bottom-color: var(--accent-cool);
}

.newsletter-input {
  flex-grow: 1;
  background: none;
  border: none;
  color: white;
  font-size: 0.9rem;
  padding: 0.5rem 0;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.newsletter-btn {
  color: var(--accent-cool);
  cursor: pointer;
  padding: 0 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* --- Scroll Animation Helpers --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.15s;
}

.reveal-delay-2 {
  transition-delay: 0.3s;
}

.reveal-delay-3 {
  transition-delay: 0.45s;
}

.reveal-delay-4 {
  transition-delay: 0.6s;
}

/* Custom Luxury Toast Alert */
.toast-container {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.toast {
  background-color: var(--text-primary);
  color: white;
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-lg);
  font-family: var(--font-headings);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: toastIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes toastIn {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.toast.fade-out {
  animation: toastOut 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes toastOut {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  100% {
    transform: translateX(-100%);
    opacity: 0;
  }
}

/* Custom WhatsApp Buy Now Hover Accent */
.buy-now-card-btn:hover {
  background-color: #25D366 !important;
  border-color: #25D366 !important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4) !important;
  color: #ffffff !important;
}
/* Floating Action Buttons */
@keyframes pulseWhatsApp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); transform: scale(1); }
  50% { transform: scale(1.05); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); transform: scale(1); }
}

@keyframes pulseCall {
  0% { box-shadow: 0 0 0 0 rgba(201, 160, 80, 0.7); transform: scale(1); }
  50% { transform: scale(1.05); }
  70% { box-shadow: 0 0 0 15px rgba(201, 160, 80, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 160, 80, 0); transform: scale(1); }
}

.floating-action-btn {
  position: fixed;
  bottom: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease, box-shadow 0.3s ease;
}

.floating-action-btn:hover {
  transform: translateY(-5px) scale(1.1) !important;
  color: #fff;
  animation: none !important; /* Stop pulse on hover */
}

.floating-action-btn svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.floating-action-btn:hover svg {
  transform: scale(1.1) rotate(5deg);
}

.floating-btn-whatsapp {
  right: 30px;
  background-color: #25D366;
  animation: pulseWhatsApp 2s infinite;
}

.floating-btn-whatsapp:hover {
  background-color: #20BA56;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6) !important;
}

.floating-btn-call {
  left: 30px;
  background-color: var(--gold-accent);
  animation: pulseCall 2s infinite;
  animation-delay: 1s; /* Offset the animation so they pulse alternatively */
}

.floating-btn-call:hover {
  background-color: #b08d46;
  box-shadow: 0 6px 20px rgba(201, 160, 80, 0.6) !important;
}

@media (max-width: 768px) {
  .floating-action-btn {
    bottom: 20px;
    width: 50px;
    height: 50px;
  }
  .floating-action-btn svg {
    width: 24px;
    height: 24px;
  }
  .floating-btn-whatsapp { right: 20px; }
  .floating-btn-call { left: 20px; }
}


/* Reviews Section */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.review-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-accent);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.reviewer-initial {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.reviewer-info h4 {
  font-family: var(--font-headings);
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.review-stars {
  color: var(--gold-accent);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.google-icon-small {
  margin-left: auto;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* FAQ Section */
.faq-container {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.active {
  border-color: var(--gold-accent);
}

.faq-question {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(255,255,255,0.02);
}

.faq-question h4 {
  font-family: var(--font-headings);
  font-size: 1.05rem;
  color: var(--text-primary);
  margin: 0;
  padding-right: 1rem;
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--gold-accent);
  transition: transform 0.3s ease;
  font-weight: 300;
  line-height: 1;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), padding 0.4s ease;
  padding: 0 2rem;
  background-color: rgba(0,0,0,0.1);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.reviewer-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-color);
}

/* ---- CTA Section ---- */
.cta-section {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  overflow: hidden;
}

.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 160, 80, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(37, 211, 102, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.cta-text {
  flex: 1;
  min-width: 260px;
}

.cta-title {
  font-family: var(--font-headings);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.cta-title span {
  color: var(--gold-accent);
}

.cta-subtitle {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 480px;
  font-weight: 300;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-family: var(--font-headings);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  white-space: nowrap;
}

.cta-btn:hover {
  transform: translateY(-3px) scale(1.04);
}

.cta-btn-whatsapp {
  background-color: #25D366;
  color: #fff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.cta-btn-whatsapp:hover {
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.cta-btn-call {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

.cta-btn-call:hover {
  background-color: #ffffff;
  color: #000000;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-buttons {
    justify-content: center;
  }
  .cta-subtitle {
    margin: 0 auto;
  }
}

/* Logo Image Styles */
.nav-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-logo-img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(1.1);
}

.logo-with-img {
  padding: 0;
  line-height: 1;
}

.nav-logo-name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-family: var(--font-headings);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.nav-logo-name span {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--gold-accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.logo-with-img {
  display: flex !important;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.hero-banner-inner {
  background-image: url('parts/hero-hvac-banner-light.png');
  background-size: cover;
  background-position: right center;
  padding: 8rem 5%;
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  position: relative;
  
  background-color: #ffffff;
}

.hero-banner-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: none; /* Removed dark overlay so showroom is bright */
  z-index: 1;
}

.hero-banner-subtitle {
  font-family: var(--font-headings);
  color: #000000;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 700;
  
  
  font-size: 1.9rem;
  text-shadow: 0 0 10px rgba(255,255,255,1), 0 0 20px rgba(255,255,255,0.9), 0 0 30px rgba(255,255,255,0.8);
}

.hero-banner-title {
  position: relative;
  z-index: 2;
  font-family: var(--font-headings);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  color: #000000; 
  line-height: 1.1;
  margin-bottom: 3rem;
  text-transform: uppercase;
  max-width: 900px;
  text-shadow: 0 0 10px rgba(255,255,255,0.9), 0 0 20px rgba(255,255,255,0.8), 0 0 30px rgba(255,255,255,0.6);
}

.hero-banner-counters {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  gap: 4rem;
  flex-wrap: wrap;
}

.counter-box {
  text-align: left;
}

.counter-val {
  font-family: var(--font-headings);
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0;
  line-height: 1;
  text-shadow: 0 0 10px rgba(255,255,255,0.9), 0 0 20px rgba(255,255,255,0.8), 0 0 30px rgba(255,255,255,0.6);
}

.counter-plus {
  color: var(--gold-accent);
}

.counter-label {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: #dddddd;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(255,255,255,0.9), 0 0 20px rgba(255,255,255,0.8), 0 0 30px rgba(255,255,255,0.6);
}

/* --- INFINITE PRODUCT MARQUEE --- */
.marquee-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.marquee-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.marquee-row {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 3rem;
  align-items: center;
  animation: scroll-left 40s linear infinite;
}

.track-right {
  animation: scroll-right 40s linear infinite;
}

.marquee-track img {
  transition: transform 0.3s ease;
  cursor: pointer;
}

.marquee-track img:hover {
  transform: scale(1.05);
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* --- MOBILE SPECIFIC FIXES --- */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }
  
  .products-grid .product-info {
    padding: 1rem !important;
  }
  
  .products-grid .product-title {
    font-size: 0.9rem !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.2;
  }
  
  .products-grid .btn {
    padding: 0.5rem !important;
    font-size: 0.75rem !important;
  }

  .products-grid .product-rating {
    margin-bottom: 0.75rem !important;
    font-size: 0.75rem !important;
  }
  
  .products-grid .product-category {
    font-size: 0.65rem !important;
  }
  
  /* Make the marquee smaller on mobile so it fits better too */
  .marquee-track img {
    height: 90px !important;
  }
  
  /* Disable hover jump/shadow on mobile scroll so screen doesnt glitch */
  .product-card:hover,
  .feature-card:hover,
  .promo-card:hover,
  .review-card:hover {
    transform: none !important;
    box-shadow: none !important;
    border-color: var(--border-color) !important;
  }
}

/* --- CUSTOM WHATSAPP WIDGET --- */
.whatsapp-live-widget {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  font-family: var(--font-body);
}

.wa-avatar-container {
  position: relative;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 3px solid #25D366;
  padding: 3px;
  background: white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: wa-pulse 2s infinite;
}

.wa-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.wa-live-badge {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ff3b30;
  color: white;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 12px;
  letter-spacing: 0.5px;
  border: 2px solid white;
  text-transform: uppercase;
}

.wa-chat-pill {
  background-color: white;
  border: 2px solid #25D366;
  color: #25D366;
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  animation: wa-blink 1.5s infinite;
}

@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes wa-blink {
  0%, 100% { opacity: 1; border-color: #25D366; color: #25D366; }
  50% { opacity: 0.6; border-color: transparent; color: #128C7E; }
}

@media (max-width: 576px) {
  .whatsapp-live-widget {
    left: 15px;
    bottom: 15px;
    gap: 10px;
  }
  .wa-avatar-container {
    width: 55px;
    height: 55px;
  }
  .wa-chat-pill {
    font-size: 13px;
    padding: 6px 14px;
  }
}

/* --- CUSTOM CALL WIDGET --- */
.call-live-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  text-decoration: none;
  font-family: var(--font-body);
}

.call-pill {
  background-color: #000000;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  animation: call-pulse 2s infinite;
}

.call-pill svg {
  fill: #ffffff;
}

.call-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  background-color: #333333;
}

@keyframes call-pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(0, 0, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); }
}

@media (max-width: 576px) {
  .call-live-widget {
    right: 15px;
    bottom: 85px; /* placed above bottom area so it doesnt overlap too much */
  }
  .call-pill {
    font-size: 14px;
    padding: 10px 18px;
  }
}





@media (max-width: 768px) {
  .hero-banner-inner {
    padding: 5rem 5% 3rem 5%;
    background-position: center right;
  }
}


/* Compact Footer Overrides */
.footer-grid {
  grid-template-columns: 1.7fr 1fr 1fr 1.3fr !important;
  gap: 2rem !important;
}
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
  }
}
.footer-brand p {
  margin-bottom: 0.25rem !important;
  line-height: 1.4 !important;
}


/* Premium Contact Cards */
.contact-cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 576px) {
  .contact-cards-container {
    grid-template-columns: 1fr;
  }
}
.contact-small-card {
  background: var(--bg-primary);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.contact-small-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border-color: #000;
}
.contact-small-icon {
  width: 40px;
  height: 40px;
  background: rgba(10, 10, 10, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.contact-small-card h4 {
  font-family: var(--font-headings);
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}
.contact-small-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Map Header */
.map-header {
  text-align: center;
  margin-bottom: 2rem;
}
.map-header h2 {
  font-family: var(--font-headings);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.map-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0.5rem auto 0;
}
.premium-map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border: 1px solid rgba(0,0,0,0.1);
  background: #fff;
  padding: 10px;
}
.premium-map-wrapper iframe {
  border-radius: 12px;
}


/* --- REFERENCE CARDS LAYOUT --- */
.contact-card-wide {
  background: #ffffff;
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.05);
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.contact-card-wide h3 {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin: 0;
}
.contact-card-wide p {
  color: var(--text-muted);
  margin: 0 0 1rem;
}
.contact-card-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card-icon svg {
  width: 100%;
  height: 100%;
}

.contact-cards-grid-ref {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1200px) {
  .contact-cards-grid-ref {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .contact-cards-grid-ref {
    grid-template-columns: 1fr;
  }
}
.contact-card-ref {
  background: #ffffff;
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.contact-card-ref h4 {
  font-family: var(--font-headings);
  font-size: 1rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
}
.contact-card-ref p {
  color: var(--text-muted);
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  flex-grow: 1;
}
.btn-ref-outline {
  border: 1px solid #000;
  color: #000;
  background: transparent;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-ref-outline:hover {
  background: #000;
  color: #fff;
}
