/* ================================================
   WHAT WE SOURCE — HORIZONTAL ACCORDION
   luxlux_what_we_source
   ================================================ */

/* --- Wrapper: inherits background from parent dark section --- */
#luxlux-what-we-source {
  width: 100%;
  background: inherit;
  box-sizing: border-box;
  padding:15px 0 65px 0;
}

#luxlux-what-we-source .lwws-inner {
  max-width: 1200px;
  margin: 0 auto;
  background-color:#000;
}

/* --- Stage --- */
#luxlux-what-we-source .lwws-stage {
  position: relative;
  width: 100%;
  height: 530px;
  overflow: hidden;
}

/* --- Panel --- */
#luxlux-what-we-source .lwws-panel {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  transition: left 0.6s cubic-bezier(0.77, 0, 0.18, 1),
              width 0.6s cubic-bezier(0.77, 0, 0.18, 1);
}

/* --- Image --- */
#luxlux-what-we-source .lwws-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: filter 0.5s ease;
  filter: brightness(0.48);
  pointer-events: none;
  display: block;
}

#luxlux-what-we-source .lwws-panel.lwws-is-active img {
  filter: brightness(0.58);
}

/* --- Gradient overlay --- */
#luxlux-what-we-source .lwws-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.05) 40%,  /* was 55% */
    transparent 100%
);
  pointer-events: none;
}

/* --- Collapsed tab strip --- */
#luxlux-what-we-source .lwws-tab {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.3s ease;
  pointer-events: none;
}

#luxlux-what-we-source .lwws-panel:hover .lwws-tab {
  background: rgba(255, 255, 255, 0.04);
}

#luxlux-what-we-source .lwws-panel.lwws-is-active .lwws-tab {
  display: none;
}

/* --- Tab label (vertical) --- */
#luxlux-what-we-source .lwws-tab-label {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
  opacity: 0.95;
}

/* --- Expanded content --- */
#luxlux-what-we-source .lwws-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px 48px 40px 48px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease 0.15s,
              transform 0.38s ease 0.15s;
  pointer-events: none;
}

#luxlux-what-we-source .lwws-panel.lwws-is-active .lwws-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* --- Category tag --- */
#luxlux-what-we-source .lwws-cat {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 4px 10px;
  margin-bottom: 14px;
}

/* --- Panel title (secondary font) --- */
#luxlux-what-we-source .lwws-name {
  font-family: var(--secondary-font, serif);
  font-size: 28px;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
}

/* --- Description (default font, italic) --- */
#luxlux-what-we-source .lwws-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
  max-width: 380px;
  font-style: italic;
}

/* --- CTA link --- */
#luxlux-what-we-source .lwws-cta {
  display: inline-block;
  margin-top: 22px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #222;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding: 7px 15px;
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s ease;
  background-color:#fff;
}

#luxlux-what-we-source .lwws-cta:hover {
  opacity: 1;
}

/* ================================================
   RESPONSIVE
   ================================================ */

/* Tablet: reduce padding in content */
@media (max-width: 1100px) {
  #luxlux-what-we-source .lwws-content {
    padding: 32px 36px;
  }
}

/* Mobile: stack vertically, tap to expand */
@media (max-width: 768px) {
  #luxlux-what-we-source .lwws-stage {
    height: auto;
    display: flex;
    flex-direction: column;
  }

  #luxlux-what-we-source .lwws-panel {
    position: relative;
    left: auto !important;
    width: 100% !important;
    height: 68px;
    overflow: hidden;
    transition: height 0.55s cubic-bezier(0.77, 0, 0.18, 1);
  }

  #luxlux-what-we-source .lwws-panel.lwws-is-active {
    height: 490px;
  }

  #luxlux-what-we-source .lwws-tab {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: flex-start;
    padding: 0 24px;
  }

  #luxlux-what-we-source .lwws-tab-label {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 14px;
    letter-spacing:0.03em;
    color:#fff;
  }

  #luxlux-what-we-source .lwws-panel.lwws-is-active .lwws-tab {
    display: none;
  }

  #luxlux-what-we-source .lwws-content {
    width: 100%;
    padding: 28px 24px;
  }

  #luxlux-what-we-source .lwws-name {
    font-size: 26px;
  }
}


.lxlx_testimonial_slider{
    width:100%;
    padding:80px 5px;
}

.lxlx_testimonial_inner{
    max-width:1100px;
    margin:0 auto;
    text-align:center;
}

/* TITLE */

.lxlx_testimonial_title{
    font-size:2.3em;
    margin-bottom:10px;
    color:#cdbd98;
    
    font-weight:600;
}

