﻿*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: "Cormorant Garamond", serif;
}
p{
    font-family: "Open Sans", serif;
    font-size:15px;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/*================ HEADER ================*/

#header{

    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    padding:25px 0;
    transition:.45s ease;

}

#header .container{

    width:95%;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;

}

/*=========== LOGO ===========*/

.logo a{

    display:flex;
    align-items:center;
    gap:14px;

}

.logo img{
    width:80px;
    height:80px;
    border-radius:50%;
}


/*=========== NAVIGATION ===========*/

nav ul{

    display:flex;
    gap:45px;
    font-family: "open sans", serif;

}

nav ul li a{

    position:relative;

    color:#fff;

    font-size:15px;

    font-weight:500;

    transition:.4s;

}

nav ul li a::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:-8px;

    width:0;

    height:2px;

    background:#caa45d;

    transform:translateX(-50%);

    transition:.4s;

}

nav ul li a:hover{

    color:#ffd700;

}

nav ul li a:hover::after{

    width:100%;

}

/*=========== ICONS ===========*/

.header-icons{

    display:flex;
    align-items:center;
    gap:22px;

}

.header-icons a{

    color:#fff;

    font-size:18px;

    transition:.4s;

}

.header-icons a:hover{

    color:#caa45d;

}

.cart{

    position:relative;

}

.cart span{

    position:absolute;
    top:-8px;
    right:-10px;
    width:20px;
    height:20px;
    border-radius:50%;
    background:#556b2f;
    color:#fff;
    font-size:16px;
    display:flex;
    line-height:18px;
    justify-content:center;

}

/*================ STICKY ================*/

#header.sticky{

    position:fixed;

    background:#fff;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

    padding:18px 0;

}

#header.sticky .logo-text h2{

    color:#2f2f2f;

}

#header.sticky nav ul li a{

    color:#333;

}

#header.sticky .header-icons a{

    color:#333;

}

#header.sticky nav ul li a:hover,
#header.sticky .header-icons a:hover{

    color:#5D7A32;

}
@media(max-width:768px){
 .logo img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
}
}

/*footer*/
.footer{

    background:#26381E;
    color:#fff;
    padding:90px 0 30px;

}

.footer .container{

    width:90%;
    margin:auto;

}

.footer-top{

    display:grid;
    grid-template-columns:2fr 1fr 1fr 2fr;
    gap:20px;

}

.footer h2{

    font-family:"Cormorant Garamond",serif;
    font-size:42px;
    color:#fff;
    margin-bottom:20px;

}

.footer h4{

    font-family:"Cormorant Garamond",serif;
    font-size:28px;
    margin-bottom:25px;
    color:#fff;

}

.footer p{

    color:#d7d7d7;
    line-height:1.9;

}

.footer ul{

    list-style:none;
    padding:0;

}

.footer ul li{
    margin-bottom:15px;
    font-family: "Open Sans", serif;
}

.footer ul li a{

    color:#d7d7d7;
    text-decoration:none;
    transition:.3s;

}

.footer ul li a:hover{

    color:#c6a257;
    padding-left:8px;

}

.social-links{

    display:flex;
    gap:15px;
    margin-top:30px;

}

.social-links a{

    width:45px;
    height:45px;

    border:1px solid rgba(255,255,255,.2);

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    color:#fff;

    transition:.35s;

}

.social-links a:hover{

  background: #f7f7f2;
  border-color: #c6a257;
  transform: translateY(-5px);
  color: #26381e;

}

.footer-contact p{

    display:flex;
    gap:10px;
    margin-bottom:10px;

}

.footer-contact i{

    color:#c6a257;
    margin-top:5px;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.12);

    margin-top:70px;

    padding-top:25px;

    text-align:center;

}

.footer-bottom p{

    color:#bfbfbf;

}

