﻿:root {
  --header-bg: #6f1028;
  --text: #ffffff;
  --panel-bg: #fff7f9;
  --panel-text: #2d1220;
  --shadow: rgba(0, 0, 0, 0.22);
  --tile-bg: #f3dde4;
  --tile-item-bg: #ffffff;
  --search-shell-bg: #dfdfdf;
  --search-btn: #f3a332;
  --search-btn-hover: #e49523;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #f7f1f3;
  color: #24121a;
  padding-top: 134px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1200;
  background: var(--header-bg);
  color: var(--text);
  box-shadow: 0 4px 16px var(--shadow);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  min-height: 82px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
  color: var(--text);
  flex: 0 1 auto;
}

.brand-logo {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 50%;
  flex: 0 0 auto;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.6px;
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 10px;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
}

.desktop-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  opacity: 0.82;
}

.desktop-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.desktop-actions a {
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  position: relative;
}

.icon-only,
.mobile-actions button {
  background: transparent;
  border: 0;
  color: var(--text);
  cursor: pointer;
  font-size: 1.06rem;
  padding: 0;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
}

.mobile-actions {
  display: none;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.hamburger {
  width: 36px;
  height: 32px;
  border: 1.5px solid #fff;
  border-radius: 6px;
  font-size: 0.95rem;
}

.category-strip {
  position: fixed;
  top: 82px;
  left: 0;
  width: 100%;
  z-index: 1150;
  background: var(--header-bg);
  border-top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 981px) {
  .category-strip {
    border-top: 1px solid #ffffff;
  }
}

.category-strip-track {
  max-width: 1400px;
  margin: 0 auto;
  padding: 9px 18px;
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  white-space: nowrap;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.5) transparent;
}

.category-strip-track::-webkit-scrollbar {
  height: 6px;
}

.category-strip-track::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.45);
  border-radius: 99px;
}

.category-strip a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.search-section {
  max-width: 1400px;
  margin: 18px auto 0;
  padding: 0 18px;
}

.search-shell {
  position: relative;
  background: white;
  border: 2px solid #202020;
  border-radius: 10px;
  padding: 6px;
}

