@charset "UTF-8";
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
/*Carousel*/
    .carousel-container { width: 98%;overflow: hidden;margin-top: 10px; position: relative;}
        .carousel {display: flex; transition: transform 1s ease-in-out;width: 100%; }
        .carousel a { width: 100%; flex-shrink: 0; }
       .carousel img { width: 100%; }
        .controls {
    position: absolute;
   bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            opacity: 0;
            transition: opacity 0.3s ease-in-out;
            pointer-events: none;
}
/* by default show desktop, hide mobile */
.mobile-carousel  { display: none; }
.desktop-carousel { display: flex; }

.carousel-container:hover .controls {
    opacity: 1;
    pointer-events: auto; /* Enables interaction when visible */
}

.control-btn {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px 15px;
}

/* -----------------------*/
.boxes{display: flex;  justify-content: space-between; /* Even spacing */align-items: center; /* Align images vertically */ gap: 10px; /* Adds spacing between the boxes */  flex-wrap: wrap; /* Ensures responsiveness */margin-bottom:10px;margin-top: 10px;text-decoration: none;}
.inbox-left, .inbox-middle, .inbox-right {flex: 1; /* Makes them equal width */max-width: 450px;padding:0 5px; text-align: center; /* Centers content */ text-decoration: none;}
.boxes a,
.boxes a:visited,
.boxes a:hover,
.boxes a:active {
    text-decoration: none;
}

 .image-container {  width: 100%;display: flex;flex-direction: column; align-items: center; /* Centers the image */}
  /* Text bar styling */
        .text-bar {width:100%; bottom: 0;left: 0;right: 0;background:#2872bd;  /* Default black background */ color: white; text-align: center; padding: 10px;font-size: 18px;transition: background 0.3s ease;display: block; /* Ensures it matches image width */ box-sizing: border-box; /* Prevents extra spacing */    text-decoration: none;    }
/* Hover effect */
        .text-bar:hover { background: #1f5a97; /* Turns blue on hover */        }
/* end boxes */

.feefo-container {
    display: flex; /* Enables inline (side-by-side) display */
    align-items: stretch; /* Ensures both elements match the tallest one */
    width: 100%; /* Full width of the container */
    margin-bottom: 10px;
}

.feefo-my-image {
    max-width: 20%; /* Limits the image container to 20% of the total width */
    display: flex;
    align-items: center; /* Centers the image inside */
    justify-content: center;
    border-radius: 0;
}

.feefo-my-image img {
    max-height: 250px; /* Ensures the image does not exceed 250px */
    width: auto; /* Maintains aspect ratio */
display: block;
    border-radius: 0;
}

.feefo-review-carousel-widget-service-my {
    flex: 1; /* Takes up the remaining width */
    display: block;
      width:100%;
       color: #fff;
   }
/* In case Feefo injects inner elements with radius */
  .feefo-review-carousel-widget-service-my * {
    border-radius: 0 !important;
  }
 .gridContainer.feefo-container {
   display: flex;
    align-items: center; /* Vertically center content */
    background-color: #003366;
    padding: 20px;
    color: #fff;
    flex-wrap: wrap; /* Wrap for mobile */
    gap: 20px; /* Spacing between image and widget */
     border-radius: 0;
  }

  .gridContainer.feefo-container a.feefo-badge__link img {
    display: block;
    margin-bottom: 10px;
    max-width: 100%;
  }
 .gridContainer .carpark_mobil{display:none !important;}

/* Display products */
.in-title{display: block;background-color:#003366; color: white;padding:10px; text-align: center; font-size: 25px;margin-top: 5px;margin-bottom: 10px}
.products-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Maximum 3 columns */
    gap: 15px;
    max-width: 1500px; /* Adjust based on your design */
    margin-bottom: 10px;
    margin-left: 1%;
    margin-right: 1%;
}


.grid-item {
    display: flex;
    flex-direction: column;
        border: 1px solid #ddd;
  text-align: center; /* Ensures all text is centered */
  }

.field_2{font-size: 20px; font-weight: bold;padding: 10px; align-items: center; /* Centers content */
    justify-content: center; text-align: center; height:60px;}
.table_banner {
    background-color: #2872bd; /* Adjust as needed */
    padding: 10px;
      display: flex;
    flex-direction: column;
    align-items: center; /* Centers content */
    justify-content: center;
    text-align: center;color:white;
    height:45px;
}
/* Product Image Container */
.product-image-container {
    position: relative; /* Allows absolute positioning inside */
    display: inline-block;
}

/* Product Image */
.product-image {
    display: block;
   }
  #promotions {
    display: block !important;
  }

/* Bundle Icon Overlay */
.bundle-icon {
    position: absolute;
    width: 20%; /* 1/6 of the product image */
    left: 80%; /* Aligns to the left */
    top: 30%; /* Center vertically */
    transform: translateY(-100%); /* Ensures true center alignment */
}
.price_field{font-size:25px;font-weight:bold;padding-bottom:10px}

/* ─── DEFAULT (desktop) ─── */
.carpark_desktop { display: block; }
.carpark_mobil  { display: none; }

     #latest-pianos {
    display: block;
  }
      #latest-keyboards {
    display: block;
  }
      #promotions {
    display: block;
  }
