/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    transition: 0.3s;
    scroll-behavior: smooth;
}

.logo {
    width: 150px;
    height: auto;
    margin-left: -60px;
    margin-top: -10px;
}

section {
    margin: 100px 0;
}

.contnaier {
    width: 85%;
    margin: auto;
}

.btn {
    padding: 10px 10px;
    background-color: #895D39;
    border-radius: 5px;
    color: #fff;
    font-weight: 800;
    letter-spacing: 1.3px;
    border: 2px solid #895D39;
}

.btn:hover {
    background-color: transparent;
    color: #895D39;
}

.boxs {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.boxs .box {
    width: 30%;
}

.top-sec {
    text-align: center;
    padding: 0 0 100px;
}

.top-sec h3 {
    font-size: 40px;
    padding-bottom: 20px;
    color: #111;
    position: relative;
}

.top-sec h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: #895D39;
    border-radius: 5px;
}


/* start header */
header {

    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 13%;
    color: white;
 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03), 
    0 2px 4px rgba(0, 0, 0, 0.005);
    margin-bottom: 80px;

}

.navigation li{
    text-decoration: none;
}

.logo img {
    margin-left: -100px;
    margin-top: -40px;
    width: 150px;
    height: auto;

}

.navigation {
    display: flex;
    align-items: center;
    margin-left: -500px;
    padding-left: 30px;
    margin-right: 40px;
    padding-bottom: 25px;
    

}

.navigation a {
    color: grey;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    transform: all .42s;
}

.navigation a:hover {
    color: #895D39;

}

.nav-right {
    margin-right: -120px;
    display: flex;
    align-items: center;
    padding-bottom: 20px;
}

