@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,700;1,800&display=swap');

:root {
    --primary-color: #3cb6a0; /* or your custom color */
  }

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a:hover {
    color: #000;
}

.styled-heading {
    color: var(--primary-color);
    font-weight: bold;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
    font-size: 2.5em;
    transition: text-shadow 0.3s ease;
  }
  
  .styled-heading:hover {
    text-shadow: 3px 2px 3px rgba(0, 0, 0, 0.9);
  }

.container-fluid {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: #000; */
}

.container{
    height: 100%;
    align-items: center;
    justify-content: center;
}
.disclaimer{
    /* padding: 50px; */
    margin: 0 auto;
    font-style: italic;
    font-weight: 500;
    font-size: 18px;
}
.cart {
    background: rgb(240, 240, 240);
    padding: 50px;
    border-radius: 20px;
    /* margin: 0 50px; */
    margin: 0 auto;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 4px 12px;
    /* box-sizing: border-box;
    display: flex;
    flex-flow: wrap;
    width: 100%;
    padding: 16px;
    border-radius: 20px;
    background-color: rgb(240, 240, 240);
    box-shadow: rgba(0, 0, 0, 0.5) 0px 4px 12px;
    -webkit-box-pack: center;
    justify-content: center;
    justify-items: center; */
}
@media (min-width: 1200px) {
    .cart {
        flex-basis: 66.6667%;
        -webkit-box-flex: 0;
        flex-grow: 0;
        /* max-width: 77%; */
    }
.disclaimer{
    flex-basis: 66.6667%;
    -webkit-box-flex: 0;
    flex-grow: 0;
    max-width: 77%;
}}
.row1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* #ProductImg {
    margin-bottom: 25px;
    transition: 0.4s;
} */
#ProductImg {
    width: 100%;
    height: 18em;
    object-fit: contain;
    border-radius: 5px;
    background-color: transparent;
    margin-bottom: 25px;
    transition: transform .3s ease-in-out;
}

.colors {
    display: flex;
    background: rgb(55, 55, 55);
    padding: 5px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
}
.reviews {
    display: flex;
    margin: 16px 0;
}
.product-title {
    /* font-size: 25px; */
    font-size: 1.1rem; /* smaller font size */
    margin-bottom: 15px;
    color: #000;
}
.product-title b {
    color: var(--primary-color); /* Or any color you want */
  }
.product-inf {
    margin-top: 20px;
}
.product-inf ul {
    display: flex;
    list-style: none;
}
.product-inf ul li:first-child {
    margin-right: 15px;
}
.product-inf ul li {
    padding: 10px 30px;
    border-radius: 10px;
    transition: 0.3s;
    cursor: pointer;
}
.product-inf ul li:hover {
    border-radius: 5px;
    background: #eee;
}
.product-inf ul li a {
    color: #000;
    font-size: 18px;
    font-weight: 500;
}
.product-inf ul li a:hover {
    text-decoration: none;
}
.product-inf ul li.active {
    border-bottom: 3px solid #000;
    background: #eee;
    transition: 0.3s;
}
#Details {
    display: none;
}

.custom-btn {
    background: #000;
    color: #fff;
    display: block;
    width: 180px;
    text-align: center;
    font-size: 16px;
    border-radius: 25px;
    padding: 10px;
    transition: 0.3s;
    font-weight: 500;
    margin-top: 20px;
}
.custom-btn:hover {
    text-decoration: none;
    color: #fff;
    opacity: 0.88;
}

.buttons .row .col-md-6 {
    align-items: center;
    justify-content: center;
}
.small-imgs {
    display: flex;
    gap: 10px;
}
.small-img {
    width: 80px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid #ddd;
  border-radius: 5px;
  transition: border 0.3s;
}

.custom-btn i {
    margin-right: 15px;
}

.size,
.quantity {
    cursor: pointer;
}
.size:focus,
.quantity:focus {
    border-color: #919191 !important;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0, 0, 0, 0.25) !important;
}