/* 2. Stack image + text and push text to bottom */
  .boxes .inbox-left,
  .boxes .inbox-middle,
  .boxes .inbox-right {
    display: flex;
    flex-direction: column;
      margin-bottom: 10px;
  }

  /* 3. Fix the "image slot" at 150px tall */
  .boxes .image-container {
    flex: 0 0 150px;       /* never grow or shrink, always 150px high */
    display: flex;         /* for centering the img inside */
    align-items: center;
    justify-content: center;
  }
  .boxes .image-container img {
    max-height: 100%;      /* fill that 150px slot */
    width: auto;
    object-fit: contain;
  }

  /* 4. Push the label down to the bottom of each box */
  .boxes .text-bar {
    box-sizing: border-box;      /* include padding in height */
    height: 32px;                /* exact height for all */
    line-height: 32px;           /* center text vertically */
    padding: 0 8px;              /* horizontal padding only */
    white-space: nowrap;         /* prevent wrapping */
    overflow: hidden;            /* hide overflow */
    text-overflow: ellipsis;     /* show "…" if it's too long */
    font-size: 16px;             /* as before */
    }

  /* 3. Products: 2 columns */
    .products-container {
        grid-template-columns: repeat(3, 1fr);
    }
    /* Category image */
.field_2{font-size: 15px; font-weight: 400;
    padding: 10px; align-items: center; /* Centers content */}
    .price_field{font-size:16px;font-weight:bold;padding-bottom:10px}
    /* Hide every grid-item from the 3rd onward */
  .products-container .grid-item:nth-child(n+4) {
    display: none;
  }   
    

/* ===== TABLET (481px–699px) ===== */
@media only screen and (min-width: 481px) and (max-width: 769px) {
.mobile-carousel  { display: none; }
.desktop-carousel { display: flex; }
    
  .feefo-my-image,
  .feefo-my-image a,
  .feefo-my-image img {
    display: none !important;
    max-height: 0 !important;
    overflow: hidden !important;
  }
     .gridContainer.feefo-container {
   display: flex;
    align-items: center; /* Vertically center content */
    background-color: #003366;
    padding: 0px;
    color: #fff;
    flex-wrap: wrap; /* Wrap for mobile */
    gap: 0px; /* Spacing between image and widget */
     border-radius: 0;
  }
 .gridContainer .carpark_mobil{display:none !important;}
 
    /* Category image */
.field_2{font-size: 18px; font-weight: 300;padding: 10px; align-items: center; /* Centers content */
    }
    .price_field{font-size:20px;font-weight:bold;padding-bottom:10px}
    /* Hide every grid-item from the 3rd onward */
  .products-container .grid-item:nth-child(n+4) {
    display: none;
  }   
    /* ─── DEFAULT (desktop) ─── */
.carpark_desktop { display: block; }
.carpark_mobil  { display: none; }
}



/* ===== MOBILE (320px–480px) ===== */
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .desktop-carousel { display: none !important; }
  .mobile-carousel  { display: flex  !important; }
 /* 1. Make each flex‐item stretch to the same height */
  .boxes {
    align-items: stretch;
  }
  .feefo-my-image,
  .feefo-my-image a,
  .feefo-my-image img {
    display: none !important;
    max-height: 0 !important;
    overflow: hidden !important;
  }
 .gridContainer.feefo-container {
    display: none !important;
  }
/* hide desktop image */
  .carpark_desktop { display: none !important; }
  /* show mobile image */
  .carpark_mobil  { display: block !important; }
    
    .boxes.mobile-reorder {
        margin-bottom: 10px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-template-areas:
      "a b"  /* first row: left / middle */
      "c d"  /* second row: right / left  */
      "e f"; /* third row: middle / right */
    gap: 10px;
        
  }
  .boxes.mobile-reorder > div:nth-child(1) { grid-area: a; }
  .boxes.mobile-reorder > div:nth-child(2) { grid-area: b; }
  .boxes.mobile-reorder > div:nth-child(3) { grid-area: c; }
  .boxes.mobile-reorder > div:nth-child(4) { grid-area: d; }
  .boxes.mobile-reorder > div:nth-child(5) { grid-area: e; }
  .boxes.mobile-reorder > div:nth-child(6) { grid-area: f; }
     #latest-pianos {
    display: none !important;
  }
      #latest-keyboards {
    display: none !important;
  }
      #promotions {
    display: none !important;
  }


}
  
}



