/* || Showrooms */
#our_stores_page {
	padding-top:10px;
	max-width:70%;
	margin:0 auto;
	color:var(--master-color-black);
	@media screen and (max-width: 1199px){
		max-width:85%;
	}
	@media screen and (max-width: 991px){
		max-width:90%;
	}
	@media screen and (max-width: 767px){
		max-width:100%;
	}
  .custom-tabs-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    @media screen and (max-width: 575px){
			flex-direction: column;
			align-items:center;
			gap:1.5rem;
			margin-bottom:2rem;
		}
  }
  .tab-label {
    flex: 1;
    max-width: 250px;
    font-weight: 500;
    text-align: center;
    border-radius: var(--basic-border-radius);
    margin-bottom: 20px;
    font-size: 18px;
    background-color: var(--master-grey-ultralight);
    cursor: pointer;
    padding: 20px;
    transition: background-color 0.3s;
    @media screen and (max-width: 575px){
			max-width:100%;
			width:100%;
			margin-bottom:0;
			padding:10px;
			font-size:16px;
		}
  }
  .tab-label:hover {
  	background-color: var(--master-color-primary-ultralight);
  }
  .tab-label.active {
    background-color: var(--master-color-primary);
    color: white; 
    font-weight: bold;
  }
  .tab-content-css {
    display: none;
    padding: 15px;
    border-top: none;
  }
  .tab-content-css.active {
    display: block;
  }
  /* ===== Components ===== */
  /* * Showroom header * */
  .showroom-header {
  	text-align:center;
  	h3{
  		margin:0;
  		font-size:24px;
  		margin-bottom:10px;
  	}
  }
  /* * Showroom detail * */
  .showroom-detail{
  	gap:2rem;
  	margin-bottom:4rem;
  	>div{
  		flex:1;
  		text-align:center;
  		background-color:var(--master-color-primary-ultraultralight);
  		border-radius:var(--basic-border-radius);
  		padding:2rem 1rem;
  		.detail-item-name{
  			font-weight:bold;
  			color:var(--master-color-primary);
  		}
  		.detail-item-wrapper{
  			font-weight:500;
  			a{
  				color:var(--master-color-primary);
  			}
  		}
  	}
  	@media screen and (max-width: 575px){
  		flex-direction: column;
  	}
  }
  /* * Showroom map iframe * */
  .showroom-map{
  	margin-bottom:4rem;
		p{
			font-size:18px;
			font-weight:bold;
			text-align:center;
		}  
  	iframe{
  		width:100%;
  		border-radius: var(--basic-border-radius);
  	}
  }
  /* * Showroom usp * */
  .showroom-usp{
  	margin-bottom:4rem;
		p{
			font-size:18px;
			font-weight:bold;
			text-align:center;
		}
		.showroom-ups-items{
			display:flex;
			flex-wrap:wrap;
			gap:2rem;
			p{
				text-align:left;
				font-size:14px;
				font-weight:normal;
				flex:calc(50% - 1rem);
				margin-bottom:0;
				position: relative;
        padding-left: 25px;
				&::before {
          content: "";
          position: absolute;
          left: 0;
          top: 3px;
          width: 16px;
          height: 16px;
          background-image: url('https://textilapp.b-cdn.net/stores_assets/basic_icons/check.svg');
          background-size: contain;
          background-repeat: no-repeat;
        }
        @media screen and (max-width: 575px){
					flex:100%;
				}
			}
		}
  }
  /* * Showroom photos * */
  .showroom-photos{
		gap:1rem;
		img{
			flex:1;
			border-radius:var(--basic-border-radius);
		}
  }
}