*{
    margin: 0;
}

body {
    color: #222222;
    font-family: "DM Sans", sans-serif;
}

html {
    scroll-behavior: smooth;
}

a {
    color: #222222;
    text-decoration: none;
}

a:hover {
    color: #444444;
}

ul {
    list-style: none;
}

/* --------------------------------------------- header ---------------------------------------------*/

header {
    padding: 10px 50px;
    font-size: 18px;
    font-weight: 500;
    background-color: #fff;
    box-shadow: 0 0 20px 20px rgba(0, 0, 0, 0.1);
}

header.scrolled {
    background: #bab3a6;
    transition: 0.3s ease-in-out;
    box-shadow: 0 0 20px 20px rgba(0, 0, 0, 0.1);
}

header.scrolled a {
    color: #000;
    font-weight: 500;
}

header.scrolled .nav-link>ul>li>a:hover{
    color: #000;
    border-bottom: 4px solid #000;
}

header.scrolled  .nav-search svg path{
    stroke: #000;
}

/* header.scrolled .nav-logo img{
    filter: invert(100%);
} */

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-link{
    display: flex;
    align-items: center;
} 

.nav-link>ul {
    gap: 20px;
    display: flex;
    padding-left: 0px;
    margin-bottom: 0px;
}

.nav-link ul li a{
    text-decoration: none;
    padding-bottom: 5px;
}

.nav-link>ul>li>a.active {
    border-bottom: 4px solid #000;
}

.nav-link>ul>li>a:hover{
    border-bottom: 4px solid #000;
    transition: 0.1s ease-in;
}

.nav-link ul li a:hover{
    color: #000;
}

.nav-link .dropdown ul{
    display: block;
    position: absolute;
    margin: 10px 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    width: auto;
}

.nav-link .dropdown ul li{
    white-space: nowrap;
    padding: 10px 0px;
}

.nav-link .dropdown ul a{
    padding: 10px 20px;
    font-size: 18px;
    text-transform: none;
    color: #222222;
}

.nav-link .dropdown ul a{
    color: #444444;
}

.nav-link .dropdown:hover>ul{
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.nav-logo img{
    /* filter: invert(100%); */
    width: 55px;
    height: 38px;
}

.nav-logo h1{
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    /* font-family: "Gochi Hand", cursive; */
    /* font-family: "Asimovian", sans-serif; */
    font-family: "Playfair Display", serif;
    text-transform: uppercase;
}

.nav-logo a{
    display: flex;
    align-items: center;
    text-decoration: none;
    /* font-family: "Gochi Hand", cursive; */
}

.nav-bar {
    display: flex;
    align-items: center;
}

.nav-bar a svg{
    margin: 0px 20px;
    cursor: pointer;
}

.nav-bar a svg:hover{
    transform: scale(1.1);
}

nav .nav-menu{
    display: none;
}

nav .nav-menu-icon{
    display: none;
}

/* ---------- search ---------- */

.search-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-100%);
    transition: transform 0.5s ease-in-out;
    z-index: 999;
}

.search-open {
    transform: translateY(0);
}

.search-header {
    color: #000;
    padding: 15px 50px;
    background-color: #bab3a6;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-header h4 {
    font-size: 18px;
    margin: 0;
}

.search-header svg{
    margin: 0 20px 0 0;
}

.search-header svg path{
    stroke: #000;
}

#search-close {
    color: #000;
    background: none;
    border: none;
    font-size: 25px;
    cursor: pointer;
    outline: none;
}

.search-panel h2{
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 40px;
    font-size: 35px;
    font-weight: 800;
}

.search-panel h3{
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 40px;
    font-size: 30px;
    font-weight: 800;
}

.search-bar {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.search-bar form{
    width: 100%;
    display: flex;
    justify-content: center;
}

.search-bar input{
    width: 60%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-right: 10px;
}

.search-bar button {
    width: 100px;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
    color: #fff;
    outline: none;
    background-color: #222;
    transition: background-color 0.3s ease;
}

.search-bar button:hover {
    transform: scale(1.01);
    transition: 0.1s;
}

.search-category{
    display: flex;
    gap: 10px;
}

.search-content {
    text-align: center;
    margin: 0 50px;
}

.search-content h2 {
    font-size: 30px;
    font-weight: bold;
    padding: 40px;
}

.search-category-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.search-category-item {
    position: relative;
    width: calc(100% / 10 - 10px);
    margin-bottom: 10px;
    overflow: hidden;
}

.search-category-item a{
    text-decoration: none;
}

.search-category-item img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.search-category-item .search-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    font-size: 16px;
}

