@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,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
*{
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-padding-top: 4rem;
    scroll-behavior: smooth;
    list-style: none;
    text-decoration: none;
}
:root{
    --main-color:#bc9667;
    --second-color:#edeae3;
    --text-color:#1b1b1b;
    --bg-color:#fff;

    --box-shadow:2px 2px 10px 4px rgb(14 55 54 / 15%);

}
section{
    padding:50px 100px;
    
}

img{
    width:100%;
}
body{
    color: var(--text-color);
}
header{
    position:fixed;
    width:100%;
    top:0;
    right:0;
    z-index:1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:18px 100px;
    transition: 0.5s linear;
}
header.shadow{
    background: var(--text-color);
    box-shadow: var(--box-shadow);
}
.logo img{
   width: 60px;
}
.navbar{
    display: flex;
}
.navbar a{
    padding:8px 17px;
    color:var(--bg-color);
    font-size:1rem;
    text-transform:uppercase;
    font-weight:500;
}
.navbar a:hover{
    background-color: var(--main-color);
    border-radius:0.2rem;
    transition: 0.2s all linear;

}
.header-icon{
    position: relative;
    font-size: 22px;
    cursor:pointer;
    z-index:10000;
    display:flex;
    column-gap:0.8rem;
}
.header-icon .bx{
    color:var(--bg-color);

}
.header-icon .bx:hover{
    color:var(--main-color);
    
}
#menu-icon{
    color: var(--bg-color);
    font-size: 24px;
    z-index:  100001;
    cursor: pointer;
    display: none;
}
.search-box{
   position:absolute;
   top:-100%;
   left:50%;
   transform:translate(-50%) ;
   background: var(--bg-color);
   width:100%;
}
.search-box.active{
    top:110%;
    box-shadow: var(--box-shadow);
    transition: 0.2s all linear;
}
.search-box input{
    padding:20px;
    border:none;
    outline: none;
    width:100%;
    font-size: 1rem;
    color: var(--main-color);
}
.search-box input::placeholder{
    font-size: 1rem;
    font-weight: 500;
}
.cart-wrapper {
    position: relative;
}
#cart-count {
    position: absolute;
    top: -8px;   
    right: -10px; 
    background: red;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    padding: 2px 6px;
}
    #cart-icon {
    position: relative;
}

.home{
    color:var(--second-color);
    width:100%;
    min-height:100vh;
    background: url(images/img/bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(17rem,auto));
    align-items: center;
    gap:1.5rem;
}
.home-text h1{
    font-size:3.4rem;
    color: var(--main-color);
    text-transform: uppercase;
    letter-spacing: 1px;

}
.home-text p{
    font-size: 0.938rem;
    color:var(--bg-color);
    margin:0.5rem 0 1.4rem;
}
.btn{
    padding:10px  40px;
    border-radius:0.3rem;
    background: var(--main-color);
    color:var(--bg-color);
    font-weight: 500;

}
.btn:hover{
    background: #8a6f4d;
}
.about{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(17rem,auto));
    gap:1.5rem;
}
.about-img img{
    border-radius: 0.5rem;
}
.about-text h2{
    font-size: 1.8rem;
    text-transform: uppercase;
}
.about-text p{
    font-size:0.983rem;
    margin:0.5rem 0 1.1rem;
}
.heading{
    text-align:center;
}
.heading h2{
    font-size:1.8rem;
    text-transform: uppercase;
}
.brand-title {
      display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: #bc9667;  
    border-radius: 12px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    font-size: 32px;
    font-weight: 600;
    color:#333;
    margin: 20px auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
}
.brand-title:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.brand-logo-wrapper {
    background: #fff;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.brand-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.brand-name {
    letter-spacing: 2px;
}
.brand-section {
    padding: 50px 20px;
    text-align: center;
}

.brand-heading {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 600;
}

.brand-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.brand-box {
    width: 200px;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-box img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
}

.brand-box h3 {
    font-size: 20px;
    font-weight: 500;
}

