/** Shopify CDN: Minification failed

Line 37:3 Unexpected "/"

**/
/*---- Custom CSS ----*/

@media only screen and (max-width: 768px) {#shopify-section-template--16332249333830__collection_grid_PjM86T div#grid-controller {
    grid-template-columns: auto !important;
}
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  #shopify-section-template--16332249333830__collection_grid_PjM86T div#grid-controller {
    grid-template-columns: repeat(16, 1fr) !important;
}
}
/* .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.box {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 300px; /* Set the height for each box */


.box img {
    width: 100%;
    height: 300px!important;
    object-fit: cover; /* Ensure the image covers the entire box */
    object-position: center center; /* Center the image */
    display: block;
} */

/* Unique overlay classes */
.overlay-tiles,
.overlay-vanities,
.overlay-counters,
.overlay-sinks,
.overlay-wallpaper,
.overlay-pulls-knobs,
.overlay-cabinets,
.overlay-lighting {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay to ensure text visibility */
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 20px!important;
    transition: background-color 0.3s ease;
}

.box a {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Hover effect for unique overlays */
.box-tiles:hover .overlay-tiles,
.box-vanities:hover .overlay-vanities,
.box-counters:hover .overlay-counters,
.box-sinks:hover .overlay-sinks,
.box-wallpaper:hover .overlay-wallpaper,
.box-pulls-knobs:hover .overlay-pulls-knobs,
.box-cabinets:hover .overlay-cabinets,
.box-lighting:hover .overlay-lighting {
    background-color: rgba(0, 0, 0, 0.8); /* Darken the overlay on hover */
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on large screens */
    }
}

@media (max-width: 900px) {
    .container {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
    }

    .box {
        height: 200px; /* Adjust box height on medium screens */
    }
}

@media (max-width: 600px) {
    .container {
        grid-template-columns: 1fr; /* 1 column on small screens */
    }

    .box {
        height: 180px; /* Adjust box height on small screens */
    }
}

div#logo {
    padding: 6px 0px !important;
}
.announcement--carousel_container.sections--16308601061446__07fcc5c4-8b08-4ae8-a1ff-fd6154989b67.grid__wrapper.pl0.pr0.animate.fadeInUp.delay--2 {
    padding: 5px 0px !important;
}



/* Custom Tile Collection template styling */
/* General Styles */
.shape-size {
    text-align: center !important;
    padding-top: 40px;
}

/* Section Styling */
.section-custom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px; /* Adjusted for smaller screens */
    background-color: #ffffff;
}

/* Left Panel */
.left-panel {
    flex: 1;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: start !important;
    align-items: flex-start;
}

.left-panel p {
    text-align: left;
}

/* Button Styling */
.left-panel .buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.left-panel .buttons a {
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid #333;
    color: #333;
    font-size: 14px;
    transition: background-color 0.3s, color 0.3s;
}

.left-panel .buttons a:hover {
    background-color: #333;
    color: #fff;
}

/* Right Panel */
.right-panel {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
}

/* Product Features Styling */
.product-features {
    display: flex;
    flex-wrap: wrap;
  justify-content: start;
    border: 1px solid #e0e0e0;
    padding: 20px;
    background-color: #ffffff;
    margin: 20px 0;
    border-radius: 5px;
}

.product-info {
    flex: 1;
    padding-right: 10px;
}

.product-info p {
    margin: 10px 0;
    font-size: 16px;
    color: #333;
}

.product-info span {
    display: block;
    font-weight: bold;
    font-size: 18px;
}

.product-sizes {
    flex: 1;
    padding-left: 10px;
    border-left: 1px solid #e0e0e0;
}

.product-sizes h3 {
    font-size: 18px !important;
    text-align: left !important;
    margin-bottom: 10px !important;
}

.size-item {
    margin-bottom: 15px;
    text-align: center;
}

.size-item .size-image {
    display: block;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background-color: #B6B6B6;
    border-radius: 0px;
}

.size-item span {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    color: #333;
}

/* Collection Uses Table */
.collection-uses {
    padding-top: 20px !important;
}

.uses-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px !important;
}

