/* studio183-experience.css
   Optimized, responsive, dark-theme CSS for Swivul-style experience page
   Matches classes: studio183-gallery-row, studio183-gallery-item, studio183-grid,
   studio183-left, studio183-right, studio183-title, studio183-hosted, studio183-short,
   studio183-divider, studio183-section-title, studio183-content, studio183-price,
   studio183-guests, studio183-trip-btn, studio183-terms, studio183-cart
*/

/* ---------------------------
   RESET / BASE
----------------------------*/
*,*::before,*::after{box-sizing:border-box}
html,body{height:100%}
body.single-product{
  background:#000;
  color:#fff;
   
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.6;
}

/* links */
.studio183-product a{color:inherit}

/* ---------------------------
   TOP GALLERY (3-up grid)
----------------------------*/

.studio183-product-wrapper{
    margin-top: 90px;
     width:100%;
}
.studio183-gallery-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:4px;
  width:100%;
  margin:0 auto;
  padding: 0px 40px;
  
  max-width:1350px;
}

.studio183-gallery-item img{
  width:100%;
  height:380px;
  object-fit:cover;
  display:block;
  vertical-align:middle;
}

/* small visual tweak when only one image exists 
.studio183-gallery-row .studio183-gallery-item:only-child img{
  height:520px;
}*/

/* ---------------------------
   MAIN GRID (content + sidebar)
----------------------------*/
.studio183-grid{
  max-width:1350px;
  margin:42px auto;
  padding:0 40px;
  display:grid;
  grid-template-columns:1fr 380px;
  gap:56px;
  align-items:start;
}

/* LEFT */
.studio183-left{padding-right:6px}

/* Title */
.studio183-title{
  font-size:34px;
  line-height:1.05;
  margin:0 0 10px;
  font-weight:700;
  color:#fff;
}

/* Hosted row */
.studio183-hosted{
  font-size:14px;
  color:#cfcfcf;
  margin-bottom:18px;
  display:flex;
  align-items:center;
  gap:8px;
}

/* short description */
.studio183-short{
  color:#e8e8e8;
  font-size:15px;
  margin-bottom:22px;
}

/* SECTION DIVIDER */
.studio183-divider{
  height:1px;
  background:#161616;
  margin:28px 0;
  border-radius:2px;
  box-shadow:0 1px 0 rgba(255,255,255,0.01) inset;
}

/* SECTION TITLE */
.studio183-section-title{
  font-size:18px;
  margin:0 0 12px;
  font-weight:600;
  color:#fff;
}

/* content blocks */
.studio183-content{
  font-size:15px;
  color:#dcdcdc;
  margin-bottom:10px;
}

/* lists inside left content */
.studio183-left ul{
  padding:0px;
  margin-top:8px;
  color:#d6d6d6;
}
.studio183-left li{margin-bottom:10px}

/* Reviews area - use theme styles but keep spacing */
.comments-area{margin-top:10px}

/* ---------------------------
   RIGHT SIDEBAR
----------------------------*/
.studio183-right{
  position:relative;
}
.studio183-right .studio183-price{
  font-size:28px;
  font-weight:700;
  color:#fff;
  margin-bottom:14px;
}

/* price box container */
.studio183-right .studio183-price-box{
  background:#0e0e0e;
  border:1px solid #1f1f1f;
  padding:18px;
  border-radius:10px;
}

/* guests select */
.studio183-guests label{
  display:block;
  font-size:13px;
  color:#cfcfcf;
  margin-bottom:8px;
}
.studio183-guests select{
  width:100%;
  padding:10px 12px;
  background:#0a0a0a;
  color:#fff;
  border:1px solid #262626;
  border-radius:8px;
  font-size:14px;
  outline:none;
  -webkit-appearance:none;
  appearance:none;
}

/* WooCommerce add-to-cart area - center & full width */
.studio183-cart{margin-top:16px; display:flex; gap:10px; align-items:center; flex-direction:column}
.single_add_to_cart_button{
  width:100%;
  padding:12px 14px;
  background:#fff;
  color:#000;
  border-radius:8px;
  font-weight:600;
  border:none;
  cursor:pointer;
  transition:transform .08s ease,opacity .12s ease;
  text-align:center;
}
.single_add_to_cart_button:hover{opacity:.95; transform:translateY(-1px)}

/* add to trip button */
.studio183-trip-btn{
  width:100%;
  padding:11px 14px;
  background:transparent;
  color:#fff;
  border:1px solid #2a2a2a;
  border-radius:8px;
  margin-top:8px;
  cursor:pointer;
  font-size:14px;
}

/* small terms text */
.studio183-terms{
  font-size:12px;
  color:#9a9a9a;
  margin-top:12px;
  line-height:1.45;
}

/* make right column sticky on desktop */
@supports (position:sticky){
  .studio183-right{
    position:sticky;
    top:100px;
    align-self:start;
  }
}

