@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..900;1,100..900&display=swap');
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    scroll-behavior: smooth;

}
body{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}
h1, h2, h3{
    font-family: "Playfair Display", serif;
}
.navbar{
    width: 100%;
    padding: 22px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    z-index: 1000;
    background-color: black;
}
.logo{
    font-size: 24px;
    font-weight: 600;
    display: flex;
    gap: 8px;
    color: #f7a828;
    align-items: center;
}
.navs a{
    color: #dcdcdc;
    margin: 0 18px;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}
.navs a:hover{
    color: #f7a828;
}
.header-icons a{
margin-left: 18px;
font-size: 18px;
color: #f7a828;
text-decoration: none;
transition: 0.3s;
}
.header-icons a:hover{
    color: #dcdcdc;
}
.hero{
    width: 100%;
    height: 100vh;
    background: url(img/bg.jpeg) no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;

}
.overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 7, 10, 0.75);
}
.hero-content{
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: 660px;
    margin-right: 660px;
}
.hero-content h1{
    font-family: "Playfair Display", serif;
    font-size: 96px;
    line-height: 1.1;
    font-weight: 700;
}
.crafted-for{
    color: #dcdcdc;
}
.Perfection{
    color: #f7a828;
}
.hero-content p{
    margin-top: 20px;
    font-size: 22px;
    color: #bfc0c3;
    margin-top: 32px;
}
.hero-buttons{
    margin-top: 40px;
    display: flex;
    gap: 18px;
    justify-content: center;


}
.primary-btn{
    background-color: #f7a828;
    color: black;
    font-weight: 400;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    padding: 12px 28px;
    font-size: 18px;
    border: 0;

}
.primary-btn:hover{
    box-shadow: 0 0 15px #f7a828;
}
.secondary-btn{
    background-color: transparent;
    color: white;
    border: 1px solid #f7a828;
    font-weight: 400;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    padding: 12px 28px;
    font-size: 18px;
}
.secondary-btn:hover{
    background-color: #f7a828;
    color: black;
    box-shadow: 0 0 15px #f7a828;
}
.categories{
    background-color: #1b1d23;
    text-align: center;
    padding: 80px 40px;
    color: #fff;
}
.categories-title{
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}
.categories-title span{
    color: #f7a828;
}
.categories-description{
    font-size: 18px;
    color: #bfc0c3;
    margin-bottom: 60px;
}
.category-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}
.category-card{
    background-color: #14181f;
    border: 1px solid #1e232c;
    border-radius: 12px;
    padding: 35px 20px;
    transition: 0.3s ease-in-out;
}
.category-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    background-color: #1a1f27;
}
.category-icon{
    margin-bottom: 15px;
    width: 80px;
    height: 80px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.icon-img{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}
.category-card h3{
    font-size: 26px;
    margin-bottom: 6px;
}
.category-description{
    margin-bottom: 12px;
    color: #bfc0c3;
}
.category-count{
    color: #e2a43c;
    font-weight: 600;
}
.products{
    padding: 50px 20px;
    width: 100%;
    background-color: #121212;
    margin: 0 auto;

}
.products-header{
    text-align: center;
    margin-bottom: 50px;
}
.products-header h2{
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}
.products-header h2 span{
    color: #f7a828;
    font-weight: 700;
}
.products-description{
    font-size: 18px;
    color: #bfc0c3;
    margin-bottom: 60px;
}
.product-container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
    width: 85%;

}
.product-card{
    background-color: #1b1d23;
    border-radius: 14px;
    overflow: hidden;
    transition: 0.3s ease;
    border: 1px solid transparent;
}
.product-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}
.product-image img{
    width: 100%;
    height: 260px;
    display: block;
    object-fit: cover;
}
.product-details{
    padding: 18px 18px 0;
}
.brand{
    color: #f7a828;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 14px;
}
.product-title{
    font-size: 20px;
    margin-bottom: 8px;
    color: white;
}
.product-rating{
    margin-bottom: 20px;
}
.star{
    color: #e2a43c;
    font-size:  18px;
}
.empty-star{
    color: #444444;
    font-size:  18px;
}
.product-footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 18px 18px;
}
.price{
    font-size: 22px;
    font-weight: 700;
    color: #f7a828;
}
.btn-cart{
    background-color: #f7a828;
    border: none;
    padding: 10px 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}
.btn-cart:hover{
    background-color: #b38434;
}
.cart-icon{
    fill: none;
    stroke: black;
    width: 20px;
    stroke-width: 2;
}
.contacts-section{
    background-color: #1b1d23;
    padding: 60px 120px;
    color: #ddd;
}
.contacts{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    border-bottom: 1px solid #9e9b94;
}
.main-contacts-column{
    max-width: 250px;
}
.contacts-column{
    margin-left: 220px;
}
.first-contacts-logo{
    font-size: 28px;
    font-weight: 800;
    color: #f7a828;
    margin-bottom: 20px;
}
.first-contacts-description{
    color: #9e9b94;
    line-height: 1.5;
    margin-bottom: 20px;
}
.second-contacts-title{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}
.third-contacts-title{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}
.fourth-contacts-title{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}
.social-icons a{
    margin-right: 15px;
    color: #9e9b94;
    font-size: 18px;
    transition: 0.3s;

}
.social-icons a:hover{
    color: #f7a828;
}
.contacts-column a{
    display: block;
    color: #9e9b94;
    text-decoration: none;
    margin-bottom: 12px;
    transition: 0.3s;
}
.contacts-column a:hover{
    color: #f7a828;
}
.contacts-footer{
    text-align: center;
    color: #9e9b94;
    margin-top: 25px;
    font-size: 14px;
}