.brand-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}


html {
    scroll-behavior: smooth;
}

.product-container{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,auto));
    gap:1.5rem;
    margin-top: 2rem;
}
.product-container .box{
    position:relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 0.5rem;
    box-shadow: var(--box-shadow);
    padding:10px;
    
    
}
.product-container .images-box{
    padding:20px;
    
    background: #c7bfbf9e;
    border-radius: 0.5rem;

}
.product-container img{
    width: 100%;
    height:250px;
    object-fit: contain;
    object-position: center;
    
}
.product-container .images-box #alt{
    display: flex;
    justify-content: space-between;
}
.product-container .box i{
    cursor: pointer;
}

.product-container .box h3{
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;

    margin: 0.5rem 0 0.5rem;
}
.product-container .box .content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.product-container .box .content span{
    padding:0 1rem;
    color:var(--bg-color);
    background: var(--main-color);
    border-radius: 4px;
    font-weight:500;
}
.product-container .box .content a{
    padding:0 1rem;
    font-weight:500;
    color:var(--text-color);
    border: 2px solid var(--main-color);
    border-radius: 4px;
    text-transform: uppercase;
}
.product-container .box .content a:hover{
    background: var(--main-color);
    color:var(--bg-color);
    transition: 0.2s all linear;
    border: 2px solid var(--main-color);
}
.total {
    background-color: rgb(108, 53, 6);
    padding: 20px;
    margin: 20px;
    border: 1px solid rgb(52, 49, 48);
}

.menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu li {
    padding: 10px;
    border-bottom: 1px solid rgb(52, 49, 48);
}

.menu li:last-child {
    border-bottom: none;
}

.menu span {
    font-size: 18px;
    font-weight: bold;
    margin-left: 10px;
}

.order input {
    padding: 10px;
    margin: 10px;
    border: 1px solid rgb(52, 49, 48);
}

.total {
    font-size: 24px;
    font-weight: bold;
}

.total span {
    color: #666666;
}

.hero {
    margin: 20px;
}

.hero img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.billing {
    background-color:rgb(234 222 207);
    padding: 20px;
    margin: 20px auto;
    border: 1px solid rgb(52, 49, 48);
    border-radius: 10px;
    color: #c9ba96;
    max-width: 800px;
   
}

.billing h2 {
    text-align: center;
    font-family: "Poppins", sans-serif;;
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 20px;
    color:rgb(138, 111, 77)
  
}

.billing-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    color:rgb(138, 111, 77)
}

.billing-details {
    width: 100%;
    margin-bottom: 20px;
}

.input-box {
    margin-bottom: 15px;
    
}

.input-box label {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: bold;
}

.input-box input {
    width: calc(100% - 22px);
    padding: 10px;
    border: 1px solid rgb(52, 49, 48);
    border-radius: 5px;
    background-color: #e2dac9;
    color: #333333;
}

.order-summary {
    background-color: rgb(108, 53, 6);
    padding: 20px;
    margin: 20px 0;
    border: 1px solid rgb(52, 49, 48);
    border-radius: 10px;
    width: 100%;
}

.order-summary h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.order-summary p {
    font-size: 18px;
    margin: 5px 0;
}

.order-summary span {
    font-weight: bold;
    color: #c9ba96;
}
.total{
    height:6rem;
    font-size: medium;
    background-color: #8a6f4d;
    
}
.total h2{
    color:#c9ba96;
}
.total #total{
    color:#c9ba96;
}

.billing .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #e2dac9;
    color: rgb(108, 53, 6);
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin:auto;
}
.btn-box{
    display: flex;
    justify-content: center;
}

.billing .btn:hover {
    background-color: #c9ba96;
    color: #333333;
}
#reviewBox {
    width: 100%;              
    max-width: 750px;         
    margin: 50px auto;        
    padding: 25px;
    border: 2px solid #5c3a21;
    border-radius: 10px;
    background-color: #d2b48c;
    box-sizing: border-box;
}