.search-form {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-form input {
  border: 0;
  background: transparent;
  font-size: 1.35rem;
  line-height: 1.2;
  width: 100%;
  color: #1f1f1f;
  padding: 8px 14px;
  font-weight: 500;
}

.search-form input:focus {
  outline: none;
}

.search-form input::placeholder {
  color: #2f2f2f;
}

.search-form button {
  border: 0;
  background: var(--search-btn);
  color: #ffffff;
  width: 52px;
  height: 48px;
  border-radius: 10px;
  font-size: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.search-form button:hover,
.search-form button:focus-visible {
  background: var(--search-btn-hover);
}

.search-no-match-bar {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 95;
  padding: 8px 10px;
  border-radius: 8px;
  background: #fbe7ec;
  color: #851532;
  font-size: 0.85rem;
  font-weight: 600;
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.search-no-match-bar.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.search-live-results {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 94;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e5d5dc;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
}

.search-live-list {
  max-height: min(62vh, 520px);
  overflow-y: auto;
  display: grid;
}

.search-live-item {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px 14px;
  text-decoration: none;
  color: #1f1418;
  border-bottom: 1px solid #f1e9ec;
}

.search-live-item:hover {
  background: #f9eff3;
}

.search-live-item.is-active {
  background: #f5e3ea;
}

.search-live-item img {
  width: 84px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
}

.search-live-item-meta {
  display: grid;
  gap: 2px;
}

.search-live-item-meta strong {
  font-size: 0.98rem;
}

.search-live-item-meta small {
  font-size: 0.8rem;
  color: #6f5560;
}

.search-live-item-meta .search-live-price {
  color: #c1121f;
  font-weight: 700;
}

.welcome-section {
  max-width: 1400px;
  margin: 18px auto 0;
  padding: 0 18px;
}

.welcome-inner {
  background: white;
  border: .5px solid black;
  border-radius: 12px;
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  color:#2d1220
}

.welcome-inner h2 {
  margin: 0;
  font-size: clamp(2rem, 8vw, 4.6rem);
  letter-spacing: 2px;
  font-weight:bolder;
  font-family: serif;
  animation: welcomeColors 4s linear infinite;
}

.hero-carousel-wrap {
  max-width: 1400px;
  margin: 18px auto 0;
  padding: 0 18px;
}

.home-video-section {
  max-width: 1400px;
  margin: 14px auto 0;
  padding: 0 18px;
}

.home-video-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  background: #f5efe8;
  border: 1px solid #e2d6ce;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.home-feature-video {
  display: block;
  width: 100%;
  height: clamp(240px, calc(100vh - 280px), 470px);
  aspect-ratio: auto;
  object-fit: contain;
  background: #f5efe8;
}

.statement-rotator-section {
  max-width: 1400px;
  margin: 12px auto 0;
  padding: 0 18px;
}

.statement-rotator {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  transition: background-color 0.22s linear;
}

.statement-rotator.bg-0 {
  background: darkblue;
}

.statement-rotator.bg-1 {
  background: black;
}

.statement-rotator.bg-2 {
  background: red;
}

.statement-text {
  margin: 0;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  font-size: clamp(0.9rem, 1.9vw, 1.18rem);
  line-height: 1.35;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.statement-text.is-exit {
  opacity: 0;
  transform: translateX(120%);
}

.statement-text.is-enter {
  opacity: 0;
  transform: translateX(-120%);
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #e2d3cb;
  background: #f2e8e3;
}

.carousel-track {
  display: flex;
  transition: transform 0.55s ease;
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  margin: 0;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
}

.carousel-desktop {
  display: block;
  width: min(100%, 1000px);
  margin: 0 auto;
}

.carousel-desktop .carousel-slide {
  aspect-ratio: auto;
}

.carousel-desktop .carousel-slide img {
  width: 100%;
  height: clamp(300px, calc(100vh - 100px), 500px);
  object-fit: fill;
  margin: 0;
}

.carousel-mobile {
  display: none;
}

.carousel-mobile .carousel-slide {
  aspect-ratio: auto;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(111, 16, 40, 0.82);
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

.carousel-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  display: flex;
  justify-content: center;
  gap: 7px;
  z-index: 2;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.75);
}

.carousel-dot.active {
  background: #6f1028;
}

.company-story-section {
  max-width: 1400px;
  margin: 18px auto 0;
  padding: 0 18px;
}

.company-story-border {
  position: relative;
  border-radius: 14px;
  padding: 5px;
  overflow: hidden;
}

.company-story-border::before {
  content: "";
  position: absolute;
  inset: -120%;
  background: conic-gradient(
    from 0deg,
    rgba(255, 255, 255, 0.16) 0deg 312deg,
    #ffe14b 320deg 340deg,
    #2d78ff 341deg 358deg,
    rgba(255, 255, 255, 0.16) 359deg 360deg
  );
  animation: borderPointSpin 4.2s linear infinite;
}

.company-story-border::after {
  content: "";
  position: absolute;
  inset: -120%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg 316deg,
    rgba(255, 225, 75, 0.95) 322deg 342deg,
    rgba(45, 120, 255, 0.9) 343deg 359deg,
    transparent 360deg 360deg
  );
  filter: blur(10px)
    drop-shadow(0 0 14px rgba(255, 225, 75, 1))
    drop-shadow(0 0 18px rgba(45, 120, 255, 0.92));
  opacity: 1;
  animation: borderPointSpin 4.2s linear infinite;
}

.company-story-content {
  position: relative;
  z-index: 1;
  background: rgb(32, 31, 31);
  border-radius: 12px;
  padding: 20px 22px;
}

.company-story-content h1 {
  margin: 0 0 14px;
  color: #ffffff;
  font-weight: 800;
  font-size: clamp(1.15rem, 3vw, 2rem);
  letter-spacing: 0.7px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  flex-wrap: wrap;
}

.company-story-content h1 .title-left,
.company-story-content h1 .title-right {
  display: inline-block;
}

.company-story-content h1 .title-left {
  animation: titleSlideLeft 0.85s ease-out both;
  color:#ffd248;
}

.company-story-content h1 .title-right {
  animation: titleSlideRight 0.85s ease-out both;
  color:aqua;
}

@keyframes titleSlideLeft {
  from {
    opacity: 0;
    transform: translateX(-34px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes titleSlideRight {
  from {
    opacity: 0;
    transform: translateX(34px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.typing-paragraph {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(0.93rem, 1.45vw, 1.05rem);
  line-height: 1.55;
  min-height: 1.55em;
}

.typing-paragraph:last-child {
  margin-bottom: 0;
}

.typing-paragraph.typing-active::after {
  content: " /";
  color: #ffe087;
  font-weight: 700;
  animation: slashBlink 0.45s step-end infinite;
}

.product-class-section {
  max-width: 1400px;
  margin: 18px auto 0;
  padding: 0 18px;
}

.product-class-inner {
  background: #ffffff;
  border: 1px solid #e9dfd8;
  border-radius: 12px;
  padding: 16px;
}

.product-class-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.product-class-card {
  border: 1px solid #dad1cb;
  border-radius: 10px;
  background: #f8f4f0;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.flip-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  background: #ece3dd;
  perspective: 900px;
}

.flip-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  opacity: 0;
  transform: rotateY(90deg);
  transform-origin: center;
  transition: transform 0.6s ease, opacity 0.6s ease;
  backface-visibility: hidden;
}

.flip-image.is-active {
  opacity: 1;
  transform: rotateY(0deg);
}

.product-class-card h3 {
  margin: 0;
  text-align: center;
  color: #1f1a18;
  font-size: 1.03rem;
  font-weight: 700;
}

.shop-now-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #6f1028;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  overflow: visible;
}

.shop-now-btn::before,
.shop-now-btn::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 999px;
  border: 2px solid rgba(111, 16, 40, 0.35);
  animation: buttonWave 2s linear infinite;
}

.shop-now-btn::after {
  animation-delay: 1s;
}

.best-sellers-section {
  max-width: 1400px;
  margin: 18px auto 0;
  padding: 0 18px;
}

.office-chairs-section {
  max-width: 1400px;
  margin: 18px auto 0;
  padding: 0 18px;
}

.best-sellers-inner {
  background: #dcdcdc;
  border-radius: 12px;
  border: 1px solid #cec5bf;
  padding: 16px;
}

.product-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.product-section-head .best-sellers-title {
  margin: 0;
  flex: 1 1 auto;
}

.see-more-btn {
  flex: 0 0 auto;
  min-width: 126px;
  text-align: center;
  background: red;
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.02rem;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid red;
}

.best-sellers-title {
  margin: 0 0 14px;
  background: #ffffff;
  color: #111111;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: clamp(1.1rem, 2.4vw, 1.7rem);
  font-weight: 800;
}

.best-sellers-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  overflow: visible;
  padding-bottom: 0;
}

.home-section-empty-state {
  margin: 0;
  grid-column: 1 / -1;
  border: 1px dashed #caaeb7;
  border-radius: 10px;
  background: #fff7f9;
  color: #6f1028;
  padding: 18px 14px;
  text-align: center;
  font-weight: 700;
}

.best-sellers-track::-webkit-scrollbar {
  height: 7px;
}

.best-sellers-track::-webkit-scrollbar-thumb {
  background: rgba(111, 16, 40, 0.62);
  border-radius: 99px;
}

.best-seller-card {
  background: #efefef;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.best-seller-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  overflow: hidden;
  background: #e4ddd8;
}

.best-seller-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #ffffff;
}

.best-wish-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #5f0f25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  z-index: 2;
}

.best-wish-btn.is-wished {
  background: #5f0f25;
  color: #ffffff;
}

.best-seller-card h3 {
  margin: 0;
  font-size: 1.01rem;
  color: #111111;
  font-weight: 600;
  min-height: 2.3em;
}

.best-seller-card h3 a {
  color: inherit;
  text-decoration: none;
}

.best-seller-card.search-hit {
  outline: 2px solid #f3a332;
  box-shadow: 0 0 0 4px rgba(243, 163, 50, 0.22);
}

.best-price-row {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 1rem;
}

.best-price-row .old-price {
  display: none;
}

.best-price-row .new-price {
  color: #c1121f;
  font-weight: 800;
}

.best-price-row .stock-count {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-size: 0.68rem;
  font-weight: 600;
  color: #6d3a48;
  line-height: 1;
  text-align: right;
}

.best-cart-btn {
  margin-top: auto;
  border: 0;
  border-radius: 8px;
  background: #6f1028;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.92rem;
  min-height: 46px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.12s ease;
}

.best-cart-btn:hover {
  background: #851532;
}

.best-cart-btn:active,
.best-cart-btn.is-clicked {
  background: #9b1a3b;
  transform: translateY(1px);
}

@keyframes buttonWave {
  0% {
    transform: scale(0.88);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.22);
    opacity: 0;
  }
}