.search-category-item:hover img {
    transform: scale(1.1);
}

/* ---------- cart ---------- */

#cart-icon,
#cart-menu-icon{
    position: relative;
}

#cart-button{
    outline: none;
    border: none;
    background: none;
}

#cart-icon span,
#cart-menu-icon span{
    position: absolute;
    background-color: red;
    width: 20px;
    height: 20px;
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    top: 50%;
    right: 10px;
    cursor: pointer;
}

#cart-icon span:hover,
#cart-menu-icon span:hover{
    transform: scale(1.1);
}

.cart-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 350px;
    height: 100%;
    background-color: white;
    box-shadow: -4px 0 8px rgba(0, 0, 0, 0.2);
    transition: right 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.cart-open {
    right: 0;
}

.cart-header {
    color: #000;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #bab3a6;
}

.cart-header h2{
    font-size: 18px;
    margin: 0px;
}

.cart-header svg{
    margin: 0 10px 5px 5px;
}

.cart-close {
    cursor: pointer;
    font-size: 25px;
}

.cart-content {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px 25px;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.cart-item-image{
    width: 60px;
    height: 70px;
    margin-right: 10px;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-name {
    font-size: 14px;
    font-weight: bold;
    margin: 0;
}

.cart-item-color-size,
.cart-item-quantity,
.cart-item-price {
    font-size: 12px;
    margin: 0;
    color: #666;
}

.cart-remove-item {
    cursor: pointer;
    font-size: 15px;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #ddd;
}

.cart-footer h5{
    font-weight: bold;
    padding: 10px 0px;
}

.cart-footer-button{
    display: flex;
    justify-content: space-between;
}

.cart-footer button {

    padding: 10px 33px;
    font-size: 18px;
    cursor: pointer;
    color: #fff;
    border: none;
    outline: none;
    background-color: #222;
    transition: background-color 0.3s ease;
}

.cart-footer button:hover {
    transform: scale(1.01);
    transition: 0.1s;
}

/* ---------- log ---------- */

.sign-panel,
.reset-link-panel,
.log-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 350px;
    height: 100%;
    background-color: white;
    box-shadow: -4px 0 8px rgba(0, 0, 0, 0.2);
    transition: right 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.log-open,
.sign-open,
.reset-open {
    right: 0;
}

.log-header,
.sign-header,
.reset-link-header{
    color: #000;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #bab3a6;
}

.log-header h2,
.sign-header h2,
.reset-link-header h2{
    font-size: 18px;
    margin: 0px;
}

.log-header svg,
.sign-header svg,
.reset-link-header svg{
    margin: 0 10px 5px 5px;
}

.log-close,
.sign-close,
.reset-link-close{
    cursor: pointer;
    font-size: 25px;
}

.log-content,
.sign-content,
.reset-link-content{
    flex-grow: 1;
    overflow-y: auto;
    padding: 50px 15px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.log-content input,
.sign-content input,
.reset-link-content input{
    width: 250px;
}

.nav-log label, .nav-log p{
    font-size: 16px;
    margin: 5px 0px;
}
.sign-content ul{
    padding: 0;
    font-size: 14px;
    list-style: circle;
}

.sign-content form .col{
    width: 250px;
}

.log-content button,
.sign-content button,
.reset-link-content button{
    width: 100%;
    padding: 7px;
    margin: 5px 0 15px 0;
    font-size: 16px;
    cursor: pointer;
    color: #fff;
    outline: none;
    background-color: #222;
    transition: transform 0.3s ease;
}

.nav-log .log-content span{
    color: #7d6b4d;
    font-weight: 600;
}

.log-content button:hover,
.sign-content button:hover,
.reset-link-content button:hover{
    transform: scale(1.01);
}

.log-panel .log-content #reset,
.log-panel .log-content #sign-in,
.log-panel .sign-content #log-icon{
    cursor: pointer;
    color: #000;
}

.log-content #reset:hover,
.log-content #sign-in:hover,
.sign-content #log-icon:hover{
    color: #444;
}

#reset-password{
    height: 70vh;
    margin: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reset-password-panel{
    width: 600px;
    margin: 0 auto;
    background-color: #f4f4f4;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.1);
}

.reset-password-header{
    display: flex;
    align-items: center;
    text-align: center;
    padding: 20px;
    background-color: #bab3a6;
}

.reset-password-header svg{
    margin: 0 10px 5px 5px;
}

.reset-password-header h2{
    font-size: 25px;
    margin: 0px auto;
    text-align: center;
}

.reset-password-content{
    padding: 50px;
}

.reset-password-content button{
    width: 100%;
    padding: 10px;
    margin: 5px 0 15px 0;
    font-size: 16px;
    cursor: pointer;
    color: #fff;
    outline: none;
    border: none;
    background-color: #222;
    transition: transform 0.3s ease;
}

.reset-password-content button:hover{
    transform: scale(1.01);
}

/* --------------------------------------------- home ---------------------------------------------*/

#home {
    height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

.banner {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    position: absolute;
    width: 100%;
    height: 100vh;
    opacity: 0;
    z-index: 1;
    transition: opacity 1s ease-in-out;
    transition: opacity 1s ease-in-out;
    background: linear-gradient(to right, #f0f0f0 55%, #bab3a6 45%);
}

.banner.active {
    opacity: 1;
    z-index: 2;
    animation: slideIn 1s forwards;
}

.banner:not(.active) {
    animation: slideOut 1s forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

.banner-info {
    width: 40%;
    height: 100%;
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.banner-info h1 {
    font-size: 38px;
    font-weight: 900;
    line-height: 50px;
    text-transform: uppercase;
    margin-bottom: 40px;
}
  
.banner-info h2 { 
    font-size: 24px;
    font-family: 'Rock Salt';
    margin-bottom: 40px;
}

.banner-image-tab, .banner-image-info-tab{
    display: none;
}

.banner-image{
    width: 30%;
    height: 100%;
    /* max-width: max-content; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.banner-image img {
    width: 100%;
    height: 100%;
    /* transform: rotate(5deg); */
    border-left: 10px solid #fff;
    border-right: 10px solid #fff;
    box-shadow: 0 0 20px 20px rgba(0, 0, 0, 0.15);
}

.banner-image-info{
    width: 30%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 50px;
}

.banner-image-info h1{
    text-transform: lowercase;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    font-family: "Rock salt";
    line-height: 55px;
}

.banner-explore{
    padding-top: 10px;
}

.banner-explore button{
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    color: #fff;
    outline: none;
    background-color: #222;
    transition: background-color 0.3s ease;
}

.banner-explore button:hover{
    transform: scale(1.05);
}

.home {
    display: block;
}

.home-mobile {
    display: none;
}

/* --------------------------------------------- category --------------------------------------------- */


.category {
    margin: 5em;
}

.category-title {
    text-align: center;
    margin-bottom: 50px;
}

.category-title h3{
    font-size: 40px;
}

.category-title p{
    font-size: 20px;
    font-weight: 250;
}

.category-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.category-list {
    position: relative;
    width: calc(100% / 4 - 10px);
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.category-list a {
    text-decoration: none;
    color: inherit;
}

.category-list-img {
    width: 100%;
    aspect-ratio: 4 / 6;
    overflow: hidden;
}

.category-list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-list:hover .category-list-img img {
    transform: scale(1.1);
}

.category-info {
    padding: 20px;
    text-align: center;
}

.category-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.category-info p {
    font-size: 1rem;
    color: #888;
    margin-bottom: 0;
}

/* --------------------------------------------- arrivals --------------------------------------------- */

.arrivals-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.arrivals-title {
    text-align: center;
    margin: 150px 50px 50px 50px;
    display: flex;
    justify-content: space-between;
}

.arrivals-title h3{
    font-size: 40px;
}

.arrivals-title p{
    font-size: 20px;
    font-weight: 250;
}

.arrivals{
    display: flex;
    justify-content: center;
}

.arrivals-wrapper{
    overflow: hidden;
    width: 90%;
    display: flex;
    align-items: center;
    padding: 10px;
}

.arrivals-list .arrivals-product{
    color: #000;
    border-radius: 8px;
    width: calc(100% / 5);
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.arrivals-product a:hover{
    text-decoration: none;
}

.arrivals-list .arrivals-product img{
    width: 100%;
    height: 100%;
    aspect-ratio: 4/6;
}

.arrivals .arrivals-product-info{
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.arrivals-product-info h3 {
    font-size: 20px;
    font-weight: 550;
}

.arrivals-product-info p {
    font-size: 15px;
    font-weight: 300;
}

.arrivals-wrapper .arrivals-slide-button{
    color: #000;
}

.arrivals-wrapper .arrivals-slide-button:hover{
    transform: scale(1.05);
}

/* --------------------------------------------- trending --------------------------------------------- */

#trending{
    margin: 100px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trending-title {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 50px;
}

.trending-title h3{
    font-size: 40px;
}

.trending-title p{
    font-size: 20px;
    font-weight: 250;
}

.trending {
    display: flex;
    gap: 10px;
    width: 100%;
    padding: 0 50px;
}

.trending-product{
    display: flex;
    gap: 10px;
    width: calc(100% / 2);
}

.trending-product a{
    text-decoration: none;
}

.trending-single {
    width: calc(100% / 1.5);
    position: relative;
    overflow: hidden;
}

.trending-single img {
    width: 100%;
    height: 100%;
}

.trending-double {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: calc(100% / 3);
}

.trending-double-image {
    width: 100%;
    height: calc(100% / 2);
    position: relative;
    overflow: hidden;
}

.trending-double-image img {
    width: 100%;
    height: 100%;
}

.trending-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.trending-overlay p {
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    text-align: center;
    margin: 10px;
}

.trending-overlay button {
    font-size: 15px;
    color: #333;
    background-color: #bab3a6;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 5px;
    gap: 5px;
    outline: none;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease-in-out;
}

.trending-overlay button:hover {
    background-color: #b67c54;
    cursor: pointer;
}

/*----------------------------------------- about -----------------------------------------*/


#about{
    margin-top: 100px;
}

.about-title {
    text-align: center;
    margin-bottom: 50px;
}

.about-title h3{
    font-size: 40px;
    padding: 20px;
}

.about-title p{
    font-size: 20px;
    font-weight: 250;
    padding: 0 60px;
}

#about strong {
    color: #bab3a6;
    font-weight: bold;
}

#about .row {
    font-size: 16px;
    margin: 0px 50px;
}

/*----------------------------------------- contact -----------------------------------------*/

.contact {
    margin: 150px 100px;
}

.contact .contact-info {
    width: 100%;
    background: #fff;
}

.contact .contact-info i {
    font-size: 20px;
    color: #333;
    float: left;
    width: 44px;
    height: 44px;
    background: #bab3a6;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .contact-info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #493c3e;
}

.contact .contact-info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: #333;
}

.contact .contact-info .contact-info-email,
.contact .contact-info .contact-info-phone {
    margin-top: 40px;
}

.contact .contact-info .contact-info-email:hover i,
.contact .contact-info .contact-info-address:hover i,
.contact .contact-info .contact-info-phone:hover i {
    background: #333;
    color: #bab3a6;
    cursor: pointer;
}

.contact form .contact-form-input{
    padding: 10px 0;
}

.contact form button{
    width: 100px;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
    color: #fff;
    outline: none;
    background-color: #222;
    transition: background-color 0.3s ease;
}

.contact form button:hover {
    transform: scale(1.01);
}

/*----------------------------------------- shop -----------------------------------------*/

#shop{
    margin: 100px 50px;
}

.shop-title {
    text-align: center;
    margin-bottom: 50px;
}

.shop-title h3{
    font-size: 40px;
    padding: 20px;
}

.shop-title p{
    font-size: 20px;
    font-weight: 250;
}

.shop {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.shop-product {
  position: relative;
  width: calc(100% / 5 - 10px);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.shop-product:hover {
  transform: translateY(-5px);
}

.shop-product a{
    text-decoration: none;
}

.shop-product-image {
  width: 100%;
  aspect-ratio: 4/6;
  overflow: hidden;
}

.shop-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-product-info {
  padding: 20px;
  text-align: left;
}

.shop-product-info h3 {
  font-size: 1.1em;
  color: #333;
}

.shop-product-info p {
  font-size: 1em;
  color: #888;
}
  

.shop-buttons{
    display: flex;
    justify-content: center;
    gap: 20px;
}

.shop-buttons #seeMoreBtn, .shop-buttons #seeLessBtn{
    border: none;
    outline: none;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #bab3a6;
    color: #333;
    font-size: 16px;
    padding: 10px 20px;
    margin-top: 50px;
    border-radius: 100px;
    transition: background-color 0.5s ease;
}

.shop-buttons #seeLessBtn{
    display: none;
}

.shop-buttons #seeMoreBtn:hover, .shop-buttons #seeLessBtn:hover {
    background-color: #b67c54;
    cursor: pointer;
}

/*----------------------------------------- quick view -----------------------------------------*/

.quick-view {
    display: flex;
    justify-content: space-between;
    margin: 100px 50px;
}

.quick-view-images{
    width: 50%;
}

.quick-view-images-top{
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.quick-view-images-bottom{
    display: flex;
    gap: 10px;
}

.quick-view-images-top div{
    width: calc(100% / 2);
}

.quick-view-images-bottom div{
    width: calc(100% / 3);
}

.quick-view-images-top img{
    width: 100%;
    height: 100%;
}

.quick-view-images-bottom img{
    width: 100%;
    height: 100%;
}

.quick-view-info{
    width: 50%;
    padding: 0 50px;
}

.quick-view-info h5 {
    margin-top: 25px;
    font-size: 30px;
}

.quick-view-info h6 {
    font-size: 20px;
    font-weight: 300;
}

.quick-view-info-description {
    font-size: 15px;
}

.quick-view-info-option {
    display: flex;
    gap: 10px;
    width: 100%;
}

.quick-view-info-option-section {
    width: calc(100% / 2);
    margin: 50px 0px;
}

.quick-view-info-option-section p {
    font-weight: bold;
    margin-bottom: 8px;
}

select {
    width: 100%;
    padding: 8px;
    font-size: 16px;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: #fff;
    cursor: pointer;
}

select:focus {
    outline: none;
    border-color: #333;
    background-color: #bab3a6;
}

select option {
    padding: 8px;
}

.quick-view-info-features {
    font-weight: 500;
}

.quick-view-info-features span {
    font-weight: 250;
}

.quick-view-info-features span:hover {
    color: #b67c54;
    cursor: pointer;
}

.quick-view-info-cart {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    width: 100%;
}

.quick-view-info-cart-quantity {
    display: flex;
    width: calc(100% / 3);
    min-width: 130px;
}

.quick-view-info-cart-quantity-button {
    background-color: #f0f0f0;
    border: 1px solid #333;
    font-size: 20px;
    cursor: pointer;
    padding: 0px 10px ;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-view-info-cart-quantity .quantity {
    width: calc(100%);
    text-align: center;
    border: 1px solid #333;
    margin: 0 5px;
    font-size: 16px;
}

.quick-view-info-cart .divpr{
    width: 100%;
}

.quick-view-info-cart .cart {
    border: none;
    outline: none;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #bab3a6;
    color: #333;
    font-size: 16px;
    padding: 10px 20px;
    transition: background-color 0.5s ease;
}

.quick-view-info-cart .cart:hover {
    background-color: #b67c54;
    cursor: pointer;
}

/*----------------------------------------- checkout -----------------------------------------*/

#checkout{
    margin: 100px 80px;
}

.checkout-title {
    text-align: center;
    margin-bottom: 50px;
}

.checkout-title h3{
    font-size: 40px;
    padding: 20px;
}

.checkout-title p{
    font-size: 20px;
    font-weight: 250;
}

.checkout h2 {
    padding: 20px 0;
}

.checkout-total .shipping-section {
    display: flex;
    gap: 10px;
}

.checkout-total .shipping-options {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.checkout-total .shipping-options label {
    margin-top: 3px;
}

.checkout-total{
    margin: 20px 0;
    font-size: 18px;
    padding: 10px;
    color: #6C757D;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    background-color: #E9ECEF;
}

.checkout-total p{
    margin: 0;
}

/* Improved checkout total card */
.checkout-total h3{
    margin: 0 0 10px 0;
    color: #222;
}

.checkout-total .shipping-section p{
    margin: 10px 0 6px 0;
    color: #495057;
}

.checkout-total .shipping-options{
    gap: 8px;
    flex-wrap: wrap;
}

.checkout-total .shipping-options label{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #dee2e6;
    color: #212529;
    padding: 8px 12px;
    border-radius: 9999px;
    cursor: pointer;
    transition: all .2s ease;
}

.checkout-total .shipping-options label:hover{
    border-color: #b67c54;
    box-shadow: 0 2px 6px rgba(0,0,0,.06);
}

.checkout-total .shipping-options input[type="radio"]{
    accent-color: #b67c54;
}

.checkout-total .summary{
    margin-top: 14px;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 12px;
}

.checkout-total .summary-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    color: #212529;
}

.checkout-total .summary-row.total span:last-child{
    font-weight: 800;
    color: #000;
}

.checkout-total .summary-divider{
    height: 1px;
    background: #eee;
}

.checkout-total .summary-note{
    margin-top: 10px;
}

.checkout .place-order {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

#paypal-button-container {
    width: 100%;
    max-width: 350px;
}

.checkout .payment-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.checkout .payment-option {
    display: flex;
    width: 350px;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.checkout .payment-option input {
    display: none;
}

.checkout .payment-option input:checked + .payment-content {
    border: 1px solid #0070ba;
    box-shadow: 0 0 5px rgba(0, 112, 186, 0.5);
}

.checkout .payment-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1rem;
    border-radius: 5px;
}

.checkout .payment-content span {
    font-weight: bold;
}

.checkout .payment-icons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkout .payment-icons img {
    height: 24px;
    width: auto;
}

.checkout .payment-icons span {
    font-size: 0.9rem;
    color: #555;
}

.checkout .payment-option:hover {
    border: 1px solid #0070ba;
    box-shadow: 0 0 5px rgba(0, 112, 186, 0.5);
}  

.paypal-button {
    background-color: #ffc439;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 7px;
    width: 350px;
}

#paypal-button-container, #paypalpay{
    padding: 0;
    width: 350px;
}

.checkout #payid-section button{
    background-color: #096eb6;
    color: #ffffff;
    border: none;
    border-radius: 9999px;
    padding: 14px 32px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    width: 100%;
    max-width: 200px;
    cursor: pointer;
    transition: transform 40ms ease, box-shadow .2s ease, filter .2s ease;
    box-shadow: 0 6px 14px rgba(9, 110, 182, 0.35);
}
.checkout #payid-section button:hover { filter: brightness(0.96); }
.checkout #payid-section button:active { transform: translateY(1px); }
.checkout #payid-section button[disabled] { opacity: .6; cursor: not-allowed; }


