@import url('https://fonts.googleapis.com/css2?family=Onest:wght@600&display=swap');
:root {
    --green: #b8d953;
    --lilac: #b2b2eb;
    --pink: #bb86e9;
    --dark-green: #529a91;
    --peach: #fe96b7;
    --black: #191819;
    --grey: #2a292a;
    --white: #d9d9d9;

  }

/* =============banner============= */
.address-banner#address-banner{
    height: 40px;
    background-color:rgba(0, 0, 0, 0.41);
  }
.ads-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    
   
} 

.banner {
    display: flex;
    width: 1320px;
    height: 320px;
    max-width: 95%;
    max-height: 95vh;
    overflow: hidden;
    border-radius: 12px;
    background: #FAF8F5;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Left (Seller Section) */
.banner .left {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    background: var(--dark-blue);
    padding: 20px;
    position: relative;
}

.banner .left .image-container {
    position: absolute;
    left: 0;
    top: 0;
    width: 30%;
    height: 100%;
}

.banner .left .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .left .text-box {
    max-width: 60%;
    text-align: right;
    color: white;
    z-index: 2;
}

/* Right (Buyer Section) */
.banner .right {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: #EFBA32;
    padding: 20px;
    position: relative;
}

.banner .right .image-container {
    position: absolute;
    right: 0;
    top: 0;
    width: 30%;
    height: 100%;
}

.banner .right .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .right .text-box {
    max-width: 60%;
    text-align: left;
    color: #1A1A2E;
    z-index: 2;
}

/* Text Styling */
.banner h1 {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.banner p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.banner .btn {
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s ease;
    display: inline-block;
}

.banner .btn-sell {
    background: #EFBA32;
    color: #1A1A2E;
}

.banner .btn-sell:hover {
    background: #D9A022;
}

.banner .btn-buy-cust {
    background: #1A1A2E;
    color: #EFBA32;
}

.banner .btn-buy-cust:hover {
    background: #151528;
}


/* =============banner - End============= */

/* =============catalogue pdp ============= */
/* width */
.nav-container .product-list::-webkit-scrollbar {
width: 10px;
height: 6px;
}

/* Track */
.nav-container .product-list::-webkit-scrollbar-track {
box-shadow: inset 0 0 5px grey; 
border-radius: 10px;
}

/* Handle */
.nav-container .product-list::-webkit-scrollbar-thumb {
background: var(--text-color); 
border-radius: 10px;
}

/* Handle on hover */
.nav-container .product-list::-webkit-scrollbar-thumb:hover {
background: black; 
pointer-events: painted;
}
.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap-reverse;
    gap: 3rem;
    text-align: center;
    z-index: 1000;
  }
  .nav-container > a {
      text-decoration: underline;
      color: #333;
      text-transform: uppercase;
      letter-spacing: 5px;
      font-size: var(--Normal-d);
      font-weight: var(--Normal-w-d);
      line-height: var(--Normal-l-d);
  }
  .product-single-item {
    margin: 0 2rem;
    position: relative;
    transform: translateY(-100px);
  }
  .product-container .lg-title{
    color: var(--title-color);
  }
  .product-list {
    display: flex;
    align-items: center;
    gap: 3rem;
    text-align: center;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding:1rem 2rem;
    margin: 1rem 1rem;
  }
  .product-list img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    margin-right: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  .product-list img:hover {
    transform: scale(1.1);
  }
  .product-list li {
    list-style: none;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
  .product-list li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: var(--cap-d);
    font-weight: var(--cap-w-d);
    line-height: var(--cap-d);
  }
  .product-list li a:hover {
    color: #007bff;
  }

/* ------pincode-search-start------ */
.info-container p {
    margin: 0;
}
.info-container.show{
  z-index: 10;
  top: 60px;
  bottom: 0;
  background:rgba(0, 0, 0, 0.29);
}
.info-title {
    padding: 10px;
    text-align: center;
    position: relative;
    z-index: 20;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.info-title p {
    text-decoration: underline;
    font-weight: 600;
}

.info-wrap {
    display: block;
    height: 100%;
    transform: translateY(-100%);
    /**transition: max-height 500ms ease-in-out, transform 500ms ease-in-out;**/
    background: whitesmoke;
    width: 100vw;
    position: relative;
    top: -10PX;
    z-index: 11;
    transform-origin: top;
}

.usp-slider.pt-10.pb-10 {
    display: none;
}

.info-title:after {
    z-index: 10;
    content: "";
    position: absolute;
    bottom: -10px; 
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #ffffff; 
}

.close-box {
    background: white;
    text-align: center;
    color: var(--text-color);
    padding: 10px;
    position: relative;
}
.close-box-shadow{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: transparent;

}
.close-box p.close-btn {
    color: var(--text-color);
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

.info-wrap .close-box:after {
    z-index: 10;
    content: "";
    position: absolute;
    top: -10px; /* Height of the triangle */
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid white; /* Match the red color */
}

.info-content {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
    max-width: 68.75rem;
    margin-left: auto;
    margin-right: auto;
    padding-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: inherit;
}

.info-container {
    position: fixed;
    z-index: 50;
    width: 100vw;
    top: 72px;
}

.info-content .btn-cart{
    cursor: pointer;
    text-decoration: underline; 
    margin-block-start: 10px;
    transform: none;
    width: auto;
    margin: initial;
    color: var(--title-color);
  }


.info-content p.close-btn {
    color: black;
    text-align: right;
    display: block;
    max-width: fit-content;
    position: absolute;
    right: 30px;
}

.info-container.show .info-wrap {
    transform: translateY(-50px);
}

.info-container.show .info-title {
    transform: translateY(-150%);
   
}

.info-title.interaction {
    cursor: pointer;
}
.info-content span{
    font-size: .8rem;
    line-height: 1rem;
}
.search-form-wrapper{
  padding: 2.5rem;
  width: 300px !important;
}
.info-content input[type="search"] {
    --webkit-appearance: none !important;
    background-clip: padding-box;
    background-color: white;
    vertical-align: middle;
    border-radius: 0.25rem;
    border: 1px solid #e0e0e5;
    font-size: 1rem;
    width: 100%;
    line-height: 2;
    padding: 0.375rem 1.25rem;
    -webkit-transition: border-color 0.2s;
    -moz-transition: border-color 0.2s;
    transition: border-color 0.2s;
  }
  
  .info-content input[type="search"]:focus {
    transition: all 0.5s;
    box-shadow: 0 0 40px #f9d442b9;
    border-color: #f9d342;
    outline: none;
  }
  
  .info-content form.search-form {
    display: flex;
    justify-content: center;
  }
  
  .info-content label {
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: auto;
    align-self: center;
    margin-bottom: 0;
    display: inherit;
  }
  
  .info-content input.search-field {
    margin-bottom: 0;
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: auto;
    align-self: center;
    height: 51px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    width: 80%;
  }
  
  .info-content input.search-submit {
    height: 51px;
    margin: 0;
    padding: 1rem 1.3rem;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    font-family: "Font Awesome 5 Free";
    font-size: 1rem;
  }
  
  .screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
  }
  
  .info-content .button {
    display: inline-block;
    font-weight: 600;
    font-size: 0.8rem;
    line-height: 1.15;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    background: #f9d342;
    color: #292826;
    border: 1px solid transparent;
    vertical-align: middle;
    text-shadow: none;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
  }
  
  .info-content .button:hover,
  .info-content .button:active,
  .info-content .button:focus {
    cursor: pointer;
    background: #d4b743;
    color: #292826;
    outline: 0;
  }
/* =============pincode-search-end============= */
/* ==============Filter-sort-start============= */
.filters-sort{
    height: 50px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .filters-bd {
    background: #000000a8;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    height: 100%;
    width: 100%;
    display: none;
    transition: background 1s ease-out;
  }
  .filters-sort button.filter-btn{
    font-size: 14px;
    height: 40px;
    width: auto;
    padding: 10px 12px;
    background: transparent;
    border-radius: 10px;
    font-family: 'Josefin Sans';
    border: 1px solid #000000;
    color: #000000;
    
  }
  .filters-sort  dl.facet-list-main{
    display: none;
    background: var(--alice-blue);
    position: absolute;
    top: 10%;
    left: 0;
    z-index: 1000;
    max-width: 480px;
    height: 80svh;
    min-width: 300px;
    overflow-x: hidden;
    width: 100%;
    border-radius: 0 12px 12px 0;
    transition: opacity 500ms;
    transform: translateX(-100%);
    transition: transform 0.3s ease-out;
  }
  dl.facet-list-main label{
    justify-content: space-between;
  }
  dl.facet-list-main input{
    width: auto;
  }

  .filters-sort button[type="reset"],.filters-sort button[type="submit"] {
    position: sticky;
    right: 0;
    z-index: 1000;
    bottom: 5%;
    margin: 20px;
    padding: 10px;
    width: 90%;
    border-radius: 10px;
    background-color: whitesmoke;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    font-family: var(--body-font);
  }
  .filters-sort .float-right .form-group{
    display: flex;
    align-items: center;
    border: 1px solid #000000;
    border-radius: 10px;
  }
  .filters-sort .float-right label{
    position: absolute;
    padding: 5px;
    font-size: 14px;
    font-family: var(--body-font);
    color: #000000;
    font-weight: 400;
    margin: 0 !important;
  }
  .filters-sort .float-right select{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 40px;
    padding-left: 60px;
    padding-right: 1rem;
    font-size: 14px;
    font-family: var(--body-font);
    color: #000000;
    font-weight: 400;
    border-radius: 8px;
    background: transparent;
    border-color: transparent;
  }
/* ==============Filter-sort-end============= */
/* =============breadcrumb pdp - Start============= */
  
.container.section nav[aria-label="breadcrumb"] ol.breadcrumb  {
    display: flex;
    list-style: none;
    gap: 5px;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    padding: 1rem 2rem;
    margin: 1rem 1rem;
  }
 
 
  .container.section nav[aria-label="breadcrumb"] ol.breadcrumb  li.breadcrumb-item::after{
    content: "/";
    margin-left: 5px;
  } 
  .container.section nav[aria-label="breadcrumb"] ol.breadcrumb  li.breadcrumb-item a{
    color: black;
    font-size: 14px;
    font-family: var(--body-font);
  } 
  
  .container.section nav[aria-label="breadcrumb"] ol.breadcrumb  li.breadcrumb-item:last-child{
    display: block;
    width: 100%;
    letter-spacing: .48px;
    font-family: var(--body-font);
    font-size: 24px;
    font-weight: 300;
    line-height: 1.15;
  }
  .container.section nav[aria-label="breadcrumb"] ol.breadcrumb  li.breadcrumb-item:last-child::after{
    content: "";
  }
/* =============breadcrumb pdp - End============= */
/* =============catalogue pdp - End============= */

/* =============Product list page start =============== */
#half-product-description blockquote{
  margin: 0;
  padding: 0;
}
.product-single-info-top p{
  margin: 0;
}
.off-info .btn-cart,.off-info .btn-buy{
  color: black;
  font-weight: 400;
}

/* --------------------reivew-------------- */
.product-single-info-top .fa-star-and-crescent::before {
  content: "\f699";
}
.product-single-info-top .fa-star::before {
content: "\f005";
}  
.product-single-info-top .fa-star-half-stroke::before {
  content: "\f5c0";
}

.product-single-info-top .fa-star-half-alt::before {
  content: "\f5c0";
}
.product-single-info-top .fa-star-of-david::before {
  content: "\f69a";
}
.product-single-info-top .fa-star-of-life::before {
  content: "\f621";
}
.product-single-info-top .fa-star-half::before {
  content: "\f089";
}
.product-single-info-top .star-rating {
  color: #ced4da;
}
.product-single-info-top .star-rating i {
  letter-spacing: -1px;
  width: auto;
}
.product-single-info-top .star-rating a {
  margin-left: 10px;
}

.product-single-info-top .star-rating.One i:first-child {
  color: #ffc107;
}

.product-single-info-top .star-rating.Two i:first-child,.product-single-info-top  .star-rating.Two i:first-child + i {
  color: #ffc107;
}

.product-single-info-top .star-rating.Three i:first-child,.product-single-info-top .star-rating.Three i:first-child + i,.product-single-info-top .star-rating.Three i:first-child + i + i {
  color: #ffc107;
}

.product-single-info-top .star-rating.Four i:first-child,.product-single-info-top .star-rating.Four i:first-child + i,.product-single-info-top .star-rating.Four i:first-child + i + i,.product-single-info-top .star-rating.Four i:first-child + i + i + i {
  color: #ffc107;
}

.product-single-info-top .star-rating.Five i {
  color: #ffc107;
}        

/* product sold out css */
 .sold-icon {
              width: 25px;               /* width of the icon */
              height: 25px;              /* height of the icon */
              background-image: url('/static/img/icons/sold-out-badges-set.webp'); /* path to the sprite image */
              background-size: 220px auto; /* scale if needed */
              background-position: -188px -18px; /* crop position */
              background-repeat: no-repeat;
          }
          .sold-out{
            display: inline-flex;
            flex-direction: row;
            align-items: center;  
            gap: 2px;
            justify-content: center;
            color: var(--second-color);

          }
          .sold-out p{
            padding-block-start: 4px;
            margin: 0;
          }
          @media (max-width: 480px) {
            .sold-out p {
                font-size: var(--cap-m);
                font-weight: var(--cap-w-m);
                line-height: var(--cap-m);
            }
          } 
          @media (max-width: 768px) {
            .sold-icon {
              width: 20px;               /* width of the icon */
              height: 18px;              /* height of the icon */
              background-size: 200px auto; /* scale if needed */
              background-position: -173px -18px; /* crop position */
          }
            .sold-out p {
                font-size: var(--cap-t);
                font-weight: var(--cap-w-t);
                line-height: var(--cap-t);
            }
          }

/* =============Product list page end =============== */


/* =============Review page start =============== */
.fa-star-and-crescent::before {
  content: "\f699";
}
.fa-star::before {
content: "\f005";
}  
.fa-star-half-stroke::before {
  content: "\f5c0";
}

.fa-star-half-alt::before {
  content: "\f5c0";
}
.fa-star-of-david::before {
  content: "\f69a";
}
.fa-star-of-life::before {
  content: "\f621";
}
.fa-star-half::before {
  content: "\f089";
}
.star-rating {
  color: #ced4da;
}
.star-rating i {
  letter-spacing: -1px;
  width: auto;
}
.star-rating a {
  margin-left: 10px;
}

.star-rating.One i:first-child {
  color: #ffc107;
}

.star-rating.Two i:first-child, .star-rating.Two i:first-child + i {
  color: #ffc107;
}

.star-rating.Three i:first-child, .star-rating.Three i:first-child + i, .star-rating.Three i:first-child + i + i {
  color: #ffc107;
}

.star-rating.Four i:first-child, .star-rating.Four i:first-child + i, .star-rating.Four i:first-child + i + i, .star-rating.Four i:first-child + i + i + i {
  color: #ffc107;
}

.star-rating.Five i {
  color: #ffc107;
}
.Ybtn, .btn{
  display: flex;
  flex-direction: row;
}
.review header a{
  color: initial;
  text-decoration: underline;
  font-size: 1rem;
  text-transform: capitalize;
  font-weight: 400;
  letter-spacing: 0.16px;
  position: relative;
  color: #12263a;
  margin: 1rem 0;
  font-family: var(--body-font);

}
.review p{
  padding-bottom: 0;
  margin-bottom: 0.3rem;
}
/* reiview form */
.review_add {
        margin-left: 10%;
        margin-right: 10%;

    }

    .review_add label {
        /* Styling for labels */
        font-size: 1rem; /* Adjust font size if needed */
        font-weight: bold; /* Bold like in the image */
        margin-top: 15px; /* Space above label */
        margin-bottom: 5px; /* Space between label and input */
        display: block; /* Ensure label is on its own line */
    }

    .review_add textarea,
    .review_add input[type=text],
    .review_add input[type=email] {
        /* Styling for input fields */
        width: 100%; /* Full width */
        padding: 10px; /* Padding inside input */
        border: 1px solid #ccc; /* Lighter border */
        border-radius: 4px; /* Slight border radius */
        box-sizing: border-box; /* Include padding and border in width */
        margin-top: 0;
        margin-bottom: 15px; /* Space below input */
        box-shadow: none; /* Remove default shadow if any */
    }

    .review_add textarea {
        height: 100px; /* Set a height for the textarea */
        resize: vertical; /* Allow vertical resizing */
    }

    .review_add .reviewrating .star-rating {
        /* Styling for star rating container */
        color: #ff9800; /* Orange color */
        font-size: 24px; /* Larger stars */
        margin-top: 10px;
        margin-bottom: 15px;
    }

    .review_add .reviewrating label {
        /* Specific label style for rating */
        margin-top: 0; /* Reduce top margin for rating label */
    }

    /* Adjust existing input styles to be more specific if necessary */
   .review_add input[type=text] {
        /* Reset or adjust general input[type=text] if it interferes */
        width: 100%; /* Ensure this is applied */
        box-sizing: border-box;
    }
   .review_add input[type=email] {
        /* Reset or adjust general input[type=email] if it interferes */
        width: 100%; /* Ensure this is applied */
        box-sizing: border-box;
    }
   .review_add textarea {
         /* Reset or adjust general textarea if it interferes */
        width: 100%; /* Ensure this is applied */
        box-sizing: border-sizing;
    }

    /* Apply styles directly to the review form container by its ID */
    #addreview {
        /* Base styling for the outer container if needed, maybe just padding */
        border-radius: 8px; /* Add rounded corners */
        box-sizing: border-box; /* Include padding and border in container width */
        display: block;
    }

    /* Ensure form groups and their immediate child divs take full width within the container */
    #addreview .form-group,
    #addreview .form-group > div {
        width: 100%; /* Make these elements take the full width of their parent */
        box-sizing: border-box; /* Include padding and border in width */
    }

    /* Apply styles directly to the input elements within form groups */
    #addreview .review-form-inner-container input[type=text],
    #addreview .review-form-inner-container input[type=email],
    #addreview .review-form-inner-container textarea {
        width: 100%; /* Make inputs full width of their container */
        padding: 10px; /* Padding inside inputs */
        border: 1px solid #ccc; /* Input border */
        border-radius: 4px; /* Input border radius */
        box-sizing: border-box; /* Include padding and border in width */
        margin-bottom: 30px; /* Remove default bottom margin */
        box-shadow: 0px 4px 10px rgb(233, 231, 231);
        display: block; /* Ensure inputs take up their own line */
        font-size: 18px;
    }

    /* Style labels */
    #addreview .review-form-inner-container label {
        font-weight: bold; /* Bold labels */
        display: block; /* Labels on their own line */
        margin-bottom: 10px; /* Space below label */
        font-size: 1rem; /* Label font size */
    }

    /* Style for the star icons */
    #addreview .reviewrating .star-rating i {
        font-size: 35px; /* Star size */
        color: #ff9800; /* Default grey color for empty stars */
        cursor: pointer;
    }

    /* Style for filled stars */
    #addreview .reviewrating .star-rating i.fas {
        color: #ff9800; /* Orange color for filled stars */
    }

    /* Ensure the star rating container and its controls take full width */
    #addreview .reviewrating .star-rating,
    #addreview .reviewrating .controls {
        width: 100%;
        box-sizing: border-box;
        display: block;
        margin-top: 0px;
        margin-bottom: 30px;
    }

    /* Optional: Style the legend if needed, although the inline style is present */
    #addreview legend {
        /* Match inline styles or adjust */
        font-size: 1.5rem;
        font-weight: 700;
        margin-top: 20px; /* Adjusted top margin */
        margin-bottom: 20px;
    }

    /* Style for stars on hover */
    #addreview .reviewrating .star-rating i.hover-active {
        color: #ff9800; /* Darker orange color for hover */
    }