@media(max-width:991px){

.footer-top{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:768px){

.footer-top{

grid-template-columns:1fr;

}

.footer{

text-align:center;

}

.social-links{

justify-content:center;

}

.footer-contact p{

justify-content:center;

}

}

/*Hero section*/
.hero {
    position: relative;
    height: 100vh;
    background: url('../img/hero.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(to right,
    rgba(0,0,0,.70),
    rgba(0,0,0,.35),
    rgba(0,0,0,.15));

}

.hero .container{

    width:90%;

    margin:auto auto 80px;

    position:relative;

    z-index:2;

}

.hero-content{

    max-width:650px;

    color:#fff;

}

.hero-subtitle{

    display:inline-block;

    color:#ffd700;

    font-size:18px;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:10px;

}

.hero h1{

    font-family:"Cormorant Garamond",serif;

    font-size:82px;

    font-weight:600;

    line-height:1;

    margin-bottom:25px;

}

.hero p{
 font-size: 15px;
  line-height: 1.5;
  color: #f3f3f3;
  margin-bottom: 25px;
  max-width: 520px;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.btn-primary{

    background:#556B2F;

    color:#fff;

    padding:10px 30px;

    border-radius:40px;

    transition:.4s;

    font-weight:500;

}

.btn-primary:hover{

    background:#556B2F;
    box-shadow:0 3px 20px rgba(85, 107, 47, 0.81);

}

.btn-outline{

    border:1px solid rgba(255,255,255,.5);

    color:#fff;

    padding:10px 30px;

    border-radius:40px;

    transition:.4s;

}

.btn-outline:hover{

    background:#fff;

    color:#222;

}

.hero-scroll{

    position:absolute;

    left:50%;

    bottom:35px;

    transform:translateX(-50%);

    display:flex;

    flex-direction:column;

    align-items:center;

    color:#fff;

    gap:10px;

    z-index:3;

}

.hero-scroll span{

    font-size:13px;

    letter-spacing:3px;

    text-transform:uppercase;

}

.hero-scroll i{

    animation:scrollDown 1.8s infinite;

    font-size:18px;

}

@keyframes scrollDown{

    0%{

        transform:translateY(0);

        opacity:1;

    }

    100%{

        transform:translateY(18px);

        opacity:0;

    }

}

@media(max-width:991px){

.hero h1{

font-size:60px;

}

.hero p{

font-size:16px;

}

}

@media(max-width:768px){

.hero{

text-align:center;

}

.hero-content{

margin:auto;

}

.hero-buttons{

justify-content:center;

flex-wrap:wrap;

}

.hero h1{

font-size:46px;

}

.hero-subtitle{

font-size:15px;

}
}

/*Categories*/
.categories{

    padding:50px 0;
    background:#faf8f3;

}

.section-title{

    text-align:center;
    margin-bottom:60px;

}

.section-title span{

    color:#556B2F;
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:14px;
    font-weight:600;

}

.section-title h2{

    font-family:"Cormorant Garamond",serif;
    font-size:55px;
    margin:5px 0;
    color:#222;
    font-weight:600;

}

.section-title p{

    color:#777;
    max-width:650px;
    margin:auto;
    line-height:1.8;

}

.category-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    grid-auto-rows:50vh;
    gap:10px;

}

.category-card{

    position:relative;
    border-radius:15px;
    overflow:hidden;
    cursor:pointer;

}
.card1{
    grid-column:span 2;
}

.card2{
    grid-column:span 1;
}

.card3{
    grid-column:span 1;
}

.card4{
    grid-column:span 2;
}
.category-card img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;

}

.category-card:hover img{

    transform:scale(1.08);

}

.overlay{

    position:absolute;
    inset:0;

    background:linear-gradient(to top,
    rgba(0,0,0,.75),
    rgba(0,0,0,.15));

}

.content{

    position:absolute;
    left:35px;
    bottom:35px;
    color:#fff;

}

.content h3 {
  font-family: "Cormorant Garamond",serif;
  font-size: 30px;
  margin-bottom: 5px;
}

.content p{

    font-size:15px;
    color:#eee;
    margin-bottom:15px;

}

.content a{

    display:inline-block;
    color:#fff;
    border:1px solid rgba(255,255,255,.4);
    padding:10px 20px;
    border-radius:40px;
    transition:.35s;

}

.content a:hover{

    background:#556B2F;
    border-color:#556B2F;

}

@media(max-width:991px){

.category-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.category-grid{
grid-auto-rows: 30vh;
grid-template-columns:repeat(2,1fr);

}

.section-title h2{
font-size:42px;

}
.content a{
    display:inline-block;
    color:#fff;
    padding: 7px 10px;
    font-size: 12px;
    font-family: open sans;
}
.content h3 {
  font-family: "Cormorant Garamond",serif;
  font-size: 22px;
  margin-bottom: 3px;
}
.content p {
  font-size: 12px;
  color: #eee;
  margin-bottom: 10px;
}
 .content {
    position: absolute;
    left: 7px;
    bottom: 15px;
    color: #fff;
  }

}

