.header__lang {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #5B6778;
    text-decoration: none;
    font-weight: 500;
}

.header__lang svg {
    width: 20px;
    height: 20px;
}

.header__lang:hover {
    color: #000;
}

/* slider */
.single-overview {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.single-overview img {
    max-width: 100%;
}

.single-overview-content {
    margin-top: 1rem;
}
/* slider end  */

/* design */

.swatch {
    width: 40px;
    height: 50px;
    border: none;
    background: transparent;   /* no bg — SVG IS the visual */
    cursor: pointer;
    border-radius: 4px;
    position: relative;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    padding: 0;
}

.swatch:hover {
    transform: translateY(-2px);
}

.swatch.active {
    border-color: #fff;
    border-radius: 4px;
}

/* Remove old image-based ::after completely */
.swatch::after {
    display: none;
}

/* SVG inside swatch */
.swatch svg {
    width: 20px;
    height: 25px;
    display: block;
    transition: transform 0.3s ease;
}

.swatch.active svg {
    transform: scale(1.15);
}

.digit-counter img {
    height: 120px;
    width: auto;
    display: block;
}

.counter{
    font-family: 'Orbitron', sans-serif;
    font-size:250px;
    font-weight:900;
    color:#fff;
    margin: -72px 0 -72px 0;
}

.digit-counter {
    display: flex;
    align-items: center;
    gap: 9px; /* space between digits */
}

.digit-counter img {
    height: 240px; /* increase size */
    width: auto;
    display: block;
}


.gallery-item:hover::after{
    opacity: 0 !important;
}

@media (max-width: 768px) {
    .content-warranty p {
        line-height: 1 !important;
    }
}

.footer__bottom{
    text-align: center;
}

.performance-section{
    margin: 0px !important;
}
.maincontainer{
    max-width: 92% !important;
}

.slider-wrapper{
    max-width: 92% !important;
}
.slider-wrapper .slide{
    width: 80% !important;
}

/* Only targets the panel inside the color slider section */
#color-slider-section .bottom-panel {
  width: 100% !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  position: relative !important;
  gap: 20px !important;
}

/* Only targets the color name element inside the color slider section */
#color-slider-section .color-name {
  position: absolute !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  
  min-width: 220px !important;
  padding: 12px 30px !important;
  text-align: center !important;
  border-radius: 4px !important;
  /* background: rgba(255, 255, 255, 0.1) !important; */
  backdrop-filter: blur(20px) !important;
  font-weight: 700 !important;
  font-size: clamp(14px, 1.5vw, 16px) !important;
  line-height: 26px !important;
}

/* Mobile responsive override strictly for this section */
@media (max-width: 768px) {
  #color-slider-section .bottom-panel {
    justify-content: center !important;
    flex-direction: column !important;
  }
  #color-slider-section .color-name {
    position: static !important;
    transform: none !important;
    margin-top: 15px !important;
  }
}

.model__overlay{
    background: none !important;
}

.
element {
}
.model__actions .btn {
  width: 48%;
}
.btn--ghost{
    background: #1c1c1c;
}

.section-title{
    color: #fff !important;
}

.performance-title{
    margin-top: -27px;
}

.gallery-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 32px;
    border-bottom: none; /* remove old underline */
}

.gallery-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 40px;
    border: 1px solid #d1d5db;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    color: #6b7280;
    transition: all 0.2s ease;
}

.gallery-tab svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.7px;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gallery-tab:hover {
    border-color: #9ca3af;
    color: #374151;
}

.gallery-tab.active {
    background: #1a1a2e;
    color: #ffffff;
    border-color: #1a1a2e;
}

/* remove old ::after underline if present */
.gallery-tab::after {
    display: none;
}

.gallery-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 28px;
}

.gallery-divider__line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #1a1a2e 20%, #1a1a2e 80%, transparent);
    transition: opacity 0.4s ease;
}

.gallery-divider__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff0;
    transition: transform 0.4s ease;
}

.bank-info {
    display: inline-block;
    margin: 24px auto 0;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.bank-info__title {
    margin: 0 0 14px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 10px;
}

.bank-info__body {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bank-info__details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bank-info__row {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bank-info__label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
}

.bank-info__value {
    font-size: 15px;
    color: #ffffff;
    font-weight: 600;
}

.bank-info__value--mono {
    font-family: monospace;
    font-size: 14px;
    letter-spacing: 1px;
}

.bank-info__qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.bank-info__qr img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 6px;
    background: #ffffff;
    padding: 4px;
}

.bank-info__qr span {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

@media (max-width: 480px) {
    .bank-info__body {
        flex-direction: column;
        align-items: flex-start;
    }

    .bank-info__qr {
        align-self: center;
    }
}

/* =====================================================
   OUT OF STOCK STATE
===================================================== */
.bk-unavailable {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
    min-height: 480px;
}

.bk-unavailable__icon {
    width: 100px;
    height: 100px;
    margin-bottom: 28px;
    opacity: 0.6;
}

.bk-unavailable__icon svg {
    width: 100%;
    height: 100%;
}

.bk-unavailable__title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: #1A1E24;
    margin-bottom: 8px;
}

.bk-unavailable__subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #D92D20;
    margin-bottom: 12px;
}

.bk-unavailable__desc {
    font-size: 15px;
    color: #5B6778;
    max-width: 420px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.bk-unavailable__btn {
    display: inline-block;
    padding: 13px 32px;
    background: #1A1E24;
    color: #fff;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.bk-unavailable__btn:hover {
    background: #333;
    transform: translateY(-1px);
    color: #fff;

}

.footer__grid > a {
    align-self: center;

}
.overview-content h2{
    color: #fff !important;
}