@keyframes borderPointSpin {
  to {
    transform: rotate(1turn);
  }
}

@keyframes slashBlink {
  50% {
    opacity: 0;
  }
}

.why-choose-section {
  max-width: 1400px;
  margin: 18px auto 0;
  padding: 0 18px;
}

.why-choose-inner {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #ebe6e2;
  padding: 18px;
}

.why-choose-inner h2 {
  margin: 0 0 14px;
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: 0.8px;
  text-align: center;
  background: linear-gradient(90deg, #6f1028 0%, #2d78ff 48%, #f2a100 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: whyTitleIn 0.8s ease-out both;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.why-card {
  background: #111111;
  color: #ffffff;
  border-radius: 10px;
  padding: 14px 12px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
}

.why-card i {
  font-size: 1.2rem;
  color: #ffd248;
}

.why-card h3 {
  margin: 0;
  color: #ffd248;
  font-size: 1rem;
  line-height: 1.25;
}

.why-card p {
  margin: 0;
  color: #ffffff;
  font-size: 0.92rem;
  line-height: 1.45;
}

.our-stats-section {
  max-width: 1400px;
  margin: 18px auto 0;
  padding: 0 18px;
}

.our-stats-inner {
  background: #ffffff;
  border: 1px solid #ece5df;
  border-radius: 12px;
  padding: 18px;
}

.stats-title {
  margin: 0 0 14px;
  background: #f2cb3d;
  color: #000000;
  font-size: clamp(1.2rem, 3vw, 1.9rem);
  font-weight: 800;
  text-align: center;
  border-radius: 10px;
  padding: 10px 12px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.stat-card {
  flex: 1 1 240px;
  min-height: 132px;
  border-radius: 10px;
  background: #111111;
  color: #ffffff;
  border: 1px solid #2a2a2a;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.stat-card h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 700;
}

.stat-number {
  margin: 0;
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
  font-weight: 800;
  color: #ffd248;
}

.reveal-on-view {
  opacity: 0;
  transition: transform 0.65s ease, opacity 0.65s ease;
}

.reveal-on-view.from-top {
  transform: translateY(-28px);
}

.reveal-on-view.from-bottom {
  transform: translateY(28px);
}

.reveal-on-view.from-left {
  transform: translateX(-28px);
}

.reveal-on-view.from-right {
  transform: translateX(28px);
}

.reveal-on-view.in-view {
  opacity: 1;
  transform: translate(0, 0);
}

.happy-reviews-section {
  max-width: 1400px;
  margin: 18px auto 0;
  padding: 0 18px;
}

.happy-reviews-inner {
  background: #ffffff;
  border: 1px solid #ece4de;
  border-radius: 12px;
  padding: 16px;
}

.happy-reviews-title {
  margin: 0 0 14px;
  background: maroon;
  color: #ffffff;
  font-weight: 800;
  text-align: center;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: clamp(1rem, 2.7vw, 1.7rem);
  letter-spacing: 0.5px;
}

.reviews-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #6f1028 rgba(0, 0, 0, 0.08);
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
}

.reviews-track::-webkit-scrollbar {
  height: 8px;
}

.reviews-track::-webkit-scrollbar-thumb {
  background: rgba(111, 16, 40, 0.65);
  border-radius: 99px;
}

.review-card {
  flex: 0 0 min(44%, 430px);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ddd3cb;
  background: #f8f3ef;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: #ffffff;
}

.locations-section {
  max-width: 1400px;
  margin: 18px auto 0;
  padding: 0 18px;
}

.locations-inner {
  background: #ffffff;
  border: 1px solid #e9e1db;
  border-radius: 12px;
  padding: 16px;
}

.locations-title {
  margin: 0 0 14px;
  color: #6f1028;
  font-size: clamp(1.1rem, 2.6vw, 1.8rem);
  font-weight: 800;
}

.locations-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 12px;
}