/*About section*/
.about{
    padding:100px 0;
    background:#fff;
}
.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}
.about-images{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:10px;
}
.about-img{
    overflow:hidden;
    border-radius:25px;
}
.about-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}
.about-img:hover img{
    transform:scale(1.08);
}
.img1{
    height:100%;
     margin-top: 80px;
}
.img2{
  aspect-ratio: 1/1;
}
.about-content span{
    color:#556B2F;
    text-transform:uppercase;
    letter-spacing:3px;
    font-weight:600;
    font-size:14px;
}
.about-content h2{
    font-family:"Cormorant Garamond",serif;
    font-size:50px;
    color:#222;
    margin:8px 0 20px;
    line-height:1.1;
}
.about-content p{
    color: #444;
  line-height: 1.5;
  margin-bottom: 10px;
}
.about-features{
    margin:35px 0;
}
.feature{
    display:flex;
    gap:20px;
    margin-bottom:25px;
}
.feature i{
    width:50px;
    height:50px;
    background:#eef3e6;
    color:#556B2F;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}
.feature h4{
    font-family:"Cormorant Garamond",serif;
    font-size: 20px;
    margin-bottom: 0;
}
.feature p{
    margin:0;
}
.about-btn{
    display:inline-block;
    padding:12px 25px;
    background:#556B2F;
    color:#fff;
    border-radius:40px;
    transition:.3s;
}
.about-btn:hover{
    background:#556B2F;
    box-shadow: 0px 0px 30px rgba(70, 93, 29, 0.6);
}
@media(max-width:991px){
.about-grid{
grid-template-columns:1fr;
}
.about-images{
order:2;
}
.about-content{
order:1;
}
}

/*Features*/
.why-choose{
    padding:40px 0;
    background:#f8fbf3;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#556B2F;
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:14px;
    font-weight:600;
}

.section-title h2{
    font-family:"Cormorant Garamond",serif;
    font-size:55px;
    color:#222;
    margin:5px 0;
}

.promise-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.promise-box{
    background:#fff;
    border-radius:25px;
    padding: 20px;
    transition:.4s;
    box-shadow: 0 10px 20px rgba(0,0,0,.06);
}

.promise-box:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.09);
}

.promise-box.active{
    border:1px solid #d8c28b;
}

.icon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#eef4e6;
    color:#556B2F;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    margin-bottom:10px;
}

.promise-box:hover .icon{
    background:#556B2F;
    color:#fff;
}

.promise-box h3{
    font-family:"Cormorant Garamond",serif;
    font-size:25px;
    color:#222;
    margin-bottom:10px;
}

.promise-box p{
    color:#666;
    line-height:1.5;
    font-size:15px;
    margin-bottom:0;
}

@media(max-width:991px){
    .promise-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:767px){
    .promise-grid{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:42px;
    }

    .section-title {
  text-align: center;
  margin-bottom: 40px;
}
}

