* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}



.header {
    /* position: sticky;  */
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    /* background: rgba(255, 255, 255, .1);  */
    background-color: rgba(155, 155, 155, .4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(255, 255, 255, .2);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .4), transparent);
    transition: .5s;
}

.header:hover::before {
    left: 100%;
}

.navbar a {

    color: black;
    font-size: 14px;
    text-decoration: none;
    margin-left: 35px;
    transition: .3s;
}

.navbar a:hover {
    color: #f00;
}

/* .search-bar {
    display: flex;
  }

  .search-bar input[type="text"] {
    padding: 8px;
    border: 1px solid black;
    border-radius: 5px 0 0 5px;
    outline: none;

  }

  .search-bar button {
    padding: 8px 15px;
    border: none;
    background-color: transparent;
    color: black;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: 1px solid black;
    margin-left: 1%;
  }

  .search-bar button:hover {
    background-color: transparent;
  } */


#searchBox {
    width: 300px;
    padding: 10px;
    margin-top: 1%;
    border-radius: 20px;
    /* border: 2px solid red; */

}

#searchIcon {
    width: 50px;
    height: 50px;
    vertical-align: middle;
    margin-right: 5px;

}

.login-button {
    background-color: transparent;
    /* Green */
    border: none;
    color: black;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 8px;
    border: 1px solid black;
}

/* Hover effect */
.login-button:hover {
    background-color: grey;
}

/* Pressed effect */
.login-button:active {
    background-color: grey;
}



/* Popover things */

#size-guide::backdrop {
    background: rgba(190, 190, 190, 0.5);
}

#size-guide {
    padding: 3rem;
    border: none;
    width: clamp(300px, 80vw, 600px);
    max-height: 480px;
}

#size-guide h2 {
    margin: 0 0 1rem;
}

.close-btn {
    filter: grayscale();
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.25rem;
}

/* Style things */

:root {
    --blue: #4a9fe0;
    --darkblue: #616183;
    --gray-bg: #f0f0f0;
    --peppermint: #e9f2e1;
    --lightgreen: #fdfdf9;
}

/* body {
    padding: 1rem;
  } */
body {
    position: relative;
    color: #222;
    /* font-family: "Kalam", sans-serif; */
    min-height: 100vh;
    overflow-x: hidden;
    background-size: cover;
}

table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 4%;
}

th,
td {

    border: 1px solid #ccc;
    padding: 0rem;
    text-align: center;

}

th {
     background-color: black; 
    font-weight: 400;
    color: white;
}

td {
    background-color: var(--lightgreen);
    font-weight: 300;
}

.product-info h2 {
    margin-bottom: 0;
    font-size: 1.6rem;
    letter-spacing: 2px;
    font-weight: 400;
    margin-top: 9%;
}

.product-info p {
    margin-top: 4%;

}

.product-info small {
    max-width: 25ch;
    display: inline-block;
}

.price {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

hr {
    margin: 1rem 0;
    border-color: lightgray;
    border-top: none;
}

a,
#size-guide-btn {
    /* font-family: "Roboto Mono", monospace; */
    color: black;
}

#size-guide-btn {
    border: 0;
    background: none;
    text-decoration: underline;
    padding: 0;
    cursor: pointer;
}

figure {
    height: 550px;
    min-width: 300px;
    margin: 0;
}

.product-img img {

    height: 100%;
    margin-top: 7%;
    margin-left: -15%;
} 


.my_img {
    vertical-align: middle;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 100%;
}
.piclist li{
    display: inline-block;
    width: 90px;
    height: 114px;
    border: 1px solid #eee;
}
.piclist li img{
    width: 97%;
    height: auto;
}

/* custom style */
.picZoomer-pic-wp,
.picZoomer-zoom-wp{
    border: 1px solid #eee;
}



ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

.size-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0 0 1rem;
}

.size-list label {
    background: var(--gray-bg);
    padding: 0.5rem 1rem;
    display: inline-block;
}

.size-list input {
    display: none;
}

.size-list label:hover,
.size-list label:focus {
    /* color: var(--blue); */
    background-color: black;
    color: white;
    outline: 1px solid;
}