.lxlx_testimonial_title span{
    font-style:italic;
     text-transform:capitalize;
     font-weight:500;
     color:#fff;
}

.lxlx_testimonial_title_personal{
    font-size:2.7em;
    margin-bottom:10px;
    color:#333;
}

.lxlx_testimonial_title_personal span{
    font-style:italic;
     text-transform:capitalize;
     font-weight:300;
}

/* VIEWPORT */

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

/* TRACK */

.lxlx_testimonial_track{
    display:flex;
    transition:transform .6s cubic-bezier(.65,.05,.36,1);
}

/* SLIDES */

.lxlx_testimonial_slide{
    min-width:100%;
    padding:0 30px;
    text-align:center;

    display:flex;
    flex-direction:column;
    justify-content:center;

    min-height:160px;
}

/* TEXT */

.lxlx_testimonial_text{
    font-size:19px;
    line-height:1.6;
    margin-bottom:15px;
    font-weight:lighter;
     color:#999;
     font-style:italic;
     padding:0 20px;
}

/* AUTHOR */

.lxlx_testimonial_author{
    font-size:14px;
    letter-spacing:1px;
    text-transform:uppercase;
    font-weight:900;
   
}

/* NAV ARROWS */

.lxlx_testimonial_prev,
.lxlx_testimonial_next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:none;
    border:none;
    cursor:pointer;
    font-size:16px;
    z-index:5;
}

.lxlx_testimonial_prev{
    left:0;
}

.lxlx_testimonial_next{
    right:0;
}

/* MOBILE */

@media (max-width:1199px){
    
    .lxlx_testimonial_title{
    font-size:1.97em;
    margin-bottom:10px;
    color:#cdbd98;
}

.lxlx_testimonial_title span{
    font-style:italic;
     text-transform:capitalize;
     font-weight:300;
     color:#fff;
}

.lxlx_testimonial_title_personal{
    font-size:2.3em;
    margin-bottom:10px;
    color:#333;
}

.lxlx_testimonial_title_personal span{
    font-style:italic;
     text-transform:capitalize;
     font-weight:300;
}

.lxlx_testimonial_prev{
    left:0;
}

.lxlx_testimonial_next{
    right:0;
}

.lxlx_testimonial_text{
    font-size:16px;
}

}

.lux_source_split {
  width: 100%;
  padding: 80px 20px;
}

.lux_source_split_inner {
  max-width: 1420px;
  margin: 0 auto;
  display: flex;
}

.lux_source_left,
.lux_source_right {
  width: 50%;
  box-sizing: border-box;
  background-color:#fff;
}

/* add breathing space between them */
.lux_source_left {
  padding-right: 20px;
}

.lux_source_right {
  padding-left: 20px;
}