/*collections*/
.products{
    padding:60px 0;
    background:#a0c75d1f;
}
.product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    column-gap: 20px;
    row-gap: 40px;
}
}
.product-card{
    transition:.4s;
}
.product-image{
    position:relative;
    border-radius:15px;
    overflow:hidden;
    background:#fff;
}
.product-image img{
    width:100%;
    height:400px;
    object-fit:cover;
    display:block;
    transition:.5s;
}
.product-card:hover .product-image img{
    transform:scale(1.08);
}
.discount{
    position:absolute;
    top:18px;
    left:18px;
    background:#d4a017;
    color:#fff;
    font-size:13px;
    font-weight:600;
    padding:8px 15px;
    border-radius:30px;
    z-index:2;
}
.product-icons{
    position:absolute;
    top:18px;
    right:-70px;
    display:flex;
    flex-direction:column;
    gap:12px;
    transition:.35s;
    z-index:2;
}
.product-card:hover .product-icons{
    right:18px;
}
.product-icons a{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(51, 51, 51);
  font-size: 15px;
  text-decoration: none;
  transition: 0.35s;
}
.product-icons a:hover{
    background:#556B2F;
    color:#fff;
}
.product-info{
    padding:20px 5px 0;
}
.rating{
    display:flex;
    align-items:center;
    gap:3px;
    color:#d4a017;
    font-size:10px;
    margin-bottom:8px;
}
.rating span{
    color:#777;
    margin-left:6px;
}
.product-info h3{
    font-family:"Cormorant Garamond",serif;
    font-size:20px;
    color:#222;
    margin-bottom:5px;
    line-height:1.1;
    font-weight: 600;
}
.price{
    display:flex;
    align-items:center;
    gap:10px;
    font-family: open sans;
}
.new-price{
    color:#556B2F;
    font-size:20px;
    font-weight:600;
}
.old-price{
    color:#888;
    text-decoration:line-through;
    font-size:15px;
}
@media(max-width:1199px){
    .product-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:767px){
    .products{
        padding:60px 0 40px;
    }
    .section-title h2{
        font-size:42px;
    }
    .product-grid {
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
  }
    .product-image img{
        height:auto;
    }
    .product-info h3{
        font-size:20px;
    }
    .new-price{
        font-size:20px;
    }
    .old-price{
        font-size:15px;
    }
    .product-icons{
        right:10px;
        opacity:1;
        gap:10px;
    }

   .product-icons a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(51, 51, 51);
    font-size: 13px;
    text-decoration: none;
    transition: 0.35s;
  }
}

/*Delivery*/
.features{
    padding:80px 0;
    background:#f7f8f2;
    position:relative;
}

.features-wrapper{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    padding:0 1%;
}

.feature-item{
    position:relative;
    background:#fcfbf8;
    border:1px solid #e7e4d8;
    border-radius:28px;
    padding:20px;
    overflow:hidden;
    transition:.35s;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

.feature-item:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border-color:#556B2F;
}

.feature-icon{
   width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #EEF4E6;
  color: #556B2F;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-number{
    position:absolute;
    top:10px;
    right:20px;
    font-family:"Cormorant Garamond",serif;
    font-size:72px;
    font-weight:700;
    color:#ecebdd;
    line-height:1;
    user-select:none;
}

.feature-item h4{
    font-family:"Cormorant Garamond",serif;
    font-size:30px;
    color:#222;
    margin-bottom:5px;
    font-weight:600;
}

.feature-item p{
    font-size:15px;
    color:#666;
    line-height:1.5;
}

.arrow{
    display:none;
}