#reviewBox h2 {
    text-align: center;
}

#reviewBox input,
#reviewBox textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #888;
    border-radius: 5px;
    outline: none;
    box-sizing: border-box;
}

#reviewBox button {
    width: 100%;
    padding: 12px;
    background-color: #5c3a21;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
}

@media (max-width: 750px) {
    #reviewBox {
        padding: 18px;
        margin: 30px 15px;   
    }

    #reviewBox button {
        padding: 10px;
        font-size: 0.95rem;
    }
}
.customers-container{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(17rem,auto));
    gap:1.5rem;
    margin-top: 2rem;
}
.customers-container .box{
    position:relative;
    
    border-radius: 0.5rem;
    box-shadow: var(--box-shadow);
    padding:20px;
    text-align: center;
}
.starts .bx{
    color:var(--main-color)
}
.customers-container .box p{
    font-size: 0.983rem;
}
.customers-container .box h2{
    font-size: 1.2rem;
    font-weight: 600;
    margin:0.5rem 0 0.5rem;
}
.customers-container .box img{
    width: 70px;
    height:70px;
    border-radius: 50%;
    object-fit: cover;
}
.customers-container .box:hover{
    background: var(--second-color);
    transition: 0.2s all linear;
}
.footer{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(17rem,auto));
    gap:1.5rem;
    margin-top: 2rem;
    background: url(images/img/footer-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: var(--bg-color);

}
.footer-box h2{
    font-size: 1.2rem;
    font-weight:600;
    margin-bottom: 10px;
}
.footer-box p{
    font-size: 0.983rem;
    margin-bottom: 10px;
}
.social{
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
}
.social .bx{
    font-size:24px ;
    color: var(--bg-color);
    padding:10px;
    background-color: #edeae350;
    border-radius:0.2rem;
}
.social .bx:hover{
    background-color:#bc966750;
    color:var(--bg-color)
}
.footer-box h3{
    font-weight: 600;
    margin-bottom:10px;
}
.footer-box li a{
    color: var(--bg-color);
}
.footer-box li a:hover{
    color:var(--main-color)
}
.contact{
    display:flex;
    flex-direction:column ;
    row-gap:0.5rem;
}
.contact span{
    display: flex;
    align-items: center;
}
.contact i{
    font-size: 20px;
    margin-right: 1rem;
}
.copyright{
    padding:20px;
    text-align:center;
    background:var(--second-color);
}
@media (max-width:1056px){
    header{
        padding:16px 60px;
    }
    section{
        padding: 50px 60px;
    }
    .home-text h1{
        font-size: 2.4rem;
    }
}
@media (max-width:991px){
    header{
        padding:16px 4%;
    }
    section{
        padding: 50px 4%;
    }
    .home-text h1{
        font-size: 2rem;
    }
    .about{
        align-items: center;
    }
}
@media (max-width:768px){
    header{
        padding:12px 4%;
    }
    #menu-icon{
        display: inline;
    }
    .navbar{
        position:absolute;
        top:-570px;
        left:0;
        right:0;
        display:flex;
        flex-direction:column;
        background: var(--second-color);
        row-gap:1.4rem;
        padding:20px;
        transition:0.3s;
        text-align:center;
    }
    .navbar a{
        color:var(--text-color)
    }
    .navbar a:hover{
        color: var(--bg-color);
    }
    .navbar.active{
        top:100%;
    }
    .about{
        align-items: center;
    }
}
@media (max-width:360px){
    header{
        padding:11px 4%;
    }
    .logo img{
        width: 45px;
    }
    .home-text{
        padding-top:15px;
    }
    .home-text h1{
        font-size: 1.4rem;
    }
    .home-text p{
        font-size:0.8rem;
        font-weight:300;
    }
    .about-img{
        order:2;
    }
    .about-text{
        text-align: center;
    }
    .about-text h2{
        font-size:1.2rem;
    }
    .heading h2{
        font-size: 1.2rem;
    }
}