/* src/pages/Intro/Intro.css */
.intro-container {
  display: flex;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background-color: #0a0a0a;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
}

.intro-carousel {
  position: absolute;
  background-color: #111;
  width: 100%;
  height: 100%;
  inset: 0;
}

.intro-slide {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  transition: opacity .9s cubic-bezier(.4,0,.2,1);
  inset: 0;
}

.intro-slide--active {
  opacity: 1;
  pointer-events: auto;
}

.intro-ad-blur-placeholder {
  position: absolute;
  object-fit: cover;
  filter: blur(24px) brightness(.75);
  z-index: 1;
  width: 100%;
  height: 100%;
  inset: 0;
  transform: scale(1.08);
}

.intro-ad-image {
  position: absolute;
  object-fit: cover;
  z-index: 2;
  opacity: 0;
  width: 100%;
  height: 100%;
  transition: opacity .7s ease-in-out;
  inset: 0;
}

.intro-ad-image.loaded {
  opacity: 1;
}

.intro-footer-bar {
  position: absolute;
  color: #fff;
  display: flex;
  z-index: 10;
  background-color: #c8102e;
  justify-content: center;
  align-items:  center;
  gap: 1rem;
  width: 100%;
  padding: 1.5rem 0;
  font-size: 1.5rem;
  font-weight: 700;
  bottom: 0;
  left: 0;
  box-shadow: 0 -10px 30px #cb203b4d;
}

.touch-icon {
  animation: pulseTouch 2s infinite;
  display: flex;
  justify-content: center;
  align-items:  center;
}

@keyframes pulseTouch {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: .7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .intro-footer-bar {
    gap: .5rem;
    padding: 1rem 0;
    font-size: 1.1rem;
  }
}

/* src/components/AppLoader/AppLoader.css */
.app-loader {
  position: fixed;
  display: flex;
  z-index: 9999;
  background: linear-gradient(160deg, #c8102e 0%, #9e0a22 100%);
  flex-direction: column;
  justify-content: center;
  align-items:  center;
  gap: 2.5rem;
  width: 100vw;
  height: 100vh;
  inset: 0;
}

.app-loader__logo-wrap {
  animation: loader-logo-pulse 2.5s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.app-loader__logo {
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 4px 24px #00000040);
  height: 64px;
}

@keyframes loader-logo-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .8;
    transform: scale(.96);
  }
}

.app-loader__bar-track {
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: #ffffff40;
  border-radius: 999px;
  width: min(320px, 70vw);
  height: 4px;
}

.app-loader__bar-fill {
  position: relative;
  background: #fff;
  border-radius: 999px;
  height: 100%;
  transition: width .35s ease-out;
  box-shadow: 0 0 12px #ffffffb3;
}

.app-loader__status {
  color: #ffffffd9;
  letter-spacing: .12em;
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: Proxima Nova, Segoe UI, sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

/* src/pages/ChooseSales/ChooseSales.css */
.sales-page-wrapper {
  display: flex;
  overflow: hidden;
  background-color: #f4f5f7;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  font-family: Proxima Nova, sans-serif;
}

.sales-top-header {
  display: flex;
  background-color: #c8102e;
  justify-content: center;
  align-items:  center;
  width: 100%;
  height: 70px;
  box-shadow: 0 4px 10px #00000014;
}

.sales-header-logo {
  object-fit: contain;
  height: 32px;
}

.sales-main-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items:  center;
  gap: 2.5rem;
  padding: 2rem;
}

.sales-title-group {
  text-align: center;
}

.sales-title-group h2 {
  color: #c8102e;
  margin: 0 0 .5rem;
  font-size: 2.4rem;
  font-weight: 800;
}

.sales-title-group p {
  color: #64748b;
  margin: 0;
  font-size: 1.1rem;
}

.sales-loading {
  color: #64748b;
  font-size: 1.2rem;
  font-weight: 600;
}

.sales-cards-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 1000px;
}

.sales-card-item {
  display: flex;
  cursor: pointer;
  background: #fff;
  border: 1px solid #00000014;
  border-radius: 20px;
  flex-direction: column;
  align-items:  center;
  width: 100%;
  padding: 2rem 1.5rem;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 6px 16px #00000008;
}

.sales-card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px #00000014;
}

.sales-card-item.active {
  background-color: #fff1f2;
  border: 2px solid #c8102e;
  box-shadow: 0 8px 20px #c8102e1a;
}

.sales-avatar-wrapper {
  margin-bottom: 1.2rem;
}