@media(max-width:991px){

.features-wrapper{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.features{
position:relative;
overflow:hidden;
padding:50px 0;
}

.features-wrapper{
display:flex!important;
transition:transform .35s ease;
padding:0;
gap:15px;
background:transparent;
}

.feature-item{
flex:0 0 100%!important;
max-width:100%!important;
margin:0!important;
padding:20px 25px;
box-sizing:border-box;
}

.feature-number{
font-size:58px;
top:20px;
right:20px;
}

.feature-item h4{
font-size:32px;
}

.feature-item p{
font-size:16px;
margin-bottom:0;
}

.arrow{
display:block;
position:absolute;
top:50%;
transform:translateY(-50%);
background:#EEF4E6;
color:#556B2F;
border:none;
width:30px;
height:30px;
border-radius:50%;
cursor:pointer;
z-index:100;
}

.arrow.left{
left:5px;
}

.arrow.right{
right:5px;
}
}

/*CTA*/
.cta{
    padding:100px 0;
    position:relative;
}
.cta .container{
    position:relative;
    z-index:2;
    display:flex;
    justify-content:flex-end;
}
.cta .row{
    column-gap:30px;
    flex-wrap:nowrap;
    align-items:center;
}
.ctaleft img{
    width:100%;
    border-radius:15px;
}
.ctaright{

}

.cta-content span{
    color:#40541C;
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:14px;
    font-weight:600;
}
.cta-content h2{
    font-family:"Cormorant Garamond",serif;
    font-size:60px;
    color:#222;
    margin:15px 0;
    line-height:1.1;
}
.cta-content p{
    font-size: 15px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 30px;
}
.cta-btn{
    display:inline-block;
    background:#556B2F;
    color:#fff;
    padding:10px 20px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.35s;
}
.cta-btn:hover{
    background:#3f5123;
    transform:translateY(-3px);
}
@media(max-width:991px){
.cta{
padding:80px 0;
background-position:30% center;
}
.cta::before{
background:rgba(248,245,238,.82);
}
.cta .container{
justify-content:center;
}
.cta-content{
width:100%;
text-align:center;
}
.cta-content h2{
font-size:46px;
}
}
@media(max-width:767px){
.cta{
padding:60px 0;
}
.cta .row{
    row-gap:30px;
    flex-wrap:nowrap;
    align-items:center;
    flex-direction:column;
}
.cta-content h2{
font-size:38px;
}
.cta-content p{
font-size:16px;
}
.cta-btn{
padding:15px 34px;
}
}
.testimonial-slider{
    margin-top:45px;
}

.testimonial-item{
    display:none;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(8px);
    border-radius:18px;
    min-height:260px;
    padding:25px;
    border:1px solid rgba(85,107,47,.15);
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.testimonial-item.active{
    display:block;
    animation:fade .35s ease;
}

.stars{
    color:#d4af37;
    margin-bottom:15px;
}

.stars i{
    margin-right:2px;
}

.testimonial-item p{
    font-size:16px;
    color:#555;
    line-height:1.8;
    margin-bottom:20px;
    font-style:italic;
}

.testimonial-user{
    display:flex;
    align-items:center;
    gap:15px;
}

.testimonial-user img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
}

.testimonial-user h5{
    margin:0;
    font-size:18px;
    font-family:"Cormorant Garamond",serif;
    color:#222;
}

.testimonial-user span{
    color:#777;
    font-size:14px;
}

.testimonial-nav{
    display:flex;
    gap:12px;
    margin-top:20px;
}

.testimonial-nav button{
    width:40px;
    height:40px;
    border:none;
    border-radius:50%;
    background:#556B2F;
    color:#fff;
    cursor:pointer;
    transition:.3s;
}

.testimonial-nav button:hover{
    background:#3f5123;
}

@keyframes fade{
from{opacity:0;transform:translateY(10px);}
to{opacity:1;transform:translateY(0);}
}
/*Contact Page*/
.breadcrumb-section{
padding:100px 0 80px;
background:linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),url('/Html/img/cat1.png') center/cover;
text-align:center;
}
.breadcrumb-content span{
color:#d8b04c;
letter-spacing:3px;
text-transform:uppercase;
font-size:14px;
}
.breadcrumb-content h1{
font-family:"Cormorant Garamond",serif;
font-size:70px;
color:#fff;
margin:15px 0;
}
.breadcrumb-content ul{
display:flex;
justify-content:center;
align-items:center;
gap:12px;
padding:0;
margin:0;
list-style:none;
}
.breadcrumb-content ul li,.breadcrumb-content ul li a{
color:#fff;
text-decoration:none;
font-size:17px;
}

.contact-page{
padding:90px 0;
background:#f8f8f3;
}

.contact-info,.contact-form{
background:#fff;
padding:15px 30px;
border-radius:25px;
height:100%;
box-shadow:0 15px 45px rgba(0,0,0,.05);
}

.section-tag{
display:inline-block;
color:#556B2F;
letter-spacing:3px;
text-transform:uppercase;
font-size:14px;
margin-bottom:10px;
}

.contact-info h2,.contact-form h2{
font-family:"Cormorant Garamond",serif;
font-size:30px;
margin-bottom:10px;
color:#222;
}

.contact-info>p{
color:#666;
line-height:1.6;
margin-bottom:25px;
}

.info-box{
display:flex;
gap:20px;
margin-bottom:20px;
}

.info-box .icon{
width:40px;
height:40px;
background:#556B2F;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:15px;
flex-shrink:0;
}

.info-box h5{
font-family:"Cormorant Garamond",serif;
font-size:20px;
margin-bottom:0px;
color:#222;
}

.info-box p{
margin:0;
color:#666;
line-height:1.6;
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:16px 20px;
border:1px solid #ddd;
border-radius:12px;
outline:none;
transition:.3s;
}

.contact-form input:focus,
.contact-form textarea:focus{
border-color:#556B2F;
}

.theme-btn{
padding:15px 40px;
border:none;
background:#556B2F;
color:#fff;
border-radius:50px;
font-weight:600;
transition:.3s;
}

