/* import fonts here */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* import fonts here */

/* normal header behaviour */



/* basic css*/

:root {
  --montserrat-font: "Montserrat", sans-serif;
  --transition: .4s;
}

::selection {
  background-color: #fff;
  color: #000;
}

body {
  background-color: #000;
  color: #fff;
  font-family: var(--montserrat-font);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure {
  margin: 0;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

input,
textarea {
  outline: none;
}

input,
textarea,
button,
select {
  font-family: var(--montserrat-font);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: none;
  padding-inline: 60px;
  margin-inline: 0;
}

/* basic css */



/* extra css start here */

.theme__btn {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 3px;
  padding: 12.8px 17.6px;
  display: inline-flex;
  border: 1px solid #fff;
  background-color: #000;
}

.theme__btn:hover {
  background-color: #fff;
  color: #000;
}

.sm__text {
  color: #fff;
  font-size: 10px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 2.25px;
}

/* extra css end here */



/* header area start here */

header {
  padding-block: 25px;
  position: relative;
  border-bottom: 1px solid;
}

header .container {
  max-width: 100%;
}

.header__logo,
.header__navigation {
  width: 50%;
  display: flex;
}

.header__logo a {
  display: inline-block;
}

.header__navigation {
  display: flex;
  justify-content: end;
}

.header__navigation nav>ul {
  display: flex;
  gap: 90px;
}

.header__navigation ul li {
  position: relative;
  padding-block: 11px;
}

.header__navigation ul li a {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 3.6px;
  display: flex;
  align-items: center;
  gap: 7px;
  position: relative;
  padding: 5px;
}

.header__navigation ul li a.active::before {
  transform: scaleX(1);
}

.header__navigation ul li a::before {
  position: absolute;
  content: '';
  background-color: #fff;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  border-radius: 100px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.header__navigation ul li a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.header__navigation ul li:hover a::before {
  transform: scaleX(1);
  transform-origin: left;
}

.header__navigation ul li a .arrow__down {
  transition: var(--transition);
}

.header__navigation ul li:hover .arrow__down {
  transform: rotate(-180deg);
}

.dropdown__body li a::before {
  display: none;
}

.dropdown__body {
  border: 1px solid #FFF;
  background: #000;
  min-width: 200px;
  padding-block: 6px;
  position: absolute;
  top: calc(100% + 30px);
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  transition: var(--transition);
}

.header__navigation .dropdown__body li {
  padding: 0;
}

.header__navigation ul li:hover .dropdown__body {
  top: calc(100% + 0px);
  opacity: 1;
  visibility: visible;
}

.header__navigation .dropdown__body li a {
  color: rgba(255, 255, 255, 0.60);
  font-size: 13px;
  font-weight: 400;
  line-height: 18.2px;
  padding: 5.5px 12px;
}

.header__navigation .dropdown__body li a:hover {
  background-color: #191919;
}

/* header area end here */



/* hero area start here */

.hero__area {
  display: flex;
  align-items: center;
}

.hero__content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}

.hero__left {
  max-width: 600px;
}

.hero__text h1 {
  color: #FFF;
  font-size: 40px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 6px;
  padding-bottom: 15px;
  margin-bottom: 40px;
  position: relative;
}

.hero__text h1::after {
  position: absolute;
  content: '';
  background-color: #fff;
  width: 80px;
  height: 1px;
  left: 0;
  bottom: 0;
}

.hero__text h6 {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero__text p {
  color: #CCC;
  font-size: 17px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 40px;
}

.hero__right {
  width: 45.9%;
  margin-left: auto;
}

/* hero area end here */



/* product area start here */

.prodcut__content {
  display: flex;
  flex-wrap: nowrap;
  border-block: 1px solid #E5E5E4;
}

.product__overview {
  display: flex;
  width: 75%;
  flex-wrap: nowrap;
  padding-right: 25vw;
}

.product__navigation {
  width: 25.23%;
  padding: 60px;
  position: sticky;
  top: 0;
  background: #000;
  z-index: 22;
}

.overview__product {
  position: relative;
  flex: 0 0 37.5vw;
}

.overview__spacer {
  flex: 0 0 25vw;
  /* small space at the end */
}

.product__navTitle {
  margin-bottom: 48px;
}

.product__navTitle h5 {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 4.8px;
  padding-bottom: 7.88px;
  margin-bottom: 13px;
  position: relative;
}

.product__navTitle h5:after {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  height: 1px;
  width: 30px;
  background-color: #fff;
}

.product__navigation ul li a {
  padding-block: 4px;
  display: inline-block;
}

.product__navigation ul li a:hover {
  padding-left: 20px;
}

.product__navigation ul li {
  margin-bottom: 4px;
}

.product__navigation ul li:last-child {
  margin-bottom: 0;
}

.overview__product__text .product__navTitle h5 {
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.overview__product__text .product__navTitle {
  margin-bottom: 0;
}

.overview__product__text .product__navTitle p {
  line-height: normal;
}

.overview__product__text {
  position: absolute;
  z-index: 5;
  inset: 60px;
}

.overview__product__image img {
  transition: var(--transition);
  object-fit: cover;
  width: 100%;
  height: 100vh;
}

.overview__product__image {
  overflow: hidden;

}

.overview__product{
    height: 100%;
}

.overview__product::after {
  position: absolute;
  content: '';
  background: #000;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.overview__product:hover::after {
  opacity: 20%;
  visibility: visible;
}

/* product area end here */



/* about area start here */

.about__image {
  width: 63.1%;
  margin-left: auto;
}

.about__content {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.about__text {
  max-width: 600px;
}

.about__text h5 {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 19.2px;
  letter-spacing: 4.8px;
  padding-bottom: 10px;
  margin-bottom: 30px;
  position: relative;
}

.about__text h5::after {
  position: absolute;
  content: '';
  background-color: #fff;
  height: 1px;
  width: 30px;
  bottom: 0;
  left: 0;
}

.about__text article {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.about__text article p {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
}

/* about area end here */



/* footer area start here */

footer {
  padding-block: 60px;
  border-top: 1px solid #fff;
}

.footer__social ul {
  display: flex;
  gap: 5px;
  align-items: center;
}

.footer__social ul li .dot__span {
  display: block;
  width: 3px;
  height: 3px;
  background-color: #fff;
  border-radius: 100px;
}

.footer__social {
  margin-bottom: 8px;
}

.footer__contact h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.2px;
  letter-spacing: 4.8px;
  padding-bottom: 8px;
  margin-bottom: 24px;
  position: relative;
}

.footer__contact h4::after {
  position: absolute;
  content: '';
  background-color: #fff;
  height: 1px;
  width: 30px;
  left: 0;
  bottom: 0;
}

.footer__main__contact {
  gap: 8px;
}

.footer__social ul li,
.footer__terms ul li {
  display: flex;
}

.footer__terms ul li {
  margin-bottom: 8px;
}

.footer__location h5 {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 3.6px;
  margin-bottom: 38px;
}

.footer__terms ul li a {
  line-height: normal;
}

/* footer area end here */








/* catagory area start here */

.catagory__area {
  height: 100vh;
  overflow: hidden;
}

.catagory__title {
  padding: 60px;
}

.catagory__content {
  height: 100%;
  padding-right: 20px;
}

.catagory__left {
  width: 16.86%;
}

.catagory__right {
  width: 81%;
}

.thumb__main-link span {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 4.8px;
  display: block;
  text-wrap: nowrap;
  direction: rtl;
  transform: rotate(-90deg);
}


.thumb__collapse__item {
  display: block;
  position: relative;
  width: 142px;
  height: 100%;
  padding: 60px;
}


.thumb__sub__link {
  display: flex;
  flex-direction: column;
}

.catagory__thumbList {
  display: flex;
  height: 100%;
}

.single__thumb {
  display: flex;
  border-right: 1px solid #808080;
}

.thumb__wrapper {
  max-width: 0;
  overflow: hidden;
  transition: max-width .4s;
}

.single__thumb.active .thumb__wrapper {
  max-width: 700px;
}

.thumb__sub__link {
  padding: 60px;
  padding-left: 0;
}

.thumb__image {
  aspect-ratio: 1;
  overflow: hidden;
  object-fit: cover;
  display: flex;
  position: relative;
}

.thumb__image img {
  aspect-ratio: 1;
  object-fit: cover;
  max-width: none !important;
}

.single__thumb:first-child {
  border-left: 1px solid #808080;
}

.thumb__image::after {
  position: absolute;
  content: '';
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.thumb__sub__link span {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 4.8px;
  text-decoration: underline;
  display: inline-block;
  transition: var(--transition);
  padding-top: 24px;
   text-underline-offset:8px;
}

.thumb__sub__link span:hover {
  text-decoration: none;
}

.catagory__mobile__image {
  position: relative;
  display: flex;
  overflow: hidden;
}

.catagory__mobile__image::after {
  position: absolute;
  content: '';
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
  inset: 0;
}

.catagory__mobile__image img {
  aspect-ratio: 1;
  object-fit: cover;
  transition: var(--transition);
  width: 100%;
}

.catagory__mobileItem__title h6 {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 4.8px;
  margin-bottom: 20px;
}

.catagory__image__link a {
  text-decoration: underline;
  color: #fff;
  display: inline-block;
  margin-top: 26px;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 4.8px;
  text-underline-offset: 8px;
}

.catagory__image__link a:hover {
  text-decoration: none;
}

.single__catagory {
  padding-block: 40px;
  border-bottom: 1px solid #fff;
  width: 50%;
}

.catagory__item__container {
  padding-inline: 20px;
}

.single__catagory:last-child {
  padding-block: 40px 0;
}

.catagory__mobile__image:hover img {
  transform: scale(1.1);
}

/* catagory area end here */



/* detail inquiry start here */

.detail__inquiry {
  width: 27.4%;
  padding: 60px 60px 60px 0;
}

.inquiry__title h5 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 6px;
  margin-bottom: 32px;
}

.interface__image__half {
  width: 50%;
  flex: 0 0 calc(50% - 2.5px);

}

.interface__image__half a {
  display: flex;
}

.interface__image__full {
  width: 100%;

}

.interface__image__full a {
  display: flex;
}

.detail__interface {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  width: 70.5%;
  height: 100%;
}

.interface__image__wrapper {
  margin-bottom: 0;
  width: 100%;
  display: flex;
}

.interface__image__wrapper img {
  transition: var(--transition);
  object-fit: cover;
  width: 100%;
}

.inquiry__accordion .accordion-item {
  background-color: #000;
  color: #fff;
  border-radius: 0;
  border-inline: none;
}

.inquiry__accordion .accordion-button {
  background-color: #000;
  color: #fff;
  border-radius: 0;
  padding: 17.7px 0;
  font-size: 16px;
  letter-spacing: 4.4px;
}

.inquiry__accordion .accordion-button:not(.collapsed) {
  box-shadow: none;
}

.inquiry__accordion .accordion-button:focus {
  box-shadow: none;
}

.inquiry__accordion .accordion-button::after {
  content: "\f107";
  background-image: unset;
  font-family: "Font Awesome 5 Pro";
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  margin-right: 15px;
}

.static-content-title::after {
  content: "" !important;
}

.inquiry__accordion .accordion-button:not(.collapsed)::after {
  background-image: unset;
}

.inquiry__accordion .accordion-body {
  padding: 0 8px 30px 8px;
}

.inquiry__accordion .accordion-body ul {
  list-style: disc;
  padding-left: 25px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inquiry__accordion .accordion-body ul li {
  font-size: 15px;
  line-height: 150%;
}

.inquiry__form__title h5 {
  font-size: 20px;
  letter-spacing: 6px;
  font-weight: 400;
  margin-block: 42px 20px;
  line-height: 160%;
}

[id="formDescription inquiry__form__title"] > p {
  font-size: 20px;
  letter-spacing: 6px;
  font-weight: 400;
  margin-block: 42px 20px;
  line-height: 160%;
}


.input__field label,
.form__dropdown label {
  display: block;
  font-size: 12px;
  letter-spacing: 3.6px;
  margin-bottom: 8px;
}

.inquiry__submit__form form fieldset {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.input__field input {
  width: 100%;
  background-color: #000;
  border: 1px solid #fff;
  height: 40px;
  color: #fff;
  padding: 5px 15px;
  font-size: 13px;
}

.input__field textarea {
  width: 100%;
  background: #000;
  border: 1px solid #fff;
  resize: none;
  height: 100px;
  padding: 10px 15px;
  color: #fff;
  font-size: 13px;
}

.submit__button button {
  width: 100%;
  background-color: #000;
  color: #fff;
  border: 1px solid #fff;
  height: 43.6px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  letter-spacing: 3px;
  line-height: 18px;
  margin-top: 28px;
  transition: var(--transition);
}

.submit__button button:hover {
  background-color: #fff;
  color: #000;
}


.form__dropdown .nice-select {
  width: 100%;
  height: 40px;
  padding: 5px 15px;
  display: flex;
  align-items: center;
  border-color: #fff;
}

.form__dropdown .nice-select {
  width: 100%;
  background-color: #000;
  border-radius: 0;
  border: 1px solid #fff;
  color: #999999;
}

.form__dropdown .nice-select::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  margin: 0;
  height: 20px;
  width: 20px;
  top: 50%;
  transform-origin: unset;
  right: 12px;
  transform: translateY(-50%);
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.form__dropdown .nice-select.open::after {
  -webkit-transform: translateY(-50%) rotate(-180deg);
  -ms-transform: translateY(-50%) rotate(-180deg);
  transform: translateY(-50%) rotate(-180deg);
}

.form__dropdown .nice-select .option:hover,
.form__dropdown .nice-select .option.focus,
.form__dropdown .nice-select .option.selected.focus {
  background-color: #191919;
}

.form__dropdown .nice-select .option.selected {
  font-weight: normal;
}

.form__dropdown .nice-select .list {
  border-radius: 0;
  background-color: #000;
  width: 100%;
  border: 1px solid #fff;
  margin-top: 0;
  left: 0;
  right: 0;
  padding-block: 6px;
}

.form__dropdown .nice-select .option {
  padding: 5.5px 12px;
  line-height: 18.2px;
  min-height: unset;
  font-size: 13px;
}

.interior__container {
  padding: 36px 60px 60px 60px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.interface__image__full a,
.interface__image__half a {
  display: block;
  width: 100%;
}

.interior__label {
  display: flex;
  gap: 20px;
}

.interior__label label {
  display: inline-flex;
  flex-direction: column;
  width: 11.3%;
}

.interior__label label .wood__sample {
  border: 2px solid transparent;
}

.interface__image__full a,
.interface__image__half a {
  display: block;
  width: 100%;
}

.wood__sample img {
  width: 100%;
}

/* .interior__label label:has(input:checked) .wood__sample {
  border-color: #fff;
} */

.part__starter h4 {
  font-size: 16px;
  letter-spacing: 4.8px;
  line-height: 20px;
  padding-bottom: 10px;
  margin-bottom: 12px;
  position: relative;
  color: #fff;
  font-weight: 400;
}

.part__starter h4::after {
  position: absolute;
  content: '';
  height: 1px;
  width: 30px;
  left: 0;
  bottom: 0;
  background-color: #fff;
}

.part__starter p {
  font-size: 10px;
  line-height: 12px;
  letter-spacing: 2.5px;
  margin-bottom: 47px;
  color: #fff;
}

.interior__label label span {
  display: flex;
  letter-spacing: 2.5px;
  line-height: 12px;
  font-size: 10px;
  color: #fff;
  margin-top: 12px;
}

/* detail inquiry end here */



/* suggest area start here */
.suggest__flex {
  gap: 20px;
}
.suggest__area {
  padding-block: 60px;
  border-top: 1px solid #fff;
  overflow: hidden;
}

.single__suggest {
  width: 16%;
}

.single__suggest .image__wrapper img {
  transition: var(--transition);
}

.suggest__image figcaption {
  margin-top: 20px;
}

.suggest__image figcaption .part__starter h4 {
  margin-bottom: 18px;
}

.suggest__image figcaption .part__starter p {
  margin-bottom: 0;
}

.suggest__title h5 {
  font-size: 20px;
  letter-spacing: 4.8px;
  line-height: 100%;
  margin-bottom: 48px;
}

/* suggest area end here */



/* contact area start here */

.contact__content {
  padding-block: 60px 100px;
}

.contact__extra__title h5 {
  font-size: 16px;
  line-height: 19.2px;
  letter-spacing: 4.8px;
  padding-bottom: 8.43px;
  position: relative;
  margin-bottom: 24px;
}

.contact__content .inquiry__form__title h5 {
  margin-top: 100px;
}

.contact__wrapper {
  max-width: 461.96px;
}

.contact__bg {
  width: 55.6%;
  margin-left: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.contact__bg img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.contact__extra__title h5::after {
  position: absolute;
  content: '';
  background-color: #fff;
  height: 1px;
  width: 30px;
  left: 0;
  bottom: 0;
}

.contact__extra__parts {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.extra__part__block a {
  display: inline-block;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 2.5px;
  color: #fff;
}

.extra__part__block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.extra__part__block .contact__phone {
  font-size: 14px;
  letter-spacing: 2.75px;
  line-height: 17px;
}

.extra__part__block p {
  font-size: 12px;
  line-height: 19px;
  letter-spacing: 2.5px;
}

/* contact area end here */






/* clickable dropdown css start here */

#collapseDropdwon {
  width: 100%;
  background: #000;
  position: relative;
  z-index: 999;
  border-bottom: 1px solid #fff;
}

.clickDropdown__body ul {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.clickDropdown__body ul li a {
  font-size: 18px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 22px;
  letter-spacing: 3.6px;
}

#collapseSub ul li a {
  font-size: 15px;
  line-height: 18.2px;
  color: #999999;
  padding: 10px 20px;
}

#collapseSub ul {
  gap: 0;
  margin-top: 12px;
}

.clickDropdown__body {
  padding: 30px 40px;
  height: calc(100vh - 144px);
  overflow-y: scroll;
}

.clickDropdown__body ul li a[aria-expanded="true"] .arrow__down {
  transform: rotate(-180deg);
}

.dropdown__close {
  display: none;
}

.clickDropdown__body ul li a .arrow__down {
  transition: var(--transition);
}

.clickable__dropdown a[aria-expanded="true"] .hamburger {
  display: none;
}

.clickable__dropdown a[aria-expanded="true"] .dropdown__close {
  display: block;
}

.clickable__dropdown a img {
  width: 24px;
}

/* clickable dropdown css start here */





/* customize swiper slider css start here */

.interfaceSlider .swiper-button-next::after,
.interfaceSlider .swiper-button-prev::after {
  display: none;
}

.interfaceSlider .swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  bottom: 13px;
}

.interfaceSlider .swiper-pagination-bullet {
  width: 4px;
  height: 4px;
  margin-inline: 0 !important;
  background: #fff;
  opacity: 60%;
}

.interfaceSlider .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 8px;
  height: 8px;
  opacity: 100%;
}

/* customize swiper slider css end here */


.submit__button .spinner {
  display: none;
}

.form-alert-message {
  margin-top: 15px;
}

/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.form-alert-message.alert.alert-success {
  color: black;
  background-color: white;
  border-color: black;
}

.form-alert-message.alert.alert-success p {
  margin-block: 0 !important;
  letter-spacing: 0px !important;
}

.validationMessages {
  border-radius: 1px;
  display: none;
  margin-top: 5px;
  padding: 3px;
  background-color: white;
  color: black;
}

.form-alert-message.alert.alert-danger {
    color: black;
    background-color: white;
    border-color: black;
}

.product__navigation ul li a.active-hover {
    padding-left: 15px;
    transition: all 0.3s ease;
}

.hero-img-desktop {
  display: block;
}

.hero-img-mobile {
  display: none;
}

.about__image-desktop {
  display: block;
  z-index: -1;
  position: relative;
}

.about__image-mobile {
  display: none;
}

.contact-bg-desktop {
  display: block;
}

.contact-bg-mobile {
  display: none;
}

.product__overview > * { flex: 0 0 auto; }
  .error-section {
    min-height: 80vh;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .error-wrap {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
  }
  .error-logo {
    display: flex;
    justify-content: center;
    margin: 0 auto 16px;
  }
  .error-title {
    font-size: 24px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin: 0 0 8px;
  }
  .error-text {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 24px;
  }
  .error-btn-wrap {
    display: flex;
    justify-content: center;
  }
  .error-btn {
       width: 50%;
    background-color: #000;
    color: #fff;
    border: 1px solid #fff;
    height: 43.6px;
    display: flex
;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    letter-spacing: 3px;
    line-height: 18px;
    margin-top: 28px;
    transition: var(--transition);
  }

  .default-style {
    background-color: #000;
  }


  .detail__interface-images {
    gap: 5px;
    display: flex;
     flex-wrap: wrap;
  }

  .detail__area {
    max-width: 2560px;
  }

  /* Category Slider Bar Styling */
.catagory__thumbList {
  display: flex;
  height: 100%;
  transition: all 0.3s ease;
}

.catagory__right {
  position: relative;
  overflow: hidden;
}

/* Custom Slider Bar */
.category-slider-container {
  backdrop-filter: blur(5px);
}

.category-slider-thumb:hover {
  background: #f0f0f0 !important;
}

.category-slider-thumb:active {
  background: #e0e0e0 !important;
}

/* Optional: Add a subtle glow effect */
.category-slider-container:hover {
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .category-slider-container {
    width: 150px !important;
    bottom: 20px !important;
  }
}


/* new */


.catagory__slider-bar {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 120px); 
  max-width: 600px; 
  min-width: 200px; 
  height: 8px; 
  background: rgba(255, 255, 255, 0.15);
  border: none;
  padding: 0;
  border-radius: 2px;
  display: none;
  transition: height 0.2s ease;
  top: 10px; /* Distance from top */
  z-index: 10;
}


.catagory__slider-thumb {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 60px; 
  height: 100%;
  background: #fff;
  cursor: grab;
  border-radius: 2px;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.catagory__slider-thumb:hover {
  background: #f0f0f0;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.catagory__slider-thumb:active {
  cursor: grabbing;
  background: #e0e0e0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}


.catagory__thumbList {
  display: flex;
  height: 100%;
  transition: all 0.3s ease;
}

@media (max-width: 1024px) {
  .catagory__slider-bar {
    width: calc(100% - 80px);
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .catagory__slider-bar {
    width: calc(100% - 40px);
    height: 3px;
    margin-bottom: 30px;
  }
  
  .catagory__slider-bar:hover {
    height: 5px;
  }
}

@media (max-width: 480px) {
  .catagory__slider-bar {
    width: calc(100% - 20px);
  }
}

.catagory__thumbList {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.catagory__thumbList::-webkit-scrollbar {
  display: none;
}

.site-logo-header {
  max-width: 206px;
}


@media (max-width: 750px) {
  .site-logo-header {
    max-width: 170px;
  }
}

@media (max-width: 450px) {
  .site-logo-header {
    max-width: 106px;
  }
}