/*----------------------------------------- payment confirmation -----------------------------------------*/

.payment-confirmation {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0 20px;
}

.payment-confirmation-icon {
    display: flex;
    justify-content: center;
}

.payment-confirmation-contents {
    margin: 20px 0px;
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #222222;
}

.payment-confirmation-contents h3 {
    font-size: 40px;
}

.payment-confirmation-contents p {
    font-size: 25px;
    font-weight: 350;
}

.payment-confirmation-contents span {
    font-size: 20px;
    font-weight: 250;
}

.payment-confirmation-button {
    display: flex;
    justify-content: center;
}

.payment-confirmation-button button {
    text-decoration: none;
    display: flex;
    padding: 12px 20px;
    background-color: #bab3a6;
    border-radius: 4px;
    transition: background-color 0.3s;
    border: none;
    align-items: center;
}

.payment-confirmation-button a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}

.payment-confirmation-button button:hover {
    background-color: #b67c54;
    cursor: pointer;
}

/*----------------------------------------- developer -----------------------------------------*/


#profile-card {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.profile-card {
    background-color: #bab3a6;
    width: 350px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

.profile-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.profile-card h2 {
    font-size: 22px;
    color: #2d6a4f;
    margin: 10px 0;
}

.profile-card p {
    font-size: 14px;
    color: #5a5a5a;
    margin: 5px 0;
}

