.preview-wrapper {
    /* width: 600px; */
    margin-bottom: 15px;
    position: relative;
}

.wall {
    width: 600px;
    height: 550px;
    background-size: cover;
    background-position: center 640px ;
    position: relative;
}

.tile-layer {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}


.color {
    width: 28px;
    height: 28px;
    display: inline-block;
    margin: 4px;
    border: 1px solid #000;
    cursor: pointer;
}






/* ================================
   MAIN GRID
================================ */
.configurator-grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:30px;
    align-items:start;
}

/* ================================
   LEFT SIDE
================================ */
.config-left .preview-wrapper{
    width:100%;
}

.wall{
    width:100%;
    background-size:cover;
    background-position:center 640px;
    position:relative;
    border-radius:10px;
    overflow:hidden;
}

.tile-layer{
    position:absolute;
    inset:0;
}

/* ================================
   RIGHT SIDE
================================ */
.config-right{
    /* background:#fff;
    padding:20px;
    border-radius:10px;
    box-shadow:0 0 10px rgba(0,0,0,0.08); */
}

/* tabs */
.tabs{
    margin-bottom:15px;
	display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
	gap: 5px;
}

.tab{
    /* display:inline-block;
    padding:6px 12px;
    margin:4px;
    background:#eee;
    cursor:pointer;
    font-size:14px;
	*/
    padding: 6px 12px;
    background: #eee;
    cursor: pointer;
    font-size: 14px;
    width: 100%;
	text-align: center;
}

.tab.active{
    background:#000;
    color:#fff;
}

/* palette */
.palette{
    display:flex;
    flex-wrap:wrap;
    gap:2px;
	border: 3px solid #e1e1e1;
}

.color{
    width:18px;
    height:18px;
    /* border-radius:100%; */
    cursor:pointer;
    border:2px solid #ddd;
}

/* ================================
   MOBILE RESPONSIVE
================================ */
@media(max-width:768px){
    .configurator-grid{
        grid-template-columns:1fr;
    }
}









.tile-area-calculator {
    max-width: 700px;
    font-family: Arial, sans-serif;
}

.calculator-row {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.calculator-col {
    flex: 1;
}

.calculator-col label,
.price-section label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.qty-box {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    width: 180px;
}

.qty-box button {
    width: 40px;
    height: 40px;
    border: none;
    background: #f3f3f3;
    font-size: 18px;
    cursor: pointer;
}

.qty-box button:hover {
    background: #e5e5e5;
}

.qty-input {
    width: 100%;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
}

.qty-input:focus {
    outline: none;
}

.price-section {
    margin-top: 10px;
}

.price-input {
    width: 200px;
    height: 40px;
    border: 1px solid #ccc;
    padding: 5px 10px;
    font-size: 16px;
}




button.button.alt.tile-custom-add-to-cart {
    width: 100%;
    background: #4f4f4c;
    font-size: 18px;
}


.acf-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    align-items: center;
}

.logo-item img {
    width: 100%;
    height: auto;
    transition: 0.3s ease;
}

.logo-item img:hover {
    transform: scale(1.05);
}