/* ---------------------------
   TYPOGRAPHY & MICRO
----------------------------*/
.studio183-left h3, .studio183-left h4{color:#fff}
.studio183-left p{color:#dcdcdc;
font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.studio183-left a{color:#fff}
.studio183-left .meta{color:#aaaaaa; font-size:13px}

/* subtle card style for boxes inside left content (if used) */
.studio183-left .studio183-card{
  background:#070707;
  border:1px solid #151515;
  padding:14px;
  border-radius:8px;
  margin-bottom:16px;
}

/* ---------------------------
   RESPONSIVE
----------------------------*/
/* large tablets */
@media (max-width:1024px){
  .studio183-gallery-item img{height:320px}
  .studio183-grid{grid-template-columns:1fr 320px; gap:36px; width:94%; margin:40px auto}
  .studio183-title{font-size:30px}
}

/* tablets / small desktops */
@media (max-width:900px){
  .studio183-gallery-row{grid-template-columns:repeat(2,1fr)}
  .studio183-gallery-item img{height:300px}
  .studio183-grid{grid-template-columns:1fr 320px; gap:28px}
}

/* mobile */
@media (max-width:768px){
  body.single-product{padding-bottom:40px}
  .studio183-gallery-row{grid-template-columns:1fr; margin-top: 20px !important; padding:0px 10px!important; }
  .studio183-gallery-item img{height:260px}
  .studio183-grid{grid-template-columns:1fr; gap:28px; width:94%; margin:24px auto; padding: 0px 10px;}
  .studio183-left{padding-right:0}
  /* bring sidebar above content on mobile */
  .studio183-right{order:-1; position:relative; top:auto; width:100%}
  .studio183-right .studio183-price{font-size:24px}
  .studio183-title{font-size:24px}
  .studio183-section-title{font-size:16px}
  .when-where {
  display: grid;
  grid-template-columns: 1fr !important;
  }
}

/* small mobile */
@media (max-width:420px){
  .studio183-gallery-item img{height:200px}
  .studio183-title{font-size:20px}
  .single_add_to_cart_button{padding:11px}
  .studio183-product-wrapper{
    margin-top: 20px;
  }
}

/* ---------------------------
   UTILITIES
----------------------------*/
.u-hidden{display:none!important}
.text-muted{color:#9a9a9a}
.center{text-align:center}




.plates-review-modal{
   position: fixed;
   top: 0px;
   left: 0px;
   width: 100%;
   height: 100%; 
   z-index: 99;
   display: none;
}
.plates-review-modal.show{
    display: block;
}

.studio183-guests{
  margin-bottom: 10px;
  display: inline-block;
  width: 100%;
}
.plates-review-modal .plates-review-modal-inner {
    background: #fff;
    margin:8vh auto;
    padding: 30px;
    border-radius: 30px;
    width: 750px;
    line-height: 1px;
    position: relative;
    color: #000;
}
.plates-review-modal .plates-review-modal-inner .plates-review-modal-close{
    position: absolute;
    right: 34px;
    top: 34px;
    cursor: pointer;
    z-index: 999;
}
.plates-review-modal .plates-review-modal-inner form.glsr-form .glsr-star-rating--stars>span{
    width: 20px !important;
}
.plates-review-modal .plates-review-modal-inner .glsr-default form.glsr-form textarea.glsr-textarea{
    height: 90px;
}
.plates-review-modal .plates-review-modal-inner .modal-app-info{
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
}
.glsr-default button.glsr-button{
    border:0px;
    font-size: 16px; 
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 6px;
    display: inline-block;
    margin-right: 10px;
    background: #e60023;
    color: #fff;
}

.plates-app-modal-overlay {
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 9;
    backdrop-filter: blur(2px);
}
.plates-app-modal-overlay.show{
  display: block;
}
.glsr-default form.glsr-form input.glsr-input, .glsr-default form.glsr-form select.glsr-select, .glsr-default form.glsr-form textarea.glsr-textarea{
    border-radius: 6px;
    outline: none !important;
    border:#e1e0e0 solid 1px !important;
}
.glsr-default form.glsr-form input.glsr-input:focus,.glsr-default form.glsr-form select.glsr-select:focus,.glsr-default form.glsr-form textarea.glsr-textarea:focus {

    box-shadow: 0 0 0 3px #e60023!important;  
}
.glsr-default {
    --glsr-toggle-bg-1: var(--glsr-blue);
}
.plates-review-modal .plates-review-modal-inner .modal-app-info span{
    font-size: 22px;
    line-height: 28px; 
    color: #000;
    margin: 0px;
    position: relative;

}
.plates-review-modal .plates-review-modal-inner .modal-app-info span span{
    display: block;
    text-transform: uppercase;
    color: #e60023;
    font-size: 14px; 
}
.plates-review-modal .plates-review-modal-inner .modal-app-info img{
   display: inline-block;
    width: auto;
    border-radius: 12px;
    float: left;
    margin-right: 10px;
    height: 70px;
}

.pmcard-review .plates-app-rating-big{
  display: none;
}
.pmcard-review {
  padding-top: 10px;
}
.pmcard-review .glsr-summary-text{
  display: inline-block;
  margin-left: 15px; float: left;
}
.pmcard-review .plates-app-rating-stars{
  float: left;
}
.pmcard-review .plates-app-rating-head-left{
  width: 100%;
}
.plates-app-ratings-review-inner {
      border-bottom: #ccc solid 1px;
    padding-bottom: 15px;
margin:20px auto;
width:100%; 

}
.plates-app-ratings-review-inner h2{
font-size:28px;
font-weight: bold;
}
.plates-app-rating-review {
 
    padding-top: 40px; 

}
.plates-app-rating-review  .plates-review-modal-btn{
 
display: inline-block;
    background: #e80000;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 8px;
    text-decoration: none;
    float: right;
    font-weight: normal;}

.plates-app-rating-review .plates-app-rating-head{
    padding: 30px 0px;
    width: 100%;
    display: inline-block;
}
 
.plates-app-rating-review .plates-app-rating-head .plates-app-rating-head-left{
    float: left;
    width: 20%;
    text-align: center;

} 

.plates-app-rating-review .plates-app-rating-head .plates-app-rating-head-left span{
    display: block;
    font-size: 14px;
}
.plates-app-rating-review .plates-app-rating-head .plates-app-rating-head-left span.plates-app-rating-big,.plates-app-rating-review .plates-app-rating-head .plates-app-rating-head-left span.plates-app-rating-big .glsr-tag-value{
    font-size: 48px;
height: 60px;
overflow: hidden;
}
.plates-app-rating-review .plates-app-rating-head .plates-app-rating-head-left span.plates-app-rating-stars{
    color: #e80000;
}
.plates-app-rating-review .plates-app-rating-head .plates-app-rating-head-right {
    float: left;
    width: 80%;
    font-size: 14px;
    padding-left: 40px;
}
.plates-app-rating-review .plates-app-rating-head .plates-app-rating-head-right .plates-app-rating-p-bar{
    background-color: rgb(232,234,237);
    border-radius: 36px;
    height: 8px;
    float: right;
    width: calc(100% - 20px);
    margin-top: 5px;
    margin-left: 10px;
}
.plates-app-rating-review .plates-app-rating-head .plates-app-rating-head-right .plates-app-rating-p-bar span{
    background: #e80000;
    display: inline-block;
    height: 8px;
    float: left;  border-radius: 36px;

}
.plates-app-rating-review  .glsr-summary .glsr-bar-background-percent {
    background-color: #e80000;
    color: var(--glsr-bar-bg);
}

.plates-app-rating-review   .plates-app-rating-boxes{
  padding: 20px 0px;
  width: 70%;
  display: inline-block;
}
.plates-app-rating-review   .plates-app-rating-boxes .plates-app-rating-box{
    padding: 10px 0px;
    display: inline-block;
    width: 100%;
}
.plates-app-rating-review .glsr-summary {
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    max-width: inherit;
}
.plates-app-rating-review  .glsr-summary .glsr-bar-background:before, .plates-app-rating-review .glsr-summary .glsr-bar-background-percent {
    height: 8px;  border-radius: 36px;
}
.plates-app-rating-review  .glsr-summary .glsr-bar-background:before{  margin-top: calc(8px/2*-1);
}
.plates-app-rating-review   .plates-app-rating-boxes .plates-app-rating-box-head .plates-app-rating-box-user{
   
}

.plates-app-rating-review   .plates-app-rating-boxes .plates-app-rating-box-head .plates-app-rating-box-user .farbu-icon{
   display: inline-block;
   width: 40px;
   height: 40px;
   font-size: 18px;  background: #e80000;
   border-radius: 100%;
   text-align: center;
   line-height: 40px;
   margin-right: 10px;
   color: #fff;
}
.plates-app-rating-review   .plates-app-rating-boxes .plates-app-rating-box-head .plates-app-rating-box-user .farbu-icon .glsr-tag-value{
 font-size: 0px;
} 
.plates-app-rating-review   .plates-app-rating-boxes .plates-app-rating-box-head .plates-app-rating-box-user .farbu-icon .glsr-tag-value:first-letter{
   font-size: 18px;
}
.plates-app-rating-review   .plates-app-rating-boxes .plates-app-rating-box-head .plates-app-rating-box-star{
    margin-top: 10px;
    font-size: 13px;
}
.plates-app-rating-review   .plates-app-rating-boxes .plates-app-rating-box-head .plates-app-rating-box-star i{
    color: #e80000;

}
.plates-app-rating-review   .plates-app-rating-boxes .plates-app-rating-box-body{
    display: inline-block;
    width: 100%;
}
.plates-app-modal-overlay {
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 9;
    backdrop-filter: blur(2px);
}
.plates-app-modal-overlay.show {
    display: block;
}