.theme-btn:hover{
background:#445523;
}

.map-section iframe{
width:100%;
height:500px;
border:none;
display:block;
}

@media(max-width:991px){

.breadcrumb-content h1{
font-size:52px;
}

.contact-info,
.contact-form{
padding:35px;
}

.contact-info h2,
.contact-form h2{
font-size:40px;
}

}

@media(max-width:767px){

.breadcrumb-section{
padding:90px 0 60px;
}

.breadcrumb-content h1{
font-size:42px;
}

.contact-page{
padding:60px 0;
}

.contact-info,
.contact-form{
padding:25px;
}

.contact-info h2,
.contact-form h2{
font-size:34px;
}

.info-box{
flex-direction:column;
gap:15px;
}

.map-section iframe{
height:350px;
}

}

/*Faq*/
.faq-section{
    padding:40px 0;
    background:#faf8f3;
}

.faq-wrapper{
    max-width:900px;
    margin:60px auto 0;
}

.faq-item{
    background:#fff;
    border:1px solid #ece8df;
    border-radius:18px;
    margin-bottom:18px;
    overflow:hidden;
    transition:.35s;
}

.faq-item.active{
    border-color:#556B2F;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.faq-question{
    width:100%;
    background:none;
    border:none;
    padding:15px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
}

.faq-question span{
    font-family:"Cormorant Garamond",serif;
    font-size:32px;
    color:#222;
    font-weight:600;
    text-align:left;
}

.faq-question i{
    width:42px;
    height:42px;
    background:#556B2F;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    flex-shrink:0;
    transition:.3s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.faq-answer p{
    padding:0 20px;
    color:#666;
    line-height:1.6;
    font-size:16px;
}

.faq-item.active .faq-answer{
    max-height:220px;
}

@media(max-width:768px){

.faq-section{
padding:60px 0;
}

.faq-wrapper{
margin-top:40px;
}

.faq-question{
padding:22px;
}

.faq-question span{
font-size:24px;
padding-right:15px;
}

.faq-answer p{
padding:0 22px 22px;
}

}
/*Shop page*/
.shop-page{
padding:80px 0;
background:#faf8f3;
}
.shop-page .container{
max-width:90%;
margin:auto;
}

.shop-sidebar{
position:sticky;
top:50px;
background:#fff;
border:1px solid #ebe6da;
}

.filter-box{

border-radius:18px;
padding:20px;
margin-bottom:25px;
}

.filter-box h3{
font-family:"Cormorant Garamond",serif;
font-size:34px;
margin-bottom:5px;
color:#26381E;
}

.filter-box ul{
margin:0;
padding:0;
list-style:none;
padding-left: 15px;
}

.filter-box ul li{
padding:14px 0;
border-bottom:1px solid #eee;
}

.filter-box ul li:last-child{
border:none;
}

.filter-box ul li a{
text-decoration:none;
color:#555;
transition:.3s;
font-size: 16px;
font-family: "Open Sans", serif;
}

.filter-box ul li a:hover{
color:#111;
padding-left:8px;
}

.shop-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 0px 5px 10px;
  border-radius: 18px;
}

.shop-top p{
margin:0;
color:#666;
}

.shop-top select{
padding:10px 20px;
border:1px solid #ddd;
border-radius:40px;
outline:none;
cursor:pointer;
}

.productgrid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.shop-pagination{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    margin-top:60px;
}

.page-btn{
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    border:1px solid #e5e5e5;
    border-radius:50%;
    background:#fff;
    color:#555;
    font-weight:600;
    transition:.35s;
    font-size: 15px;
    font-family: open sans;
}

.page-btn:hover{
    background:#556B2F;
    border-color:#556B2F;
    color:#fff;
}

.page-btn.active{
    background:#556B2F;
    border-color:#556B2F;
    color:#fff;
}

.page-btn.next{
    width:52px;
    height:52px;
}
.dots{
    font-size:22px;
    color:#777;
    letter-spacing:4px;
    font-weight:600;
}

@media(max-width:767px){

.shop-pagination{
    gap:8px;
    margin-top:40px;
}

.page-btn{
    width:42px;
    height:42px;
    font-size:15px;
}

.page-btn.next{
    width:44px;
    height:44px;
}

}