/* =============Review page end =============== */

/* ============= Product Details page start =============== */
.img-item #thumbnails{
  flex-wrap: nowrap;
  overflow-x: scroll;
}
#thumbnails video, #thumbnails img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}
/* ============= Product Details page end =============== */
/* Responsive Design */


@media (max-width: 1024px) {
    /* Responsive banner */
    .banner {
        flex-direction: column;
        height: auto;
    }

    .banner .left,.banner .right {
        width: 100%;
        text-align: center;
        align-items: center;
        padding: 30px;
    }

    .banner .left .text-box {
        max-width: 80%;
        text-align: right;
        margin-left: 30%;
    }

    .banner .right .text-box {
        max-width: 80%;
        text-align: left;
        margin-right: 30%;
    }

    .banner .image-container {
        width: 100%;
        height: 150px;
        position: relative;
    }
}

@media (max-width: 768px) {
    /* Responsive banner */
    .banner h1 {
        font-size: 1.4rem;
    }

    .banner p {
        font-size: 0.9rem;
    }

    .banner .btn {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    .banner .text-box {
        max-width: 90%;
        text-align: center;
    }
    /* Responsive catalogue pdp */
    .product-list li a {
        font-size: var(--cap-t);
        font-weight: var(--cap-w-t);
        line-height: var(--cap-t);
      }
      /* Responsive pincodesearch */
      .info-container {
        top: 48px;
    }
}

@media (max-width: 480px) {
  .info-content{
    padding-top: 2.25rem;
  }
    /* Responsive banner */
    .banner .text-box {
        max-width: 95%;
        padding: 10px;
    }

    .banner h1 {
        font-size: 1.2rem;
    }

    .banner p {
        font-size: 0.85rem;
    }

    .banner .btn {
        font-size: 0.85rem;
        padding: 6px 12px;
    }

    .banner .image-container {
        height: 120px;
    }
    /* Responsive catalogue pdp */
    .product-list li a {
        font-size: var(--cap-m);
        font-weight: var(--cap-w-m);
        line-height: var(--cap-m);
      }
    .container.section nav[aria-label="breadcrumb"] ol.breadcrumb  {
    justify-content: left;
    padding: 0;
    margin: 0rem 1rem;
    }
}

/* Responsive banner end */