.profile-card .contact-info {
    margin-top: 15px;
}

.profile-card .contact-info p {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

.profile-card .contact-info p i {
    font-size: 18px;
    color: #2d6a4f;
}

.profile-card .contact-info p span {
    font-size: 14px;
    color: #000;
}

.profile-social{
    display: flex; 
    gap: 10px; 
    justify-content: center; 
}

.profile-social a{
    text-decoration: none;
    color: #000;
}


/*----------------------------------------- footer -----------------------------------------*/


footer{
    margin-top: 100px;
    padding: 50px 36px 0px 36px;
    box-shadow: 0 0 15px 15px rgba(0, 0, 0, 0.1);
    background-color: #bab3a6;
}

.footer{
    text-align: center;
    /* padding-top: 40px; */
}

/* .footer-logo img{
    filter: invert(100%);
} */

.footer .footer-link ul{
    gap: 40px;
    font-size: 20px;
    padding: 30px;
}

.footer .footer-link a{
    text-decoration: none;
}

.footer-icon{
    padding: 5px 0px;
}

.footer-icon i{
    padding: 0px 10px;
    font-size: 25px;
}

.footer-copyright{
    padding-top: 30px;
}

.footer-copyright p{
    color: #fff;
    font-size: 16px;
    margin: 0 -36px 0 -36px;
    padding: 10px;
    background: #2A2A28;
}

/*----------------------------------------- floating whatsapp -----------------------------------------*/

.whatsapp-float{
    position: fixed;
    right: 20px;
    bottom: 50px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
}

.whatsapp-float:hover{
    transform: scale(1.05);
}

.whatsapp-float i{
    font-size: 28px;
    color: #fff;
    margin-top: -6px;
}

.sr-only{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}