@media(max-width:991px){

.shop-sidebar{
position:static;
margin-bottom:40px;
}

.productgrid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:767px){

.shop-page{
padding:40px 0;
}

.shop-top{
flex-direction:column;
align-items:flex-start;
gap:15px;
}

.shop-top select{
width:100%;
}

.productgrid{
grid-template-columns:1fr 1fr;
gap:20px;
}

.filter-box{
padding:2px;
}

.filter-box h3{
font-size:28px;
}

}

/*Product Details*/
.product-details{
padding:60px 0 0px;
background:#faf8f3;
}

.main-image{
border-radius:20px;
overflow:hidden;
background:#fff;
border:1px solid #eee;
}

.main-image img{
width:100%;
display:block;
}

.thumb-images{
display:flex;
gap:15px;
margin-top:20px;
}

.thumb-images img{
width:90px;
height:110px;
object-fit:cover;
border-radius:12px;
cursor:pointer;
border:2px solid transparent;
transition:.3s;
}

.thumb-images img:hover{
border-color:#556B2F;
}

.productinfo{
padding-left:35px;
}

.category{
color:#556B2F;
font-weight:600;
letter-spacing:2px;
text-transform:uppercase;
}

.productinfo h2{
font-family:"Cormorant Garamond",serif;
font-size:52px;
margin:10px 0;
}

.rating{
color:#d4af37;
margin-bottom:5px;
}

.rating span{
color:#666;
margin-left:8px;
}

.price{
font-size:34px;
font-weight:700;
color:#556B2F;
margin-bottom:20px;
}

.price del{
font-size:22px;
color:#999;
margin-left:15px;
}

.productinfo p{
color:#666;
line-height:1.9;
margin-bottom:30px;
}

.quantity{
display:flex;
align-items:center;
gap:10px;
margin-bottom:30px;
}

.quantity button{
width:45px;
height:45px;
border:none;
background:#556B2F;
color:#fff;
border-radius:50%;
cursor:pointer;
}

.quantity input{
width:60px;
height:45px;
text-align:center;
border:1px solid #ddd;
border-radius:8px;
}

.buttons{
display:flex;
gap:20px;
margin-bottom:35px;
}