.size-list li:has(:checked) {
    outline: 1px solid;
}

.product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 0 auto;
    max-width: 900px;
}


.quantity-label {
    display: block;
    margin: 1rem 0 0.5rem;
    margin-top: 3%;
}

#quantity {
    font-size: 1.3rem;
    max-width: 3rem;
    margin-bottom: 1rem;
    margin-top: 3%;
}

.add-to-cart-btn {
    border: 1px solid;
    font-weight: lighter;
    padding: 1rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    width: 50%;
    background-color: black;
    color: white;
    margin-top: 4%;
}
.add-to-cart-form p{
color: green;
}

/* buy */
.btn {
    height: 8vh;
    background-color: white;
    border: none;
    color: black;
    padding: 12px 16px;
    font-size: 16px;
    cursor: pointer;
    border: 1px solid black;
    margin-left: 4%;
  }
  
  /* Darker background on mouse-over */
  .btn:hover {
    background-color: grey;
    /* color: white; */
  }
  .btn a{
    text-decoration: none;
  }
.measurements {
    margin-top: 2rem;
}

.measurements-guide li {
    line-height: 1.5;
    list-style: disc;
    margin-left: 2rem;
    margin-top: 1rem;
}

.sr-only:not(:focus):not(:active) {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

/* details */
/* .details1{
    height: 8vh;
    border: 2px solid black;
   
} */
/* detail */
.details1 h3 {
    margin-top: 5%;
    margin-left: 10%;
    font-size: 23px;
    /* border: 2px solid black; */
}

.details1 p {
    margin-top: 2%;
    margin-left: 10%;
    color: grey;
    /* border: 2px solid black; */
}
/* care */
.care h3 {
    margin-top: 5%;
    margin-left: 10%;
    font-size: 23px;
    /* border: 2px solid black; */
}

.care p {
    margin-top: 2%;
    margin-left: 10%;
    color: grey;
    /* border: 2px solid black; */
}


.newin {
    height: 10vh;
    text-align: center;
    font-size: 30px;
    margin-top: 3%;
}


/* product */
.best {
    height: 100vh;
    width: 100%;
    /* padding-left: 5%; */
    /* border: 2px solid black; */
}

.bestrap {
    display: grid;
    grid-template-columns: auto auto auto auto auto auto auto;
    grid-column-gap: 3px;
    overflow: scroll;
    -ms-overflow-style: none;
}

.bestrap::-webkit-scrollbar {
    width: 0 !important;
    display: none;
}


.bestimg p {
    text-align: center;
    color: grey;
}

.bestimg h4 {
    text-align: center;
    font-size: 16px;

}

.bestimg img {
    margin-left: 9%;
}

.bestimg h5 {
    text-align: center;
    font-size: 15px;
    margin-top: 2%;
    color: grey;
}

.image-box img {
    /* max-width: 100%; */
    transition: all 0.3s;
    display: block;
    /* width: 100%; */
    /* height: auto; */
    transform: scale(1);
    display: inline;
    margin-top: 8%;
    height: 75vh;
    margin-left: 2%;
    /* border-radius: 20px; */
}

.image-box:hover img {
    transform: scale(1.1);
}


/* footer  */
.footer {
    width: 100%;
    height: 75vh;
    background-color: black;
    margin-top: 3%;
}

.footrap {
    width: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    padding-top: 20px;
    padding-left: 4%;
}

.box8 h3 {
    color: white;
    /* font-size: 15px; */
    margin-top: 9%;
}

.box8 p {
    padding-top: 2%;
    margin-top: 4%;
    color: wheat;
    /* font-size: 12px; */
}

.box8 img {
    padding-top: 4%;
    padding-left: 8px;
}

.box8 h4 {
    margin-top: 4%;
    color: white;
    font-size: 20px;
}

#myEmail {
    margin-top: 5%;
    height: 6vh;
    width: 80%;
    background-color: wheat;
}

#myLOCATION {
    margin-top: 5%;
    height: 6vh;
    width: 80%;
    background-color: wheat;
}

.arrow {
    border: solid black;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    margin-left: -10%;
}

.right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.site {

    margin-top: 1%;
    margin-left: 60%;

}