.sales-avatar {
  color: #fff;
  display: flex;
  background: linear-gradient(135deg, #c8102e, #a10c24);
  border-radius: 50%;
  justify-content: center;
  align-items:  center;
  width: 75px;
  height: 75px;
  font-size: 1.8rem;
  font-weight: 800;
  box-shadow: 0 4px 10px #c8102e33;
}

.sales-card-name {
  color: #0f172a;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  margin-bottom: .3rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.sales-card-item.active .sales-card-name {
  color: #c8102e;
}

.sales-card-role {
  color: #64748b;
  font-size: .9rem;
  font-weight: 500;
}

.btn-continue {
  color: #fff;
  cursor: pointer;
  background-color: #c8102e;
  border: none;
  border-radius: 12px;
  width: 100%;
  max-width: 480px;
  padding: .9rem 4rem;
  transition: all .2s ease-in-out;
  font-size: 1.15rem;
  font-weight: 700;
  box-shadow: 0 4px 12px #c8102e33;
}

.btn-continue:hover:not(:disabled) {
  background-color: #a10c24;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px #c8102e4d;
}

.btn-continue:active:not(:disabled) {
  transform: translateY(0);
}

.btn-continue:disabled {
  color: #94a3b8;
  cursor: not-allowed;
  box-shadow: none;
  background-color: #cbd5e1;
}

@media (max-width: 768px) {
  .sales-main-content {
    overflow-y: auto;
    justify-content: flex-start;
    gap: 1.5rem;
    padding: 1.5rem 1rem;
  }

  .sales-title-group h2 {
    font-size: 1.8rem;
  }

  .sales-title-group p {
    font-size: .95rem;
  }

  .sales-cards-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .sales-card-item {
    padding: 1.5rem 1rem;
  }

  .sales-avatar {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .btn-continue {
    padding: .8rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .sales-cards-container {
    grid-template-columns: 1fr;
  }
}

/* src/pages/Language/Language.css */
.lang-page-wrapper {
  display: flex;
  background-color: #f8fafc;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
}

.lang-top-header {
  display: flex;
  background-color: #c8102e;
  justify-content: center;
  align-items:  center;
  width: 100%;
  height: 60px;
}

.lang-header-logo {
  object-fit: contain;
  height: 35px;
}

.lang-main-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items:  center;
  padding: 2rem;
}

.lang-title-group {
  text-align: center;
  margin-bottom: 3rem;
}

.lang-title-group h2 {
  color: #c8102e;
  margin: 0 0 .5rem;
  font-size: 2.4rem;
  font-weight: 800;
}

.lang-title-group p {
  color: #64748b;
  margin: 0;
  font-size: 1.1rem;
}

.lang-cards-container {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.lang-card-item {
  display: flex;
  position: relative;
  cursor: pointer;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items:  center;
  width: 260px;
  height: 180px;
  transition: all .3s;
  box-shadow: 0 4px 6px #00000005;
}

.lang-card-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px #0000000d;
}

.lang-card-item.active {
  border: 1px solid #c8102e;
}

.radio-indicator {
  position: absolute;
  display: flex;
  border: 1px solid #cbd5e1;
  border-radius: 50%;
  justify-content: center;
  align-items:  center;
  width: 20px;
  height: 20px;
  top: 1rem;
  right: 1rem;
}

.lang-card-item.active .radio-indicator {
  border-color: #c8102e;
}

.radio-dot {
  opacity: 0;
  background-color: #c8102e;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  transition: all .2s;
  transform: scale(0);
}

.lang-card-item.active .radio-dot {
  opacity: 1;
  transform: scale(1);
}

.flag-image {
  object-fit: contain;
  border-radius: 4px;
  height: 40px;
  margin-bottom: 1.5rem;
}

.lang-card-name {
  color: #334155;
  font-size: 1.1rem;
  font-weight: 500;
}

.btn-continue {
  color: #fff;
  cursor: pointer;
  background-color: #c8102e;
  border: none;
  border-radius: 8px;
  width: 100%;
  max-width: 544px;
  padding: 1.2rem;
  transition: background-color .2s;
  font-size: 1.1rem;
  font-weight: 600;
}

.btn-continue:hover {
  background-color: #a10c24;
}

.btn-continue:disabled {
  color: #94a3b8;
  cursor: not-allowed;
  background-color: #e2e8f0;
}

@media (max-width: 768px) {
  .lang-title-group {
    margin-bottom: 2rem;
  }

  .lang-title-group h2 {
    font-size: 1.8rem;
  }

  .lang-title-group p {
    font-size: .95rem;
  }

  .lang-cards-container {
    flex-direction: column;
    align-items:  center;
    gap: 1rem;
    width: 100%;
  }

  .lang-card-item {
    width: 100%;
    max-width: 320px;
    height: 120px;
  }

  .flag-image {
    height: 30px;
    margin-bottom: .5rem;
  }

  .btn-continue {
    max-width: 320px;
    padding: 1rem;
    font-size: 1rem;
  }
}

/* src/pages/Home/Home.css */
.home-container {
  display: flex;
  position: relative;
  overflow: hidden;
  background-color: #f4f4f4;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
}

.home-hero {
  position: relative;
  overflow: hidden;
  flex: 1;
  width: 100%;
}

.home-hero:after {
  content: "";
  position: absolute;
  z-index: 5;
  background: #c8102e;
  width: 28%;
  height: 6px;
  bottom: 0;
  left: 0;
}

.hero-bg-layer {
  position: absolute;
  filter: blur(12px);
  z-index: 1;
  background-image: url("./bg-hero-ay5jp97m.png");
  background-position: center;
  background-size: cover;
  width: 110%;
  height: 110%;
  top: -5%;
  left: -5%;
}

.hero-gradient-overlay {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(#fff 0%, #ffffffe6 15%, #fff0 60%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.hero-front-layer {
  position: absolute;
  display: flex;
  z-index: 3;
  justify-content: flex-end;
  align-items:  flex-end;
  width: 65%;
  height: 90%;
  bottom: 0;
  right: 0;
}

.hero-front-img {
  object-fit: contain;
  object-position: right bottom;
  width: auto;
  height: 100%;
}

.hero-logo-container {
  position: absolute;
  z-index: 4;
  top: 50px;
  left: 6vw;
}

.hero-logo {
  object-fit: contain;
  height: 40px;
}

.hero-text-content {
  position: absolute;
  color: #fff;
  z-index: 4;
  top: 72%;
  left: 6vw;
  transform: translateY(-50%);
}

.hero-text-content h2 {
  letter-spacing: 0px;
  text-shadow: 0 2px 8px #00000080;
  margin: 0 0 .2rem;
  font-family: Proxima Nova, sans-serif;
  font-size: 2.2rem;
  font-weight: 300;
}

.hero-text-content h1 {
  letter-spacing: .5px;
  text-shadow: 0 2px 8px #00000080;
  margin: 0;
  font-family: Proxima Nova, sans-serif;
  font-size: 3.6rem;
  font-weight: 900;
}

.home-subtitle {
  display: none;
}

.hero-website-link {
  position: absolute;
  color: #c8102e;
  text-decoration: none;
  z-index: 4;
  font-family: Proxima Nova, sans-serif;
  font-size: .85rem;
  font-weight: 600;
  top: 55px;
  right: 6vw;
}

.home-menu-section {
  z-index: 10;
  position: relative;
  display: flex;
  background: #f4f4f4;
  width: 100%;
  padding: 40px 6vw;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  width: 100%;
}

.menu-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  border: 1px solid #0000000d;
  border-radius: 12px;
  height: 220px;
  transition: all .3s;
  box-shadow: 0 4px 15px #0000000d;
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px #0000001a;
}

.menu-info {
  position: absolute;
  z-index: 10;
  top: 25px;
  left: 25px;
}

.menu-info h3 {
  color: #475569;
  margin: 0;
  transition: color .3s;
  font-family: Proxima Nova, sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
}

.menu-img-container {
  position: absolute;
  display: flex;
  z-index: 1;
  justify-content: flex-end;
  align-items:  flex-end;
  width: 110%;
  height: 110%;
  bottom: -30px;
  right: -20px;
}

.menu-img-prism {
  object-fit: contain;
  object-position: bottom right;
  width: 100%;
  height: 100%;
  transition: all .3s;
}

.menu-card.active {
  background: #c8102e;
  transform: scale(.98);
}

.menu-card.active .menu-info h3 {
  color: #fff;
}

@media (max-width: 768px) {
  .home-container {
    overflow-y: auto;
    height: auto;
    min-height: 100vh;
  }

  .home-hero {
    flex: none;
    height: 250px;
  }

  .hero-logo-container {
    top: 20px;
  }

  .hero-logo {
    height: 25px;
  }

  .hero-website-link {
    font-size: .75rem;
    top: 25px;
  }

  .hero-text-content {
    top: auto;
    bottom: 20px;
    transform: none;
  }

  .hero-text-content h2 {
    font-size: 1.2rem;
  }

  .hero-text-content h1 {
    font-size: 2rem;
  }

  .hero-front-layer {
    width: 50%;
    height: 70%;
  }

  .home-menu-section {
    padding: 20px 4vw;
  }

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

  .menu-card {
    height: 160px;
  }

  .menu-info {
    top: 15px;
    left: 15px;
  }

  .menu-info h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}

/* node_modules/react-simple-keyboard/build/css/index.css */
/*!
 * 
 *   react-simple-keyboard v3.8.206
 *   https://github.com/hodgef/react-simple-keyboard
 *
 *   Copyright (c) Francisco Hodge (https://github.com/hodgef) and project contributors.
 *
 *   This source code is licensed under the MIT license found in the
 *   LICENSE file in the root directory of this source tree.
 *
 */
/*!
 * 
 *   simple-keyboard v3.8.141
 *   https://github.com/hodgef/simple-keyboard
 *
 *   Copyright (c) Francisco Hodge (https://github.com/hodgef) and project contributors.
 *
 *   This source code is licensed under the MIT license found in the
 *   LICENSE file in the root directory of this source tree.
 *
 */
.hg-theme-default {
  box-sizing: border-box;
  overflow: hidden;
  touch-action: manipulation;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: #ececec;
  border-radius: 5px;
  width: 100%;
  padding: 5px;
  font-family: HelveticaNeue-Light, Helvetica Neue Light, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif;
}

.hg-theme-default .hg-button span, .hg-theme-default .hg-button span svg {
  pointer-events: none;
}

.hg-theme-default button.hg-button {
  font-size: inherit;
  border-width: 0;
}

.hg-theme-default .hg-button {
  display: inline-block;
  flex-grow: 1;
}

.hg-theme-default .hg-row {
  display: flex;
}

.hg-theme-default .hg-row:not(:last-child) {
  margin-bottom: 5px;
}

.hg-theme-default .hg-row .hg-button-container, .hg-theme-default .hg-row .hg-button:not(:last-child) {
  margin-right: 5px;
}

.hg-theme-default .hg-row > div:last-child {
  margin-right: 0;
}

.hg-theme-default .hg-row .hg-button-container {
  display: flex;
}

.hg-theme-default .hg-button {
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  -webkit-tap-highlight-color: #0000;
  background: #fff;
  border-bottom: 1px solid #b5b5b5;
  border-radius: 5px;
  justify-content: center;
  align-items:  center;
  height: 40px;
  padding: 5px;
  box-shadow: 0 0 3px -1px #0000004d;
}

.hg-theme-default .hg-button.hg-standardBtn {
  width: 20px;
}

.hg-theme-default .hg-button.hg-activeButton {
  background: #efefef;
}

.hg-theme-default.hg-layout-numeric .hg-button {
  display: flex;
  justify-content: center;
  align-items:  center;
  width: 33.3%;
  height: 60px;
}

.hg-theme-default .hg-button.hg-button-numpadadd, .hg-theme-default .hg-button.hg-button-numpadenter {
  height: 85px;
}

.hg-theme-default .hg-button.hg-button-numpad0 {
  width: 105px;
}

.hg-theme-default .hg-button.hg-button-com {
  max-width: 85px;
}

.hg-theme-default .hg-button.hg-standardBtn.hg-button-at {
  max-width: 45px;
}

.hg-theme-default .hg-button.hg-selectedButton {
  color: #fff;
  background: #05194687;
}

.hg-theme-default .hg-button.hg-standardBtn[data-skbtn=".com"] {
  max-width: 82px;
}

.hg-theme-default .hg-button.hg-standardBtn[data-skbtn="@"] {
  max-width: 60px;
}

.hg-candidate-box {
  display: inline-flex;
  position: absolute;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background: #ececec;
  border-bottom: 2px solid #b5b5b5;
  border-radius: 5px;
  margin-top: -10px;
  transform: translateY(-100%);
}

ul.hg-candidate-box-list {
  display: flex;
  list-style: none;
  flex: 1;
  margin: 0;
  padding: 0;
}

li.hg-candidate-box-list-item {
  display: flex;
  justify-content: center;
  align-items:  center;
  width: 40px;
  height: 40px;
}

li.hg-candidate-box-list-item:hover {
  cursor: pointer;
  background: #00000008;
}

li.hg-candidate-box-list-item:active {
  background: #0000001a;
}

.hg-candidate-box-prev:before {
  content: "◄";
}

.hg-candidate-box-next:before {
  content: "►";
}

.hg-candidate-box-next, .hg-candidate-box-prev {
  color: #969696;
  cursor: pointer;
  display: flex;
  align-items:  center;
  padding: 0 10px;
}

.hg-candidate-box-next {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.hg-candidate-box-prev {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.hg-candidate-box-btn-active {
  color: #444;
}

/* src/pages/Catalog/SearchPopup.css */
.search-popup-overlay {
  position: fixed;
  z-index: 9999;
  display: flex;
  background: #ffffffd9;
  justify-content: center;
  align-items:  flex-end;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
}

.search-popup-bottom-sheet {
  display: flex;
  box-sizing: border-box;
  background: #fff;
  border-top: 1px solid #e2e8f0;
  flex-direction: column;
  align-items:  center;
  width: 100%;
  padding: 2rem;
  box-shadow: 0 -4px 20px #0000000d;
}

.search-input-row {
  display: flex;
  align-items:  center;
  gap: 1rem;
  width: 100%;
  max-width: 800px;
  margin-bottom: 2rem;
}

.search-input-wrapper-clean {
  display: flex;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  flex: 1;
  align-items:  center;
  padding: .8rem 1rem;
}

.search-input-icon-clean {
  color: #94a3b8;
  margin-right: .8rem;
}

.search-input-field-clean {
  outline: none;
  color: #334155;
  background: none;
  border: none;
  flex: 1;
  font-size: 1.1rem;
}

.search-input-field-clean::placeholder {
  color: #cbd5e1;
}

.btn-done-search {
  color: #fff;
  cursor: pointer;
  background: #c8102e;
  border: none;
  border-radius: 8px;
  padding: .8rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 4px 10px #c8102e33;
}

.search-keyboard-container-clean {
  width: 100%;
  max-width: 800px;
}

.search-keyboard-container-clean .hg-theme-default {
  background: none;
}

.search-keyboard-container-clean .hg-button {
  color: #475569;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  height: 50px;
  font-size: 1.2rem;
  font-weight: 500;
  box-shadow: 0 1px 2px #0000000d;
}

.search-keyboard-container-clean .hg-button:active {
  background: #e2e8f0;
}

/* src/pages/Catalog/FilterPopup.css */
.filter-popup-overlay {
  position: fixed;
  z-index: 9999;
  display: flex;
  background: #0006;
  justify-content: center;
  align-items:  center;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
}

.filter-popup-container {
  display: flex;
  overflow: hidden;
  background: #fff;
  border-radius: 12px;
  flex-direction: column;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  box-shadow: 0 10px 40px #0000001a;
}

.filter-popup-header {
  display: flex;
  border-bottom: 1px solid #f1f5f9;
  justify-content: space-between;
  align-items:  center;
  padding: 1.5rem 2rem;
}

.filter-popup-header h2 {
  color: #334155;
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
}

.btn-close-filter {
  cursor: pointer;
  color: #64748b;
  display: flex;
  background: none;
  border: none;
  justify-content: center;
  align-items:  center;
  transition: color .2s;
}

.btn-close-filter:hover {
  color: #0f172a;
}

.filter-popup-body {
  overflow-y: auto;
  flex: 1;
  padding: 2rem;
}

.filter-section {
  margin-bottom: 2rem;
}

.filter-section h3 {
  color: #475569;
  margin: 0 0 1rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.filter-tags-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.filter-tag-btn {
  color: #64748b;
  cursor: pointer;
  display: inline-flex;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  align-items:  center;
  gap: .5rem;
  padding: .6rem 1.2rem;
  transition: all .2s;
  font-size: .9rem;
  font-weight: 600;
}

.filter-tag-btn:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

.filter-tag-btn.active {
  color: #c8102e;
  background: #fff1f2;
  border-color: #c8102e;
}

.btn-show-more-features {
  color: #c8102e;
  display: flex;
  cursor: pointer;
  background: none;
  border: none;
  justify-content: center;
  align-items:  center;
  gap: .5rem;
  margin: 1.5rem auto 0;
  font-size: 1rem;
  font-weight: 700;
}

.filter-popup-footer {
  display: flex;
  background: #fafafa;
  border-top: 1px solid #f1f5f9;
  justify-content: space-between;
  align-items:  center;
  padding: 1.5rem 2rem;
}

.filter-results-text {
  color: #64748b;
  font-size: 1rem;
}

.text-red {
  color: #c8102e;
  font-weight: 700;
}

.filter-footer-actions {
  display: flex;
  align-items:  center;
  gap: 1.5rem;
}

.btn-reset-filter {
  color: #c8102e;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 700;
}

.btn-apply-filter {
  color: #fff;
  cursor: pointer;
  background: #c8102e;
  border: none;
  border-radius: 8px;
  padding: .8rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 4px 10px #c8102e33;
}

/* src/pages/Catalog/SalesContactModal.css */
.sales-rep-card:hover {
  transform: translateY(-4px);
  background: #fffffff2 !important;
  border-color: #c8102e4d !important;
  box-shadow: 0 8px 24px #c8102e14 !important;
}

.qr-code-container {
  position: relative;
  display: flex;
  overflow: hidden;
  background: #fff;
  border: 1px solid #0000000a;
  border-radius: 20px;
  justify-content: center;
  align-items:  center;
  padding: 1.5rem;
  box-shadow: 0 10px 30px #0000000d;
}

.qr-code-image {
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  width: 230px;
  height: 230px;
}

.qr-scanner-line {
  position: absolute;
  animation: scan-animation 2.5s infinite linear;
  background: linear-gradient(to right, #0000, #c8102e, #0000);
  height: 3px;
  left: 0;
  right: 0;
  box-shadow: 0 0 8px #c8102e;
}

@keyframes scan-animation {
  0% {
    top: 5%;
  }

  50% {
    top: 95%;
  }

  100% {
    top: 5%;
  }
}

/* src/pages/Catalog/InstallationModal.css */
.inst-modal-tabbed {
  width: 1200px;
  max-width: 96vw;
  height: 88vh;
  max-height: 860px;
}

.inst-tab-bar {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  background: #f1f5f9;
  border-bottom: 1.5px solid #e2e8f0e6;
  flex-shrink: 0;
  gap: 0;
  padding: 0 2rem;
}

.inst-tab-bar::-webkit-scrollbar {
  display: none;
}

.inst-tab-btn {
  display: flex;
  color: #64748b;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  background: none;
  border: none;
  border-bottom: 3px solid #0000;
  align-items:  center;
  gap: .5rem;
  padding: .9rem 1.5rem;
  transition: all .2s;
  font-size: .875rem;
  font-weight: 600;
  bottom: -1.5px;
}

.inst-tab-btn:hover {
  color: #c8102e;
  background: #c8102e0a;
}

.inst-tab-btn.active {
  color: #c8102e;
  background: #c8102e0f;
  border-bottom-color: #c8102e;
}

.inst-tab-num {
  color: #64748b;
  background: #64748b1f;
  border-radius: 20px;
  padding: .15rem .5rem;
  transition: all .2s;
  font-size: .75rem;
  font-weight: 800;
}

.inst-tab-btn.active .inst-tab-num {
  color: #c8102e;
  background: #c8102e1f;
}

.inst-tab-highlight .inst-tab-num {
  color: #fff;
  background: linear-gradient(135deg, #c8102e, #ff6b35);
}

.inst-tab-highlight.active {
  background: #c8102e14;
}

.inst-tab-content {
  overflow: hidden;
  display: flex;
  background: #f8fafc;
  flex-direction: column;
  flex: 1;
}

.inst-tab-panel {
  display: flex;
  overflow: hidden;
  animation: fadeIn .25s ease;
  flex: 1;
  justify-content: center;
  align-items:  center;
  padding: 1.5rem 2rem;
}

.inst-tab-panel-video {
  background: #fff;
  padding: 0;
}

.inst-video-wrapper {
  position: relative;
  display: flex;
  overflow: hidden;
  justify-content: center;
  align-items:  center;
  width: 100%;
  height: 100%;
}

.inst-video-player {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

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

.inst-video-play-btn {
  position: absolute;
  backdrop-filter: blur(8px);
  color: #fff;
  display: flex;
  cursor: pointer;
  background: #c8102ee6;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items:  center;
  width: 44px;
  height: 44px;
  transition: all .2s;
  bottom: 1.5rem;
  right: 1.5rem;
  box-shadow: 0 4px 16px #0000004d;
}

.inst-video-play-btn:hover {
  background: #c8102e;
  transform: scale(1.1);
}

.inst-tab-panel-persiapan {
  box-sizing: border-box;
  background: #fff;
  width: 100%;
  height: 100%;
  padding: 1rem !important;
}

.inst-prep-img-full {
  object-fit: contain;
  border-radius: 0;
  width: 100%;
  height: 100%;
}

.inst-tab-panel-langkah {
  background: #fff;
  padding: 1.5rem;
}

.inst-tab-panel-cara-kerja {
  background: #fff;
  padding: 0;
}

.inst-no-video {
  display: flex;
  color: #64748b;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items:  center;
  gap: 1rem;
  padding: 3rem;
}

.inst-no-video p {
  max-width: 300px;
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .inst-tab-btn {
    padding: .75rem 1rem;
    font-size: .8rem;
  }

  .inst-tab-label {
    display: none;
  }

  .inst-tab-num {
    padding: .25rem .65rem;
    font-size: .85rem;
  }
}

.inst-modal-overlay {
  position: fixed;
  backdrop-filter: blur(8px);
  display: flex;
  z-index: 10000;
  animation: fadeIn .3s cubic-bezier(.16, 1, .3, 1);
  background: #0f172aa6;
  justify-content: center;
  align-items:  center;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
}

.inst-modal-container {
  display: flex;
  overflow: hidden;
  animation: scaleIn .35s cubic-bezier(.34, 1.56, .64, 1);
  background: #fff;
  border: 1px solid #e2e8f0cc;
  border-radius: 24px;
  flex-direction: column;
  width: 1480px;
  max-width: 97vw;
  height: 90vh;
  max-height: 920px;
  box-shadow: 0 25px 60px -15px #0000002e;
}

.inst-modal-header {
  display: flex;
  background: #fff;
  border-bottom: 1.5px solid #e2e8f0cc;
  flex-shrink: 0;
  justify-content: space-between;
  align-items:  center;
  padding: 1rem 2.5rem;
}

.inst-modal-header h2 {
  color: #c8102e;
  display: flex;
  align-items:  center;
  gap: .75rem;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 900;
}

.inst-modal-close {
  cursor: pointer;
  display: flex;
  color: #475569;
  background: #f1f5f9;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items:  center;
  width: 36px;
  height: 36px;
  transition: all .2s;
}

.inst-modal-close:hover {
  color: #fff;
  background: #c8102e;
  transform: rotate(90deg);
}

.inst-modal-body-columns {
  display: flex;
  overflow: hidden;
  box-sizing: border-box;
  background: #f8fafc;
  flex: 1;
  gap: 1.5rem;
  padding: 1.25rem 2rem;
}

@media (max-width: 992px) {
  .inst-modal-body-columns {
    overflow-y: auto;
    flex-direction: column;
  }
}

.inst-col-left {
  display: flex;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #e2e8f0b3;
  border-radius: 20px;
  flex-direction: column;
  width: 50%;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 4px 20px #00000005;
}

@media (max-width: 992px) {
  .inst-col-left {
    width: 100%;
    height: auto;
  }
}

.inst-panel-title {
  color: #0f172a;
  display: flex;
  border-bottom: 1.5px solid #f1f5f9;
  flex-shrink: 0;
  align-items:  center;
  gap: .5rem;
  margin: 0 0 .75rem;
  padding-bottom: .4rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.inst-panel-title span {
  color: #c8102e;
}

.inst-panel-content-flat {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  height: 100%;
}

.inst-house-container-flat {
  position: relative;
  overflow: hidden;
  display: flex;
  background: radial-gradient(circle, #2a3a54 0%, #0f172a 100%);
  border: 1px solid #ffffff1a;
  border-radius: 12px;
  flex: 1;
  justify-content: center;
  align-items:  center;
  width: 100%;
  min-height: 0;
  box-shadow: inset 0 4px 20px #0006;
}

.inst-house-video {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.inst-visual-controls {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items:  center;
  gap: .75rem;
  margin-top: .75rem;
}

.btn-control-back, .btn-control-play {
  display: flex;
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items:  center;
  width: 38px;
  height: 38px;
  transition: all .2s;
}

.btn-control-back {
  background: #cbd5e1;
}

.btn-control-back:hover {
  background: #94a3b8;
}

.btn-control-play {
  background: #c8102e;
}

.btn-control-play:hover {
  background: #a10c24;
}

.inst-col-right-split {
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  gap: 1.25rem;
  width: 50%;
}

@media (max-width: 992px) {
  .inst-col-right-split {
    width: 100%;
  }
}

.inst-right-row-top {
  display: flex;
  box-sizing: border-box;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2e8f0b3;
  border-radius: 20px;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 4px 20px #00000005;
}

.inst-prep-content-flat {
  display: flex;
  overflow: hidden;
  flex: 1;
  justify-content: center;
  align-items:  center;
  width: 100%;
}

.inst-prep-img {
  object-fit: contain;
  border-radius: 8px;
  max-width: 100%;
  max-height: 100%;
}

.inst-right-row-bottom {
  display: flex;
  box-sizing: border-box;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2e8f0b3;
  border-radius: 20px;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 4px 20px #00000005;
}

.inst-step-slider-container {
  display: flex;
  overflow: hidden;
  flex: 1;
  justify-content: space-between;
  align-items:  center;
  gap: 1.5rem;
  height: 100%;
}

.inst-slider-btn {
  color: #fff;
  display: flex;
  cursor: pointer;
  background: #c8102e;
  border: none;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items:  center;
  width: 44px;
  height: 44px;
  transition: all .25s;
  box-shadow: 0 4px 10px #c8102e33;
}

.inst-slider-btn:hover:not(:disabled) {
  background: #a10c24;
  transform: scale(1.08);
}

.inst-slider-btn:disabled {
  color: #94a3b8;
  cursor: not-allowed;
  box-shadow: none;
  background: #e2e8f0;
}

.inst-slider-card-only-image {
  display: flex;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  cursor: grab;
  user-select: none;
  background: none;
  border: none;
  border-radius: 16px;
  flex: 1;
  justify-content: center;
  align-items:  center;
  gap: 0;
  height: 100%;
  padding: 0;
}

.inst-slider-card-only-image:active {
  cursor: grabbing;
}

.inst-slider-media-full {
  display: flex;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  background: none;
  justify-content: center;
  align-items:  center;
  width: 100%;
  height: 100%;
  max-height: 210px;
  padding: 0;
}

.inst-slider-img {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  transition: transform .2s;
}

.inst-slider-img.clickable {
  cursor: pointer;
}

.inst-slider-badge-overlay {
  position: absolute;
  backdrop-filter: blur(4px);
  color: #fff;
  pointer-events: none;
  z-index: 5;
  background: #0f172abf;
  border-radius: 20px;
  padding: .35rem .85rem;
  font-size: .8rem;
  font-weight: 700;
  top: .75rem;
  left: .75rem;
  box-shadow: 0 4px 10px #0000001a;
}

.inst-zoom-badge-overlay {
  position: absolute;
  color: #fff;
  cursor: pointer;
  display: flex;
  z-index: 5;
  background: #c8102e;
  border-radius: 20px;
  align-items:  center;
  gap: .4rem;
  padding: .35rem .85rem;
  transition: all .2s;
  font-size: .8rem;
  font-weight: 700;
  bottom: .75rem;
  right: .75rem;
  box-shadow: 0 4px 12px #c8102e4d;
}

.inst-zoom-badge-overlay:hover {
  background: #a10c24;
  transform: scale(1.05);
}

.inst-lightbox-overlay {
  position: fixed;
  backdrop-filter: blur(10px);
  display: flex;
  z-index: 11000;
  animation: fadeIn .25s ease;
  background: #0f172ad9;
  justify-content: center;
  align-items:  center;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
}

.inst-lightbox-box {
  position: relative;
  display: flex;
  animation: scaleIn .3s cubic-bezier(.16, 1, .3, 1);
  background: #fff;
  border-radius: 20px;
  flex-direction: column;
  align-items:  center;
  max-width: 90vw;
  max-height: 90vh;
  padding: 1.5rem;
  box-shadow: 0 30px 70px #00000059;
}

.inst-lightbox-img {
  object-fit: contain;
  border-radius: 10px;
  max-width: 100%;
  max-height: 75vh;
}

.inst-lightbox-close {
  position: absolute;
  color: #fff;
  cursor: pointer;
  display: flex;
  background: #c8102e;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items:  center;
  width: 36px;
  height: 36px;
  transition: all .2s;
  top: -15px;
  right: -15px;
  box-shadow: 0 4px 12px #c8102e59;
}

.inst-lightbox-close:hover {
  background: #a10c24;
  transform: scale(1.1);
}

.inst-lightbox-caption {
  color: #1e293b;
  text-align: center;
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 800;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(.95);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* src/pages/Catalog/ProjectReferenceModal.css */
.pr-modal-container {
  box-sizing: border-box;
  border-radius: 24px;
  width: 92vw;
  padding: 2rem;
  max-width: 1000px !important;
}

.pr-slider-body {
  display: flex;
  flex-direction: column;
  align-items:  center;
  gap: 1.5rem;
  width: 100%;
}

.pr-main-image-wrapper {
  position: relative;
  display: flex;
  box-sizing: border-box;
  overflow: hidden;
  background: #eff1f4;
  border: 1.5px solid #cbd5e1;
  border-radius: 20px;
  justify-content: center;
  align-items:  center;
  width: 100%;
  height: 480px;
  padding: 2rem;
  transition: border-color .25s;
  box-shadow: inset 0 0 10px #00000005;
}

.pr-main-image-wrapper:hover {
  border-color: #94a3b8;
}

.pr-main-image {
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  border-radius: 8px;
  max-width: 100%;
  max-height: 100%;
}

.pr-page-badge {
  position: absolute;
  backdrop-filter: blur(4px);
  color: #fff;
  letter-spacing: .5px;
  pointer-events: none;
  background: #0f172abf;
  border-radius: 20px;
  padding: .4rem .9rem;
  font-size: .82rem;
  font-weight: 700;
  bottom: 1.25rem;
  right: 1.25rem;
  box-shadow: 0 4px 10px #0000001a;
}

.pr-navigation-container {
  display: flex;
  box-sizing: border-box;
  justify-content: center;
  align-items:  center;
  gap: 1rem;
  width: 100%;
}

.pr-thumbnails-row {
  display: flex;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
  justify-content: center;
  align-items:  center;
  gap: .75rem;
  max-width: 80%;
  padding: .5rem .25rem;
}

.pr-thumbnails-row::-webkit-scrollbar {
  height: 4px;
}

.pr-thumbnails-row::-webkit-scrollbar-track {
  background: none;
}

.pr-thumbnails-row::-webkit-scrollbar-thumb {
  background-color: #cbd5e1;
  border-radius: 2px;
}

.pr-thumbnail-item {
  display: flex;
  cursor: pointer;
  box-sizing: border-box;
  overflow: hidden;
  background: #fff;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  flex-shrink: 0;
  justify-content: center;
  align-items:  center;
  width: 70px;
  height: 70px;
  padding: 4px;
  transition: all .2s;
}

.pr-thumbnail-item:hover {
  border-color: #94a3b8;
  transform: scale(1.02);
}

.pr-thumbnail-item.active {
  border-width: 2px;
  border-color: #c8102e;
  box-shadow: 0 4px 10px #c8102e1a;
}

.pr-thumbnail-item img {
  object-fit: cover;
  pointer-events: none;
  border-radius: 8px;
  max-width: 100%;
  max-height: 100%;
}

@media (max-width: 768px) {
  .pr-modal-container {
    padding: 1.25rem;
  }

  .pr-main-image-wrapper {
    height: 320px;
    padding: 1rem;
  }

  .pr-thumbnail-item {
    width: 55px;
    height: 55px;
  }

  .pr-thumbnails-row {
    max-width: 100%;
  }

  .gallery-nav-btn {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 480px) {
  .pr-main-image-wrapper {
    height: 240px;
  }

  .pr-thumbnail-item {
    width: 48px;
    height: 48px;
  }
}

/* src/pages/Catalog/FeaturesModal.css */
.features-modal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  box-sizing: border-box;
  gap: 1.25rem;
  padding: 1.5rem .5rem;
}

@media (max-width: 1024px) {
  .features-modal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .features-modal-grid {
    grid-template-columns: 1fr;
  }
}

.feature-modal-card {
  display: flex;
  text-align: center;
  box-sizing: border-box;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 20px;
  flex-direction: column;
  align-items:  center;
  min-height: 170px;
  padding: 1.75rem 1.25rem;
  transition: all .25s cubic-bezier(.16,1,.3,1);
}

.feature-modal-card:hover {
  background: #fff;
  border-color: #c8102e;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px #c8102e14;
}

.feature-modal-card-icon {
  color: #c8102e;
  display: flex;
  justify-content: center;
  align-items:  center;
  height: 40px;
  margin-bottom: 1rem;
}

.feature-modal-card-icon img, .feature-modal-card-icon svg {
  object-fit: contain;
  width: 36px !important;
  height: 36px !important;
}

.feature-modal-card-title {
  color: #1e293b;
  margin: 0 0 .5rem;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.3;
}

.feature-modal-card-desc {
  color: #64748b;
  margin: 0;
  font-size: .85rem;
  font-weight: 500;
  line-height: 1.4;
}

/* src/pages/Catalog/CompareModal.css */
.compare-modal-overlay-new {
  position: fixed;
  z-index: 2000;
  display: flex;
  background: #0006;
  justify-content: center;
  align-items:  center;
  width: 100vw;
  height: 100vh;
  padding: 2rem;
  top: 0;
  left: 0;
}

.compare-modal-content-new {
  overflow-y: auto;
  position: relative;
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 1100px;
  max-height: 90vh;
  padding: 3rem;
  box-shadow: 0 10px 40px #0003;
}

.compare-modal-header-new {
  display: flex;
  justify-content: space-between;
  align-items:  center;
  margin-bottom: 2rem;
}

.compare-modal-header-new h2 {
  color: #4a4a4a;
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
}

.close-btn-new {
  cursor: pointer;
  color: #666;
  display: flex;
  background: none;
  border: none;
  justify-content: center;
  align-items:  center;
}

.compare-table-container-new {
  width: 100%;
}

.compare-table-new {
  border-collapse: collapse;
  text-align: center;
  width: 100%;
}

.th-spec-label {
  vertical-align: middle;
  width: 200px;
}

.spec-label-title {
  color: #666;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
}

.compare-table-new th {
  vertical-align: bottom;
  padding: 1rem;
}

.td-spec-label {
  color: #666;
  text-align: center;
  background: #f8f8f8;
  border-bottom: 1px solid #fff;
  font-weight: 700;
}

.compare-table-new td {
  color: #4a4a4a;
  border-bottom: 1px solid #f4f4f4;
  padding: 1.5rem 1rem;
  font-size: .95rem;
}

.empty-slot {
  width: 100%;
  height: 200px;
}

.compare-head-new {
  display: flex;
  flex-direction: column;
  align-items:  center;
  gap: .5rem;
}

.compare-img-container-new {
  display: flex;
  background: #f4f4f4;
  border-radius: 24px;
  justify-content: center;
  align-items:  center;
  width: 180px;
  height: 180px;
  margin-bottom: 1rem;
  padding: 1rem;
}

.compare-img-new {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

.compare-head-title {
  margin: 0;
  font-size: 1.2rem;
}

.title-bold {
  color: #c8102e;
  font-weight: 800;
}

.title-light {
  color: #4a4a4a;
  font-weight: 400;
}

.compare-head-subtitle {
  color: #666;
  margin: 0;
  font-size: .8rem;
  font-weight: 700;
}

.compare-head-tags {
  display: flex;
  gap: .5rem;
  margin-top: .5rem;
}

.compare-tag {
  color: #666;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: .3rem .6rem;
  font-size: .75rem;
}

.compare-tag.active {
  color: #c8102e;
  border-color: #c8102e;
}

.price-text {
  font-weight: 700;
  color: #c8102e !important;
}

/* src/components/Loading/Loading.css */
.ariston-spinner {
  animation: ariston-spin .8s linear infinite;
  display: inline-block;
  border: 3px solid #c8102e1a;
  border-radius: 50%;
}

@keyframes ariston-spin {
  0% {
    transform: rotate(0);
  }

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

.ariston-loading-overlay {
  position: absolute;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  z-index: 1000;
  text-align: center;
  background: #fffc;
  flex-direction: column;
  justify-content: center;
  align-items:  center;
  padding: 2rem;
  transition: all .3s;
  inset: 0;
}

.ariston-logo-pulse-wrapper {
  display: flex;
  justify-content: center;
  align-items:  center;
  margin-bottom: 1.5rem;
}

.ariston-pulse-logo {
  object-fit: contain;
  animation: ariston-logo-pulse 2s ease-in-out infinite;
  height: 45px;
}

@keyframes ariston-logo-pulse {
  0%, 100% {
    transform: scale(.95);
    filter: drop-shadow(0 0 0 #c8102e00);
    opacity: .8;
  }

  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px #c8102e59);
    opacity: 1;
  }
}

.ariston-loading-text {
  color: #c8102e;
  margin: .5rem 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.ariston-loading-subtext {
  color: #64748b;
  max-width: 450px;
  margin: .25rem 0 0;
  font-size: .95rem;
  font-weight: 500;
  line-height: 1.4;
}

.ariston-chat-loader {
  display: inline-flex;
  background: #f1f5f9;
  border-radius: 12px;
  align-items:  center;
  gap: 6px;
  padding: 6px 12px;
}

.ariston-chat-loader .dot {
  animation: ariston-dots-wave 1.4s infinite ease-in-out both;
  background-color: #cbd5e1;
  border-radius: 50%;
  width: 8px;
  height: 8px;
}

.ariston-chat-loader .dot:first-child {
  animation-delay: -.32s;
}

.ariston-chat-loader .dot:nth-child(2) {
  animation-delay: -.16s;
}

@keyframes ariston-dots-wave {
  0%, 80%, 100% {
    transform: scale(.6);
    background-color: #cbd5e1;
  }

  40% {
    transform: scale(1);
    background-color: #c8102e;
  }
}

.skeleton-shimmer {
  animation: ariston-shimmer 1.5s infinite;
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%) 0 0 / 200% 100%;
}

@keyframes ariston-shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.ariston-skeleton-card {
  display: flex;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  flex-direction: column;
  gap: 1rem;
  height: 520px;
  padding: 1.5rem;
}

.ariston-skeleton-card .skeleton-image {
  border-radius: 12px;
  width: 100%;
  height: 240px;
}

.ariston-skeleton-card .skeleton-line {
  border-radius: 4px;
  height: 16px;
}

.ariston-skeleton-card .skeleton-title {
  width: 70%;
  height: 22px;
}

.ariston-skeleton-card .skeleton-subtitle {
  width: 45%;
}

.ariston-skeleton-card .skeleton-badge {
  border-radius: 30px;
  width: 30%;
  height: 26px;
}

.ariston-skeleton-card .skeleton-button {
  border-radius: 8px;
  height: 48px;
  margin-top: auto;
}

.ariston-skeleton-row {
  border-bottom: 1px solid #fff3;
}

.skeleton-row-line {
  border-radius: 4px;
  width: 100%;
  height: 24px;
}

.ariston-skeleton-text-container {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  width: 100%;
}

.skeleton-text-line {
  border-radius: 4px;
  width: 100%;
  height: 16px;
}

.skeleton-text-line:nth-child(2) {
  width: 85%;
}

.skeleton-text-line:nth-child(3) {
  width: 90%;
}

.skeleton-text-line:nth-child(4) {
  width: 65%;
}

/* src/pages/DreamStudio/DreamStudio.css */
.dream-studio {
  display: flex;
  overflow: hidden;
  box-sizing: border-box;
  flex-direction: column;
  width: 100%;
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
  padding: 1.5rem;
}

.dream-header {
  text-align: center;
  flex-shrink: 0;
  margin-bottom: 1.5rem;
}

.dream-header h1 {
  background: linear-gradient(to right, #0f172a, #3b82f6);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 1rem;
  font-size: 3rem;
}

.dream-layout {
  display: grid;
  grid-template-columns: 350px 1fr;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  background: #fff;
  border-radius: 32px;
  flex: 1;
  gap: 2rem;
  height: 100%;
  min-height: 0;
}

@media (max-width: 1000px) {
  .dream-layout {
    grid-template-columns: 1fr;
  }
}

.dream-sidebar {
  border-right: 1px solid var(--border-light);
  overflow-y: auto;
  background: #f8fafc;
  height: 100%;
  padding: 2rem;
}

.style-selector {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.style-card {
  cursor: pointer;
  display: flex;
  background: #fff;
  border: 2px solid #0000;
  border-radius: 16px;
  align-items:  center;
  gap: 1rem;
  padding: 1.2rem;
  transition: all .3s;
}

.style-card:hover {
  border-color: #cbd5e1;
  transform: translateX(5px);
}

.style-card.active {
  border-color: var(--accent);
  background: #eff6ff;
}

.generate-btn {
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 16px;
  width: 100%;
  margin-top: 2rem;
  padding: 1.2rem;
  transition: all .3s;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 10px 15px -3px #3b82f64d;
}

.generate-btn:hover:not(:disabled) {
  background: #2563eb;
  transform: translateY(-2px);
}

.generate-btn:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.dream-canvas {
  display: flex;
  position: relative;
  overflow-y: auto;
  background: #fff;
  flex-direction: column;
  justify-content: flex-start;
  align-items:  center;
  height: 100%;
  padding: 2rem;
}

.canvas-placeholder {
  text-align: center;
  color: #94a3b8;
}

.generated-image-container {
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  border-radius: 20px;
  width: 100%;
  max-width: 800px;
}

.generated-image {
  display: block;
  animation: reveal 1s ease-out;
  width: 100%;
  height: auto;
}

@keyframes reveal {
  from {
    opacity: 0;
    filter: blur(20px);
    transform: scale(1.05);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

.recommendations {
  width: 100%;
  margin-top: 2rem;
}

.recommendations h3 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.rec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

.rec-card {
  display: flex;
  cursor: pointer;
  background: #f8fafc;
  border: 1px solid #0000;
  border-radius: 16px;
  flex-direction: column;
  gap: .5rem;
  padding: 1rem;
  transition: all .3s;
}

.rec-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
  background: #fff;
}

.rec-card img {
  object-fit: contain;
  width: 100%;
  height: 120px;
  margin-bottom: .5rem;
}

.rec-card h4 {
  margin: 0;
  font-size: .9rem;
}

.rec-card span {
  color: #64748b;
  font-size: .8rem;
}

.loading-overlay {
  position: absolute;
  backdrop-filter: blur(5px);
  display: flex;
  z-index: 10;
  background: #fffc;
  border-radius: 32px;
  flex-direction: column;
  justify-content: center;
  align-items:  center;
  inset: 0;
}

.ai-pulse {
  background: var(--accent);
  animation: pulse 2s infinite;
  display: flex;
  color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items:  center;
  width: 80px;
  height: 80px;
}

@keyframes pulse {
  0% {
    transform: scale(.95);
    box-shadow: 0 0 #3b82f6b3;
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 20px #3b82f600;
  }

  100% {
    transform: scale(.95);
    box-shadow: 0 0 #3b82f600;
  }
}

.dream-history-section {
  width: 100%;
  margin-top: 3rem;
}

.history-gallery-container {
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  background: #fff;
  border-radius: 32px;
  padding: 2rem;
}

.history-header-bar {
  display: flex;
  border-bottom: 2px solid #f1f5f9;
  justify-content: space-between;
  align-items:  center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}

.history-header-bar h3 {
  color: #0f172a;
  margin: 0;
  font-size: 1.5rem;
}

.history-count {
  color: #475569;
  background: #f1f5f9;
  border-radius: 9999px;
  padding: .35rem .85rem;
  font-size: .9rem;
  font-weight: 600;
}

.history-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.history-card {
  overflow: hidden;
  display: flex;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  flex-direction: column;
  transition: all .3s;
}

.history-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
  transform: translateY(-4px);
}

.history-card-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e2e8f0;
  width: 100%;
}

.history-card-media img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .5s;
}

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

.history-card-overlay {
  position: absolute;
  backdrop-filter: blur(2px);
  display: flex;
  opacity: 0;
  background: #0f172a66;
  justify-content: center;
  align-items:  center;
  gap: 1rem;
  transition: opacity .3s;
  inset: 0;
}

.history-card-media:hover .history-card-overlay {
  opacity: 1;
}

.overlay-icon-btn {
  color: #0f172a;
  display: flex;
  background: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items:  center;
  width: 40px;
  height: 40px;
  transition: all .2s;
  box-shadow: 0 4px 6px -1px #0000001a;
}

.overlay-icon-btn:hover {
  background: var(--accent);
  color: #fff;
  transform: scale(1.1);
}

.history-card-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .5rem;
  padding: 1.25rem;
}

.style-badge {
  color: #1e40af;
  text-transform: uppercase;
  background: #dbeafe;
  border-radius: 6px;
  align-self:  flex-start;
  padding: .2rem .6rem;
  font-size: .75rem;
  font-weight: 700;
}

.history-prompt {
  color: #334155;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-box-orient: vertical;
  height: 2.4rem;
  margin: 0;
  font-size: .85rem;
  line-height: 1.2rem;
}

.history-date {
  display: flex;
  color: #64748b;
  align-items:  center;
  margin-top: auto;
  font-size: .75rem;
}

.history-loading {
  display: flex;
  color: #64748b;
  flex-direction: column;
  justify-content: center;
  align-items:  center;
  padding: 4rem 2rem;
}

.history-loading .spinner {
  border: 3px solid #cbd5e1;
  border-top-color: var(--accent);
  animation: spin 1s linear infinite;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  margin-bottom: 1rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.history-empty {
  display: flex;
  text-align: center;
  color: #64748b;
  background: #f8fafc;
  border: 2px dashed #cbd5e1;
  border-radius: 24px;
  flex-direction: column;
  justify-content: center;
  align-items:  center;
  padding: 5rem 2rem;
}

.history-empty h4 {
  color: #0f172a;
  margin: 0 0 .5rem;
  font-size: 1.1rem;
}

.history-empty p {
  max-width: 400px;
  margin: 0;
  font-size: .9rem;
}

@media (max-width: 768px) {
  .dream-studio {
    overflow-y: auto;
    height: auto;
    padding: 1rem;
  }

  .dream-header h1 {
    font-size: 2rem;
  }

  .dream-layout {
    grid-template-columns: 1fr;
    border-radius: 16px;
    height: auto;
  }

  .dream-sidebar {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
    padding: 1rem;
  }

  .history-grid {
    grid-template-columns: 1fr !important;
  }
}

/* src/pages/PhysicsSimulator/PhysicsSimulator.css */
.physics-simulator {
  display: flex;
  overflow: hidden;
  position: relative;
  background: radial-gradient(circle at 10% 20%, #f8fafc 0%, #f1f5f9 90%);
  flex-direction: column;
  width: 100%;
  height: 100%;
  font-family: Proxima Nova, -apple-system, sans-serif;
}

.simulator-header {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10;
  background: #ffffffd9;
  border-bottom: 1px solid #e2e8f0cc;
  padding: .8rem 6vw .5rem;
  box-shadow: 0 4px 20px #00000005;
}

.progress-steps-container {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items:  center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: .5rem 0;
}

.progress-step-divider {
  background: #e2e8f0;
  flex: 1;
  min-width: 20px;
  height: 2px;
  margin: 0 1rem;
  transition: all .3s cubic-bezier(.4,0,.2,1);
}

.progress-step-divider.active {
  background: var(--primary, #c8102e);
}

.progress-step-node {
  display: flex;
  position: relative;
  z-index: 3;
  cursor: pointer;
  background: none;
  flex-direction: row;
  align-items:  center;
  gap: .75rem;
  padding: 0 .5rem;
}

.step-node-circle {
  display: flex;
  background: #fff;
  border: 2px solid #cbd5e1;
  border-radius: 10px;
  flex-shrink: 0;
  justify-content: center;
  align-items:  center;
  width: 48px;
  height: 48px;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 2px 6px #00000008;
}

.step-node-icon {
  object-fit: contain;
  width: 22px;
  height: 22px;
  transition: all .3s;
}

.step-node-icon.icon-greyed {
  filter: grayscale(100%) opacity(40%);
}

.progress-step-node.active .step-node-circle {
  border-color: var(--primary, #c8102e);
  background: var(--primary, #c8102e);
  transform: scale(1.05);
  box-shadow: 0 4px 12px #c8102e40;
}

.progress-step-node.completed .step-node-circle {
  box-shadow: none;
  background: #fff1f2;
  border-color: #0000;
}

.step-node-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items:  flex-start;
  gap: .1rem;
}

.step-node-number {
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: .7rem;
  font-weight: 700;
}

.step-node-label {
  color: #94a3b8;
  white-space: nowrap;
  transition: color .3s;
  font-size: .85rem;
  font-weight: 800;
}

.progress-step-node.active .step-node-label, .progress-step-node.completed .step-node-label {
  color: #1e293b;
}

.simulator-body-wrapper {
  display: flex;
  overflow: hidden;
  box-sizing: border-box;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-items:  center;
  min-height: 0;
  padding: 1rem 6vw 1.25rem;
}

.simulator-body-wrapper.landing-mode {
  height: calc(100vh - 80px);
  margin-top: -74px;
  padding: 0;
}

.wizard-step-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items:  flex-start;
  width: 100%;
  max-width: 100%;
  min-height: 0;
}

.step-question-header {
  text-align: left;
  width: 100%;
  margin-bottom: 1.25rem;
}

.step-question-header h2 {
  color: #0f172a;
  margin-bottom: .25rem;
  font-size: 1.95rem;
  font-weight: 800;
}

.step-question-header p {
  color: #64748b;
  font-size: 1rem;
}

.simulator-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  width: 100%;
  margin-bottom: 1rem;
}

.simulator-option-card {
  display: flex;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  flex-direction: column;
  justify-content: space-between;
  align-items:  flex-start;
  min-height: 280px;
  padding: 1.8rem 1.5rem;
  transition: all .3s cubic-bezier(.25,.8,.25,1);
  box-shadow: 0 4px 15px #00000005;
}

.simulator-option-card:hover {
  border-color: #cbd5e1;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px #0000000d;
}

.simulator-option-card.selected {
  border-color: var(--primary, #c8102e);
  background: #fff1f2;
  box-shadow: 0 8px 30px #c8102e0a;
}

.card-bg-image {
  position: absolute;
  object-fit: cover;
  z-index: 1;
  width: 100%;
  height: 100%;
  transition: transform .6s cubic-bezier(.25,.8,.25,1);
  inset: 0;
}

.simulator-option-card:hover .card-bg-image {
  transform: scale(1.08);
}

.card-overlay {
  position: absolute;
  z-index: 2;
  background: linear-gradient(to top, #fffffffa 0%, #ffffffd9 15%, #fff0 45%);
  transition: all .3s;
  inset: 0;
}

.simulator-option-card.selected .card-overlay {
  background: linear-gradient(to top, #fff1f2 0%, #fff1f2d9 15%, #fff1f200 45%);
}

.card-badge-circle {
  display: flex;
  position: relative;
  z-index: 3;
  background: #fff1f2;
  border-radius: 10px;
  justify-content: center;
  align-items:  center;
  width: 44px;
  height: 44px;
  transition: all .3s;
}

.simulator-option-card.selected .card-badge-circle {
  background: var(--primary, #c8102e);
}

.card-badge-icon {
  object-fit: contain;
  width: 22px;
  height: 22px;
}

.card-text-container {
  display: flex;
  position: relative;
  z-index: 3;
  flex-direction: column;
  align-items:  flex-start;
  gap: .1rem;
  margin-top: auto;
}

.card-option-title {
  color: #1e293b;
  letter-spacing: -1px;
  margin: 0;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.1;
}

.card-option-subtitle {
  color: #94a3b8;
  margin: 0;
  font-size: .95rem;
  font-weight: 700;
}

.style-card-image-wrapper {
  overflow: hidden;
  background: #f1f5f9;
  border-radius: 12px;
  width: 100%;
  height: 140px;
  margin-bottom: 1.2rem;
}

.style-card-image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .5s;
}

.simulator-option-card:hover .style-card-image-wrapper img {
  transform: scale(1.08);
}

.simulator-wizard-footer {
  display: flex;
  box-sizing: border-box;
  border-top: 1px solid #e2e8f0cc;
  flex-shrink: 0;
  justify-content: space-between;
  align-items:  center;
  width: 100%;
  max-width: 100%;
  margin-top: .8rem;
  padding-top: .8rem;
}

.btn-wizard-back {
  color: #64748b;
  cursor: pointer;
  display: flex;
  background: none;
  border: 2px solid #cbd5e1;
  border-radius: 12px;
  align-items:  center;
  gap: .5rem;
  padding: .8rem 2rem;
  transition: all .25s;
  font-size: 1rem;
  font-weight: 700;
}

.btn-wizard-back:hover:not(:disabled) {
  color: #1e293b;
  background: #f1f5f980;
  border-color: #94a3b8;
}

.btn-wizard-back:disabled {
  opacity: .4;
  cursor: not-allowed;
}

.btn-wizard-next {
  background: var(--primary, #c8102e);
  color: #fff;
  cursor: pointer;
  display: flex;
  border: none;
  border-radius: 12px;
  align-items:  center;
  gap: .5rem;
  padding: .8rem 2.5rem;
  transition: all .25s;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 4px 15px #c8102e33;
}

.btn-wizard-next:hover:not(:disabled) {
  background: var(--primary-dark, #a10c24);
  box-shadow: 0 4px 20px #c8102e4d;
}

.btn-wizard-next:disabled {
  color: #94a3b8;
  cursor: not-allowed;
  box-shadow: none;
  background: #cbd5e1;
}

.simulator-landing-fullscreen {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background-image: url("./bg-simulator-4xb2a4w8.jpg");
  background-position: center;
  background-size: cover;
  border-radius: 0 0 24px 24px;
  width: 100%;
  height: 100%;
}

.landing-house-bg-img {
  position: absolute;
  object-fit: contain;
  object-position: left bottom;
  z-index: 1;
  pointer-events: none;
  width: auto;
  height: 78%;
  bottom: 0;
  left: 0;
}

.landing-house-content {
  position: absolute;
  display: flex;
  color: #fff;
  box-sizing: border-box;
  z-index: 2;
  flex-direction: column;
  justify-content: flex-end;
  width: 42vw;
  height: 78%;
  padding: 4.5rem 6vw;
  bottom: 0;
  left: 0;
}

.landing-banner-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 500px;
  margin-bottom: 2.5rem;
}

.landing-banner-content h1 {
  color: #fff;
  margin: 0;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.25;
}

.landing-banner-content p {
  color: #fff;
  opacity: .95;
  margin: 0 0 1rem;
  font-size: 1.2rem;
  line-height: 1.5;
}

.btn-landing-start-new {
  color: var(--primary, #c8102e);
  cursor: pointer;
  text-align: center;
  background-color: #fff;
  border: none;
  border-radius: 16px;
  align-self:  flex-start;
  width: 100%;
  max-width: 440px;
  padding: 1.2rem 2rem;
  transition: all .25s;
  font-size: 1.25rem;
  font-weight: 800;
  box-shadow: 0 4px 15px #00000026;
}

.btn-landing-start-new:hover {
  background-color: #f8fafc;
  transform: translateY(-2px);
}

.visualization-layout {
  display: flex;
  box-sizing: border-box;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2e8f0cc;
  border-radius: 24px;
  flex: 1;
  align-items: stretch;
  gap: 0;
  width: 100%;
  min-height: 0;
  padding: 0;
  box-shadow: 0 10px 40px #00000008;
}

.visual-left-container {
  display: flex;
  flex-direction: column;
  flex: 1.75;
  min-height: 0;
}

.visual-render-pane {
  position: relative;
  overflow: hidden;
  box-shadow: none;
  background: #f1f5f9;
  border: none;
  border-radius: 0;
  width: 100%;
  height: 100%;
}

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

.visual-render-image.AI-mode {
  object-fit: cover;
  background: #f8fafc;
}

.ai-loading-overlay {
  position: absolute;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  color: #fff;
  z-index: 10;
  text-align: center;
  background: #0f172ad9;
  flex-direction: column;
  justify-content: center;
  align-items:  center;
  gap: 1.5rem;
  padding: 2rem;
  inset: 0;
}

.ai-spinner {
  border: 4px solid #ffffff26;
  border-top-color: var(--primary, #c8102e);
  animation: spin 1s linear infinite;
  border-radius: 50%;
  width: 55px;
  height: 55px;
}

.ai-loading-text {
  color: #f1f5f9;
  letter-spacing: .2px;
  font-size: 1.1rem;
  font-weight: 700;
}

.ai-loading-subtext {
  color: #94a3b8;
  animation: pulseSubtext 2s infinite;
  max-width: 320px;
  font-size: .85rem;
  font-weight: 500;
}

@keyframes pulseSubtext {
  0%, 100% {
    opacity: .65;
  }

  50% {
    opacity: 1;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.water-heater-overlay-badge {
  position: absolute;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  z-index: 5;
  animation: pulseBadge 2.5s infinite;
  background: #ffffffe6;
  border: 1px solid #ffffff80;
  border-radius: 30px;
  align-items:  center;
  gap: .5rem;
  padding: .6rem 1.2rem;
  top: 25px;
  right: 25px;
  box-shadow: 0 4px 20px #0000001a;
}

@keyframes pulseBadge {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.03);
  }
}

.water-heater-overlay-badge span {
  color: var(--primary, #c8102e);
  font-size: .85rem;
  font-weight: 800;
}

.bathroom-water-heater-model {
  position: absolute;
  z-index: 4;
  filter: drop-shadow(-8px 8px 12px #0000004d);
  width: 18%;
  transition: all .5s cubic-bezier(.25,.8,.25,1);
  top: 22%;
  left: 55%;
}

@keyframes floatHeater {
  0%, 100% {
    transform: translateY(0)rotate(0);
  }

  50% {
    transform: translateY(0)rotate(0);
  }
}

.recommendation-product-bar {
  position: absolute;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  z-index: 5;
  background: #fffffff2;
  border: 1px solid #fff6;
  border-radius: 16px;
  justify-content: space-between;
  align-items:  center;
  padding: .6rem 1.25rem;
  bottom: 20px;
  left: 20px;
  right: 20px;
  box-shadow: 0 10px 25px #0000001f;
}

.bar-prod-left {
  display: flex;
  align-items:  center;
  gap: 1.25rem;
}

.bar-prod-img-wrapper {
  display: flex;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  justify-content: center;
  align-items:  center;
  width: 60px;
  height: 60px;
  padding: 4px;
}

.bar-prod-img-wrapper img {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

.bar-prod-text-info {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}

.bar-prod-label {
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: .75rem;
  font-weight: 700;
}

.bar-prod-name {
  color: var(--primary, #c8102e);
  margin: 0;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.2;
}

.btn-bar-detail {
  background: var(--primary, #c8102e);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 10px;
  padding: .75rem 1.5rem;
  transition: all .2s;
  font-size: .95rem;
  font-weight: 700;
  box-shadow: 0 4px 10px #c8102e26;
}

.btn-bar-detail:hover {
  background: var(--primary-dark, #a10c24);
  transform: translateY(-1px);
}

.visual-info-pane {
  display: flex;
  flex-direction: column;
  flex: .75;
  justify-content: space-between;
  min-height: 0;
  padding: 2.5rem 2rem;
}

.visual-text-header {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  margin-bottom: 1rem;
}

.visual-title {
  color: var(--primary, #c8102e);
  margin: 0;
  font-size: 1.8rem;
  font-weight: 900;
}

.visual-subtitle {
  color: #64748b;
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.5;
}

.visual-spec-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.spec-summary-card {
  display: flex;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  align-items:  center;
  gap: .75rem;
  padding: .8rem 1rem;
  box-shadow: 0 2px 8px #00000003;
}

.spec-card-icon-circle {
  display: flex;
  background: #fff1f2;
  border-radius: 10px;
  flex-shrink: 0;
  justify-content: center;
  align-items:  center;
  width: 44px;
  height: 44px;
}

.spec-card-icon-circle img {
  object-fit: contain;
  width: 22px;
  height: 22px;
}

.spec-card-texts {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}

.spec-card-label {
  color: #94a3b8;
  text-transform: uppercase;
  font-size: .75rem;
  font-weight: 700;
}

.spec-card-value {
  color: #1e293b;
  font-size: 1.15rem;
  font-weight: 800;
}

.btn-download-design {
  border: 1.5px solid var(--primary, #c8102e);
  color: var(--primary, #c8102e);
  cursor: pointer;
  display: flex;
  background: #fff;
  border-radius: 12px;
  justify-content: center;
  align-items:  center;
  gap: .75rem;
  width: 100%;
  padding: .85rem;
  transition: all .25s;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 4px 10px #00000005;
}

.btn-download-design:hover {
  background: #fff1f2;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px #c8102e14;
}

.qr-modal-overlay {
  position: fixed;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  z-index: 2000;
  animation: fadeInModal .3s ease;
  background: #0f172a66;
  justify-content: center;
  align-items:  center;
  inset: 0;
}

@keyframes fadeInModal {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.qr-modal-card {
  display: flex;
  position: relative;
  animation: scaleInModal .3s cubic-bezier(.34, 1.56, .64, 1);
  background: #fff;
  border: 1px solid #00000008;
  border-radius: 28px;
  flex-direction: column;
  align-items:  center;
  width: 100%;
  max-width: 480px;
  padding: 3rem 2.5rem 2.5rem;
  box-shadow: 0 20px 40px #0000000d;
}

@keyframes scaleInModal {
  from {
    transform: scale(.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.qr-modal-header-icon {
  color: #475569;
  display: flex;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  justify-content: center;
  align-items:  center;
  width: 64px;
  height: 64px;
  margin-bottom: 1.8rem;
}

.qr-modal-cloud-icon {
  color: #475569;
}

.qr-modal-card h3 {
  color: #3f3f46;
  text-align: center;
  margin: 0 0 .85rem;
  font-size: 1.8rem;
  font-weight: 700;
}

.qr-modal-card p {
  color: #71717a;
  text-align: center;
  max-width: 380px;
  margin: 0 0 2rem;
  font-size: .95rem;
  font-weight: 500;
  line-height: 1.6;
}

.qr-image-clean-wrapper {
  display: flex;
  background: #fff;
  justify-content: center;
  align-items:  center;
  margin-bottom: 1.5rem;
}

.qr-image-clean-wrapper img {
  object-fit: contain;
  width: 210px;
  height: 210px;
}

.qr-instruction-footer {
  text-align: center;
  color: #71717a !important;
  margin-bottom: 2.2rem !important;
  font-size: .95rem !important;
  font-weight: 500 !important;
}

.btn-qr-modal-close-new {
  background: var(--primary, #c8102e);
  color: #fff;
  cursor: pointer;
  box-shadow: none;
  text-align: center;
  border: none;
  border-radius: 14px;
  width: 100%;
  margin-bottom: 1.25rem;
  padding: 1.1rem;
  transition: all .2s;
  font-size: 1.1rem;
  font-weight: 700;
}

.btn-qr-modal-close-new:hover {
  background: var(--primary-dark, #a10c24);
}

.qr-countdown-text {
  color: #a1a1aa;
  text-align: center;
  font-size: .92rem;
  font-weight: 500;
}

.qr-countdown-highlight {
  color: #71717a;
  font-weight: 600;
}

@media (min-height: 760px) {
  .simulator-option-card {
    min-height: 420px !important;
  }

  .step-question-header {
    margin-bottom: 2.2rem !important;
  }

  .step-question-header h2 {
    font-size: 2.2rem !important;
  }

  .simulator-cards-grid {
    gap: 1.5rem !important;
    margin-bottom: 2.2rem !important;
  }
}

@media (min-height: 950px) {
  .simulator-option-card {
    min-height: 460px !important;
  }

  .step-question-header {
    margin-bottom: 3.5rem !important;
  }

  .step-question-header h2 {
    font-size: 2.6rem !important;
  }

  .simulator-cards-grid {
    gap: 1.85rem !important;
    margin-bottom: 3rem !important;
  }
}

.btn-riwayat-simulator {
  display: flex;
  align-items:  center;
  gap: .5rem;
}

.history-modal-overlay {
  position: fixed;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  z-index: 2000;
  animation: fadeInModal .3s ease;
  background: #0f172a66;
  justify-content: center;
  align-items:  center;
  inset: 0;
}

.history-modal-card {
  display: flex;
  animation: scaleInModal .3s cubic-bezier(.34, 1.56, .64, 1);
  overflow: hidden;
  background: #fff;
  border: 1px solid #00000008;
  border-radius: 28px;
  flex-direction: column;
  width: 100%;
  max-width: 620px;
  height: 82vh;
  padding: 0;
  box-shadow: 0 20px 40px #0000000d;
}

.history-modal-header {
  display: flex;
  justify-content: space-between;
  align-items:  center;
  padding: 1.8rem 2.2rem 1.2rem;
}

.history-header-title {
  display: flex;
  align-items:  center;
  gap: .75rem;
}

.history-header-title h2 {
  color: #3f3f46;
  letter-spacing: -.5px;
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
}

.history-header-icon {
  color: #3f3f46;
}

.btn-close-history {
  color: #a1a1aa;
  cursor: pointer;
  display: flex;
  background: none;
  border: none;
  justify-content: center;
  align-items:  center;
  padding: 4px;
  transition: color .2s;
}

.btn-close-history:hover {
  color: #3f3f46;
}

.history-sub-banner {
  color: #16a34a;
  background: #f0fdf4;
  border-top: 1px solid #dcfce7;
  border-bottom: 1px solid #dcfce7;
  padding: .75rem 2.2rem;
  font-size: .95rem;
  font-weight: 600;
}

.history-list-container {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  display: flex;
  background: #fafafa;
  flex-direction: column;
  flex: 1;
  gap: 1.25rem;
  min-height: 0;
  padding: 1.8rem 2.2rem;
}

.history-empty-state {
  text-align: center;
  color: #a1a1aa;
  padding: 4rem 2rem;
  font-size: .95rem;
  font-weight: 500;
}

.history-item-card {
  overflow: hidden;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  flex-shrink: 0;
  transition: all .3s cubic-bezier(.25,.8,.25,1);
}

.history-item-card.expanded {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px #00000005;
}

.history-card-header {
  display: flex;
  cursor: pointer;
  user-select: none;
  justify-content: space-between;
  align-items:  center;
  padding: 1.25rem 1.5rem;
}

.history-header-left {
  display: flex;
  align-items:  center;
  gap: 1.25rem;
}

.history-prod-img-wrapper {
  display: flex;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  flex-shrink: 0;
  justify-content: center;
  align-items:  center;
  width: 64px;
  height: 64px;
  padding: 4px;
}

.history-prod-img-wrapper img {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

.history-header-info {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.history-timestamp {
  color: #a1a1aa;
  font-size: .82rem;
  font-weight: 500;
}

.history-product-name {
  color: var(--primary, #c8102e);
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
}

.history-header-right {
  color: #a1a1aa;
  display: flex;
  align-items:  center;
}

.history-card-content {
  animation: slideDownFade .25s ease-out;
  padding: 0 1.5rem 1.5rem;
}

@keyframes slideDownFade {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

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

.history-input-specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
  margin-top: .5rem;
  margin-bottom: 1.25rem;
}

.history-input-spec-col {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.history-spec-label {
  color: #a1a1aa;
  text-transform: capitalize;
  font-size: .78rem;
  font-weight: 600;
}

.history-spec-value {
  color: #3f3f46;
  font-size: .95rem;
  font-weight: 700;
}

.history-content-divider {
  border: none;
  border-top: 1.5px solid #f4f4f5;
  margin: 0 0 1.25rem;
}

.history-product-description {
  color: #71717a;
  margin: 0 0 1.5rem;
  font-size: .95rem;
  line-height: 1.6;
}

.history-technical-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.history-tech-spec-box {
  display: flex;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items:  center;
  gap: .25rem;
  padding: 1rem;
}

.tech-spec-label {
  color: #94a3b8;
  text-transform: capitalize;
  font-size: .78rem;
  font-weight: 600;
}

.tech-spec-value {
  color: #334155;
  font-size: 1.15rem;
  font-weight: 800;
}

.history-actions-row {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
}

.btn-history-view-detail {
  color: var(--primary, #c8102e);
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  background: #f4f4f5;
  border: 1.5px solid #0000;
  border-radius: 12px;
  flex: 1;
  padding: .85rem;
  transition: all .2s;
  font-size: .95rem;
  font-weight: 800;
}

.btn-history-view-detail:hover {
  background: #e4e4e7;
}

.btn-history-download {
  display: flex;
  border: 1.5px solid var(--primary, #c8102e);
  color: var(--primary, #c8102e);
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  background: #fff;
  border-radius: 12px;
  flex: 1;
  justify-content: center;
  align-items:  center;
  gap: .5rem;
  padding: .85rem;
  transition: all .2s;
  font-size: .95rem;
  font-weight: 800;
}

.btn-history-download:hover {
  background: #fff1f2;
}

.history-modal-footer {
  background: #fff;
  border-top: 1px solid #f4f4f5;
  padding: 1.5rem 2.2rem 1.8rem;
}

.btn-clear-history {
  color: var(--primary, #c8102e);
  border: 1.5px solid var(--primary, #c8102e);
  cursor: pointer;
  text-align: center;
  background: #fff;
  border-radius: 14px;
  width: 100%;
  padding: 1.1rem;
  transition: all .2s;
  font-size: 1.1rem;
  font-weight: 700;
}

.btn-clear-history:hover:not(:disabled) {
  background: #fff1f2;
}

.btn-clear-history:disabled {
  opacity: .4;
  cursor: not-allowed;
  color: #a1a1aa;
  border-color: #e2e8f0;
}

.history-confirm-container {
  display: flex;
  gap: 1rem;
  width: 100%;
}

.btn-clear-history-confirm {
  background: var(--primary, #c8102e);
  color: #fff;
  cursor: pointer;
  text-align: center;
  border: none;
  border-radius: 14px;
  flex: 1;
  padding: 1.1rem;
  transition: all .2s;
  font-size: 1.1rem;
  font-weight: 700;
}

.btn-clear-history-confirm:hover {
  background: var(--primary-dark, #a10c24);
}

.btn-clear-history-cancel {
  color: #71717a;
  cursor: pointer;
  text-align: center;
  background: #fff;
  border: 1.5px solid #cbd5e1;
  border-radius: 14px;
  flex: 1;
  padding: 1.1rem;
  transition: all .2s;
  font-size: 1.1rem;
  font-weight: 700;
}

.btn-clear-history-cancel:hover {
  color: #3f3f46;
  background: #f4f4f5;
  border-color: #a1a1aa;
}

.btn-floating-history {
  position: absolute;
  z-index: 100;
  display: flex;
  color: #334155;
  cursor: pointer;
  background: #fff;
  border: 1.5px solid #cbd5e1;
  border-radius: 20px;
  align-items:  center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  transition: all .25s cubic-bezier(.16,1,.3,1);
  font-size: 1rem;
  font-weight: 800;
  bottom: 2rem;
  right: 2rem;
  box-shadow: 0 10px 25px #00000014;
}

.btn-floating-history:hover {
  border-color: var(--primary, #c8102e);
  color: var(--primary, #c8102e);
  background: #fff1f2;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px #c8102e1f;
}

.simulator-split-view {
  display: flex;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}

.simulator-view-card {
  position: relative;
  overflow: hidden;
  background: #0f172a;
  flex: 1;
  height: 100%;
}

.simulator-view-card.isometric-card {
  border-right: 2px solid #ffffff1a;
}

.split-view-image {
  object-fit: cover;
  display: block;
  width: 100%;
  height: 100%;
}

.view-card-badge {
  position: absolute;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #f8fafc;
  z-index: 5;
  letter-spacing: 1.5px;
  background: #0f172acc;
  border: 1px solid #fff3;
  border-radius: 30px;
  padding: .4rem 1.1rem;
  font-size: .72rem;
  font-weight: 800;
  top: 20px;
  left: 20px;
}

@media (max-width: 768px) {
  .simulator-header {
    padding: .5rem 4vw;
  }

  .progress-step-node {
    gap: .25rem;
  }

  .step-node-text-wrapper {
    display: none !important;
  }

  .step-node-circle {
    width: 36px;
    height: 36px;
  }

  .step-node-icon {
    width: 18px;
    height: 18px;
  }

  .progress-steps-container {
    padding: .25rem 0;
  }

  .simulator-split-view {
    overflow-y: auto !important;
    flex-direction: column !important;
  }

  .simulator-view-card {
    flex: none !important;
    height: 250px !important;
  }

  .simulator-view-card.isometric-card {
    border-bottom: 2px solid #ffffff1a;
    border-right: none;
  }

  .simulator-cards-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: .75rem !important;
  }

  .simulator-option-card {
    min-height: auto !important;
    padding: 1rem !important;
  }

  .option-card-title {
    font-size: 1rem !important;
  }

  .step-question-header {
    padding: 0 1rem;
    margin-bottom: 1rem !important;
  }

  .step-question-header h2 {
    font-size: 1.25rem !important;
  }

  .step-question-header p {
    font-size: .85rem !important;
  }

  .simulator-footer-actions {
    flex-wrap: wrap;
    gap: .5rem;
    height: auto !important;
    padding: 1rem 4vw !important;
  }

  .btn-sim-prev, .btn-sim-next {
    flex: 1;
    min-width: 80px;
    height: auto !important;
    padding: .75rem 1rem !important;
    font-size: .95rem !important;
  }

  .visual-spec-summary-grid {
    grid-template-columns: 1fr !important;
    gap: .5rem !important;
  }

  .visual-spec-card {
    padding: .75rem !important;
  }

  .history-modal-content {
    width: 95vw !important;
    max-height: 90vh !important;
    padding: 1rem !important;
  }

  .history-input-specs-grid, .history-technical-specs-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: .5rem !important;
  }
}

@media (max-width: 480px) {
  .simulator-cards-grid, .history-input-specs-grid, .history-technical-specs-grid {
    grid-template-columns: 1fr !important;
  }
}

/* src/pages/PhysicsSimulator/components/LeadFormModal.css */
.lead-modal-overlay {
  position: fixed;
  backdrop-filter: blur(12px);
  display: flex;
  z-index: 1000;
  animation: leadFadeIn .3s ease-out;
  background-color: #0f172a99;
  justify-content: center;
  align-items:  center;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
}

.lead-modal-card {
  overflow: hidden;
  display: flex;
  animation: leadSlideUp .3s cubic-bezier(.16, 1, .3, 1);
  background: #ffffffe6;
  border: 1px solid #fff9;
  border-radius: 24px;
  flex-direction: column;
  width: 800px;
  max-width: 90%;
  box-shadow: 0 20px 50px #00000026;
}

.lead-modal-header {
  display: flex;
  border-bottom: 1px solid #0000000d;
  justify-content: space-between;
  align-items:  center;
  padding: 1.5rem 2rem;
}

.lead-modal-header h2 {
  color: #c8102e;
  margin: 0;
  font-size: 1.6rem;
  font-weight: 800;
}

.btn-close-lead-modal {
  color: #64748b;
  cursor: pointer;
  display: flex;
  background: none;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items:  center;
  padding: .5rem;
  transition: all .2s;
}

.btn-close-lead-modal:hover {
  color: #c8102e;
  background-color: #0000000d;
}

.lead-modal-body {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2rem;
  padding: 2rem;
}

.lead-form-side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.lead-form-info-text {
  color: #64748b;
  margin: 0 0 .5rem;
  font-size: .95rem;
  line-height: 1.5;
}

.lead-input-group {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.lead-input-group label {
  color: #334155;
  font-size: .9rem;
  font-weight: 700;
}

.lead-input-wrapper {
  position: relative;
  display: flex;
  align-items:  center;
}

.lead-input-icon {
  position: absolute;
  color: #94a3b8;
  pointer-events: none;
  left: 1rem;
}

.lead-input-field {
  color: #334155;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  width: 100%;
  padding: .85rem 1rem .85rem 2.75rem;
  transition: all .2s;
  font-size: 1rem;
  font-weight: 600;
}

.lead-input-field:focus, .lead-input-field.active-field {
  outline: none;
  border-color: #c8102e;
  box-shadow: 0 0 0 3px #c8102e26;
}

.lead-input-field.active-field {
  background: #fff8f8;
}

.lead-keyboard-side {
  display: flex;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
}

.lead-keyboard-title {
  color: #94a3b8;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: .75rem;
  font-size: .8rem;
  font-weight: 700;
}

.simple-keyboard {
  font-family: inherit;
  background-color: #0000 !important;
}

.simple-keyboard .hg-button {
  border-bottom: 2px solid #cbd5e1 !important;
  border-radius: 6px !important;
  height: 42px !important;
  font-size: .9rem !important;
  font-weight: bold !important;
  box-shadow: 0 2px 4px #0000000d !important;
}

.simple-keyboard .hg-button:active {
  background: #e2e8f0 !important;
}

.simple-keyboard .hg-button.hg-standardBtn {
  background: #fff !important;
}

.simple-keyboard .hg-button.hg-functionBtn {
  background: #e2e8f0 !important;
}

.lead-modal-footer {
  display: flex;
  background-color: #f8fafc;
  border-top: 1px solid #0000000d;
  justify-content: flex-end;
  gap: 1rem;
  padding: 1.5rem 2rem;
}

.btn-lead-cancel {
  color: #64748b;
  cursor: pointer;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: .8rem 1.5rem;
  transition: all .2s;
  font-weight: 700;
}

.btn-lead-cancel:hover {
  color: #334155;
  background: #f1f5f9;
}

.btn-lead-submit {
  display: flex;
  color: #fff;
  cursor: pointer;
  background: #c8102e;
  border: none;
  border-radius: 12px;
  align-items:  center;
  gap: .5rem;
  padding: .8rem 2rem;
  transition: all .2s;
  font-weight: 700;
  box-shadow: 0 4px 12px #c8102e33;
}

.btn-lead-submit:hover:not(:disabled) {
  background: #a00d24;
  box-shadow: 0 6px 16px #c8102e4d;
}

.btn-lead-submit:disabled {
  box-shadow: none;
  cursor: not-allowed;
  background: #94a3b8;
}

@keyframes leadFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes leadSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* src/pages/AiAssistant/AiAssistant.css */
.ai-wrapper {
  display: flex;
  position: relative;
  overflow: hidden;
  background: #fafafa;
  flex-direction: column;
  height: 100%;
}

.text-red {
  color: #c8102e;
}

.ai-landing-view {
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items:  center;
  height: 100%;
  padding: 2rem 6vw;
}

.landing-header h1 {
  color: #334155;
  margin-bottom: .5rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.landing-header p {
  color: #64748b;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.landing-cards-row {
  display: flex;
  gap: 1.5rem;
  max-width: 900px;
  margin-bottom: 3rem;
}

.landing-card {
  text-align: left;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  flex: 1;
  padding: 1.5rem;
  box-shadow: 0 4px 15px #00000005;
}

.card-icon {
  margin-bottom: 1rem;
}

.landing-card h3 {
  color: #334155;
  margin: 0 0 .5rem;
  font-size: 1.1rem;
}

.landing-card p {
  color: #94a3b8;
  margin: 0;
  font-size: .9rem;
  line-height: 1.4;
}

.btn-mulai {
  color: #fff;
  cursor: pointer;
  background: #c8102e;
  border: none;
  border-radius: 8px;
  padding: 1rem 8rem;
  transition: all .3s;
  font-size: 1.1rem;
  font-weight: 600;
}

.btn-mulai:hover {
  background: #a10c24;
}

.ai-active-container {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin: 0;
}

.ai-empty-view {
  display: flex;
  text-align: center;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items:  center;
  width: 100%;
  padding: 2rem 6vw;
}

.empty-header h2 {
  margin-bottom: .5rem;
  font-size: 2.2rem;
  font-weight: 800;
}

.empty-header p {
  color: #64748b;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

.suggestion-cards-row {
  display: flex;
  gap: 1.5rem;
  width: 100%;
  max-width: 1200px;
  padding: 0 1rem;
}

.suggestion-card {
  text-align: left;
  color: #334155;
  cursor: pointer;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  flex: 1;
  padding: 1.25rem 1.75rem;
  transition: all .25s;
  font-size: 1.05rem;
  box-shadow: 0 4px 10px #00000005;
}

.suggestion-card:hover {
  background: #fff1f2;
  border-color: #fca5a5;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px #c8102e0d;
}

.ai-chat-view {
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  padding: 2rem 6vw;
}

.ai-messages {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.message-row {
  display: flex;
  flex-direction: column;
  max-width: 75%;
}

.message-row.user {
  align-self:  flex-end;
  align-items:  flex-end;
}

.message-row.ai {
  align-self:  flex-start;
  align-items:  flex-start;
  width: 100%;
}

.message-sender-name {
  color: #1e293b;
  display: flex;
  align-items:  center;
  gap: .5rem;
  margin-bottom: .4rem;
  font-size: .8rem;
  font-weight: 800;
}

.message-time {
  color: #94a3b8;
  font-weight: 500;
}

.message-bubble {
  padding: 1rem 1.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

.message-bubble.user {
  color: #fff;
  background: #c8102e;
  border-radius: 16px 16px 0;
  box-shadow: 0 4px 15px #c8102e26;
}

.message-bubble.ai {
  color: #1e293b;
  background: none;
  padding: 0;
}

.message-bubble.loading {
  padding: 0;
}

.spin {
  animation: spin 1s linear infinite;
  color: #c8102e;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.ai-input-area-bottom {
  display: flex;
  position: relative;
  z-index: 100;
  background: #fff;
  border-top: 1px solid #e2e8f0;
  flex-direction: column;
  flex-shrink: 0;
  align-items:  center;
  width: 100%;
  padding: 1.25rem 6vw;
}

.ai-input-pill {
  display: flex;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 50px;
  align-items:  center;
  width: 100%;
  max-width: 100%;
  padding: .4rem .6rem .4rem 1.75rem;
  transition: all .3s;
  box-shadow: 0 4px 15px #00000005;
}

.ai-input-pill:focus-within {
  background: #fff;
  border-color: #fca5a5;
  box-shadow: 0 8px 25px #c8102e14;
}

.ai-input-pill input {
  outline: none;
  color: #1e293b;
  background: none;
  border: none;
  flex: 1;
  padding: .8rem 0;
  font-size: 1.1rem;
}

.mic-btn {
  cursor: pointer;
  display: flex;
  background: none;
  border: none;
  justify-content: center;
  align-items:  center;
  padding: .6rem;
  transition: transform .2s;
}

.mic-btn:hover {
  transform: scale(1.15);
}

.send-btn {
  display: flex;
  cursor: pointer;
  background: #c8102e;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items:  center;
  width: 46px;
  height: 46px;
  margin-left: .5rem;
  transition: all .3s;
}

.send-btn:hover:not(:disabled) {
  background: #a10c24;
  transform: scale(1.05);
}

.send-btn:disabled {
  cursor: not-allowed;
  background: #e2e8f0;
}

.ai-disclaimer {
  color: #94a3b8;
  margin: .5rem 0 0;
  font-size: .75rem;
  font-weight: 500;
}

.keyboard-container {
  position: fixed;
  z-index: 9999;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  width: 520px;
  max-width: 90vw;
  padding: .85rem;
  bottom: 120px;
  right: 6vw;
  box-shadow: 0 15px 40px #0f172a2e;
}

.keyboard-container .hg-theme-default {
  background: none;
}

.keyboard-container .hg-button {
  color: #334155;
  background: #f1f5f9;
  border-bottom: 2px solid #cbd5e1;
  border-radius: 8px;
  height: 42px;
  font-size: .95rem;
  font-weight: 600;
}

.keyboard-container .hg-button:active {
  background: #e2e8f0;
}

.keyboard-container .hg-button.hg-standardBtn {
  background: #fff;
}

.message-bubble.ai {
  color: #1e293b;
  font-size: 1.05rem;
  line-height: 1.6;
}

.ai-recommended-products-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  margin-top: 1rem;
}

.ai-product-card-horizontal {
  display: flex;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  width: 100%;
  max-width: 650px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 15px #00000005;
}

.ai-product-card-horizontal:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px #0000000d;
}

.ai-product-card-left {
  position: relative;
  display: flex;
  background: #f8fafc;
  justify-content: center;
  align-items:  center;
  width: 200px;
  min-width: 200px;
  padding: 1rem;
}

.ai-product-badge {
  position: absolute;
  color: #475569;
  background: #e2e8f0;
  border-radius: 30px;
  padding: .25rem .6rem;
  font-size: .75rem;
  font-weight: 600;
  top: 12px;
  left: 12px;
}

.ai-product-img {
  object-fit: contain;
  max-width: 100%;
  max-height: 140px;
}

.ai-product-card-right {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  padding: 1.5rem;
}

.ai-product-title {
  color: #c8102e;
  margin: 0 0 .2rem;
  font-size: 1.3rem;
  font-weight: 800;
}

.ai-product-title-light {
  color: #334155;
  font-weight: 500;
}

.ai-product-type-subtitle {
  color: #64748b;
  margin: 0 0 1rem;
  font-size: .95rem;
  font-weight: 600;
}

.ai-product-specs-title {
  text-transform: uppercase;
  color: #94a3b8;
  letter-spacing: .05em;
  margin: 0 0 .5rem;
  font-size: .8rem;
  font-weight: 700;
}

.ai-product-specs-tags {
  display: flex;
  gap: .5rem;
  margin-bottom: 1.25rem;
}

.ai-spec-tag {
  border-radius: 6px;
  padding: .3rem .75rem;
  font-size: .8rem;
  font-weight: 600;
}

.ai-spec-tag.active {
  color: #c8102e;
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.ai-spec-tag:not(.active) {
  color: #64748b;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.btn-ai-detail {
  color: #fff;
  cursor: pointer;
  text-align: center;
  background: #c8102e;
  border: none;
  border-radius: 12px;
  width: 100%;
  padding: .9rem 1.5rem;
  transition: background-color .2s, transform .2s;
  font-size: 1rem;
  font-weight: 700;
}

.btn-ai-detail:hover {
  background: #a10c24;
}

.btn-ai-detail:active {
  transform: scale(.98);
}

.ai-product-actions {
  display: block;
  width: 100%;
  margin-top: 1.25rem;
}

.btn-ai-shopee {
  display: inline-flex;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  background: #f97316;
  border: none;
  border-radius: 8px;
  justify-content: center;
  align-items:  center;
  padding: .75rem 1.5rem;
  transition: background-color .2s, transform .2s;
  font-size: .95rem;
  font-weight: 600;
}

.btn-ai-shopee:hover {
  background: #ea580c;
}

.btn-ai-shopee:active {
  transform: scale(.98);
}

@media (max-width: 768px) {
  .ai-landing-view {
    overflow-y: auto;
    justify-content: flex-start;
    padding: 1rem 4vw;
  }

  .landing-header h1 {
    font-size: 1.8rem;
  }

  .landing-header p {
    margin-bottom: 1.5rem;
    font-size: .95rem;
  }

  .landing-cards-row {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin-bottom: 2rem;
  }

  .landing-card {
    padding: 1rem;
  }

  .btn-mulai {
    width: 100%;
    max-width: 320px;
    padding: .8rem 2rem;
    font-size: 1rem;
  }

  .suggestion-cards-row {
    flex-direction: column;
    gap: .75rem;
    padding: 0 1rem;
  }

  .suggestion-card {
    padding: .8rem 1rem;
    font-size: .85rem;
  }

  .ai-input-area-bottom {
    padding: .75rem 1rem !important;
  }

  .ai-input-pill {
    padding: .4rem .8rem;
  }

  .ai-input-pill input {
    font-size: .9rem;
  }

  .ai-bubble-message {
    max-width: 90% !important;
    padding: .75rem 1rem !important;
    font-size: .9rem !important;
  }
}

/* src/pages/Admin/Admin.css */
.admin-container {
  display: flex;
  position: relative;
  overflow: hidden;
  color: #1e293b;
  width: 100vw;
  height: 100vh;
  font-family: Proxima Nova, sans-serif;
}

.admin-bg-layer {
  position: absolute;
  filter: blur(15px);
  z-index: 1;
  background-image: url("./bg-hero-ay5jp97m.png");
  background-position: center;
  background-size: cover;
  width: 110%;
  height: 110%;
  top: -5%;
  left: -5%;
}

.admin-gradient-overlay {
  position: absolute;
  z-index: 2;
  background: linear-gradient(135deg, #ffffffbf 0%, #f1f5f973 100%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.admin-sidebar {
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  display: flex;
  position: relative;
  z-index: 10;
  background: #fff6;
  border-right: 1px solid #ffffff4d;
  flex-direction: column;
  width: 280px;
  box-shadow: 4px 0 30px #00000008;
}

.admin-brand {
  display: flex;
  border-bottom: 1px solid #ffffff4d;
  justify-content: center;
  align-items:  center;
  padding: 2rem 1.5rem;
}

.admin-brand-logo {
  object-fit: contain;
  height: 38px;
}

.admin-nav {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding: 2rem;
}

.admin-nav button {
  display: flex;
  text-align: left;
  color: #475569;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 8px;
  align-items:  center;
  gap: 1rem;
  width: 100%;
  padding: .85rem 1rem;
  transition: all .25s;
  font-size: .95rem;
  font-weight: 700;
}

.admin-nav button:hover {
  color: #0f172a;
  background: #ffffff4d;
}

.admin-nav button.active {
  color: #fff;
  background: #c8102e;
  box-shadow: 0 4px 15px #c8102e4d;
}

.admin-main {
  display: flex;
  overflow: hidden;
  position: relative;
  z-index: 10;
  flex-direction: column;
  flex: 1;
}

.admin-header {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  background: #fff3;
  border-bottom: 1px solid #ffffff40;
  justify-content: space-between;
  align-items:  center;
  height: 103px;
  padding: 0 2rem;
}

.admin-header h2 {
  color: #0f172a;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
}

.btn-add {
  display: flex;
  color: #fff;
  cursor: pointer;
  background: #c8102e;
  border: none;
  border-radius: 8px;
  align-items:  center;
  gap: .5rem;
  padding: .75rem 1.25rem;
  transition: all .2s;
  font-weight: 600;
  box-shadow: 0 4px 10px #c8102e26;
}

.btn-add:hover {
  background: #a10c24;
  transform: translateY(-1px);
  box-shadow: 0 6px 15px #c8102e40;
}

.admin-content {
  overflow-y: auto;
  flex: 1;
  padding: 2rem;
}

.admin-table {
  border-collapse: collapse;
  backdrop-filter: blur(25px) saturate(140%);
  -webkit-backdrop-filter: blur(25px) saturate(140%);
  overflow: hidden;
  background: #ffffff73;
  border: 1px solid #ffffff4d;
  border-radius: 12px;
  width: 100%;
  box-shadow: 0 8px 32px #0000000d;
}

.admin-table th, .admin-table td {
  text-align: left;
  border-bottom: 1px solid #fff3;
  padding: 1.1rem 1.5rem;
}

.admin-table th {
  color: #334155;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #ffffff59;
  font-size: .75rem;
  font-weight: 700;
}

.admin-table tbody tr:hover {
  background: #ffffff4d;
}

.action-buttons {
  display: flex;
  gap: .5rem;
}

.btn-icon {
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 6px;
  padding: .5rem;
  transition: all .2s;
}

.btn-icon:hover {
  background: #fff6;
}

.text-blue {
  color: #2563eb;
}

.text-red {
  color: #dc2626;
}

.modal-overlay {
  position: fixed;
  backdrop-filter: blur(6px);
  display: flex;
  z-index: 9999;
  background: #0f172a66;
  justify-content: center;
  align-items:  center;
  padding: 1rem;
  inset: 0;
}

.modal-content {
  display: flex;
  overflow: hidden;
  animation: modalFadeIn .3s cubic-bezier(.16, 1, .3, 1);
  background: #fff;
  border: 1px solid #e2e8f0cc;
  border-radius: 16px;
  flex-direction: column;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  box-shadow: 0 25px 50px -12px #00000040;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(.95)translateY(10px);
  }

  to {
    opacity: 1;
    transform: scale(1)translateY(0);
  }
}

.modal-content.modal-lg {
  max-width: 820px;
}

.modal-header {
  display: flex;
  background: #f8fafc;
  border-bottom: 1px solid #f1f5f9;
  justify-content: space-between;
  align-items:  center;
  padding: 1.25rem 1.5rem;
}

.modal-header h3 {
  color: #0f172a;
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
}

.btn-close-modal {
  cursor: pointer;
  color: #64748b;
  display: flex;
  background: none;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items:  center;
  width: 32px;
  height: 32px;
  transition: all .2s;
  font-size: 1.3rem;
}

.btn-close-modal:hover {
  color: #0f172a;
  background: #e2e8f0;
}

.modal-body {
  overflow-y: auto;
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.5rem;
}

.form-group {
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  gap: .4rem;
  width: 100%;
}

.form-group label {
  color: #475569;
  font-size: .85rem;
  font-weight: 700;
}

.form-group input, .form-group select, .form-group textarea {
  outline: none;
  box-sizing: border-box;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  width: 100%;
  padding: .75rem 1rem;
  transition: all .2s;
  font-family: inherit;
  font-size: .95rem;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: #c8102e;
  box-shadow: 0 0 0 3px #c8102e1a;
}

.form-group select {
  cursor: pointer;
  background: #fff;
}

.modal-actions {
  display: flex;
  background: #f8fafc;
  border-top: 1px solid #f1f5f9;
  justify-content: flex-end;
  gap: .75rem;
  margin-top: 1rem;
  padding: 1rem 1.5rem 1.5rem;
}

.btn-cancel {
  color: #475569;
  cursor: pointer;
  background: #fff;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  padding: .7rem 1.5rem;
  transition: all .2s;
  font-weight: 700;
}

.btn-cancel:hover {
  color: #0f172a;
  background: #f1f5f9;
}

.btn-save {
  color: #fff;
  cursor: pointer;
  background: #c8102e;
  border: none;
  border-radius: 8px;
  padding: .7rem 1.5rem;
  transition: all .2s;
  font-weight: 700;
  box-shadow: 0 4px 10px #c8102e26;
}

.btn-save:hover:not(:disabled) {
  background: #a10c24;
  box-shadow: 0 6px 15px #c8102e40;
}

.btn-save:disabled {
  box-shadow: none;
  cursor: not-allowed;
  background: #cbd5e1;
}

.tags-selection-container {
  display: flex;
  box-sizing: border-box;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  flex-wrap: wrap;
  gap: .6rem;
  width: 100%;
  padding: 1rem;
}

.tag-chip {
  display: flex;
  color: #475569;
  cursor: pointer;
  user-select: none;
  box-sizing: border-box;
  background: #fff;
  border: 1.5px solid #cbd5e1;
  border-radius: 20px;
  align-items:  center;
  gap: .5rem;
  padding: .45rem 1rem;
  transition: all .2s;
  font-size: .85rem;
  font-weight: 700;
}

.tag-chip input[type="checkbox"] {
  cursor: pointer;
  accent-color: #c8102e;
  width: 16px;
  height: 16px;
  margin: 0;
}

.tag-chip:hover {
  background: #f1f5f9;
  border-color: #94a3b8;
}

.tag-chip.active {
  color: #c8102e;
  background: #fff1f2;
  border-color: #c8102e;
  box-shadow: 0 2px 6px #c8102e14;
}

.spec-sub-tabs {
  display: flex;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  gap: .5rem;
  padding: .75rem 1.5rem;
}

.spec-sub-tabs button {
  color: #64748b;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 6px;
  padding: .6rem 1.25rem;
  transition: all .2s;
  font-size: .9rem;
  font-weight: 700;
}

.spec-sub-tabs button:hover {
  color: #334155;
  background: #f1f5f9;
}

.spec-sub-tabs button.active {
  color: #fff;
  background: #c8102e;
  box-shadow: 0 4px 10px #c8102e26;
}

.badge-basic {
  border-radius: 4px;
  font-weight: 700;
}

.dashboard-loading {
  display: flex;
  color: #64748b;
  flex-direction: column;
  justify-content: center;
  align-items:  center;
  gap: 1rem;
  padding: 5rem 0;
  font-weight: 600;
}

.spinner {
  animation: spin 1s linear infinite;
  border: 4px solid #c8102e1a;
  border-top-color: #c8102e;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }

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

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.admin-stats-card {
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  display: flex;
  background: #ffffff73;
  border: 1px solid #ffffff59;
  border-radius: 14px;
  justify-content: space-between;
  align-items:  center;
  padding: 1.25rem 1.5rem;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 8px 30px #0000000a;
}

.admin-stats-card:hover {
  background: #fff9;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px #00000014;
}

.card-content-left {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.card-title {
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: .85rem;
  font-weight: 700;
}

.card-value {
  margin: 0;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.card-description {
  color: #475569;
  margin: .2rem 0 0;
  font-size: .75rem;
  font-weight: 500;
}

.card-icon-wrapper {
  display: flex;
  border-radius: 12px;
  justify-content: center;
  align-items:  center;
  width: 54px;
  height: 54px;
  transition: transform .2s;
}

.admin-stats-card:hover .card-icon-wrapper {
  transform: scale(1.1)rotate(5deg);
}

.dashboard-charts-recent-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
}

@media (max-width: 1024px) {
  .dashboard-charts-recent-grid {
    grid-template-columns: 1fr;
  }
}

.dashboard-chart-card, .dashboard-recent-logs-card {
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  background: #ffffff73;
  border: 1px solid #ffffff4d;
  border-radius: 14px;
  padding: 1.75rem;
  box-shadow: 0 10px 35px #0000000a;
}

.card-header-chart {
  display: flex;
  color: #0f172a;
  border-bottom: 1px solid #ffffff40;
  align-items:  center;
  gap: .75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
}

.card-header-chart h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
}

.dist-section h5 {
  color: #475569;
  margin: 0 0 .75rem;
  font-size: .9rem;
  font-weight: 700;
}

.chart-bar-row {
  margin-bottom: 1rem;
}

.bar-label {
  display: flex;
  color: #1e293b;
  justify-content: space-between;
  margin-bottom: .35rem;
  font-size: .85rem;
}

.bar-label span {
  font-weight: 600;
}

.bar-label strong {
  color: #0f172a;
  font-weight: 700;
}

.bar-track {
  overflow: hidden;
  background: #e2e8f099;
  border-radius: 10px;
  height: 8px;
}

.bar-fill {
  border-radius: 10px;
  height: 100%;
  transition: width 1s cubic-bezier(.4,0,.2,1);
}

.recent-logs-list {
  display: flex;
  overflow-y: auto;
  flex-direction: column;
  gap: 1rem;
  max-height: 290px;
  margin-bottom: 1.5rem;
}

.recent-log-item {
  display: flex;
  background: #ffffff4d;
  border: 1px solid #fff3;
  border-radius: 10px;
  align-items:  center;
  gap: 1rem;
  padding: .75rem 1rem;
}

.log-badge-wrapper {
  flex-shrink: 0;
}

.log-badge {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .5px;
  text-align: center;
  border-radius: 20px;
  min-width: 65px;
  padding: .25rem .6rem;
  font-size: .7rem;
  font-weight: 800;
}

.log-badge.insert {
  color: #15803d;
  background-color: #dcfce7;
}

.log-badge.update {
  color: #a16207;
  background-color: #fef9c3;
}

.log-badge.delete {
  color: #b91c1c;
  background-color: #fee2e2;
}

.log-badge.reorder {
  color: #0369a1;
  background-color: #e0f2fe;
}

.log-info-text {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.log-action-desc {
  color: #1e293b;
  font-size: .85rem;
  font-weight: 500;
}

.log-meta {
  color: #64748b;
  font-size: .75rem;
}

.btn-view-all-logs {
  color: #c8102e;
  cursor: pointer;
  background: none;
  border: 1.5px solid #c8102e;
  border-radius: 8px;
  width: 100%;
  padding: .75rem;
  transition: all .2s;
  font-weight: 700;
}

.btn-view-all-logs:hover {
  color: #fff;
  background: #c8102e;
  box-shadow: 0 4px 12px #c8102e33;
}

.audit-logs-view-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.logs-filter-bar {
  backdrop-filter: blur(20px);
  display: flex;
  background: #ffffff73;
  border: 1px solid #ffffff4d;
  border-radius: 12px;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
}

.filter-title {
  display: flex;
  color: #334155;
  border-bottom: 1px solid #fff3;
  align-items:  center;
  gap: .5rem;
  padding-bottom: .5rem;
  font-size: .95rem;
  font-weight: 700;
}

.filters-row {
  display: flex;
  flex-wrap: wrap;
  align-items:  flex-end;
  gap: 1.5rem;
}

.filter-group {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .35rem;
  min-width: 200px;
}

.filter-group label {
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: .75rem;
  font-weight: 700;
}

.filter-group select {
  outline: none;
  cursor: pointer;
  background: #fff;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  padding: .65rem 1rem;
  transition: all .2s;
  font-size: .9rem;
  font-weight: 600;
}

.filter-group select:focus {
  border-color: #c8102e;
  box-shadow: 0 0 0 3px #c8102e14;
}

.btn-reset-filters {
  color: #475569;
  cursor: pointer;
  background: #fff;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  height: 38px;
  padding: .65rem 1.25rem;
  transition: all .2s;
  font-size: .9rem;
  font-weight: 700;
}

.btn-reset-filters:hover {
  color: #0f172a;
  background: #f1f5f9;
}

.db-table-code {
  color: #0f172a;
  background: #0f172a0f;
  border-radius: 4px;
  padding: .2rem .4rem;
  font-size: .8rem;
  font-weight: 600;
}

.log-record-id {
  color: #475569;
  font-family: monospace;
  font-size: .85rem;
}

.logs-pagination-bar {
  display: flex;
  justify-content: center;
  align-items:  center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.btn-paginate {
  color: #334155;
  cursor: pointer;
  background: #fff;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  padding: .6rem 1.25rem;
  transition: all .2s;
  font-size: .85rem;
  font-weight: 700;
}

.btn-paginate:hover:not(:disabled) {
  background: #f1f5f9;
  border-color: #94a3b8;
}

.btn-paginate:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.page-indicator {
  color: #475569;
  font-size: .9rem;
  font-weight: 700;
}

.admin-modal-overlay {
  position: fixed;
  backdrop-filter: blur(8px);
  display: flex;
  z-index: 10000;
  background: #0f172a66;
  justify-content: center;
  align-items:  center;
  padding: 1rem;
  inset: 0;
}

.admin-modal-box {
  display: flex;
  overflow: hidden;
  animation: modalFadeIn .25s cubic-bezier(.16, 1, .3, 1);
  background: #fff;
  border: 1px solid #e2e8f0cc;
  border-radius: 16px;
  flex-direction: column;
  width: 100%;
  max-width: 550px;
  max-height: 85vh;
  box-shadow: 0 25px 50px -12px #00000040;
}

.admin-modal-box.modal-lg {
  max-width: 820px;
}

.scrollable-modal-body {
  overflow-y: auto;
  max-height: 60vh;
  padding: 1.5rem;
}

.log-detail-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  gap: 1rem;
  padding: 1rem;
  font-size: .85rem;
}

.diff-container {
  margin-top: 1rem;
}

.diff-title {
  border-radius: 6px;
  margin: 0 0 .75rem;
  padding: .5rem 1rem;
  font-size: .95rem;
  font-weight: 800;
}

.diff-title.insert {
  color: #15803d;
  background-color: #dcfce7;
  border-left: 4px solid #22c55e;
}

.diff-title.delete {
  color: #b91c1c;
  background-color: #fee2e2;
  border-left: 4px solid #ef4444;
}

.diff-title.update {
  color: #a16207;
  background-color: #fef9c3;
  border-left: 4px solid #eab308;
}

.diff-table-wrapper {
  overflow: hidden;
  overflow-y: auto;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  max-height: 400px;
}

.diff-table {
  border-collapse: collapse;
  width: 100%;
  font-size: .85rem;
}

.diff-table th, .diff-table td {
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
  padding: .75rem 1rem;
}

.diff-table th {
  color: #475569;
  background-color: #f8fafc;
  font-weight: 700;
}

.diff-row-added {
  background-color: #22c55e14;
}

.diff-row-added td:first-child {
  border-left: 3px solid #22c55e;
}

.diff-row-removed {
  background-color: #ef444414;
}

.diff-row-removed td:first-child {
  border-left: 3px solid #ef4444;
}

.diff-row-changed {
  background-color: #eab30814;
}

.diff-row-changed td:first-child {
  border-left: 3px solid #eab308;
}

.old-val-col {
  color: #b91c1c;
  text-decoration: line-through;
  background-color: #ef444405;
}

.new-val-col {
  color: #15803d;
  background-color: #22c55e05;
  font-weight: 600;
}

.diff-null {
  color: #94a3b8;
  font-style: italic;
}

.admin-login-container {
  display: flex;
  position: relative;
  overflow: hidden;
  color: #1e293b;
  justify-content: center;
  align-items:  center;
  width: 100vw;
  height: 100vh;
  font-family: Proxima Nova, sans-serif;
}

.admin-login-box {
  position: relative;
  z-index: 10;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: #ffffffd9;
  border: 1px solid #ffffff80;
  border-radius: 20px;
  width: 100%;
  max-width: 400px;
  padding: 3rem 2.5rem;
  box-shadow: 0 25px 50px -12px #00000026;
}

.admin-login-box form {
  display: flex;
  flex-direction: column;
}

.admin-input {
  color: #333;
  background: #ffffffe6;
  border: 1px solid #0000001a;
  border-radius: 8px;
  padding: .8rem 1rem;
  transition: all .3s;
  font-size: 1rem;
  box-shadow: inset 0 2px 4px #00000005;
}

.admin-input:focus {
  outline: none;
  background: #fff;
  border-color: #d32f2f;
  box-shadow: 0 0 0 3px #d32f2f26;
}

.admin-login-box label {
  color: #475569;
  font-size: .9rem;
  font-weight: 600;
}

.admin-btn-primary {
  position: relative;
  overflow: hidden;
  color: #fff;
  letter-spacing: .5px;
  cursor: pointer;
  display: flex;
  background: linear-gradient(135deg, #e53935 0%, #b71c1c 100%);
  border: none;
  border-radius: 8px;
  justify-content: center;
  align-items:  center;
  gap: .5rem;
  padding: .85rem 1.5rem;
  transition: all .3s cubic-bezier(.25,.8,.25,1);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 4px 15px #e539354d;
}

.admin-btn-primary:before {
  content: "";
  position: absolute;
  animation: adminBtnShimmer 3s infinite;
  background: linear-gradient(to right, #fff0 0%, #fff3 50%, #fff0 100%);
  width: 50%;
  height: 100%;
  top: 0;
  left: -100%;
  transform: skewX(-25deg);
}

.admin-btn-primary:hover {
  background: linear-gradient(135deg, #ef5350 0%, #c62828 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px #e5393566;
}

.admin-btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 2px 10px #e539354d;
}

@keyframes adminBtnShimmer {
  0% {
    left: -100%;
  }

  20% {
    left: 200%;
  }

  100% {
    left: 200%;
  }
}

@media (max-width: 768px) {
  .admin-container {
    overflow-y: auto;
    height: auto;
    min-height: 100vh;
    flex-direction: column !important;
  }

  .admin-sidebar {
    border-bottom: 1px solid #ffffff4d;
    border-right: none;
    width: 100% !important;
    height: auto !important;
  }

  .admin-main-content {
    overflow-y: visible !important;
    padding: 1rem !important;
  }

  .admin-table-container, .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }

  .admin-login-box {
    width: 90vw !important;
    padding: 2rem 1.5rem !important;
  }
}

/* src/pages/Admin/components/LeadsView.css */
.leads-view-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.leads-actions-bar {
  display: flex;
  justify-content: space-between;
  align-items:  center;
  gap: 1rem;
}

.leads-search-wrapper {
  position: relative;
  flex: 1;
  max-width: 500px;
}

.leads-search-icon {
  position: absolute;
  color: #94a3b8;
  pointer-events: none;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
}

.leads-search-input {
  color: #334155;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  width: 100%;
  padding: .75rem 1rem .75rem 2.5rem;
  transition: all .2s;
  font-size: .95rem;
  font-weight: 600;
}

.leads-search-input:focus {
  outline: none;
  border-color: #c8102e;
  box-shadow: 0 0 0 3px #c8102e1a;
}

.btn-refresh-leads {
  color: #475569;
  cursor: pointer;
  background: #fff;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  padding: .75rem 1.25rem;
  transition: all .2s;
  font-size: .9rem;
  font-weight: 700;
}

.btn-refresh-leads:hover {
  color: #1e293b;
  background: #f8fafc;
  border-color: #94a3b8;
}

.leads-wa-link {
  display: inline-flex;
  text-decoration: none;
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 6px;
  align-items:  center;
  gap: .25rem;
  padding: .25rem .6rem;
  transition: all .2s;
  font-size: .75rem;
  font-weight: 700;
  color: #16a34a !important;
}

.leads-wa-link:hover {
  background-color: #dcfce7;
  border-color: #86efac;
  transform: translateY(-1px);
}

.leads-email-link {
  display: inline-flex;
  color: #475569;
  background-color: #f1f5f9;
  border-radius: 6px;
  justify-content: center;
  align-items:  center;
  width: 28px;
  height: 28px;
  transition: all .2s;
}

.leads-email-link:hover {
  color: #1e293b;
  background-color: #e2e8f0;
  transform: translateY(-1px);
}

.badge-sales-rep {
  display: inline-block;
  color: #0369a1;
  background-color: #e0f2fe;
  border: 1px solid #bae6fd;
  border-radius: 6px;
  padding: .25rem .6rem;
  font-size: .8rem;
  font-weight: 700;
}

.text-gray-muted {
  color: #94a3b8;
}

.leads-delete-confirm-row {
  display: flex;
  align-items:  center;
  gap: .5rem;
}

.btn-text-delete-confirm {
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 4px;
  padding: .25rem .5rem;
  font-size: .85rem;
  font-weight: 800;
}

.btn-text-delete-confirm:hover {
  background-color: #fef2f2;
}

.btn-text-delete-cancel {
  color: #64748b;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 4px;
  padding: .25rem .5rem;
  font-size: .85rem;
  font-weight: 700;
}

.btn-text-delete-cancel:hover {
  background-color: #f1f5f9;
}

.leads-table-wrapper {
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 4px 15px #00000003;
}

/* src/pages/FAQ/FAQ.css */
.faq-split-page-wrapper {
  display: flex;
  box-sizing: border-box;
  overflow: hidden;
  user-select: none;
  background-color: #f4f5f7;
  flex-direction: row;
  gap: 2.5rem;
  width: 100%;
  height: 100%;
  padding: 2rem 6vw;
  font-family: Proxima Nova, -apple-system, sans-serif;
}

.faq-categories-sidebar {
  display: flex;
  overflow-y: auto;
  flex-direction: column;
  flex-shrink: 0;
  gap: 1.2rem;
  width: 32%;
  padding: .5rem .2rem;
}

.faq-cat-side-card {
  display: flex;
  cursor: pointer;
  background: #fff;
  border: 1px solid #0000000f;
  border-radius: 20px;
  align-items:  center;
  gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 4px 12px #00000005;
}

.faq-cat-side-card:hover {
  border-color: #c8102e33;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px #0000000f;
}

.faq-cat-side-card.active {
  background-color: #fff1f2;
  border: 2px solid #c8102e;
  box-shadow: 0 8px 22px #c8102e14;
}

.faq-cat-icon-circle {
  color: #c8102e;
  display: flex;
  background-color: #fff1f2;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items:  center;
  width: 48px;
  height: 48px;
  transition: all .25s;
  box-shadow: 0 2px 6px #c8102e0d;
}

.faq-cat-side-card.active .faq-cat-icon-circle {
  color: #fff;
  background-color: #c8102e;
  box-shadow: 0 4px 10px #c8102e33;
}

.faq-cat-text-group {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  gap: .2rem;
}

.faq-cat-text-group h4 {
  color: #1e293b;
  margin: 0;
  transition: color .2s;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.25;
}

.faq-cat-side-card.active .faq-cat-text-group h4 {
  color: #c8102e;
}

.faq-cat-text-group span {
  color: #94a3b8;
  transition: color .2s;
  font-size: .85rem;
  font-weight: 600;
}

.faq-cat-side-card.active .faq-cat-text-group span {
  color: #e11d48;
}

.faq-accordion-card {
  display: flex;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #0000000a;
  border-radius: 24px;
  flex-direction: column;
  flex: 1;
  gap: 2rem;
  padding: 2.5rem;
  box-shadow: 0 8px 30px #00000008;
}

.faq-card-top-header {
  display: flex;
  border-bottom: 1.5px solid #f1f5f9;
  justify-content: space-between;
  align-items:  center;
  padding-bottom: 1.2rem;
}

.faq-card-top-header h3 {
  color: #c8102e;
  margin: 0;
  font-size: 1.8rem;
  font-weight: 900;
}

.faq-card-top-header span {
  color: #94a3b8;
  font-size: .95rem;
  font-weight: 700;
}

.faq-accordion-items-container {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-accordion-item-new {
  overflow: hidden;
  background-color: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 18px;
  transition: all .25s cubic-bezier(.4,0,.2,1);
}

.faq-accordion-item-new:hover:not(.open) {
  border-color: #cbd5e1;
}

.faq-accordion-item-new.open {
  background-color: #fff1f2;
  border-color: #c8102e;
  box-shadow: 0 4px 15px #c8102e0a;
}

.faq-accordion-trigger-new {
  display: flex;
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  justify-content: space-between;
  align-items:  center;
  gap: 1.2rem;
  width: 100%;
  padding: 1.35rem 1.8rem;
  font-family: inherit;
}

.faq-accordion-trigger-new span {
  color: #1e293b;
  transition: color .2s;
  font-size: 1.15rem;
  font-weight: 800;
}

.faq-accordion-item-new.open .faq-accordion-trigger-new span {
  color: #c8102e;
}

.faq-accordion-trigger-new svg {
  color: #94a3b8;
  flex-shrink: 0;
  transition: transform .25s, color .2s;
}

.faq-accordion-item-new.open .faq-accordion-trigger-new svg {
  color: #c8102e;
}

.faq-accordion-content-new {
  animation: slideDown .25s cubic-bezier(.4, 0, .2, 1) forwards;
  border-top: 1px solid #c8102e14;
  padding: 0 1.8rem 1.5rem;
}

.faq-accordion-content-new p {
  color: #475569;
  margin: 0;
  padding-top: 1rem;
  font-size: 1.02rem;
  line-height: 1.6;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

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

.faq-landing-container {
  display: flex;
  box-sizing: border-box;
  overflow-y: auto;
  user-select: none;
  background-color: #f4f5f7;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
  height: 100%;
  padding: 3.5rem 6vw;
  font-family: Proxima Nova, -apple-system, sans-serif;
}

.faq-hero-banner {
  position: relative;
  overflow: hidden;
  display: flex;
  background: url("./bg-faq-y06dc16b.png") right center / cover no-repeat;
  border-radius: 24px;
  align-items:  flex-end;
  height: 60%;
  box-shadow: 0 10px 30px #0000000d;
}

.faq-banner-content {
  color: #fff;
  display: flex;
  z-index: 2;
  box-sizing: border-box;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTM1IiBoZWlnaHQ9IjUzMSIgdmlld0JveD0iMCAwIDUzNSA1MzEiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CjxwYXRoIGQ9Ik01MTcuMzE1IDI1MC43ODNMMjUxLjQ0OCAxMy41Mzk5QzI0MS40MjYgNC43MDk1MyAyMjkuMDQ2IDAgMjE2LjA3NyAwQzIwMy42OTggMCAxOTEuMzE4IDQuNzA5NTMgMTgxLjI5NiAxMy41Mzk5TC0zOCAyMDguOTg2VjUzMUg1MzVWMjg5LjYzNkM1MzUgMjc0LjkxOSA1MjguNTE1IDI2MC43OSA1MTcuMzE1IDI1MC43ODNaIiBmaWxsPSIjQzgxMDJFIi8+Cjwvc3ZnPgo=") 0 0 / 100% 100% no-repeat;
  flex-direction: column;
  justify-content: center;
  width: 520px;
  height: 88%;
  padding: 4rem 6.5rem 1.8rem 3.5rem;
}

.faq-banner-content h1 {
  white-space: pre-line;
  letter-spacing: -.5px;
  margin: 0 0 1.2rem;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.15;
}

.faq-banner-content p {
  opacity: .9;
  white-space: pre-line;
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.5;
}

.faq-banner-image-overlay {
  position: absolute;
  z-index: 1;
  background: linear-gradient(90deg, #0000001a 0%, #0000 100%);
  inset: 0;
}

.faq-categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.faq-landing-card {
  display: flex;
  cursor: pointer;
  box-sizing: border-box;
  background: #fff;
  border: 1.5px solid #00000005;
  border-radius: 24px;
  flex-direction: column;
  justify-content: space-between;
  min-height: 190px;
  padding: 2.2rem 1.8rem;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 8px 24px #00000005;
}

.faq-landing-card:hover {
  border-color: #c8102e40;
  transform: translateY(-8px);
  box-shadow: 0 16px 36px #c8102e14;
}

.faq-card-header {
  display: flex;
  justify-content: space-between;
  align-items:  flex-start;
  gap: 1rem;
  width: 100%;
}

.faq-card-header h3 {
  color: #1e293b;
  margin: 0;
  transition: color .2s;
  font-size: 1.3rem;
  font-weight: 850;
  line-height: 1.3;
}

.faq-landing-card:hover .faq-card-header h3 {
  color: #c8102e;
}

.faq-card-icon-inline {
  color: #c8102e;
  display: flex;
  background-color: #fff1f2;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items:  center;
  width: 46px;
  height: 46px;
  transition: all .3s;
  box-shadow: 0 2px 6px #c8102e0a;
}

.faq-landing-card:hover .faq-card-icon-inline {
  color: #fff;
  background-color: #c8102e;
  transform: scale(1.05);
  box-shadow: 0 6px 14px #c8102e33;
}

.faq-card-description {
  color: #64748b;
  margin: 0;
  font-size: .95rem;
  font-weight: 550;
  line-height: 1.5;
}

.faq-sidebar-back-btn {
  display: flex;
  color: #64748b;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #0000000f;
  border-radius: 18px;
  align-items:  center;
  gap: .8rem;
  width: 100%;
  margin-bottom: .5rem;
  padding: 1rem 1.5rem;
  transition: all .25s;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 750;
  box-shadow: 0 4px 12px #00000005;
}

.faq-sidebar-back-btn:hover {
  color: #c8102e;
  background-color: #fff1f2;
  border-color: #c8102e33;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px #c8102e0d;
}

@media (max-width: 768px) {
  .faq-split-page-wrapper {
    overflow-y: auto;
    gap: 1.5rem;
    height: auto;
    padding: 1rem 4vw;
    flex-direction: column !important;
  }

  .faq-categories-sidebar {
    overflow-y: visible !important;
    width: 100% !important;
    height: auto !important;
  }

  .faq-content-main-panel {
    width: 100% !important;
    height: auto !important;
  }

  .faq-categories-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }

  .faq-landing-card {
    min-height: auto;
    padding: 1.2rem;
  }

  .faq-card-header h3 {
    font-size: 1.1rem;
  }

  .faq-card-icon-inline {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 480px) {
  .faq-categories-grid {
    grid-template-columns: 1fr !important;
  }
}

/* src/pages/Catalog/Catalog.css */
.catalog-container {
  box-sizing: border-box;
  display: flex;
  overflow: hidden;
  background: linear-gradient(#ebedee 0%, #fafafa 100%);
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.catalog-category-view {
  display: flex;
  box-sizing: border-box;
  overflow-y: auto;
  background: #fafafa;
  flex-direction: column;
  justify-content: flex-start;
  align-items:  center;
  height: 100%;
  padding: 2rem 6vw;
}

.catalog-main-title {
  color: #4a4a4a;
  letter-spacing: -.5px;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
  font-family: Proxima Nova, sans-serif;
  font-size: 2.3rem;
  font-weight: 800;
}

.category-carousel {
  display: flex;
  flex: 1;
  justify-content: space-between;
  align-items:  center;
  gap: 2rem;
  width: 100%;
  min-height: 480px;
  margin-bottom: 2rem;
}

.carousel-nav-btn {
  display: flex;
  cursor: pointer;
  box-sizing: border-box;
  color: #fff;
  z-index: 10;
  background: #c8102e;
  border: none;
  border-radius: 16px;
  justify-content: center;
  align-items:  center;
  width: 65px;
  height: 100%;
  transition: all .25s;
  box-shadow: 0 8px 25px #c8102e33;
}

.carousel-nav-btn.prev:hover {
  background: #a10c24;
  transform: translateX(-3px);
}

.carousel-nav-btn.next:hover {
  background: #a10c24;
  transform: translateX(3px);
}

.carousel-nav-btn.disabled, .carousel-nav-btn:disabled {
  color: #94a3b8 !important;
  box-shadow: none !important;
  opacity: .5 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  background: #cbd5e1 !important;
}

.carousel-nav-btn.disabled:hover, .carousel-nav-btn:disabled:hover {
  background: #cbd5e1 !important;
  transform: none !important;
}

.category-cards-container {
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  position: relative;
  box-sizing: border-box;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
  height: 100%;
  margin: -1.5rem -.75rem;
  padding: 1.5rem .75rem;
}

.category-cards-container::-webkit-scrollbar {
  display: none;
}

.category-cards-track {
  display: flex;
  gap: 2rem;
  width: 100%;
  height: 100%;
}

.category-large-card {
  scroll-snap-align: start;
  overflow: hidden;
  display: flex;
  cursor: grab;
  user-select: none;
  -webkit-user-drag: none;
  background: #fff;
  border: 1px solid #00000005;
  border-radius: 16px;
  flex-direction: column;
  flex: 0 0 calc(33.3333% - 1.33333rem);
  height: 100%;
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s cubic-bezier(.16,1,.3,1);
  box-shadow: 0 8px 25px #0000000f;
}

.category-large-card:active {
  cursor: grabbing;
}

.category-large-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px #0000001a;
}

.category-large-img {
  background-position: center;
  background-size: cover;
  flex: 1;
  min-height: 0;
  transition: transform .5s;
}

.category-large-card:hover .category-large-img {
  transform: scale(1.03);
}

.category-large-info {
  display: flex;
  box-sizing: border-box;
  background: #fff;
  justify-content: space-between;
  align-items:  center;
  height: 95px;
  padding: 1.5rem 1.75rem;
}

.category-large-text {
  display: flex;
  text-align: left;
  flex-direction: column;
  gap: .1rem;
}

.category-large-text .cat-title {
  color: #334155;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.1;
}

.category-large-text .cat-subtitle {
  color: #64748b;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.2;
}

.category-large-card:hover .cat-title {
  color: #c8102e;
}

.category-arrow-btn {
  display: flex;
  color: #64748b;
  border: 1.5px solid #cbd5e1;
  border-radius: 50%;
  justify-content: center;
  align-items:  center;
  width: 44px;
  height: 44px;
  transition: all .25s;
}

.category-large-card:hover .category-arrow-btn {
  color: #c8102e;
  background: none;
  border-color: #c8102e;
  transform: scale(1.05);
}

.catalog-list-view {
  display: flex;
  overflow: hidden;
  box-sizing: border-box;
  background: #f8f8f8;
  flex-direction: column;
  height: 100%;
  padding: 2rem 6vw 1rem;
}

.catalog-list-header {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items:  center;
  margin-top: 2.5rem;
  margin-bottom: 2rem;
}

.btn-back {
  display: flex;
  color: #333;
  cursor: pointer;
  z-index: 10;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 20px;
  align-items:  center;
  gap: .5rem;
  padding: .5rem 1rem;
  font-weight: 600;
}

.catalog-list-title {
  color: #333;
  position: absolute;
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  left: 50%;
  transform: translateX(-50%);
}

.btn-search-icon {
  cursor: pointer;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.catalog-sub-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.sub-filter-btn {
  color: #666;
  cursor: pointer;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: .5rem 1.5rem;
  font-weight: 600;
}

.sub-filter-btn.active {
  color: #c8102e;
  border-color: #c8102e;
}

.products-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow-y: auto;
  box-sizing: border-box;
  flex: 1;
  gap: 2rem;
  width: auto;
  margin-left: -.75rem;
  margin-right: -.75rem;
  padding: .75rem .75rem 2rem;
}

.products-grid-new > div {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card {
  display: flex;
  position: relative;
  box-sizing: border-box;
  background: #fff;
  border: 2px solid #0000;
  border-radius: 16px;
  flex-direction: column;
  height: 100%;
  min-height: 520px;
  padding: 1.75rem;
  transition: all .25s;
  box-shadow: 0 8px 25px #0000000a;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px #00000014;
}

.product-card.compared {
  border-color: #c8102e;
}

.card-badge {
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: .5px;
  background: #f1f5f9;
  border-radius: 20px;
  align-self:  flex-start;
  margin-bottom: .75rem;
  padding: .35rem .8rem;
  font-size: .72rem;
  font-weight: 800;
}

.card-image-container {
  display: flex;
  cursor: pointer;
  justify-content: center;
  align-items:  center;
  height: 200px;
  margin-bottom: .75rem;
}

.card-image-container img {
  object-fit: contain;
  max-width: 90%;
  max-height: 90%;
  transition: transform .3s;
}

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

.product-info-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  margin-bottom: .75rem;
}

.product-title-bold {
  color: #c8102e;
  letter-spacing: -.5px;
  margin: 0 0 .3rem;
  font-size: 1.35rem;
  font-weight: 900;
}

.product-title-light {
  color: #0f172a;
  font-weight: 700;
}

.product-subtitle {
  color: #94a3b8;
  margin: .5rem 0;
  font-size: .75rem;
  font-weight: 600;
}

.product-specs-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-top: .75rem;
}

.spec-tag {
  color: #64748b;
  background: none;
  border: 1px solid #cbd5e1;
  border-radius: 20px;
  padding: .35rem .85rem;
  transition: all .2s;
  font-size: .75rem;
  font-weight: 700;
}

.spec-tag.active {
  color: #c8102e;
  background: #fff1f2;
  border-color: #c8102e;
}

.btn-detail-solid {
  color: #fff;
  cursor: pointer;
  background: #c8102e;
  border: none;
  border-radius: 8px;
  margin-bottom: .75rem;
  padding: .85rem;
  transition: all .2s;
  font-size: .95rem;
  font-weight: 800;
  box-shadow: 0 4px 10px #c8102e26;
}

.btn-detail-solid:hover {
  background: #a10c24;
  box-shadow: 0 6px 15px #c8102e40;
}

.compare-checkbox-container {
  display: flex;
  cursor: pointer;
  justify-content: center;
  align-items:  center;
  gap: .6rem;
}

.compare-checkbox-container span {
  color: #64748b;
  font-size: .85rem;
  font-weight: 700;
}

.compare-checkbox-container span.text-checked {
  color: #0f172a;
  font-weight: 800;
}

.custom-checkbox {
  display: flex;
  border: 2px solid #cbd5e1;
  border-radius: 6px;
  justify-content: center;
  align-items:  center;
  width: 18px;
  height: 18px;
  transition: all .2s;
}

.custom-checkbox.checked {
  color: #fff;
  background: #c8102e;
  border-color: #c8102e;
}

.custom-checkbox.disabled {
  opacity: .5;
  background: #f4f4f4;
}

.compare-top-bar {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  margin: -2rem -6vw 2rem;
  padding: 1rem 6vw;
  box-shadow: 0 4px 15px #0000000d;
}

.compare-top-content {
  display: flex;
  justify-content: flex-end;
  align-items:  center;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.compare-slots {
  display: flex;
  gap: 1rem;
}

.compare-slot {
  display: flex;
  position: relative;
  border-radius: 8px;
  justify-content: center;
  align-items:  center;
  width: 60px;
  height: 60px;
}

.compare-slot.empty {
  background: #fff;
  border: 2px dashed #cbd5e1;
}

.compare-slot.filled {
  background: #f8f8f8;
  border: 1px solid #e2e8f0;
}

.compare-slot.filled img {
  object-fit: contain;
  max-width: 80%;
  max-height: 80%;
}

.btn-remove-slot {
  position: absolute;
  display: flex;
  cursor: pointer;
  color: #666;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  justify-content: center;
  align-items:  center;
  width: 20px;
  height: 20px;
  top: -6px;
  right: -6px;
  box-shadow: 0 2px 4px #0000001a;
}

.compare-actions-right {
  display: flex;
  align-items:  center;
  gap: 1.5rem;
}

.btn-compare-action {
  color: #94a3b8;
  cursor: not-allowed;
  background: #e2e8f0;
  border: none;
  border-radius: 8px;
  padding: .8rem 2rem;
  transition: all .2s;
  font-size: 1rem;
  font-weight: 700;
}

.btn-compare-action.ready {
  color: #fff;
  cursor: pointer;
  background: #c8102e;
}

.btn-close-compare-bar {
  cursor: pointer;
  color: #64748b;
  display: flex;
  background: none;
  border: none;
  justify-content: center;
  align-items:  center;
}

.detail-view {
  display: flex;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  background: #f4f4f4;
  gap: 3rem;
  height: 100%;
  padding: 6rem 6vw 2rem;
}

.detail-top-nav {
  display: flex;
  position: absolute;
  gap: 1rem;
  top: 2rem;
  left: 6vw;
}

.btn-back-outline {
  color: #4a4a4a;
  display: flex;
  cursor: pointer;
  background: #fff;
  border: 1.5px solid #cbd5e1;
  border-radius: 20px;
  align-items:  center;
  gap: .6rem;
  padding: .6rem 1.4rem;
  transition: all .2s;
  font-weight: 700;
  box-shadow: 0 4px 15px #00000005;
}

.btn-back-outline:hover {
  background: #f8fafc;
  border-color: #94a3b8;
}

.detail-left {
  display: flex;
  flex: 1.1;
  gap: 1.5rem;
  height: 100%;
  min-height: 0;
}

.detail-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.thumbnail {
  display: flex;
  cursor: pointer;
  box-sizing: border-box;
  background: #fff;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  justify-content: center;
  align-items:  center;
  width: 75px;
  height: 75px;
  transition: all .2s;
}

.thumbnail.active {
  border-width: 2px;
  border-color: #c8102e;
}

.thumbnail img {
  object-fit: contain;
  max-width: 80%;
  max-height: 80%;
}

.detail-main-image {
  display: flex;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #00000003;
  border-radius: 16px;
  flex: 1;
  justify-content: center;
  align-items:  center;
  height: 100%;
  min-height: 0;
  padding: 2.5rem;
  box-shadow: 0 8px 25px #0000000a;
}

.detail-main-image img {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

.detail-right {
  display: flex;
  box-sizing: border-box;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #00000003;
  border-radius: 16px;
  flex-direction: column;
  flex: 1;
  height: 100%;
  padding: 1.25rem 1.2rem 1.25rem 1.5rem;
  box-shadow: 0 8px 25px #0000000a;
}

.badge-basic {
  color: #64748b;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .5px;
  background: #f1f5f9;
  border-radius: 20px;
  align-self:  flex-start;
  margin-bottom: .35rem;
  padding: .25rem .7rem;
  font-size: .68rem;
  font-weight: 800;
}

.detail-title-bold {
  color: #c8102e;
  letter-spacing: -.5px;
  margin: 0 0 .1rem;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.1;
}

.detail-title-light {
  color: #0f172a;
  font-weight: 700;
}

.detail-sku {
  color: #94a3b8;
  margin-bottom: .6rem;
  font-size: .8rem;
  font-weight: 600;
}

.detail-section-title {
  color: #4a4a4a;
  margin-bottom: .3rem;
  font-size: .9rem;
  font-weight: 800;
}

.detail-variants {
  display: flex;
  gap: 1rem;
  margin-bottom: .8rem;
}

.variant-btn {
  color: #64748b;
  cursor: pointer;
  text-align: center;
  background: #fff;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  flex: 1;
  padding: .85rem;
  transition: all .2s;
  font-size: .95rem;
  font-weight: 800;
}

.variant-btn.active {
  color: #c8102e;
  background: #fff1f2;
  border-color: #c8102e;
}

.detail-features-list {
  list-style: none;
  color: #4b5563;
  margin: 0 0 .4rem;
  padding: 0;
  font-size: .82rem;
  line-height: 1.5;
}

.detail-features-list li {
  position: relative;
  margin-bottom: .5rem;
  padding-left: 1.1rem;
}

.detail-features-list li:before {
  content: "•";
  position: absolute;
  color: #c8102e;
  font-size: 1.2rem;
  line-height: .8;
  top: .1rem;
  left: 0;
}

.btn-link-red {
  color: #c8102e;
  cursor: pointer;
  background: none;
  border: none;
  align-self:  flex-start;
  margin-bottom: .6rem;
  padding: 0;
  transition: color .2s;
  font-size: .82rem;
  font-weight: 800;
}

.btn-link-red:hover {
  color: #a10c24;
  text-decoration: underline;
}

.detail-accordions {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: .8rem;
}

.accordion-btn {
  display: flex;
  color: #334155;
  cursor: pointer;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  justify-content: space-between;
  align-items:  center;
  padding: .6rem 1rem;
  transition: all .2s;
  font-size: .85rem;
  font-weight: 800;
}

.accordion-btn:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

.btn-solid-red {
  color: #fff;
  cursor: pointer;
  background: #c8102e;
  border: none;
  border-radius: 8px;
  width: 100%;
  margin-top: auto;
  padding: .75rem;
  transition: all .2s;
  font-size: .95rem;
  font-weight: 800;
  box-shadow: 0 4px 12px #c8102e33;
}

.btn-solid-red:hover {
  background: #a10c24;
  box-shadow: 0 6px 18px #c8102e59;
}

.modal-overlay-new {
  position: fixed;
  display: flex;
  z-index: 9999;
  background: #00000080;
  justify-content: center;
  align-items:  center;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
}

.modal-content-new {
  overflow-y: auto;
  background: #fff;
  border-radius: 20px;
  width: 900px;
  max-width: 95vw;
  max-height: 90vh;
  padding: 2rem;
  box-shadow: 0 10px 40px #0003;
}

.modal-header-new {
  display: flex;
  border-bottom: 1px solid #eee;
  justify-content: space-between;
  align-items:  center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}

.modal-header-new h2 {
  color: #333;
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
}

.modal-close-btn {
  cursor: pointer;
  color: #333;
  background: none;
  border: none;
}

.modal-table {
  border-collapse: collapse;
  width: 100%;
}

.modal-table th, .modal-table td {
  text-align: left;
  border-bottom: 1px solid #eee;
  padding: 1rem;
  font-size: .95rem;
}

.modal-table th {
  color: #333;
  font-weight: 700;
}

.modal-table tbody tr:nth-child(2n) {
  background-color: #f9f9f9;
}

.modal-dimensi-img {
  background: #f4f6f8;
  border-radius: 12px;
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
  padding: 2rem;
}

.installation-modal-body {
  display: flex;
  text-align: left;
  align-items: stretch;
  gap: 2.5rem;
  padding: .5rem 0;
}

@media (max-width: 768px) {
  .installation-modal-body {
    flex-direction: column-reverse;
  }
}

.installation-info-panel {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1rem;
  min-width: 320px;
}

.installation-info-panel h3 {
  color: #0f172a;
  margin: 0;
  font-size: 1.3rem;
  font-weight: 800;
}

.installation-desc {
  color: #64748b;
  margin: 0;
  font-size: .88rem;
  line-height: 1.5;
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: .5rem;
}

.step-item {
  display: flex;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  align-items:  flex-start;
  gap: 1rem;
  padding: 1rem;
  transition: all .25s cubic-bezier(.16,1,.3,1);
}

.step-item:hover {
  background: #fff;
  border-color: #c8102e;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px #c8102e0d;
}

.step-num {
  color: #fff;
  display: flex;
  background: #c8102e;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items:  center;
  width: 28px;
  height: 28px;
  font-size: .9rem;
  font-weight: 800;
  box-shadow: 0 4px 10px #c8102e26;
}

.step-content {
  display: flex;
  flex-direction: column;
}

.step-content h4 {
  color: #1e293b;
  margin: 0 0 .25rem;
  font-size: .95rem;
  font-weight: 800;
}

.step-content p {
  color: #64748b;
  margin: 0;
  font-size: .8rem;
  line-height: 1.4;
}

.installation-visual-panel {
  display: flex;
  flex-direction: column;
  flex: 1.4;
  justify-content: center;
  gap: .75rem;
}

.house-overlay-container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: flex;
  background: #1e293b;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  justify-content: center;
  align-items:  center;
  width: 100%;
  box-shadow: 0 10px 30px #00000026;
}

.house-base-image {
  display: block;
  object-fit: cover;
  opacity: .95;
  width: 100%;
  height: 100%;
  transition: transform .5s;
}

.webm-overlay-video {
  position: absolute;
  object-fit: fill;
  pointer-events: none;
  mix-blend-mode: screen;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.visual-caption {
  color: #64748b;
  display: flex;
  justify-content: center;
  align-items:  center;
  gap: .5rem;
  margin-top: .25rem;
  font-size: .82rem;
  font-weight: 700;
}

.visual-caption span {
  color: #c8102e;
  font-size: 1.2rem;
  line-height: 1;
}

.modal-fullscreen-new {
  position: fixed;
  display: flex;
  z-index: 9999;
  overflow: hidden;
  background: #f1f3f5 repeating-linear-gradient(-45deg, #f8fafc, #f8fafc 18px, #f1f5f9 18px 36px);
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
}

.fullscreen-modal-header {
  display: flex;
  color: #fff;
  letter-spacing: .5px;
  z-index: 10;
  text-transform: uppercase;
  background: #c8102e;
  align-items:  center;
  height: 52px;
  padding: 0 4vw;
  font-size: 1.05rem;
  font-weight: 800;
  box-shadow: 0 4px 15px #0000001f;
}

.fullscreen-modal-content {
  display: flex;
  position: relative;
  box-sizing: border-box;
  flex: 1;
  width: 100%;
  height: calc(100% - 52px);
}

@media (max-width: 992px) {
  .fullscreen-modal-content {
    overflow-y: auto;
    flex-direction: column;
  }
}

.fullscreen-visual-left {
  position: relative;
  display: flex;
  box-sizing: border-box;
  flex: 1.3;
  justify-content: center;
  align-items:  center;
  height: 100%;
  padding: 3rem 2rem;
}

.fullscreen-house-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items:  center;
  width: 100%;
  max-width: 900px;
  height: 100%;
  max-height: 600px;
}

.fullscreen-house-bg {
  object-fit: contain;
  display: block;
  width: 100%;
  height: 100%;
}

.fullscreen-house-video {
  position: absolute;
  object-fit: contain;
  pointer-events: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.fullscreen-info-right {
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  height: 100%;
  padding: 3rem 6vw 3rem 1rem;
}

@media (max-width: 992px) {
  .fullscreen-info-right {
    align-items:  center;
    padding: 2rem 4vw;
  }
}

.fullscreen-info-title-container {
  text-align: left;
  width: 100%;
  max-width: 520px;
  margin-bottom: 2rem;
}

.fullscreen-info-tag {
  color: #64748b;
  display: block;
  margin-bottom: .1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.fullscreen-info-title {
  color: #c8102e;
  margin: 0;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.15;
}

.fullscreen-card-box {
  display: flex;
  box-sizing: border-box;
  position: relative;
  background: #fff;
  border: 1px solid #00000005;
  border-radius: 32px;
  flex-direction: column;
  align-items:  center;
  gap: 2.2rem;
  width: 100%;
  max-width: 520px;
  padding: 3rem 2.5rem;
  box-shadow: 0 20px 50px #0000000f;
}

.fullscreen-card-desc {
  color: #475569;
  text-align: center;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.65;
}

.fullscreen-controls-row {
  display: flex;
  justify-content: center;
  align-items:  center;
  gap: 1.2rem;
  width: 100%;
}

.btn-control-back {
  display: flex;
  color: #fff;
  cursor: pointer;
  background: #cbd5e1;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items:  center;
  width: 46px;
  height: 46px;
  transition: all .25s;
}

.btn-control-back:hover {
  background: #94a3b8;
  transform: scale(1.05);
}

.btn-control-play {
  display: flex;
  color: #fff;
  cursor: pointer;
  background: #c8102e;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items:  center;
  width: 46px;
  height: 46px;
  transition: all .25s;
  box-shadow: 0 4px 12px #c8102e40;
}

.btn-control-play:hover {
  background: #a10c24;
  transform: scale(1.05);
  box-shadow: 0 6px 16px #c8102e66;
}

.btn-control-action {
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  background: #c8102e;
  border: none;
  border-radius: 25px;
  justify-content: center;
  align-items:  center;
  padding: .8rem 2.2rem;
  transition: all .25s;
  font-size: .95rem;
  font-weight: 800;
  box-shadow: 0 4px 12px #c8102e40;
}

.btn-control-action:hover {
  background: #a10c24;
  box-shadow: 0 6px 16px #c8102e66;
}

.installation-modal-body-new {
  display: flex;
  text-align: left;
  align-items: stretch;
  gap: 2.2rem;
  padding: .5rem 0;
}

@media (max-width: 900px) {
  .installation-modal-body-new {
    flex-direction: column;
  }
}

.installation-visual-panel-new {
  display: flex;
  flex: 1.35;
  justify-content: center;
  align-items:  center;
}

.house-overlay-container-new {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: flex;
  background: #1e293b;
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  justify-content: center;
  align-items:  center;
  width: 100%;
  box-shadow: 0 10px 30px #0000001f;
}

.house-base-image-new {
  display: block;
  object-fit: cover;
  opacity: .95;
  width: 100%;
  height: 100%;
}

.webm-overlay-video-new {
  position: absolute;
  object-fit: fill;
  pointer-events: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.installation-info-panel-new {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  gap: 1.2rem;
}

.detail-features-list-new {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: .4rem;
}

.feature-item-new {
  display: flex;
  align-items:  flex-start;
  gap: .6rem;
  transition: transform .2s;
}

.feature-item-new:hover {
  transform: translateX(4px);
}

.feature-icon-circle {
  display: flex;
  color: #c8102e;
  background-color: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items:  center;
  width: 30px;
  height: 30px;
  transition: all .25s;
}

.feature-icon-circle svg, .feature-icon-circle img {
  width: 16px !important;
  height: 16px !important;
}

.feature-item-new:hover .feature-icon-circle {
  background-color: #fff1f2;
  border-color: #c8102e;
  box-shadow: 0 4px 10px #c8102e1a;
}

.feature-text-wrapper {
  display: flex;
  text-align: left;
  flex-direction: column;
  gap: .05rem;
}

.feature-title-new {
  color: #1e293b;
  margin: 0;
  font-size: .85rem;
  font-weight: 800;
}

.feature-desc-new {
  color: #64748b;
  margin: 0;
  font-size: .75rem;
  line-height: 1.3;
}

.spec-detail-link {
  color: #c8102e;
  cursor: pointer;
  display: inline-flex;
  background: none;
  border: none;
  align-items:  center;
  padding: 0;
  transition: all .2s;
  font-size: .8rem;
  font-weight: 800;
}

.spec-detail-link:hover {
  color: #a10c24;
  text-decoration: underline;
}

.specs-image-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: .75rem 1.5rem;
  width: 100%;
  margin-bottom: .6rem;
}

.specs-image-single-new {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  width: 100%;
  margin-bottom: 1.2rem;
}

.specs-image-grid-new .specs-img-new {
  object-fit: contain;
  box-shadow: none;
  box-sizing: border-box;
  background-color: #0000;
  border: none;
  border-radius: 8px;
  width: 100%;
  height: 104px;
  padding: .5rem 1.2rem;
  transition: all .2s;
}

.specs-image-grid-new .specs-img-new:hover {
  box-shadow: none;
  border-color: #0000;
  transform: translateY(-2px);
}

.specs-image-single-new .specs-img-new {
  object-fit: contain;
  background-color: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  width: 100%;
  height: auto;
  max-height: 250px;
  padding: .6rem;
  transition: all .25s;
  box-shadow: 0 4px 12px #00000008;
}

.specs-image-single-new .specs-img-new:hover {
  border-color: #c8102e;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px #00000014;
}

.specs-img-placeholder-new {
  text-align: center;
  color: #64748b;
  cursor: pointer;
  background-color: #f8fafc;
  border: 1.5px dashed #cbd5e1;
  border-radius: 12px;
  width: 100%;
  padding: 2.5rem 1.5rem;
  transition: all .2s;
  font-size: .85rem;
  font-weight: 700;
}

.specs-img-placeholder-new:hover {
  color: #c8102e;
  background-color: #fff1f2;
  border-color: #c8102e;
}

.variant-btn {
  color: #475569;
  background: #fff;
  border: 1.5px solid #cbd5e1;
  border-radius: 6px;
  transition: all .25s cubic-bezier(.16,1,.3,1);
  font-size: .9rem;
  font-weight: 700;
}

.variant-btn:hover {
  color: #c8102e;
  background: #fff5f5;
  border-color: #c8102e;
}

.variant-btn.active {
  color: #fff;
  background: #c8102e;
  border-color: #c8102e;
  box-shadow: 0 4px 12px #c8102e33;
}

.detail-view-compact-layout {
  display: flex;
  overflow: hidden;
  box-sizing: border-box;
  background: #f4f4f4;
  gap: 3rem;
  height: 100%;
  padding: 3rem 6vw 2rem !important;
}

.detail-left-compact {
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  flex: 1.1;
  height: 100%;
  min-height: 0;
}

.detail-main-image-compact {
  display: flex;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #00000003;
  border-radius: 16px;
  flex: 1;
  justify-content: center;
  align-items:  center;
  min-height: 0;
  padding: 2rem;
  box-shadow: 0 8px 25px #0000000a;
}

.detail-main-image-compact img {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

.detail-thumbnails-horizontal {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.detail-thumbnails-horizontal .thumbnail-item {
  display: flex;
  cursor: pointer;
  box-sizing: border-box;
  background: #fff;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  justify-content: center;
  align-items:  center;
  width: 70px;
  height: 70px;
  transition: all .2s;
}

.detail-thumbnails-horizontal .thumbnail-item.active {
  border-width: 2.5px;
  border-color: #c8102e;
}

.detail-thumbnails-horizontal .thumbnail-item img {
  object-fit: contain;
  max-width: 80%;
  max-height: 80%;
}

.detail-left-navigation-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: .5rem;
}

.btn-back-outline-compact {
  color: #4a4a4a;
  display: flex;
  cursor: pointer;
  background: #fff;
  border: 1.5px solid #cbd5e1;
  border-radius: 20px;
  align-items:  center;
  gap: .6rem;
  padding: .6rem 1.4rem;
  transition: all .2s;
  font-size: .85rem;
  font-weight: 700;
  box-shadow: 0 4px 15px #00000005;
}

.btn-back-outline-compact:hover {
  background: #f8fafc;
  border-color: #94a3b8;
}

.detail-right-compact-wrapper {
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  flex: 1;
  height: 100%;
  min-height: 0;
}

.detail-right-info-card {
  display: flex;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #00000003;
  border-radius: 24px;
  flex-direction: column;
  flex: 1;
  margin-bottom: 1.5rem;
  padding: 2rem 2.25rem;
  box-shadow: 0 10px 30px #00000008;
}

.badge-basic-compact {
  color: #64748b;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .5px;
  background: #e2e8f0;
  border-radius: 20px;
  align-self:  flex-start;
  margin-bottom: .75rem;
  padding: .35rem .8rem;
  font-size: .72rem;
  font-weight: 800;
}

.detail-title-bold-compact {
  color: #c8102e;
  letter-spacing: -.5px;
  margin: 0 0 .2rem;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.1;
}

.detail-title-light-compact {
  color: #0f172a;
  font-weight: 700;
}

.detail-sku-compact {
  color: #94a3b8;
  margin-bottom: 1.25rem;
  font-size: .85rem;
  font-weight: 600;
}

.capacity-section-compact {
  margin-bottom: 1.5rem;
}

.detail-section-title-compact {
  color: #475569;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: .75rem;
  font-size: .95rem;
  font-weight: 800;
}

.detail-variants-horizontal {
  display: flex;
  gap: 1rem;
}

.variant-pill-btn {
  cursor: pointer;
  display: flex;
  background: #fff;
  border: 1.5px solid #cbd5e1;
  border-radius: 16px;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items:  center;
  gap: .25rem;
  padding: 1.25rem 1rem;
  transition: all .2s;
}

.variant-pill-btn:hover {
  background: #fff5f5;
  border-color: #c8102e;
}

.variant-pill-btn.active {
  color: #fff;
  background: #c8102e;
  border-color: #c8102e;
  box-shadow: 0 8px 24px #c8102e40;
}

.variant-cap {
  color: #0f172a;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.1;
}

.variant-pill-btn.active .variant-cap {
  color: #fff;
}

.variant-watt {
  color: #64748b;
  font-size: .85rem;
  font-weight: 600;
}

.variant-pill-btn.active .variant-watt {
  color: #fffc;
}

.features-grid-3col-compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: .5rem;
}

.feature-card-item-compact {
  display: flex;
  text-align: center;
  box-sizing: border-box;
  background: #fff;
  border: 1.5px solid #cbd5e1;
  border-radius: 16px;
  flex-direction: column;
  justify-content: center;
  align-items:  center;
  min-height: 130px;
  padding: 1.5rem .75rem;
  transition: all .25s;
  box-shadow: 0 4px 15px #00000005;
}

.feature-card-item-compact:hover {
  border-color: #c8102e;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px #c8102e0f;
}

.feature-info-indicator {
  position: absolute;
  color: #cbd5e1;
  display: flex;
  justify-content: center;
  align-items:  center;
  width: 20px;
  height: 20px;
  transition: all .2s;
  top: 10px;
  right: 10px;
}

.feature-card-item-compact:hover .feature-info-indicator {
  color: #c8102e;
  transform: scale(1.1);
}

.feature-tooltip-bubble {
  position: absolute;
  color: #fff;
  z-index: 1000;
  text-align: left;
  box-sizing: border-box;
  background: #1e293b;
  border-radius: 16px;
  width: 340px;
  padding: 1.25rem 1.5rem;
  bottom: calc(100% + 14px);
  box-shadow: 0 15px 35px #0f172a33, 0 10px 15px #0f172a26;
}

.feature-tooltip-bubble.align-center {
  animation: tooltipFadeInCenter .2s cubic-bezier(.16, 1, .3, 1);
  left: 50%;
  transform: translateX(-50%);
}

.feature-tooltip-bubble.align-left {
  animation: tooltipFadeInFlat .2s cubic-bezier(.16, 1, .3, 1);
  left: 0;
  transform: none;
}

.feature-tooltip-bubble.align-right {
  animation: tooltipFadeInFlat .2s cubic-bezier(.16, 1, .3, 1);
  left: auto;
  right: 0;
  transform: none;
}

.feature-tooltip-arrow {
  position: absolute;
  border: 8px solid #0000;
  border-top-color: #1e293b;
  top: 100%;
}

.feature-tooltip-bubble.align-center .feature-tooltip-arrow {
  left: 50%;
  transform: translateX(-50%);
}

.feature-tooltip-bubble.align-left .feature-tooltip-arrow {
  left: 70px;
  transform: translateX(-50%);
}

.feature-tooltip-bubble.align-right .feature-tooltip-arrow {
  left: auto;
  right: 70px;
  transform: translateX(50%);
}

.feature-tooltip-content {
  color: #f1f5f9;
  white-space: normal;
  word-break: keep-all;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
}

@keyframes tooltipFadeInCenter {
  from {
    opacity: 0;
    transform: translateX(-50%)translateY(8px)scale(.95);
  }

  to {
    opacity: 1;
    transform: translateX(-50%)translateY(0)scale(1);
  }
}

@keyframes tooltipFadeInFlat {
  from {
    opacity: 0;
    transform: translateY(8px)scale(.95);
  }

  to {
    opacity: 1;
    transform: translateY(0)scale(1);
  }
}

.feature-icon-wrapper-compact {
  color: #c8102e;
  display: flex;
  justify-content: center;
  align-items:  center;
  height: 32px;
  margin-bottom: .75rem;
}

.feature-icon-wrapper-compact img, .feature-icon-wrapper-compact svg {
  object-fit: contain;
  width: 32px !important;
  height: 32px !important;
}

.feature-title-compact {
  color: #1e293b;
  margin: 0;
  font-size: .85rem;
  font-weight: 800;
  line-height: 1.3;
}

.detail-bottom-actions-row {
  display: flex;
  align-items:  center;
  gap: .75rem;
  margin-top: auto;
}

.btn-action-outline-compact {
  display: flex;
  color: #475569;
  cursor: pointer;
  background: #fff;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  flex: 1;
  justify-content: center;
  align-items:  center;
  padding: .9rem .5rem;
  transition: all .2s;
  font-size: .9rem;
  font-weight: 800;
  box-shadow: 0 4px 12px #00000005;
}

.btn-action-outline-compact:hover {
  color: #0f172a;
  background: #f8fafc;
  border-color: #94a3b8;
}

.btn-solid-red-compact {
  color: #fff;
  cursor: pointer;
  background: #c8102e;
  border: none;
  border-radius: 12px;
  flex: 1.2;
  padding: .9rem 1rem;
  transition: all .2s;
  font-size: .95rem;
  font-weight: 800;
  box-shadow: 0 4px 12px #c8102e33;
}

.btn-solid-red-compact:hover {
  background: #a10c24;
  box-shadow: 0 6px 18px #c8102e59;
}

.modal-specs-compact {
  border-radius: 24px;
  width: 90vw;
  padding: 2rem;
  max-width: 980px !important;
}

.specs-popup-grid-wrapper {
  overflow-y: auto;
  max-height: 65vh;
  padding: 1.5rem 0 .5rem;
}

.specs-features-grid-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
}

@media (max-width: 768px) {
  .specs-features-grid-4col {
    grid-template-columns: repeat(2, 1fr);
  }
}

.specs-grid-item-card {
  display: flex;
  text-align: center;
  box-sizing: border-box;
  background: #fff;
  border: 1.5px solid #cbd5e1;
  border-radius: 20px;
  flex-direction: column;
  justify-content: center;
  align-items:  center;
  gap: 1rem;
  min-height: 160px;
  padding: 2rem 1rem;
  transition: all .25s;
  box-shadow: 0 4px 15px #00000005;
}

.specs-grid-item-card:hover {
  border-color: #c8102e;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px #c8102e14;
}

.specs-grid-icon-wrapper {
  color: #c8102e;
  display: flex;
  justify-content: center;
  align-items:  center;
  height: 44px;
}

.specs-grid-item-card .specs-grid-icon-wrapper svg, .specs-grid-item-card .specs-grid-icon-wrapper img {
  object-fit: contain;
  width: 40px !important;
  height: 40px !important;
}

.specs-grid-item-name {
  color: #1e293b;
  font-size: .95rem;
  font-weight: 800;
  line-height: 1.3;
}

.no-specs-message, .no-dims-message {
  text-align: center;
  color: #64748b;
  padding: 3rem;
  font-weight: 600;
}

.modal-dims-compact {
  border-radius: 24px;
  width: 90vw;
  padding: 2rem;
  max-width: 1200px !important;
}

.dims-popup-content-wrapper {
  display: flex;
  box-sizing: border-box;
  background: none;
  justify-content: center;
  align-items:  center;
  width: 100%;
  padding: 1rem 0 0;
}

.dims-popup-img {
  object-fit: contain;
  border-radius: 8px;
  max-width: 100%;
  height: auto;
  max-height: 55vh;
}

.specs-grid-img-card-new {
  object-fit: contain;
  border: none;
  border-radius: 20px;
  width: 100%;
  height: auto;
  transition: all .25s;
}

.specs-grid-img-card-new:hover {
  transform: translateY(-3px);
}

.detail-gallery-slider-wrapper {
  display: flex;
  justify-content: center;
  align-items:  center;
  gap: .75rem;
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.gallery-nav-btn {
  display: flex;
  cursor: pointer;
  color: #475569;
  background: #fff;
  border: 1.5px solid #cbd5e1;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items:  center;
  width: 44px;
  height: 44px;
  transition: all .2s;
  box-shadow: 0 4px 10px #00000008;
}

.gallery-nav-btn:hover {
  color: #c8102e;
  background: #fff5f5;
  border-color: #c8102e;
  box-shadow: 0 4px 12px #c8102e26;
}

.detail-thumbnails-horizontal {
  margin: 0 !important;
}

@media (max-width: 768px) {
  .catalog-main-title {
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
  }

  .category-carousel {
    flex-direction: column;
    gap: 1rem;
    min-height: auto;
  }

  .carousel-nav-btn {
    display: none !important;
  }

  .category-cards-container {
    width: 100%;
    padding: 1rem 0;
  }

  .category-cards-track {
    gap: 1rem;
    padding: 0 1rem;
  }

  .category-large-card {
    flex: 0 0 280px !important;
    height: 380px !important;
  }

  .catalog-list-header {
    position: static !important;
    flex-direction: column !important;
    align-items:  center !important;
    gap: .75rem !important;
    padding: 1rem !important;
  }

  .catalog-list-title {
    text-align: center !important;
    position: static !important;
    margin: .5rem 0 !important;
    font-size: 1.5rem !important;
    left: auto !important;
    transform: none !important;
  }

  .products-grid-new {
    gap: 1rem;
    padding: .5rem;
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .product-card {
    padding: 1rem;
  }

  .detail-view-compact-layout {
    gap: 1.5rem;
    padding: 1rem;
    overflow-y: auto !important;
    flex-direction: column !important;
    height: auto !important;
  }

  .detail-left-compact, .detail-right-compact-wrapper {
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }

  .detail-main-image-compact {
    height: 250px !important;
  }

  .features-grid-3col-compact {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: .75rem !important;
  }

  .detail-bottom-actions-row {
    flex-wrap: wrap;
    gap: .75rem;
  }

  .detail-bottom-actions-row button {
    flex: calc(50% - .5rem);
    padding: .75rem .5rem !important;
    font-size: .85rem !important;
  }

  .modal-content-new, .modal-specs-compact, .modal-dims-compact, .modal-sales-compact {
    border-radius: 16px !important;
    width: 95vw !important;
    max-width: 95vw !important;
    padding: 1rem !important;
  }

  .compare-top-content {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .compare-slots {
    justify-content: center;
  }

  .compare-actions-right {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .products-grid-new, .features-grid-3col-compact {
    grid-template-columns: 1fr !important;
  }

  .detail-bottom-actions-row button {
    flex: 100%;
  }
}

/* src/index.css */
:root {
  --primary: #c8102e;
  --primary-dark: #a10c24;
  --secondary: #0f172a;
  --accent: #3b82f6;
  --bg-main: #fafafa;
  --bg-card: #fff;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --border-light: #f1f5f9;
  --glass: #fff9;
  --glass-dark: #0f172a99;
  --glass-border: #fffc;
  --shadow-sm: 0 1px 3px #0000001f, 0 1px 2px #0000003d;
  --shadow-md: 0 8px 32px 0 #1f26870d;
  --shadow-lg: 0 20px 40px #00000014;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

html, body, #root {
  overflow: hidden;
  background-color: var(--bg-main);
  color: var(--text-main);
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: Proxima Nova, -apple-system, sans-serif;
  line-height: 1.5;
}

input, textarea, [contenteditable="true"], [contenteditable="true"] * {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

img {
  -webkit-user-drag: none;
}

a, button, input, textarea, select, [role="button"], .interactive-kiosk-item {
  touch-action: manipulation;
}

h1, h2, h3, h4, .brand-font {
  letter-spacing: -.02em;
  font-family: Proxima Nova, sans-serif;
}

.top-header-red {
  display: flex;
  z-index: 1000;
  position: relative;
  background: #c8102e;
  justify-content: space-between;
  align-items:  center;
  width: 100%;
  height: 80px;
  padding: 0 6vw;
}

.header-left {
  display: flex;
  flex: 1;
  align-items:  center;
}

.header-home-btn {
  cursor: pointer;
  display: flex;
  background: none;
  border: none;
  justify-content: center;
  align-items:  center;
  padding: 0;
  transition: transform .2s;
}

.header-home-btn:hover {
  transform: scale(1.1);
}

.header-home-icon {
  object-fit: contain;
  width: auto;
  height: 32px;
}

.header-center {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items:  center;
}

.header-logo {
  object-fit: contain;
  height: 35px;
}

.header-right {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  align-items:  center;
  gap: 1.5rem;
}

.lang-toggle-container {
  display: flex;
  cursor: pointer;
  background: #00000026;
  border-radius: 8px;
  justify-content: space-between;
  align-items:  center;
  width: 100px;
  padding: 4px;
}

.lang-toggle-option {
  text-align: center;
  color: #fff;
  border-radius: 6px;
  flex: 1;
  padding: 6px 0;
  transition: all .3s;
  font-size: .9rem;
  font-weight: 700;
}

.lang-toggle-option.active {
  color: #333;
  background: #fff;
}

.header-divider {
  background: #ffffff4d;
  width: 1px;
  height: 24px;
}

.logout-btn {
  color: #fff;
  display: flex;
  cursor: pointer;
  background: none;
  border: none;
  align-items:  center;
  gap: .5rem;
  font-size: .95rem;
  font-weight: 700;
}

.app-container {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
}

.page-with-header-layout {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.page-content-wrapper {
  overflow: hidden;
  position: relative;
  flex: 1;
  width: 100%;
  min-height: 0;
}

.page-content-wrapper.with-nav {
  padding-top: 74px;
}

.glass-effect {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid #ffffff4d;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: none;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1 padding-box padding-box;
  border: 2px solid #0000;
  border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8 padding-box padding-box;
  border: 2px solid #0000;
}

.top-nav-bar {
  display: flex;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: absolute;
  z-index: 999;
  background: #ffffffd9 padding-box padding-box;
  border: 1px solid #0000000a;
  border-top: none;
  border-radius: 0 0 24px 24px;
  justify-content: center;
  gap: 4rem;
  margin: 0;
  padding: .8rem 2rem;
  top: 80px;
  left: 0;
  right: 0;
  box-shadow: 0 8px 25px #00000014, 0 1px 3px #00000005;
}

.nav-item {
  display: flex;
  color: #94a3b8;
  cursor: pointer;
  position: relative;
  flex-direction: column;
  align-items:  center;
  gap: .3rem;
  padding: .5rem 1rem;
  transition: all .3s;
}

.nav-item span {
  font-size: .85rem;
  font-weight: 600;
}

.nav-item.active {
  color: #c8102e;
}

.nav-item.active:after {
  content: "";
  position: absolute;
  background: #c8102e;
  border-radius: 3px 3px 0 0;
  width: 100%;
  height: 3px;
  bottom: -.8rem;
  left: 0;
}

.nav-icon-img {
  object-fit: contain;
  filter: grayscale(100%) opacity(50%);
  width: auto;
  height: 26px;
  transition: all .25s;
}

.nav-item.active .nav-icon-img, .nav-item:hover .nav-icon-img {
  filter: none;
  opacity: 1;
}

@media (max-width: 768px) {
  .top-header-red {
    gap: .5rem;
    height: 60px;
    padding: 0 4vw;
  }

  .header-left {
    flex: none;
  }

  .header-center {
    flex: auto;
    justify-content: center;
  }

  .header-logo {
    height: 22px;
  }

  .header-right {
    flex: none;
    gap: .5rem;
  }

  .logout-text {
    display: none !important;
  }

  .logout-btn {
    gap: 0;
    padding: 4px;
    font-size: .8rem;
  }

  .logout-btn svg {
    width: 22px;
    height: 22px;
    margin: 0 !important;
  }

  .header-divider {
    height: 16px;
    margin: 0 2px;
  }

  .lang-toggle-container {
    width: 65px;
    padding: 2px;
  }

  .lang-toggle-option {
    padding: 2px 0;
    font-size: .7rem;
  }

  .top-nav-bar {
    border-radius: 0 0 16px 16px;
    justify-content: space-around;
    gap: 0;
    padding: .4rem .5rem;
    top: 60px;
  }

  .nav-item {
    flex: 1;
    gap: .1rem;
    max-width: 80px;
    padding: .2rem .4rem;
  }

  .nav-item span {
    font-size: .7rem;
  }

  .nav-icon-img {
    height: 18px;
  }

  .nav-item.active:after {
    height: 2px;
    bottom: -.4rem;
  }

  .page-content-wrapper.with-nav {
    padding-top: 105px;
  }

  .page-content-wrapper {
    -webkit-overflow-scrolling: touch;
    overflow-y: auto !important;
  }

  .search-keyboard-container-clean, .keyboard-container, .simple-keyboard, .hg-theme-default {
    display: none !important;
  }
}