@media only screen and (max-width: 768px){
    /* .product-title {
        margin-top: 65px;
    } */
    .styled-heading {
        margin-bottom: 50px;
    }
    .buttons{
        margin-bottom: 50px;
    }
    .sze {
        margin-top: 28px;
    }
    .qty {
        margin-top: 28px;
    }
    .cart {
        padding: 25px;
    }
    * {
        text-align: center;
    }
    .reviews {
        display: flex;
        margin: 16px 0;
        text-align: center !important;
        align-items: center;
        justify-content: center;
    }
}
@media only screen and (max-width: 390px){
    .cart {
        padding: 15px;
    }
}

.custom-bullet {
    list-style: none;
    padding-left: 0;
  }
  
  .custom-bullet li {
    position: relative;
    padding-left: 20px;
  }
  
  .custom-bullet .dot {
    height: 8px;
    width: 8px;
    background-color: #009688; /* Bullet color */
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 6px;
  }

  
  /* tabs */
 /* tabs */
 .tab-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f1f1;
    padding: 10px;
    border-radius: 10px;
    gap: 10px;
    overflow: hidden;
  }

  .small-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 10px;
    gap: 10px;
    overflow: hidden;
  }
  
  .icon {
    background: white;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .tabs-box {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    white-space: nowrap;
    scrollbar-width: none;
    flex: 1;
  }
  
  .tabs-box::-webkit-scrollbar {
    display: none;
  }
  
  .tab {
    padding: 8px 16px;
    background: rgb(144, 164, 174);
    color: #fff;
    border: 1px solid #ddd;
    border-radius: 15px;
    cursor: pointer;
    font-size: 13px;
    flex: 0 0 auto;
  }
  
  .tab.active {
    color: rgb(255, 255, 255);
    background-color: rgb(120, 144, 156);
  }
  
  .tabs-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 0 10px;
  }

  @media only screen and (max-width: 768px) {
    * {
        text-align: justify;
    }
    .product-title{
        text-align: center;
    }
}


/* send mail */
.popup-overlay {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 999;
    justify-content: center;
    align-items: center;
  }
  
  .popup-form {
    background: #111;
    color: white;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    position: relative;
  }
  
  .popup-form input,
  .popup-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    background: #222;
    color: white;
    border: none;
    border-bottom: 1px solid #444;
  }
  
  .popup-form button {
    background: #00c38c;
    color: white;
    border: none;
    padding: 12px 20px;
    margin-top: 15px;
    border-radius: 25px;
    cursor: pointer;
  }
  
  .close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
  }

  


/* large img  */
.single_project_thumb img {
    width: 100%;
    cursor: pointer;
}

@media (max-width: 767px) {
    .single_project_thumb {
        margin: 30px 0
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    background-color: transparent !important;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

/* thumb scroll  */

.small-imgs-wrapper {
    overflow-x: auto;
    white-space: nowrap;
    margin-top: 10px;
    padding-bottom: 10px;
  }

  @media only screen and (max-width: 768px){
    .styled-heading {
        text-align: center;
        font-size: 25px;
        margin-top: 20px;
    }
    .responsive{
        text-align: center;
    }
  }
  
  /* product page  */
  .textContainer {
    width: 100%;
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: start;
    color: white;
    font-family: "Montserrat", sans-serif !important;
}

.product-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 10px;
    border-radius: 10px;
    gap: 10px;
    overflow: hidden;
  }

  .pro-tab {
    padding: 7px 16px;
    background: rgb(144, 164, 174);
    color: #fff;
    border: 1px solid #ddd;
    border-radius: 15px;
    cursor: pointer;
    font-size: 14px;
    flex: 0 0 auto;
}

/* table design  */
.subCategory {
    font-weight: 600;
    margin: 20px;
    font-size: 1.5em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .3);
}