.gallery-grid-wrapper {
  padding: 0;
  max-width: 100%;
  margin: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.gallery-item {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.overlay-text {
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  padding: 0 15px;
  font-weight: 500;
}
@media (max-width: 992px) {

  .lux_source_split_inner {
    flex-direction: column;
  }

  .lux_source_left,
  .lux_source_right {
    width: 100%;
    padding: 0;
  }

  .lux_source_left {
    margin-bottom: 60px;
  }

  /* keep 3 columns on tablet */
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 660px) {
.gallery-grid-wrapper {
  padding: 0;
  max-width: 100%;
  margin: 30px 0 0 0;
}
 .gallery-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-bottom: 3px;
  }

  .gallery-grid::-webkit-scrollbar {
    display: none;
  }

  .gallery-item {
    flex: 0 0 60%;
    scroll-snap-align: start;
    aspect-ratio: 1 / 1;
    border-radius:1px;
  }


}

.reserve_program_box {
    width: 100%;
    padding: 50px 20px 50px 20px;
    box-sizing: border-box;
}

.reserve_program_inner {
    max-width: 1200px;
    margin: 20px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.reserve_row {
    display: flex;
    gap: 80px;
    align-items: center;
}

.reserve_col {
    flex: 1;
    box-sizing: border-box;
}

/* MEDIA PLACEHOLDER */
.reserve_media_placeholder {
    width: 100%;
   
   
}

/* TEXT */
.reserve_text_box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding:1px 15px;
}

.reserve_icon_placeholder {
    width: 50px;
    height: 50px;
    background: #e0e0e0;
    border-radius: 50%;
}

.reserve_heading {
    font-size: 2.5em;
    font-weight: 600;
    margin: 20px 0 0 0;
    line-height:normal;
}

.reserve_paragraph {
    font-size: 1.7rem;
    line-height: 1.6;
    margin: 0;
}

.reserve_steps {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.reserve_steps li {
    display: flex;
    align-items: center;
    gap: 18px;
}

.reserve_step_number {
    font-size: 14px;
    font-weight: 600;
    color: #555;
    min-width: 20px;
}

.reserve_step_text {
   
    padding: 16px 18px;
    border-radius: 6px;
    font-size: 1.6rem;
    line-height:1.4;
    flex: 1;
    color:#333;
    text-align:left !important;
     background: #f5f8ff;
    border:1px solid #e6edff;
}


/* RESPONSIVE */
@media (max-width: 1399px) {

    .reserve_heading {
        font-size: 2.4em;
    }

    .reserve_paragraph {
        font-size: 1.7rem;
    }}
    
@media (max-width: 1199px) {

    .reserve_heading {
        font-size: 2.25em;
    }

    .reserve_paragraph {
        font-size: 1.7rem;
    }

    .reserve_row {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .reserve_program_box {
     
    padding: 40px 20px 30px 20px;
     
}
    
     .reserve_heading {
        font-size: 2.2em;
        margin-top:21px;
         font-weight: 700;
    }
    .reserve_text_box {
   padding:1px 17px;
}

    .reserve_row {
        flex-direction: column;
    }

    /* VERY IMPORTANT — media always on top */
    .reserve_row_top .reserve_media_box,
    .reserve_row_bottom .reserve_media_box {
        order: -1;
        width: 100%;
    }

   

    .reserve_paragraph {
        font-size: 1.7rem;
        color:#444;
    }

    .reserve_media_placeholder {
        height: inherit;
    }
}

.why-investment-luxlux {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 0 25px 0;
  margin: 5px auto;
}

.investment-list-wrapper {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  justify-content: center;
}

.investment-list {
  flex: 1;
  
  padding: 20px 25px;
  margin: 0;
  list-style: none;
  background-color: inherit; /* Dark box color */
  
  color: #fff;
 
  display: flex;
  flex-direction: column;
  justify-content: space-between;
 
}

    

.investment-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 25px;
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom:5px;
}

.investment-list svg {
  flex-shrink: 0;
  margin-top: 0;
}

/* Match heights of both boxes */
.investment-list-wrapper > .investment-list {
  display: flex;
  flex-direction: column;
}

/* Responsive */
@media (max-width: 768px) {
  .investment-list-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .investment-list {
    width: 100%;
    padding:15px;
    margin:1px 9px 1px 5px;
  }
}

.inv_calc_wrapper{
    width:100%;
    max-width:1100px;
    margin:15px auto 0 auto;
    display:flex;
    gap:24px;
     background:#fff;
    border-radius:8px;
    padding:25px;
     border: .25px solid #ebf0fa;
    box-shadow: 0 0 1.26449px rgba(48, 49, 51, .05), 0 10px 20px rgba(48, 49, 51, .1);
}


/* LEFT COLUMN */

.inv_calc_left{
    width:26%;
    background:#f3f3f3;
    border-radius:8px;
    padding:24px;
    display:flex;
    flex-direction:column;
}

.inv_calc_title{
    font-size:18px;
    margin-bottom:20px;
}

.inv_calc_field{
    margin-bottom:18px;
}

.inv_calc_field label{
    font-size:14px;
    display:block;
    margin-bottom:6px;
}

.inv_calc_field input{
    width:100%;
    height:44px;
    border:1px solid #ddd;
    border-radius:6px;
    padding:0 12px;
    
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.inv_error{
display:block;
color:#c0392b;
font-size:12px;
margin-top:6px;
}

.inv_calc_note{
    display:block;
    font-size:12px;
    color:#666;
    margin-top:6px;
    line-height:1.4;
}

.inv_calc_spacer{
    flex-grow:1;
}

.inv_calc_btn{
    width:100%;
    height:48px;
    border-radius:6px;
    background-color:#4a5d82;
    border:1px solid #4a5d82;
    color:#fff;
}


/* RIGHT COLUMN */

.inv_calc_right{
    width:74%;
    display:flex;
    flex-direction:column;
    gap:18px;
}


/* TOP RESULT */

.inv_result_total{
    background:#f3f3f3;
    border-radius:8px;
    padding:20px 24px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.inv_result_label{
    font-size:14px;
    color:#333;
}

.inv_result_value{
    font-size:25px;
    font-weight:700;
     
}


/* SECOND ROW */

.inv_result_row{
    display:flex;
    gap:18px;
}

.inv_result_box{
    flex:1;
    border-radius:8px;
    padding:22px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    min-height:110px;
}

.inv_result_box .inv_result_label{
    font-size:14px;
    margin-bottom:6px;
}

.inv_result_box .inv_result_value{
    font-size:32px;
    font-weight:900 !important;
     
}

.inv_result_box.profit{
    background:#e9e9e9;
    
    color:#338033;
}

.inv_result_box.monthly{
    background:#d7e1eb;
}


/* MONTH AREA */

.inv_result_months{
    flex-grow:1;
    background:inherit;
    border-radius:8px;
    padding:0;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.months_graphic{
    height:200px;
}

.months_note{
    font-size:13px;
    color:#666;
}
.inv_promo_box{
    background:#d7e1eb;
    border-radius:8px;
    padding:20px 24px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-top:1px;
}

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

.inv_promo_title{
    font-size:16px;
    font-weight:600;
    padding-bottom:5px;
}

.inv_promo_desc{
    font-size:13px;
    color:#666;
}

.inv_promo_btn{
    height:42px;
    padding:0 22px;
    border-radius:6px;
    background-color:#fff;
    border:1px solid #ccd9e5;
    color:#333;
}

.inv_result_graph{
    display:flex;
    gap:14px;
    height:240px;
}


@media (max-width:1070px){

.inv_calc_wrapper{
   padding: 20px;
   max-width:90%;
   margin:15px auto 0 auto;
   border: .25px solid #e1e1e1;
}}

@media (max-width:850px){

.inv_calc_wrapper{
    flex-direction:column;
    padding: 20px 15px ;
}

.inv_calc_left{
    width:100%;
}

.inv_calc_right{
    width:100%;
}

.inv_result_row{
    flex-direction:column;
}

.inv_result_box{
    width:100%;
}
.inv_promo_box{
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
    margin-top:10px;
}

}
.calc_disclaimer{
    max-width:1100px;
    margin:1px auto 20px auto;
    padding:10px 18px;
    font-size:13px;
    line-height:1.6;
    color:#999;
    display:flex;
    align-items:flex-start;
    gap:10px;
}

.calc_disclaimer i{
    font-size:15px;
    margin-top:2px;
    color:#c3c9d5;
}

.calc_disclaimer span{
    display:block;
}
.cta_disclaimer{
    max-width:300px;
    margin:12px 0;
    font-size:13px;
    color:#999;
    display:flex;
    gap:8px;
    align-items:flex-start;
}

.cta_disclaimer i{
    color:#5e6c87;
    font-size:13px;
    margin-top:2px;
}

.calc_graph{
width:100%;
height:240px;
display:flex;
flex-direction:column;
justify-content:flex-end;
padding:5px 10px;
}

.calc_bars{
display:flex;
align-items:flex-end;
justify-content:space-between;
height:95%;
width:80%;
margin:0 auto;
}

.calc_bar{
width:12%;
display:flex;
flex-direction:column;
align-items:center;
justify-content:flex-end;
position:relative;
height:100%;
}

.bar_fill{
width:100%;
height:0;
background:#74a7fb;
border-radius:8px 8px 0 0;
transition:height .6s ease;
}

.calc_bar.final .bar_fill{
background:#2ecc71;
}

.calc_bar_value{
font-size:12px;
margin-bottom:6px;
font-weight:500;
opacity:0;
transition:opacity .4s ease;
}

.calc_month{
font-size:12px;
margin-top:6px;
color:#888;
font-weight:900;
}

.calc_bottom_note{
padding:15px 0 5px 0;
margin:0 auto;
}

.calc_graph_note{
 

font-size:12px;
color:#999;
display:none;
}

@media (max-width:850px){
    .calc_bars{

width:100%;
margin:0 auto;
}}


.sap-shell {
  max-width: 1200px;
  min-height: 760px;
  margin: 0 auto;
  padding: 42px 18px 80px;
}

.sap-intro {
  text-align: center;
 
  transition: all .35s ease;
  
}

.sap-eyebrow {
  margin: 0 0 8px;
  font-size: 1.08rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #777;
}

.sap-heading {
  margin: 0;
  
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.05;
  font-weight: 600;
}

.sap-subheading {
  max-width: 700px;
  margin: 15px auto 0;
  font-size: 1.55rem;
  line-height: 1.65;
  color: #555;
}

.sap-form-started .sap-intro {
  margin-bottom: 18px;
}

.sap-form-started .sap-heading {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
}

.sap-form-started .sap-subheading {
  font-size: 1.55rem;
  margin-top: 8px;
}

.sap-login-actions {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.sap-flow {
  max-width: 940px;
  margin: 0 auto;
}

.sap-step {
  display: none;
  border: 1px solid #fff;
  background: #fff;
  border-radius: 3px;
  margin-bottom: 12px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px);
}

.sap-step.is-visible {
  display: block;
  animation: sapStepIn .28s ease forwards;
}

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

.sap-step-summary {
  width: 100%;
  border: none;
  background: #fff;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  cursor: pointer;
}

.sap-step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.sap-step-text strong {
  display: block;
  font-size: 1.45rem;
  color: #111;
  font-weight: 600;
}

.sap-step-text em {
  display: block;
  margin-top: 3px;
  font-size: 1.35rem;
  color: #666;
  font-style: normal;
}

.sap-step-body {
  display: none;
  padding: 0 22px 24px;
}

.sap-step.is-active .sap-step-body {
  display: block;
  animation: sapBodyIn .25s ease forwards;
}

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

.sap-step.is-collapsed .sap-step-summary {
  background: #fafafa;
}

.sap-step.is-collapsed .sap-step-number {
  background: #222;
}

.sap-step-question {
  margin: 15px 0 19px;
  font-weight:500;
  font-size: 2.4rem;
  line-height: 1.2;
  color: #111;
}

.sap-category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.sap-category-card {
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 3px;
  padding: 15px 10px 10px 10px;
  cursor: pointer;
  overflow: hidden;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.sap-category-card:hover {
  transform: translateY(-2px);
  border-color: #c1aa8a;
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
}

.sap-category-card.is-selected {
  border-color: #c1aa8a;
  box-shadow: 0 0 0 1px #c1aa8a;
}

.sap-category-image {
  display: block;
  height: 70px;
  background: #fff;
  overflow: hidden;
}

.sap-category-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.sap-category-title {
  display: block;
  padding: 18px 5px;
  border-top: 1px solid #fff;
  font-size: 1.18rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.sap-option-grid,
.sap-condition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.sap-option-card,
.sap-condition-card {
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 3px;
  padding: 16px 14px;
  text-align: left;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}



.sap-condition-card strong {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.sap-condition-card span {
  display: block;
  font-size: 1.3rem;
  color: #777;
  line-height: 1.45;
}

.sap-condition-card.is-selected span {
  color: rgba(255,255,255,.78);
}

.sap-label {
  display: block;
  margin: 15px 0 7px;
  font-size: 1.3rem;
  color: #222;
  font-weight: 600;
}

.sap-input,
.sap-textarea {
  width: 100%;
  border: 1px solid var(--sap-border);
  border-radius: 3px;
  background: #fff;
  color: #111;
  font-family: var(--sap-main-font);
  font-size: 1.45rem;
  padding: 14px 15px;
  outline: none;
  box-sizing: border-box;
}

.sap-input:focus,
.sap-textarea:focus {
  border-color: #111;
  box-shadow: 0 0 0 2px rgba(0,0,0,.05);
}

.sap-textarea {
  min-height: 135px;
  resize: vertical;
  line-height: 1.55;
}

.sap-budget-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.sap-budget-wrap {
  position: relative;
}

.sap-budget-symbol {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #777;
  font-size: 1.25rem;
}

.sap-budget-wrap .sap-input {
  padding-left: 31px;
}

.sap-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  padding: 13px 24px;
  border: 1px solid #111;
  font-size: 1.18rem;
  font-family: var(--sap-main-font);
  font-weight: 600;
  cursor: pointer;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .2s ease;
  
}

.sap-btn:hover {
  transform: translateY(-1px);
}

.sap-btn-dark {
  background: #111;
  color: #fff;
}

.sap-btn-light {
  background: #fff;
  color: #111;
}

.sap-full-btn {
  width: 100%;
  max-width:350px;
  margin:1px auto;
}

.sap-continue-btn {
  margin-top: 14px;
  min-width: 170px;
}

.sap-upload-zone {
  position: relative;
  border: 1px dashed #aaa;
  border-radius: 3px;
  background: #fafafa;
  padding: 34px 18px;
  text-align: center;
  cursor: pointer;
}

.sap-upload-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.sap-upload-zone:hover,
.sap-upload-zone.is-dragover {
  border-color: #111;
  background: #f4f4f4;
}

.sap-upload-icon {
  font-size: 2rem;
  margin-bottom: 6px;
}

.sap-upload-title {
  font-size: 1.3rem;
}

.sap-upload-note {
  margin-top: 5px;
  color: #777;
  font-size: 1.08rem;
}

.sap-preview-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.sap-preview-item {
  position: relative;
  height: 110px;
  border-radius: 3px;
  overflow: hidden;
  background: #f2f2f2;
}

.sap-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sap-preview-remove {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 50%;
  background: rgba(17,17,17,.84);
  color: #fff;
  cursor: pointer;
}

.sap-submit-row {
  display: none;
  justify-content: center;
  margin: 26px 0 14px;
}

.sap-submit-row.is-visible {
  display: flex;
  animation: sapStepIn .28s ease forwards;
}

.sap-clear-row {
  text-align: center;
  margin-top: 22px;
}

.sap-clear-btn {
  border: none;
  background: transparent;
  color: #777;
  font-size: 1.18rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.sap-clear-btn:hover {
  color: #111;
}

.sap-success {
  display: none;
  text-align: center;
  border: 1px solid var(--sap-border);
  border-radius: 3px;
  padding: 35px 20px;
  margin-top: 18px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
}

.sap-success.is-active {
  opacity: 1;
  transform: translateY(0);
}

.sap-success-check {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.sap-success h2 {
  margin: 0 0 8px;
  font-family: var(--sap-serif-font);
  font-size: 3rem;
  font-weight: 400;
}

.sap-success p {
  margin: 0;
  color: #666;
  font-size: 1.3rem;
}

.sap-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.sap-modal.is-open {
  display: flex;
}

.sap-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
}

.sap-modal-box {
  position: relative;
  width: min(650px, 100%);
  max-height: 86vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 3px;
  padding: 28px;
  box-shadow: 0 20px 70px rgba(0,0,0,.25);
  animation: sapModalIn .22s ease forwards;
}

@keyframes sapModalIn {
  from { opacity: 0; transform: translateY(10px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.sap-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: none;
  background: transparent;
  font-size: 2.4rem;
  cursor: pointer;
}

.sap-modal-box .sap-eyebrow {
  text-align: left;
}

.sap-modal-box h2 {
  margin: 0 0 18px;
  font-family: var(--sap-serif-font);
  font-size: 3.2rem;
  font-weight: 400;
}

.sap-modal-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
}

.sap-modal-option {
  border: 1px solid var(--sap-border);
  background: #fff;
  color: #111;
  border-radius: 3px;
  padding: 14px;
  font-size: 1.25rem;
  cursor: pointer;
  text-align: left;
}

.sap-modal-option:hover,
.sap-modal-option.is-selected {
  background: #111;
  color: #fff;
  border-color: #111;
}

.sap-logged-out .sap-step {
  pointer-events: none;
}

.sap-logged-out .sap-step-summary,
.sap-logged-out .sap-step-body {
  opacity: .45;
}

@media (max-width: 768px) {
  .sap-shell {
    padding: 34px 12px 65px;
  }
  .sap-input,
.sap-textarea {
 
  font-size: 1.6rem;
  padding: 14px 15px;
 
}

  .sap-category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sap-category-image {
    height: 78px;
  }

  .sap-option-grid,
  .sap-condition-grid,
  .sap-budget-two {
    grid-template-columns: 1fr;
  }

  .sap-preview-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 499px) {
  .sap-heading {
    font-size: 3.2rem;
  }

  .sap-form-started .sap-heading {
    font-size: 2.4rem;
  }

  .sap-subheading {
    font-size: 1.18rem;
  }

  .sap-step-summary {
    padding: 16px 14px;
  }

  .sap-step-body {
    padding: 0 14px 20px;
  }

  .sap-step-question {
    font-size: 1.9rem;
  }

  .sap-category-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
  }

  .sap-category-image {
    height: 64px;
  }

  .sap-category-title {
    font-size: .88rem;
    padding: 7px 3px;
  }

  .sap-modal-options {
    grid-template-columns: 1fr;
  }

  .sap-modal-box {
    padding: 24px 18px;
  }
}


/* ============================================================
   NEW ABOUT DESIGN — new_about_design.css
   All selectors scoped with .llau- prefix to avoid conflicts
   Place at: /catalog/view/theme/vasia/stylesheet/new_about_design.css
   ============================================================ */


/* SECTION 1 — HERO
   ============================================================ */
.llau-hero {
  min-height: 80vh;
  background: #f5f0e8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  padding: 55px 40px 30px;
}

.llau-hero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 32px;
  opacity: 0;
  -webkit-transform: translateY(16px);
  transform: translateY(16px);
  -webkit-transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.llau-hero__headline {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 400;
  font-style: italic;
  color: #111;
  line-height: 1.1;
  letter-spacing: -0.01em;
  max-width: 740px;
  margin-bottom: 28px;
  opacity: 0;
  -webkit-transform: translateY(16px);
  transform: translateY(16px);
  -webkit-transition: opacity 0.8s ease 0.25s, -webkit-transform 0.8s ease 0.25s;
  transition: opacity 0.8s ease 0.25s, transform 0.8s ease 0.25s;
}

.llau-hero__body {
  font-size: 16px;
  font-weight: 300;
  color: #777;
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 52px;
  opacity: 0;
  -webkit-transform: translateY(16px);
  transform: translateY(16px);
  -webkit-transition: opacity 0.8s ease 0.5s, -webkit-transform 0.8s ease 0.5s;
  transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s;
}

.llau-hero__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 36px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 60px;
  opacity: 0;
  -webkit-transform: translateY(16px);
  transform: translateY(16px);
  -webkit-transition: opacity 0.8s ease 0.75s, -webkit-transform 0.8s ease 0.75s;
  transition: opacity 0.8s ease 0.75s, transform 0.8s ease 0.75s;
}

.llau-hero__nav-link {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #111;
  text-decoration: underline;
  text-underline-offset: 5px;
  cursor: pointer;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.llau-hero__nav-link:hover {
  color: #888;
}

.llau-hero__arrow {
  opacity: 0;
  color: #bbb;
  font-size: 24px;
  line-height: 1;
  -webkit-transition: opacity 0.8s ease 1s;
  transition: opacity 0.8s ease 1s;
}

.llau-hero__arrow.is-bouncing {
  -webkit-animation: llauArrowBounce 2s ease infinite;
  animation: llauArrowBounce 2s ease infinite;
}

@-webkit-keyframes llauArrowBounce {
  0%, 100% { -webkit-transform: translateY(0); transform: translateY(0); }
  50%       { -webkit-transform: translateY(8px); transform: translateY(8px); }
}

@keyframes llauArrowBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

.llau-hero.is-visible .llau-hero__eyebrow,
.llau-hero.is-visible .llau-hero__headline,
.llau-hero.is-visible .llau-hero__body,
.llau-hero.is-visible .llau-hero__nav,
.llau-hero.is-visible .llau-hero__arrow {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}


/* SECTIONS 2 & 3 — STICKY SPLIT PANELS
   ============================================================ */
.llau-split {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  max-width:1440px;
  margin:0 auto;
}

.llau-split--reversed {
  background: #fafafa;
}

.llau-split__media {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  -ms-flex-item-align: start;
  align-self: start;
}

.llau-split__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.llau-split--reversed .llau-split__media {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.llau-split--reversed .llau-split__content {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.llau-split__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 100px 72px;
  gap: 28px;
  min-height: 100vh;
}

.llau-split__label {
  font-size: 15px;
  font-style: italic;
  color: #999;
}

.llau-split__heading {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.25;
  color: #111;
}

.llau-split__body {
  font-size: 15px;
  font-weight: 300;
  color: #555;
  line-height: 1.9;
}


/* SECTION 4 — WHY SHOP WITH LUXLUX
   ============================================================ */
.llau-why {
  padding: 110px 60px;
  background: #fff;
  text-align: center;
}

.llau-why__heading {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 400;
  font-style: italic;
  color: #111;
  margin-bottom: 72px;
}

.llau-why__list {
  max-width: 680px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 56px;
}

.llau-why__item-title {
  font-size: clamp(18px, 2.2vw, 22px);
  font-style: italic;
  font-weight: 400;
  color: #111;
  margin-bottom: 14px;
}

.llau-why__item-text {
  font-size: 15px;
  font-weight: 300;
  color: #777;
  line-height: 1.85;
  max-width: 540px;
  margin: 0 auto;
}


/* SECTION 5 — WHAT WE DO
   ============================================================ */
.llau-what {
  padding: 110px 60px;
  background: #f5f0e8;
}

.llau-what__header {
  text-align: center;
  margin-bottom: 72px;
}

.llau-what__heading {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 400;
  font-style: italic;
  color: #111;
  margin-bottom: 16px;
}

.llau-what__sub {
  font-size: 15px;
  font-weight: 300;
  color: #888;
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.7;
}

.llau-what__boxes {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.llau-what__box {
  background: #fff;
  border-bottom: 2px solid #111;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.28s ease, -webkit-box-shadow 0.28s ease;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  cursor: default;
}

.llau-what__box:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

.llau-what__box-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.llau-what__box-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.45s ease;
  transition: transform 0.45s ease;
}

.llau-what__box:hover .llau-what__box-img img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.llau-what__box-body {
  padding: 28px 24px 32px;
}

.llau-what__box-title {
  font-size: 17px;
  font-style: italic;
  font-weight: 400;
  color: #111;
  margin-bottom: 12px;
  line-height: 1.2;
}

.llau-what__box-text {
  font-size: 13px;
  font-weight: 300;
  color: #777;
  line-height: 1.8;
}


/* SCROLL FADE-IN UTILITY
   ============================================================ */
.llau-fade {
  opacity: 0;
  -webkit-transform: translateY(22px);
  transform: translateY(22px);
  -webkit-transition: opacity 0.65s ease, -webkit-transform 0.65s ease;
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.llau-fade.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.llau-fade--d1 { -webkit-transition-delay: 0.05s; transition-delay: 0.05s; }
.llau-fade--d2 { -webkit-transition-delay: 0.18s; transition-delay: 0.18s; }
.llau-fade--d3 { -webkit-transition-delay: 0.30s; transition-delay: 0.30s; }
.llau-fade--d4 { -webkit-transition-delay: 0.42s; transition-delay: 0.42s; }


/* RESPONSIVE — TABLET (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {

  .llau-split__content {
    padding: 80px 48px;
  }

  .llau-what__boxes {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .llau-why {
    padding: 80px 40px;
  }

  .llau-what {
    padding: 80px 40px;
  }
}


/* RESPONSIVE — MOBILE (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {

  .llau-hero {
    padding: 100px 24px 64px;
    min-height: auto;
  }

  .llau-hero__nav {
    gap: 18px;
  }

  .llau-split {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .llau-split__media {
    position: relative !important;
    height: 62vw;
    min-height: 260px;
    top: auto !important;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1 !important;
  }

  .llau-split__content {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2 !important;
    padding: 52px 28px;
    min-height: auto;
    gap: 20px;
  }

  .llau-split--reversed .llau-split__media {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1 !important;
  }

  .llau-split--reversed .llau-split__content {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2 !important;
  }

  .llau-why {
    padding: 72px 24px;
  }

  .llau-why__list {
    gap: 44px;
  }

  .llau-what {
    padding: 72px 20px;
  }

  .llau-what__boxes {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .llau-what__box-img {
    height: 180px;
  }

  .llau-what__box-body {
    padding: 20px 18px 24px;
  }
}


/* RESPONSIVE — SMALL PHONES (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {

  .llau-hero__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 14px;
  }

  .llau-why {
    padding: 60px 20px;
  }

  .llau-what__boxes {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .llau-what__box-img {
    height: 56vw;
  }
}


.new_selling_bann {
  display: flex;
  width: 100%;
  background-color: #f8f8f8;
  overflow: hidden;
  max-width:1450px;
  margin:0 auto;
}

/* IMAGE COLUMN */
.new_selling_bann__image {
  flex: 1;
  position: relative;
}

/* Fashionphile-style image behavior */
.new_selling_bann__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* TEXT COLUMN */
.new_selling_bann__content {
  flex: 1;
  padding:10px;
  text-align:center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #f8f8f8;
}

.new_selling_bann__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  color: #666;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 0 1.35rem;
}

.new_selling_bann__content h2 {
  font-size: clamp(2em, 3.1vw, 3.1em);
  font-weight: 500;
  margin-bottom: 18px;
  margin-top: 2px;
  color:#222;
  text-transform: none;
  
}

.new_selling_bann__content p {
  font-size: 16px;
  line-height: 1.45;
  max-width:450px;
  margin: 1px auto 29px auto;
  color: #444;
}

.new_selling_bann__btn {
  background: #000;
  color: #fff;
  padding: 16px 22px;
  font-size: 14px;
  font-weight: 300;
  text-decoration: none;
  width: fit-content;
  text-transform: uppercase;
}

.new_selling_bann__btn:hover {
  background: #000;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 1280px) {
  .new_selling_bann__content {
    padding: 10px;
  }

  .new_selling_bann__content h2 {
    margin-bottom: 18px;
    margin-top: 2px;
    max-width:400px;
    margin-left:auto;
    margin-right:auto;
  }
}

@media (max-width: 768px) {
  .new_selling_bann {
    flex-direction: column;
  }

  .new_selling_bann__image {
    height: 300px;
  }

  .new_selling_bann__image img {
    height: 100%;
  }

  .new_selling_bann__content {
    padding: 50px 35px;
  }

  .new_selling_bann__content h2 {
    margin-bottom:33px;
    max-width:100%;
  }

  .new_selling_bann__content p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #333;
  }
}
