﻿:root {
  --bg-black: #0b0b0b;
  --bg-dark: #161616;
  --bg-mid: #232323;
  --accent: #ffc107;
  --accent-strong: #ffb300;
  --text-light: #f8f9fa;
  --text-muted: #c9c9c9;
  --border-soft: rgba(255, 255, 255, 0.12);
  --shadow-soft: 0 16px 30px rgba(0, 0, 0, 0.28);
  --shadow-strong: 0 18px 40px rgba(0, 0, 0, 0.5);
  --radius-lg: 20px;
  --radius-md: 14px;
  --font-display: "Barlow Condensed", "Segoe UI", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: radial-gradient(circle at top right, #2a2a2a 0%, var(--bg-black) 35%, #050505 100%);
  color: var(--text-light);
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #111;
  padding: 0.5rem 1rem;
  border-radius: 0 0 8px 8px;
  z-index: 2000;
}

.skip-link:focus {
  left: 1rem;
}

.section-spacing {
  padding: 5.5rem 0;
}

.section-dark {
  background: linear-gradient(180deg, #121212 0%, #0b0b0b 100%);
}

.section-gradient {
  background: linear-gradient(150deg, #111 0%, #1b1b1b 55%, #101010 100%);
}

.section-heading {
  max-width: 820px;
}

.section-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-heading p {
  color: var(--text-muted);
  line-height: 1.7;
}

.section-heading-inline {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
}

.tagline {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 193, 7, 0.18);
  color: var(--accent);
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  text-transform: uppercase;
}

.navbar {
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.navbar.scrolled {
  background: rgba(6, 6, 6, 0.96);
  border-color: rgba(255, 255, 255, 0.1);
}

.navbar-brand {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  line-height: 1;
}

.navbar-brand small {
  font-size: 0.68rem;
  color: #d6d6d6;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand-highlight {
  color: var(--accent);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  font-family: var(--font-display);
}

.nav-link {
  color: #efefef;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}

.btn-budget {
  font-weight: 700;
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
}

.hero-section {
  position: relative;
}

.hero-image {
  height: min(88vh, 880px);
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0, 0, 0, 0.78) 20%, rgba(0, 0, 0, 0.28) 80%);
}

.carousel-caption {
  left: 8%;
  right: 10%;
  bottom: 16%;
  z-index: 4;
  max-width: 760px;
}

.carousel-caption h1,
.carousel-caption h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4.4rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.carousel-caption p {
  max-width: 660px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #e8e8e8;
}

.hero-kicker {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.carousel-indicators [data-bs-target] {
  width: 40px;
  height: 4px;
  border-radius: 4px;
}

.feature-card {
  height: 100%;
  background: linear-gradient(135deg, rgba(33, 33, 33, 0.9), rgba(18, 18, 18, 0.95));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.feature-card i {
  color: var(--accent);
  font-size: 1.5rem;
}

.feature-card h3 {
  margin: 0;
  font-size: 1.03rem;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 193, 7, 0.55);
}


.catalog-load-more-wrap {
  margin-top: 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}

.catalog-progress {
  color: #c6c6c6;
  font-size: 0.88rem;
}
.catalog-filters {
  background: linear-gradient(145deg, #1d1d1d, #141414);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
}

.form-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #d9d9d9;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.input-group-dark .input-group-text,
.input-group-dark .form-control,
.form-select,
.form-control {
  border-color: rgba(255, 255, 255, 0.18);
  background: #0e0e0e;
  color: #f7f7f7;
}

.form-control::placeholder {
  color: #9d9d9d;
}

.input-group-dark .form-control:focus,
.form-select:focus,
.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.2);
  background: #141414;
  color: #fff;
}

.catalog-card {
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(160deg, #1c1c1c 0%, #111 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.catalog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 193, 7, 0.45);
}

.card-image-wrap {
  position: relative;
  overflow: hidden;
}

.card-image-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.catalog-card:hover .card-image-wrap img {
  transform: scale(1.06);
}

.stock-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(8, 8, 8, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.78rem;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
}

.stock-badge.unavailable {
  background: rgba(88, 22, 22, 0.9);
  border-color: rgba(255, 130, 130, 0.42);
}

.catalog-card .card-body {
  padding: 1.1rem;
}

.catalog-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.4rem;
}

.category-pill {
  display: inline-flex;
  margin-bottom: 0.65rem;
  background: rgba(255, 193, 7, 0.18);
  color: var(--accent);
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.catalog-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  min-height: 2.6rem;
}

.price-row {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  padding: 0.72rem 0.8rem;
  background: rgba(255, 255, 255, 0.02);
}

.price-row span {
  display: block;
  font-size: 0.8rem;
  color: #cfcfcf;
}

.price-row strong {
  font-size: 1.2rem;
  color: var(--accent);
}

.subtotal-label {
  font-size: 0.88rem;
  color: #d8d8d8;
}

.subtotal-value {
  font-weight: 800;
  color: #fff;
}

.add-btn {
  width: 100%;
  margin-top: 0.85rem;
  font-weight: 700;
}

.open-catalog-btn {
  font-weight: 700;
  white-space: nowrap;
}

.catalog-preview-card {
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, #1c1c1c 0%, #111 100%);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.catalog-preview-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 193, 7, 0.45);
}

.catalog-preview-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.catalog-preview-content {
  padding: 1rem;
}

.catalog-preview-content h3 {
  font-size: 1rem;
  margin: 0.2rem 0 0.45rem;
}

.catalog-preview-meta {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.catalog-preview-price {
  display: inline-block;
  margin-top: 0.45rem;
  color: var(--accent);
}

.catalog-modal .modal-content {
  background: linear-gradient(180deg, #111, #090909);
  color: var(--text-light);
  border: 0;
}

.catalog-modal .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 7, 7, 0.92);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 4;
  padding-right: 4.25rem;
  gap: 0.75rem;
}

.catalog-modal .modal-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.catalog-modal .modal-body {
  padding: 1.2rem 1rem 2rem;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
}

.catalog-modal-shell {
  flex: 1 1 auto;
  min-width: 0;
}

.modal-catalog-heading {
  margin-bottom: 1rem;
}

.catalog-modal .catalog-filters {
  position: sticky;
  top: 0.6rem;
  z-index: 3;
}

.catalog-close-btn {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
}


#closeBudgetPanel {
  display: none;
}

.catalog-budget-panel {
  position: sticky;
  top: 0.6rem;
  width: min(420px, 34vw);
  min-width: 320px;
  max-height: calc(100vh - 128px);
  background: linear-gradient(180deg, #111, #080808);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow: -10px 12px 30px rgba(0, 0, 0, 0.4);
  z-index: 4;
  display: flex;
  flex-direction: column;
  transform: none;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.catalog-budget-panel.focus-flash {
  border-color: rgba(255, 193, 7, 0.85);
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.18), -10px 12px 30px rgba(0, 0, 0, 0.4);
}

.catalog-budget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.catalog-budget-header h3 {
  margin: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.15rem;
}

.catalog-budget-body {
  height: 100%;
  padding: 1rem;
  overflow: auto;
}

.catalog-budget-body .cart-items {
  max-height: 38vh;
}
.step-card {
  position: relative;
  height: 100%;
  padding: 1.3rem 1.1rem;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: linear-gradient(140deg, #1f1f1f 0%, #101010 100%);
  text-align: center;
  overflow: hidden;
}

.step-card span {
  position: absolute;
  top: 0.7rem;
  right: 0.85rem;
  color: rgba(255, 255, 255, 0.22);
  font-size: 2rem;
  font-family: var(--font-display);
  font-weight: 800;
}

.step-card i {
  font-size: 2rem;
  color: var(--accent);
}

.step-card h3 {
  margin-top: 0.75rem;
  font-size: 1.05rem;
}

.step-card p {
  color: var(--text-muted);
  margin: 0;
}

.brands-marquee {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background: linear-gradient(130deg, #121212 0%, #191919 100%);
  padding: 1rem 0;
}

.brands-marquee::before,
.brands-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 72px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.brands-marquee::before {
  left: 0;
  background: linear-gradient(to right, #111 0%, rgba(17, 17, 17, 0) 100%);
}

.brands-marquee::after {
  right: 0;
  background: linear-gradient(to left, #111 0%, rgba(17, 17, 17, 0) 100%);
}

.brands-marquee-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
  animation: brandSlide 26s linear infinite;
  will-change: transform;
}


.brand-item {
  flex: 0 0 clamp(180px, 20vw, 280px);
  height: 110px;
  background: linear-gradient(180deg, #fafafa 0%, #ececec 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.brand-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(1.04) contrast(1.02);
}

@keyframes brandSlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

@media (prefers-reduced-motion: reduce) {
  .brands-marquee-inner {
    animation: none;
  }
}
.testimonial-card {
  height: 100%;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, #1f1f1f 0%, #121212 100%);
  padding: 1.35rem;
  box-shadow: var(--shadow-soft);
}

.testimonial-card p {
  margin-bottom: 1rem;
  color: #ececec;
}

.testimonial-card h3 {
  margin: 0;
  font-size: 1.02rem;
}

.testimonial-card span {
  color: var(--accent);
  font-size: 0.9rem;
}

.contact-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: #151515;
  padding: 1rem;
}

.contact-card i {
  color: var(--accent);
  font-size: 1.3rem;
}

.contact-card h3 {
  margin: 0;
  font-size: 0.95rem;
}

.contact-card p {
  margin: 0.2rem 0 0;
  color: #dadada;
}

.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-strong);
  height: 100%;
  min-height: 380px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}

.footer {
  background: #060606;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer h3,
.footer h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.footer p,
.footer a {
  color: #c9c9c9;
  text-decoration: none;
}

.footer a:hover {
  color: var(--accent);
}

.footer hr {
  border-color: rgba(255, 255, 255, 0.1);
}

.floating-whatsapp {
  position: fixed;
  bottom: 1.3rem;
  right: 1rem;
  z-index: 1090;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.38);
  transition: transform 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.04);
}

.offcanvas {
  background: linear-gradient(180deg, #111, #080808);
  color: #f3f3f3;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.offcanvas-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cart-items {
  max-height: 38vh;
  overflow: auto;
  padding-right: 0.25rem;
}

.cart-item {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  padding: 0.85rem;
  margin-bottom: 0.75rem;
  background: #171717;
}

.cart-item h4 {
  font-size: 0.96rem;
  margin: 0 0 0.45rem;
}

.cart-meta {
  font-size: 0.83rem;
  color: #d7d7d7;
  margin-bottom: 0.5rem;
}

.cart-item .input-group {
  margin-bottom: 0.45rem;
}

.cart-item .btn-outline-danger {
  --bs-btn-color: #ff8d8d;
  --bs-btn-border-color: rgba(255, 141, 141, 0.45);
}

.cart-summary {
  border: 1px solid rgba(255, 193, 7, 0.45);
  border-radius: 12px;
  background: rgba(255, 193, 7, 0.09);
  padding: 0.8rem;
}

.empty-cart {
  border: 1px dashed rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 1.1rem;
  text-align: center;
  color: #c5c5c5;
}

.btn-send {
  font-weight: 700;
}

.feedback-toast {
  position: fixed;
  top: 88px;
  right: 16px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  background: #151515;
  color: #f8f9fa;
  border: 1px solid rgba(255, 193, 7, 0.52);
  transform: translateY(-14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.feedback-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.feedback-toast i {
  color: #25d366;
}

.fade-up {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.5s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991.98px) {
  .open-catalog-btn {
    align-self: flex-start;
  }

  .catalog-modal .modal-header {
    flex-wrap: nowrap;
    align-items: center;
  }

  .catalog-modal .modal-body {
    flex-direction: column;
  }

  .catalog-budget-panel {
    position: sticky;
    top: 0.6rem;
    width: 100%;
    min-width: 0;
    max-height: 56vh;
  }

  .section-heading-inline {
    flex-direction: column;
    align-items: flex-start;
  }

  .carousel-caption {
    left: 7%;
    right: 7%;
    bottom: 11%;
  }

  .navbar-collapse {
    background: rgba(8, 8, 8, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-top: 0.7rem;
    padding: 0.85rem;
  }
}

@media (max-width: 767.98px) {
  .catalog-modal .catalog-filters {
    position: sticky;
    top: 0.4rem;
    z-index: 3;
  }

  .catalog-modal .modal-body {
    padding-top: 0.85rem;
  }

  .catalog-budget-panel {
    width: 100%;
  }

  .catalog-budget-body .cart-items {
    max-height: 30vh;
  }

  .hero-image {
    height: 76vh;
  }

  .carousel-caption h1,
  .carousel-caption h2 {
    font-size: clamp(1.65rem, 8vw, 2.5rem);
  }

  .section-spacing {
    padding: 4.4rem 0;
  }

  .catalog-card .card-body {
    padding: 1rem;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 280px;
  }
}

.text-left {
  text-align: left !important;
}