.pagination_tableStyle___eQEj {
    overflow: hidden;
    border-collapse: collapse;
    width: 100%;
}
.pagination_tableStyle___eQEj {
    vertical-align: center;
    margin-left: 1em;
    font-size: 1.4em;
}

table {
    display: table;
    border-collapse: separate;
    box-sizing: border-box;
    text-indent: initial;
    unicode-bidi: isolate;
    border-spacing: 2px;
    border-color: gray;
}
table {
    caption-side: bottom;
    border-collapse: collapse;
}

caption {
    padding-top: .5rem;
    padding-bottom: .5rem;
    color: var(--bs-secondary-color);
    text-align: left;
}

tbody, td, tfoot, th, thead, tr {
    border: 0 solid;
    border-color: inherit;
}

tbody, td, tfoot, th, thead, tr {
    border: 0 solid;
    border-color: inherit;
}

td, tfoot, th, thead, tr {
    border: 0 solid;
    border-color: inherit;
}
.pagination_mainCategory__vnEkj {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 36px;
    text-transform: uppercase;
    margin: 20px 0 0 0;
    padding: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .8);
}
.pagination_subCategory__KGv4y {
    font-weight: 600;
    margin: 20px 0;
    font-size: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .3);
}
.pagination_evenRow__PgBEM {
    background: 
color-mix(in srgb, var(--primary-color) 10%, transparent);
}
.pagination_indexing__kA6iS {
    width: 2vw;
}

.pagination_cellPadding___0VKL {
    padding: .6em 1em;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--bs-heading-color);
}

.pagination_oddRow__NAYxa {
    background: 
color-mix(in srgb, var(--primary-color) 40%, transparent);
}


/* search  */

.search-icon {
    font-size: 22px;
    cursor: pointer;
  }
  
  .search-box {
    display: none;
    position: absolute;
    top: 65px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 1000;
  }
  
  /* .search-header {
    position: relative;
    padding: 15px;
  } */

  .search-header {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ddd;
  }
  
  /* .search-header input {
    width: 100%;
    padding: 10px 35px 10px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
  } */

  .search-header input {
    flex: 1;
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  /* .close-btn {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    cursor: pointer;
    color: #666;
  } */

  .close-btn {
    margin-left: 10px;
    cursor: pointer;
    font-size: 20px;
  }
  
  /* #resultsList {
    max-height: 180px; 
    overflow-y: auto;
    list-style: none;
    margin: 0;
    padding: 0 15px 15px 15px;
  } */

  #resultsList {
    list-style: none;
    max-height: 200px;
    overflow-y: auto;
    margin: 0;
    padding: 0;
  }

  .result-item a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #000;
    border-bottom: 1px solid #eee;
  }
  
  .result-item a:hover {
    background-color: #f1f1f1;
  }

  .product-name {
    font-weight: bold;
  }
  
  .product-category {
    font-size: 12px;
    color: gray;
    margin-top: 2px;
  }


  .pagination_evenRow__PgBEM {
    background: color-mix(in srgb, var(--primary-color) 10%, transparent);
}
.pagination_oddRow__NAYxa {
    background: color-mix(in srgb, var(--primary-color) 40%, transparent);
}

/* Pagination Controls Styling */
#paginationControls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
  gap: 8px;
  flex-wrap: wrap;
}

#paginationControls button {
  padding: 6px 12px;
  border: 1px solid #00796b;
  background-color: white;
  color: #00796b;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  min-width: 35px;
  transition: background-color 0.2s, color 0.2s;
}

#paginationControls button:hover:not(:disabled) {
  background-color: #00796b;
  color: white;
}

#paginationControls button:disabled {
  cursor: not-allowed;
  background-color: #e0e0e0;
  color: #9e9e9e;
  border-color: #ccc;
}

#paginationControls button.active {
  background-color: #00796b;
  color: white;
  font-weight: bold;
}


/* product banner  */

.search-box {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  min-width: 200px;
  font-size: 16px;
}