.location-map-card {
  grid-row: 1 / span 3;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #d9cec7;
  min-height: 390px;
  background: #f6f2ee;
}

.location-map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.location-branch-card {
  border-radius: 10px;
  border: 1px solid #d9cec7;
  background: #111111;
  color: #ffffff;
  padding: 14px 12px;
  min-height: 122px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.location-branch-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
}

.location-branch-card strong {
  color: #ffd248;
}

.faq-section {
  max-width: 1400px;
  margin: 18px auto 0;
  padding: 0 34px;
}

.faq-inner {
  background: #ffffff;
  border: 1px solid #e9e1db;
  border-radius: 12px;
  padding: 20px;
}

.faq-title {
  margin: 0 0 14px;
  color: maroon;
  font-size: clamp(1.1rem, 2.6vw, 1.8rem);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(111, 16, 40, 0.08);
}



.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  background: maroon;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary i {
  color: #ffffff;
  font-size: 0.95rem;
  transition: transform 0.2s ease;
  flex: 0 0 auto;
}

.faq-item[open] summary i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 16px 20px 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: yellow;
}

.faq-answer p {
  margin: 0;
  color: #111111;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.6;
}

.slide-from-left {
  animation: slideInLeft 0.7s ease-out both;
}

.slide-from-top {
  animation: slideInTop 0.75s ease-out both;
}

