.design-studio-banner{
    height: 200px;
  width: 100%;
  border-radius: 6px;
  background: linear-gradient(90deg, #3f5f63 0%, #6ea786 55%, #a8f2b9 100%);
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* thin red divider line */


.ds-center{
  text-align: center;
  color: #fff;
}

.ds-title{
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .05em;
}

/* button */
.ds-btn{
  display: inline-block;
  padding: 6px 18px;
  border: 2px solid rgba(255,255,255,.85);
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .03em;
  background: rgba(255,255,255,.08);
  transition: .2s ease;
}

.ds-btn:hover{
  background: rgba(255,255,255,.18);
  transform: translateY(-2px);
}

/* left vertical text */


/* responsive */
@media (max-width: 650px){
  .design-studio-banner::after{ left: 80%; }
  .ds-side-text{ display: none; }
}




.filter-bar{
  background: #20262e;
  padding: 30px 20px 40px;
  color: #fff;
}

.filter-wrap{
  max-width: 1200px;
  margin: 0 auto;
}

/* search input */
.search-row{
  height: 48px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  margin-bottom: 14px;
}

.search-row i{
  opacity: .7;
}

.search-row input{
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 14px;
}

.search-row input::placeholder{
  color: rgba(255,255,255,.65);
  font-weight: 600;
}

/* filter box */
.filter-box{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 16px 18px;
}

.filter-title{
  margin: 0 0 10px;
  font-size: 13px;
  color: rgba(255,255,255,.85);
  font-weight: 700;
}

/* top row */
.filter-top{
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

/* custom checkbox */
.chk{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  cursor: pointer;
}

.chk input{
  display: none;
}

.chk .box{
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 2px solid rgba(140,255,190,.7);
  background: transparent;
  position: relative;
}

.chk input:checked + .box{
  background: rgba(140,255,190,.85);
  border-color: rgba(140,255,190,.9);
}

.chk input:checked + .box::after{
  content: "✓";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #111;
  font-size: 12px;
  font-weight: 900;
}

/* range */
.range-wrap{
  min-width: 240px;
}

.range-wrap input[type="range"]{
  width: 260px;
  accent-color: #8cffbe;
}

.range-values{
  margin-top: 6px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,.6);
}

/* divider */
.filter-divider{
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: 14px 0;
}

/* dropdown row */
.filter-bottom{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.select-group label{
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  margin-bottom: 6px;
}

.select-group select{
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  font-weight: 700;
  outline: none;
  padding: 0;
  font-size: 13px;
  cursor: pointer;
}

.select-group option{
  background: #1c2127; /* dropdown bg */
  color: #fff;
}

/* responsive */
@media (max-width: 900px){
  .filter-bottom{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px){
  .filter-bottom{ grid-template-columns: 1fr; }
  .range-wrap input[type="range"]{ width: 100%; }
}


.curator-section{
  padding: 40px 20px;
  background: #1c2127;
  color: #fff;
}

.curator-head{
  max-width: 1200px;
  margin: 0 auto 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.curator-head h2{
  margin: 0;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .06em;
}

.show-more{
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  font-size: 14px;
}

.curator-grid{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card{
  color: #fff;
}

.product-media{
  position: relative;
  height: 260px;
  background: #000000;
  border: 1px solid rgba(155, 245, 200, .55);
  border-radius: 4px;
  overflow: hidden;
}

/* stars row */
.rating{
  position: absolute;
  top: 8px;
  left: 10px;
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 12px;
  z-index: 2;
}
.stars{ color: #f6a800; letter-spacing: 1px; }
.count{ color: #f6a800; font-weight: 700; }

/* right icons */
.media-icons{
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.icon-btn{
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #f6a800;
  background: transparent;
  color: #f6a800;
  font-size: 12px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

/* arrows in center */
.nav-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  opacity: .9;
  z-index: 2;
}
.nav-arrow.left{ left: 8px; }
.nav-arrow.right{ right: 8px; }

/* bottom dots */
.dots{
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}

.dots span{
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
}
.dots span.active{
  background: #fff;
}

/* coming soon overlay */
.soon-overlay{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: .02em;
  color: rgba(255,255,255,.95);
  transform: rotate(-90deg);
}

/* product name + price */
.product-title{
  margin: 12px 0 6px;
  font-size: 14px;
  font-weight: 700;
}

.price-row{
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
}

.price{
  color: #f6a800;
  font-weight: 900;
}

.old-price{
  color: #ff4040;
  text-decoration: line-through;
  font-weight: 700;
}

/* button */
.buy-btn{
  display: inline-block;
  padding: 6px 16px;
  border-radius: 3px;
  background: #baf7d1;
  color: #142016;
  font-weight: 900;
  font-size: 12px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.45);
}

/* disable */
.buy-btn.disabled{
  opacity: .6;
  pointer-events: none;
}

/* responsive */
@media (max-width: 1050px){
  .curator-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px){
  .curator-grid{ grid-template-columns: 1fr; }
}




.site-footer {
    background-color: #1a1e21; /* Matches your header/body background */
    padding: 30px 0;
    border-top: 1px solid #333; /* Subtle separation from the body */
    color: white;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Chat Icon Styling */
.chat-bubble {
    background-color: #000;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
}

/* Navigation Links */
.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: #6ee7b7; /* Subtle brand green hover effect */
}

/* Language Selector Styling */
.footer-right {
    display: flex;
    align-items: center;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    padding-bottom: 5px;
    border-bottom: 1px solid #4a5568; /* The thin line under 'ENGLISH' */
}

.language-selector i {
    font-size: 12px;
    color: #a0aec0;
}