.cart-btn,
.wish-btn{
padding:16px 30px;
border-radius:50px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.cart-btn{
background:#556B2F;
color:#fff;
}

.wish-btn{
border:2px solid #556B2F;
color:#556B2F;
}

.cart-btn:hover{
background:#445523;
color:#fff;
}

.wish-btn:hover{
background:#556B2F;
color:#fff;
}

.product-meta{
list-style:none;
padding:0;
margin:0;
}

.product-meta li{
padding:10px 0;
border-bottom:1px solid #eee;
}

@media(max-width:991px){

.productinfo{
padding-left:0;
margin-top: 15px;
}

}

@media(max-width:767px){

.product-details{
padding:60px 0 40px;
}

.productinfo h2{
font-size:38px;
}

.thumb-images{
justify-content:center;
flex-wrap:wrap;
}

.thumb-images img{
width:70px;
height:90px;
}

.buttons{
flex-direction:column;
}

.cart-btn,
.wish-btn{
text-align:center;
}
}

/*Cart*/
.cart-overlay{
position:fixed;
inset:0;
background:rgba(0,0,0,.45);
opacity:0;
visibility:hidden;
transition:.35s;
z-index:9998;
}

.cart-overlay.active{
opacity:1;
visibility:visible;
}

.cart-sidebar{
position:fixed;
top:0;
right:-480px;
width:460px;
height:100vh;
background:#fff;
box-shadow:-10px 0 30px rgba(0,0,0,.15);
z-index:9999;
display:flex;
flex-direction:column;
transition:.4s;
}

.cart-sidebar.active{
right:0;
}

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

.cart-header h3{
font-family:"Cormorant Garamond",serif;
font-size:34px;
margin:0;
}

.close-cart{
cursor:pointer;
font-size:24px;
color:#555;
}

.cart-body{
flex:1;
overflow-y:auto;
padding:20px;
}

.cart-item{
display:flex;
gap:15px;
margin-bottom:15px;
padding-bottom:15px;
border-bottom:1px solid #eee;
position:relative;
}

.cart-item img{
width:90px;
height:100px;
object-fit:cover;
border-radius:12px;
}

.cart-info{
flex:1;
}

.cart-info h4{
font-size:18px;
margin-bottom:10px;
font-family:"Cormorant Garamond",serif;
}

.cart-info span{
display:block;
font-weight:600;
color:#556B2F;
margin-bottom:15px;
}

.cart-qty{
display:flex;
align-items:center;
gap:8px;
}

.cart-qty button{
width:32px;
height:32px;
border:none;
background:#556B2F;
color:#fff;
border-radius:50%;
cursor:pointer;
}

.cart-qty input{
width:40px;
text-align:center;
border:1px solid #ddd;
border-radius:6px;
height:32px;
}

.remove-item{
position:absolute;
right:0;
top:0;
color:#888;
font-size:18px;
}

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

.subtotal{
display:flex;
justify-content:space-between;
font-size:20px;
margin-bottom:20px;
}

.view-cart,
.checkout-btn{
display:block;
text-align:center;
padding:15px;
border-radius:40px;
text-decoration:none;
font-weight:600;
margin-bottom:15px;
transition:.3s;
}

.view-cart{
border:2px solid #556B2F;
color:#556B2F;
}

.checkout-btn{
background:#556B2F;
color:#fff;
}

.view-cart:hover{
background:#556B2F;
color:#fff;
}

.checkout-btn:hover{
background:#445523;
}
.cart-body{
    flex:1;
    overflow-y:auto;
    overflow-x:hidden;
    padding:15px;

    /* Firefox */
    scrollbar-width:thin;
    scrollbar-color:#556B2F #f2f2f2;
}

/* Chrome, Edge, Safari */
.cart-body::-webkit-scrollbar{
    width:3px;
}

.cart-body::-webkit-scrollbar-track{
    background:#f2f2f2;
    border-radius:10px;
}

.cart-body::-webkit-scrollbar-thumb{
    background:#556B2F;
    border-radius:10px;
}

@media(max-width:768px){

.cart-sidebar{
width:100%;
right:-100%;
}

}

/*Mobile Menu bar*/
.menu-toggle{
    display:none;
}

.mobile-menu{
    position:fixed;
    top:0;
    left:-320px;
    width:300px;
    height:100vh;
    background:#111;
    z-index:99999;
    transition:.4s;
    box-shadow:5px 0 25px rgba(0,0,0,.12);
}

.mobile-menu.active{
    left:0;
}

.mobile-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:99998;
}

.mobile-overlay.active{
    opacity:1;
    visibility:visible;
}

.mobile-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px;
    border-bottom:1px solid #666;
}

.mobile-top img{
    width:70px;
    border-radius:50%;
}

.close-menu{
    font-size:28px;
    color:#556B2F;
    cursor:pointer;
}

.mobile-menu ul{
    list-style:none;
    padding:30px 25px;
    margin:0;
}

.mobile-menu ul li{
    margin-bottom:25px;
}

.mobile-menu ul li a{
    text-decoration:none;
    color:#fff;
    font-size:20px;
    font-weight:500;
    transition:.3s;
}

.mobile-menu ul li a:hover{
    color:#556B2F;
    padding-left:10px;
}

@media(max-width:768px){

    nav{
        display:none;
    }

    .header-icons a:nth-child(2){
        display:none;
    }

    .menu-toggle{
        display:inline-flex;
        align-items:center;
        justify-content:center;
    }

}

/*Category filters*/
.mobile-filter-btn{
    display:none;
}

.filter-header{
    display:none;
}

@media(max-width:768px){

.mobile-filter-btn{
    display:block;
    margin-bottom:20px;
}

.mobile-filter-btn a{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: #556B2F;
    color: #fff;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    justify-content: space-between;
}

.shop-sidebar{
    position:fixed;
    left:-320px;
    top:0;
    width:300px;
    height:100vh;
    background:#fff;
    z-index:99999;
    overflow-y:auto;
    transition:.35s;
    padding:25px;
}

.shop-sidebar.active{
    left:0;
}

.filter-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
}

.filter-header h3{
    margin:0;
    font-family:"Cormorant Garamond",serif;
    font-size:32px;
}

.close-filter{
    font-size:28px;
    color:#556B2F;
    cursor:pointer;
}

.filter-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:99998;
}

.filter-overlay.active{
    opacity:1;
    visibility:visible;
}

}