.slide-from-right {
  animation: slideInRight 0.8s ease-out both;
}

.slide-from-bottom {
  animation: slideInBottom 0.85s ease-out both;
}

.slide-from-diagonal {
  animation: slideInDiagonal 0.9s ease-out both;
}

@keyframes whyTitleIn {
  from {
    opacity: 0;
    transform: translateX(-42px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInTop {
  from {
    opacity: 0;
    transform: translateY(-24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes slideInDiagonal {
  from {
    opacity: 0;
    transform: translate(24px, 24px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes welcomeColors {
  0% {
    color: black;
  }
  25% {
    color: white;
  }
  50% {
    color: black;
  }
  75% {
    color: white;
  }
  100% {
    color: black;
  }
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(25, 10, 18, 0.56);
  z-index: 1250;
  display: none;
}

.menu-overlay.active {
  display: block;
}

.slide-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(92vw, 430px);
  height: 100vh;
  background: var(--panel-bg);
  color: var(--panel-text);
  z-index: 1300;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.3);
  transition: right 0.34s ease;
  padding: 18px 16px 22px;
  overflow-y: auto;
}

.slide-menu.active {
  right: 0;
}

.slide-menu-top {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}

.close-menu {
  width: 34px;
  height: 34px;
  border: 1px solid #8f5f6e;
  border-radius: 6px;
  background: #fff;
  color: #5e1c31;
  font-size: 1rem;
  cursor: pointer;
}

.slide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.slide-column {
  background: #fbeff3;
  border: 1px solid #e7c9d2;
  border-radius: 10px;
  padding: 10px;
}

.slide-column h3 {
  margin: 0 0 12px;
  color: #5b182d;
  font-size: 1rem;
  letter-spacing: 0.3px;
  background: var(--tile-bg);
  border-radius: 8px;
  padding: 8px 10px;
}

.slide-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.slide-column li a {
  color: #24121a;
  text-decoration: none;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 600;
  background: var(--tile-item-bg);
  border: 1px solid #ecd4db;
  border-radius: 8px;
  padding: 8px 10px;
}

.site-footer {
  background: var(--header-bg);
  color: #ffffff;
  margin-top: 34px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 28px 18px 20px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.connect-block h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-links a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #6f1028;
  border: 1px solid #00ffff;
  border-radius: 50%;
}

.social-links img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.subscribe-block {
  margin-left: auto;
}

.subscribe-form {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 999px;
  padding: 4px;
  min-height: 46px;
  width: min(100%, 470px);
}

.subscribe-form input {
  border: 0;
  outline: none;
  background: transparent;
  color: #161616;
  width: 100%;
  padding: 10px 16px;
  font-size: 0.95rem;
}

.subscribe-form button {
  border: 0;
  background: #c91212;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 24px;
}

.footer-col h4 {
  margin: 0 0 12px;
  font-size: 1.02rem;
  Color: rgb(255, 255, 49);
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-col a {
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  line-height: 1.35;
}

.footer-col a img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  flex: 0 0 auto;
}

.footer-credits {
  background: #f0c530;
  color: #000000;
  text-align: center;
  padding: 10px 14px;
}

.footer-credits p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.footer-designer {
  background: #ffffff;
  color: #000000;
  text-align: center;
  padding: 6px 14px;
}

.footer-designer p {
  margin: 0;
  font-size: 0.86rem;
}

.bottom-safe-space {
  height: 78px;
}

.bottom-nav {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: var(--header-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  z-index: 1450;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.bottom-nav-item {
  color: #ffffff;
  text-decoration: none;
  min-height: 62px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 0.82rem;
  font-weight: 600;
  position: relative;
}

.bottom-nav-item i {
  font-size: 1rem;
}

.item-count-badge {
  position: absolute;
  top: -6px;
  right: -9px;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #2d78ff;
  color: #fff;
  font-size: 0.65rem;
  line-height: 16px;
  text-align: center;
  padding: 0 4px;
  font-weight: 700;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.bottom-nav-item .item-count-badge {
  top: 6px;
  right: calc(50% - 22px);
}

.floating-contact {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 76px;
  z-index: 1460;
  pointer-events: none;
}

.contact-fab {
  position: absolute;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  pointer-events: auto;
  padding: 0;
}

.contact-fab img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.phone-fab {
  left: 14px;
  animation: phoneWiggle 30s infinite;
}

.whatsapp-fab {
  right: 14px;
  animation: whatsappWiggle 20s infinite;
}

.help-popup {
  position: fixed;
  right: 14px;
  bottom: 170px;
  width: min(310px, calc(100vw - 24px));
  background: #ffffff;
  border: 1px solid #d9e3e7;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  padding: 12px 14px;
  z-index: 1300;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.help-popup.is-open {
  opacity: 1;
  transform: translateY(0);
}

.help-popup-close {
  position: absolute;
  right: 8px;
  top: 6px;
  border: 0;
  background: transparent;
  color: #4a5a61;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
}

.help-popup-text {
  margin: 0 18px 10px 0;
  color: #102a33;
  font-size: 0.93rem;
  line-height: 1.35;
  font-weight: 600;
}

.help-popup-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: #eefaf2;
  color: #0f7a45;
  border: 1px solid #b7e3c7;
  border-radius: 10px;
  padding: 8px 10px;
  font-weight: 700;
  font-size: 0.88rem;
}

.help-popup-link img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

@keyframes whatsappWiggle {
  0%,
  88%,
  100% {
    transform: rotate(0deg);
  }
  90% {
    transform: rotate(12deg);
  }
  92% {
    transform: rotate(-12deg);
  }
  94% {
    transform: rotate(10deg);
  }
  96% {
    transform: rotate(-10deg);
  }
  98% {
    transform: rotate(0deg);
  }
}

@keyframes phoneWiggle {
  0%,
  92%,
  100% {
    transform: rotate(0deg);
  }
  93% {
    transform: rotate(12deg);
  }
  94% {
    transform: rotate(-12deg);
  }
  95% {
    transform: rotate(10deg);
  }
  96% {
    transform: rotate(-10deg);
  }
  97% {
    transform: rotate(0deg);
  }
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 140px;
  border: 0;
  background: transparent;
  padding: 0;
  width: 48px;
  height: 48px;
  cursor: pointer;
  display: none;
  z-index: 1400;
}

.back-to-top img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.back-to-top.show {
  display: block;
}

@media (max-width: 1260px) {
  .header-inner {
    padding: 10px 14px;
    gap: 10px;
  }

  .desktop-nav {
    gap: 14px;
    margin: 0 6px;
  }

  .desktop-nav a {
    font-size: 0.85rem;
    gap: 6px;
  }

  .desktop-actions {
    gap: 10px;
  }

  .desktop-actions a {
    font-size: 0.9rem;
  }

  .category-strip-track {
    gap: 16px;
    padding: 8px 14px;
  }

  .category-strip a {
    font-size: 0.84rem;
  }

  .search-form input {
    font-size: 1.2rem;
  }

  .footer-columns {
    gap: 18px;
  }
}

@media (max-width: 980px) {
  .desktop-nav,
  .desktop-actions,
  .category-strip {
    display: none;
  }

  .mobile-actions {
    display: flex;
  }

  .header-inner {
    min-height: 72px;
  }

  body {
    padding-top: 72px;
  }

  .brand-logo {
    width: 32px;
    height: 32px;
  }

  .brand-name {
    font-size: 1rem;
    letter-spacing: 0.35px;
  }

  .mobile-actions .icon-only {
    font-size: 0.98rem;
  }

  .search-section {
    margin-top: 14px;
    padding: 0 12px;
  }

  .search-shell {
    border-radius: 10px;
    padding: 6px;
  }

  .search-form {
    gap: 6px;
  }

  .search-form input {
    font-size: 1rem;
    padding: 8px 10px;
  }

  .search-form button {
    width: 46px;
    height: 42px;
    font-size: 1.1rem;
    border-radius: 10px;
  }

  .search-live-list {
    max-height: 55vh;
  }

  .welcome-section {
    margin-top: 14px;
    padding: 0 12px;
  }

  .welcome-inner {
    min-height: 112px;
    border-radius: 10px;
  }

  .company-story-section {
    margin-top: 14px;
    padding: 0 12px;
  }

  .company-story-content {
    padding: 16px 14px;
  }

  .product-class-section {
    margin-top: 14px;
    padding: 0 12px;
  }

  .product-class-inner {
    padding: 12px;
  }

  .product-class-grid {
    grid-template-columns: 1fr 1fr;
  }

  .best-sellers-section {
    margin-top: 14px;
    padding: 0 12px;
  }

  .office-chairs-section {
    margin-top: 14px;
    padding: 0 12px;
  }

  .best-sellers-inner {
    padding: 12px;
  }

  .best-sellers-track {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(111, 16, 40, 0.62) transparent;
    padding-bottom: 6px;
  }

  .best-sellers-track::-webkit-scrollbar {
    height: 7px;
  }

  .best-sellers-track::-webkit-scrollbar-thumb {
    background: rgba(111, 16, 40, 0.62);
    border-radius: 99px;
  }

  .best-seller-card {
    flex: 0 0 clamp(230px, 58vw, 320px);
  }

  .see-more-btn {
    min-width: 108px;
    font-size: 0.92rem;
    padding: 9px 10px;
  }

  .why-choose-section {
    margin-top: 14px;
    padding: 0 12px;
  }

  .why-choose-inner {
    padding: 14px;
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .why-card {
    min-height: 122px;
    padding: 12px 10px;
  }

  .our-stats-section {
    margin-top: 14px;
    padding: 0 12px;
  }

  .our-stats-inner {
    padding: 14px;
  }

  .stat-card {
    flex: 1 1 calc(50% - 8px);
    min-height: 116px;
  }

  .happy-reviews-section {
    margin-top: 14px;
    padding: 0 12px;
  }

  .happy-reviews-inner {
    padding: 12px;
  }

  .review-card {
    flex: 0 0 min(72%, 340px);
  }

  .locations-section {
    margin-top: 14px;
    padding: 0 12px;
  }

  .faq-section {
    margin-top: 14px;
    padding: 0 18px;
  }

  .locations-inner {
    padding: 12px;
  }

  .faq-inner {
    padding: 14px;
  }

  .locations-grid {
    grid-template-columns: 1fr 1fr;
  }

  .location-map-card {
    grid-row: auto;
    grid-column: 1 / -1;
    min-height: 300px;
  }

  .location-branch-card {
    min-height: 114px;
  }

  .faq-item summary {
    padding: 15px 16px;
    font-size: 0.96rem;
  }

  .faq-answer {
    padding: 14px 16px 16px;
  }

  .hero-carousel-wrap {
    margin-top: 14px;
    padding: 0 12px;
  }

  .home-video-section {
    margin-top: 10px;
    padding: 0 12px;
  }

  .home-feature-video {
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .statement-rotator-section {
    margin-top: 10px;
    padding: 0 12px;
  }

  .statement-rotator {
    min-height: 52px;
    padding: 9px 10px;
  }

  .carousel-desktop {
    display: none;
  }

  .carousel-mobile {
    display: block;
  }

  .carousel-btn {
    width: 34px;
    height: 34px;
  }

  .footer-inner {
    padding: 22px 12px 18px;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    margin-bottom: 18px;
  }

  .connect-block {
    width: 100%;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .subscribe-block {
    width: 100%;
    margin-left: 0;
  }

  .subscribe-form {
    width: 100%;
    min-height: 42px;
  }

  .subscribe-form input {
    font-size: 0.9rem;
    padding: 8px 12px;
  }

  .subscribe-form button {
    font-size: 0.86rem;
    padding: 9px 14px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 18px;
    justify-items: center;
  }

  .footer-col h4 {
    margin-bottom: 8px;
    width: 100%;
    text-align: left;
  }

  .footer-col {
    text-align: center;
    width: min(100%, 320px);
  }

  .footer-col + .footer-col {
    margin-top: 6px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
  }

  .footer-col ul {
    width: 100%;
    justify-items: stretch;
  }

  .footer-col a {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
  }

  .floating-contact {
    bottom: 102px;
  }

  .help-popup {
    bottom: 148px;
    right: 10px;
  }

  .contact-fab {
    width: 38px;
    height: 38px;
  }

  .back-to-top {
    bottom: 136px;
  }
}

@media (max-width: 500px) {
  .best-sellers-inner {
    padding: 10px;
  }

  .best-sellers-track {
    gap: 8px;
    padding-bottom: 4px;
  }

  .best-seller-card {
    flex: 0 0 clamp(170px, 62vw, 230px);
    padding: 8px;
    gap: 8px;
  }

  .best-seller-image-wrap {
    aspect-ratio: 1 / 1;
  }

  .best-seller-card h3 {
    font-size: 0.9rem;
    min-height: 2.1em;
  }

  .best-price-row {
    font-size: 0.9rem;
  }

  .best-price-row .stock-count {
    font-size: 0.62rem;
  }

  .best-cart-btn {
    min-height: 38px;
    font-size: 0.8rem;
  }

  .faq-item summary {
    padding: 15px 16px;
    font-size: 0.8rem;
  }

  .fag-item span{
    font-size: 8rem;
}
}

@media (max-width: 420px) {
  .header-inner {
    gap: 8px;
    padding: 8px 12px;
  }

  .brand {
    gap: 8px;
  }

  .brand-logo {
    width: 28px;
    height: 28px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .mobile-actions {
    gap: 9px;
  }

  .mobile-actions .icon-only {
    font-size: 0.92rem;
  }

  .hamburger {
    width: 34px;
    height: 30px;
    font-size: 0.88rem;
  }

  .slide-grid {
    grid-template-columns: 1fr;
  }

  .search-form input {
    font-size: 0.94rem;
  }

  .search-form button {
    width: 40px;
    height: 38px;
    font-size: 0.95rem;
  }

  .search-live-item {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 8px;
    padding: 9px;
  }

  .search-live-item img {
    width: 64px;
    height: 52px;
  }

  .welcome-inner {
    min-height: 96px;
  }

  .company-story-content h1 {
    font-size: 1.05rem;
  }

  .typing-paragraph {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .statement-rotator {
    min-height: 48px;
  }

  .statement-text {
    font-size: 0.85rem;
  }

  .product-class-grid {
    grid-template-columns: 1fr;
  }

  .product-class-card h3 {
    font-size: 0.95rem;
  }

  .shop-now-btn {
    min-width: 108px;
    font-size: 0.84rem;
  }

  .best-seller-card {
    flex: 0 0 clamp(160px, 66vw, 210px);
  }

  .product-section-head {
    gap: 8px;
  }

  .see-more-btn {
    min-width: 96px;
    font-size: 0.86rem;
    padding: 8px 10px;
  }

  .best-cart-btn {
    min-height: 36px;
    font-size: 0.78rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    min-height: 108px;
  }

  .why-card p {
    font-size: 0.88rem;
  }

  .stat-card {
    flex: 1 1 100%;
  }

  .stat-card h3 {
    font-size: 0.94rem;
  }

  .review-card {
    flex: 0 0 92%;
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }

  .location-map-card {
    min-height: 240px;
  }

  .location-branch-card {
    min-height: 104px;
    padding: 12px 10px;
  }

  .location-branch-card p {
    font-size: 0.88rem;
  }

  .carousel-btn {
    width: 30px;
    height: 30px;
    font-size: 0.82rem;
  }

  .carousel-btn.prev {
    left: 6px;
  }

  .carousel-btn.next {
    right: 6px;
  }

  .back-to-top {
    width: 42px;
    height: 42px;
    right: 12px;
    bottom: 132px;
  }

  .social-links {
    gap: 10px;
  }

  .social-links a {
    width: 32px;
    height: 32px;
  }

  .social-links img {
    width: 15px;
    height: 15px;
  }

  .footer-col a {
    font-size: 0.88rem;
  }

  .footer-credits p {
    font-size: 0.88rem;
  }

  .footer-designer p {
    font-size: 0.8rem;
  }

  .bottom-safe-space {
    height: 88px;
  }

  .bottom-nav-item {
    min-height: 58px;
    font-size: 0.76rem;
    gap: 4px;
  }

  .bottom-nav-item i {
    font-size: 0.92rem;
  }

  .floating-contact {
    bottom: 100px;
  }

  .help-popup {
    width: calc(100vw - 20px);
    right: 10px;
    bottom: 140px;
    padding: 10px 12px;
  }

.contact-fab {
    width: 34px;
    height: 34px;
  }
}

.password-field {
  position: relative;
}

.password-field input {
  width: 100%;
  padding-right: 42px;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  width: 22px;
  height: 22px;
  color: #6f1028;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.password-toggle svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.password-toggle .icon-eye {
  display: none;
}

.password-toggle .icon-eye-off {
  display: block;
}

.password-toggle .slash {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.password-toggle.is-visible .icon-eye {
  display: block;
}

.password-toggle.is-visible .icon-eye-off {
  display: none;
}