.nav-icon {
    margin-left: -60px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.nav-icon i {

    color: #895D39;
    font-size: 16px;
    margin-right: 18px;
    transform: all .42s;

}

.nav-icon a {

    color: #895D39;
    font-size: 14px;
    transform: all .42s;

}

.nav-icon a:hover {
    color: black;

}

.nav-icon i:hover {
    color: black;
}


.nav-icon .bx-search {
    color: #895D39;
    font-size: 14px;
    cursor: pointer;
    



}

.search-box form{
    padding-left: 70px;
    margin-top: -25px;
    position: absolute;
    height: 50px;
    max-width: 400px;
    width: 100%;
    right: 310px;
    
   

}

.search-box i {
    position: absolute;
    bottom: 30%;
    
    left: 12%;
}


.search-box input {
    border: none;
    outline: none;
    border-radius: 100px;
    height: 100%;
    width: 100%;
    padding-left: 40px;
    font-size: 12px;
    border: 1px solid #895D39;
}

.search-box .bx-search {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    color: black;
    padding: 0 15px 0 45px;
}


/* start hero */

.hero {
    margin-top: -20px;
    margin-bottom: 0;
    width: 100%;
    height: calc(100vh - 100px);

    background-size: cover;
    background-position: center;
}

.hero .contnaier {
    border-radius: 10px;
    position: relative;
    margin-top: 80px;
    height: 80%;
    background-color: antiquewhite;
}

.hero .content {
    position: absolute;
    top: 75%;
    left: 15%;
    transform: translateY(-50%);
}

.hero .content p {
    color: #606060;
    font-size: 20px;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.hero .content h1 {
    color: #111;
    font-size: 50px;
    text-transform: capitalize;
    margin: 20px 0;
}

.hero content h1 span {
    color: #895D39;
}

.hero .content p.last-p {
    margin-bottom: 40px;
}

.hero .content .btn {
    font-size: 12px;
    border-radius: 10px;
}

/* Slider Styles */
.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-wrapper .content {
    display: none;
    /* Hide all slides by default */
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slider-wrapper .content.active {
    display: block;
    /* Show the active slide */
    opacity: 1;
}

/* Arrow Styles */
.slider-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.slider-arrows button {
    background-color: rgba(137, 93, 57, 0.7);
    /* #895D39 with opacity */
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-arrows button:hover {
    background-color: #895D39;
    /* Solid #895D39 on hover */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero .content h1 {
        font-size: 40px;
        /* Slightly reduce heading size */
    }

    .hero .content p {
        font-size: 18px;
    }

    .hero .content p.last-p {
        margin-bottom: 30px;
    }

    .slider-arrows button {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero .content h1 {
        font-size: 30px;
    }

    .hero .content p {
        font-size: 16px;
    }

    .hero .content p.last-p {
        margin-bottom: 20px;
    }

    .hero .content .btn {
        font-size: 11px;
        padding: 8px 12px;
    }

    .slider-arrows button {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}

/* start banner */

.banner .boxs .box img {
    width: 100%;
    height: 450px;
    border-radius: 6px;
}

.banner .boxs .box {
    position: relative;
    overflow: hidden;

}

.banner .boxs .box .text {
    position: absolute;
    bottom: 10px;
    right: 20px;
    text-align: right;
}

.banner .boxs .box:hover .text {
    bottom: 40px;
}

.banner .boxs .box .text span {
    color: #895D39;
    font-size: 22px;
    font-weight: 600;
}

.banner .boxs .box .text h5 {
    color: white;
    font-size: 37px;
    margin: 8px 0 30px;
}

.banner .boxs .box .text .btn {
    font-size: 14px;
    opacity: 0;
}

.banner .boxs .box:hover .text .btn {
    opacity: 1;
}

/* start products */

.products .items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 20px 130px;
    margin: 0px 20px;
}

.products .items .item {
    position: relative;
    overflow: hidden;
    border: 1px solid lightgray;
    border-radius: 6px;
    padding: 15px;
}

.products .items .item img {
    width: 100%;
    margin-bottom: 20px;
}

.products .items .item .title-prod {
    color: #111;
    font-size: 20px;
}

.products .items .item .title-prod:hover {
    color: #895D39;
}

.products .items .item .stars {
    margin: 10px 0;
}

.products .items .item .stars i {
    color: #ffdc19;
}

.products .items .item .price span {
    color: #895D39;
    font-size: 24px;
    font-weight: 600;
    margin-right: 30px;
    cursor: pointer;
}

.products .items .item .price del {
    color: #606060;
    font-size: 20px;
    text-decoration: line-through;
}

.products .items .item .icon-product {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -50px;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
}

.products .items .item:hover .icon-product {
    right: 30px;
}

.products .items .item .icon-product i {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border: 1px solid #1111116e;
    color: #111;
    background-color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
    transition: background-color 0.3s, color 0.3s;
}

.products .items .item .icon-product i:hover {
    background-color: #895D39;
    color: #fff;
}

/* Responsive grid adjustments */
@media (max-width: 1200px) {
    .products .items {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products .items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .products .items {
        grid-template-columns: 1fr;
    }
}

/* start banner 2 */

.banner-2 .contnaier {
    background: url(/img/banne-2.png);
    height: 500px;
    background-position: top left;
    background-size: cover;
    position: relative;
    margin-bottom: 200px;
}

.banner-2 .contnaier .content {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    width: 400px;
}

.banner-2 .contnaier .content span {
    color: #895D39;
    font-size: 18px;
    text-transform: capitalize;
}

.banner-2 .contnaier .content h3 {
    color: #111;
    font-size: 35px;
    margin: 10px 0 25px;
    text-transform: capitalize;
}

.banner-2 .contnaier .content p {
    color: #606060;
    margin-bottom: 40px;
    line-height: 1.5;
}

/* strart blog */
.blog .boxs .box {
    width: 23%;
}

.blog .boxs .box img {
    width: 100%;
}

.blog .boxs .box .desc-blog span {
    color: #895D39;
    font-size: 18px;
}

.blog .boxs .box .desc-blog h4 {
    color: #111;
    font-size: 20px;
    margin: 10px 0 40px;
}

.blog .boxs .box .desc-blog .btn {
    background-color: transparent;
    color: #895D39;
    font-size: 14px;
    padding: 12px 20px;
}

.blog .boxs .box .desc-blog .btn:hover {
    background-color: #895D39;
    color: #fff;
}

/* start newsletter */

.newsletter {
    background-color:white;
    height: 300px;
}

.newsletter .contnaier {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.newsletter .text h4 {
    color: #895D39;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.newsletter .text p {
    margin-bottom: 10px;
    font-size: 20px;
    color: #111;
}

.newsletter .subscribe-form {
    width: 600px;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.newsletter .subscribe-form input {
    width: 100%;
    border: none;
    outline: none;
    padding: 18px 20% 18px 30px;
    border-radius: 30px;
    border: 2px solid #6060607c;
}

.newsletter .subscribe-form .btn-srch {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 150px;
    border: none;
    background-color: #895D39;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
}

/* start footer */

footer .contnaier {
    padding: 50px 0 20px;
    display: flex;
    justify-content: space-between;

}

footer .big-rows {
    width: 33%;
    padding-right: 50px;
}

footer .big-rows .logo {
    font-size: 30px;
    font-weight: bold;
    color: #111;
    margin-bottom: 25px;
    text-transform: uppercase;
}

footer .big-rows .logo span {
    color: #895D39;
}

footer .big-rows p {
    color: #606060;
    line-height: 1.5;
    margin-bottom: 20px;
}

footer .big-rows .coical-icon i {
    width: 40px;
    height: 40px;
    background-color: #895D39;
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 8px;
    border: 1px solid #895D39;
}

footer .big-rows .coical-icon i:hover {
    background-color: transparent;
    color: #895D39;
}

footer .contnaier .row {
    width: 20%;
}

footer .contnaier .row .tittle {
    color: #111;
    margin-bottom: 25px;
}

footer .contnaier .row .links {
    display: flex;
    flex-direction: column;
}

footer .contnaier .row .links a {
    color: #606060;
    padding: 8px 0;
}

footer .contnaier .row .links a:hover {
    color: #895D39;
}

footer .bottom-footer {
    border-top: 1px solid #94949450;
}

footer .bottom-footer .content {
    padding: 20px 0;
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .bottom-footer .content p {
    color: #111;
    font-size: 18px;
}

footer .bottom-footer .content p span {
    color: #895D39;
    font-weight: bold;
}