.uses-table th,
.uses-table td {
    border: 1px solid #e0e0e0;
    padding: 8px 4px;
    text-align: center;
    vertical-align: middle;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .section-custom {
        flex-direction: column;
        padding: 10px;
    }

    .left-panel, .right-panel {
        flex: 1 1 100%;
        padding: 0;
    }

    .right-panel {
        margin-top: 20px;
    }

    .product-features {
        flex-direction: column;
        padding: 15px;
    }

    .product-info, .product-sizes {
        flex: 1 1 100%;
        padding: 10px 0;
        border-left: none;
    }

    .size-item .size-image {
        width: 60px;
        height: 60px;
    }

    .left-panel .buttons {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .uses-table th, .uses-table td {
        font-size: 12px;
        padding: 6px 2px;
    }
}
/* Default iframe styling for larger screens (desktop) */
.responsive-iframe {
    width: 610px;
    height: 343px;
    border: none;
}

/* For tablets (768px and up) */
@media (max-width: 1024px) {
    .responsive-iframe {
        width: 80%;
        height: auto;
        aspect-ratio: 16/9; /* Maintain a 16:9 aspect ratio */
    }
}

/* For mobile devices (767px and below) */
@media (max-width: 767px) {
    .responsive-iframe {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9; /* Maintain a 16:9 aspect ratio */
    }
}



.hexagon {
    width: 100px;
    height: 55px;
    background-color: #bfbfbf;
    position: relative;
    margin-bottom: 20px;
}

.hexagon::before,
.hexagon::after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
}

.hexagon::before {
    bottom: 100%;
    border-bottom: 27.5px solid #bfbfbf;
}

.hexagon::after {
    top: 100%;
    width: 0;
    border-top: 27.5px solid #bfbfbf;
}

.dimensions p {
    text-align: center;
    margin: 0;
}

.dimensions p:first-of-type {
    font-size: 18px;
    font-weight: bold;
}

.dimensions p:last-of-type {
    font-size: 14px;
    color: #555;
}

/* Header Z-index */
#shopify-section-sections--16308601061446__header
div#header-wrapper {
    z-index: 500 !important;
}


/* Tiles Product Template */
/* Hide scrollbar for Chrome, Safari and Opera */
section#product-7765505441862 {
    padding-top: 100px;
}
#shopify-section-template--16344222728262__main .product-blocks.animate.fadeInUp.delay--2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#shopify-section-template--16344222728262__main div#product-photos{
  height:650px!important;}
#shopify-section-template--16344222728262__main div#thumbnails{
    overflow-y:scroll!important;
  overflow-x:none;
   scroll-behavior: smooth; scrollbar-width: none; 
  }
#shopify-section-template--16344222728262__main .product--content__right.js-product-bottom.span-5.md-span-12.sm-span-12.auto{
    display:flex!important;
  }
.flickity-viewport img.product__image {
    height: 650px!important;
  object-fit: contain;
}

.promotional__section-block.b-hero_jRa7gE .promotional__hero-container .background-image {
transition: all 0.4s ease-in-out;
filter: brightness(0.3);}
.promotional__section-block.b-hero_jRa7gE .promotional__hero-container .background-image:hover {
    filter: brightness(0.4);
}
.promotional__section-block.b-hero_jRa7gE .hero__caption {
    background: #ffffff00 !important;
}
.promotional__section-block.b-hero_jRa7gE .hero__caption h3, .promotional__section-block.b-hero_jRa7gE .hero__caption p {
    color: white !important;
}
.promotional__section-block.b-hero_jRa7gE .hero__caption h3 {
    font-size: 70px !important;
}

#shopify-section-template--16344222728262__main span.price-item.price-item--regular::before {
    content: "Price per piece";
}


/* Calculator Form Styles */
.input-groups {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}
  .calculator h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .input-group {
    margin-bottom: 15px;
  }
  
  .input-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  .input-counter {
    display: flex;
    align-items: space-between;
  }
  
  .input-counter button {
    width: 30px;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
  }
  
  
  .input-counter input {
    width: 40px;
    
    text-align: center;
 
    margin: 0 5px;
  }
  
  .results {
    margin-bottom: 20px;
  }
  
  .results p {
    margin: 5px 0;
    font-size: 14px;
  }
  
  .results span {
    font-weight: bold;
  }
  
  .add-to-cart {
    display: block;
    width: 100%;
    padding: 10px;
    
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
  }
  
   
  .info {
     background-color: black;
    border-radius: 50px;
    font-size: 14px;
    cursor: help;
  }
  
  .collection__banner-image img {
    width: 100%;
    object-fit: cover;
    height: 400px;
    filter: brightness(0.4);
}
.template-product-tiles .grid__wrapper.edge {
    padding-top: 50px!important;

}
/* product page calcultator */
.calculator input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.total-sqft-entered{
    display: none!important;
}

.template-product-tiles .product-blocks__block.product-blocks__block--quantity{
    display: none !important;
}  

.product-tiles.template-product-tiles .bottom-total-boxes-container,
.product-tiles.template-product-tiles .bottom-total-price-container{
  display:none;
}

.product-add {
    line-height: 38px;
    min-height: 38px;
    display: none;
}



/* hinding accordian from defalut tamplet product page */
.lighting-product .acord {
  display: none !important;
}