*, 
::before,
::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;

}

:root {
    --primary-color:#b88E2f;
    --secondary-color:#FFF3E3;
    
}
html,
body {
    font-family: 'Poppins','Montserrat', sans-serif;
    margin: 0px;
}
a{
    text-decoration: none;
}
ul{
    list-style-type: none;
}

.navbar{
  width: 100%;
  background: #fff;
  position: fixed;
  z-index: 1000;
}

.navbar__container{
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
 
  margin-bottom: 5px;
}
.navbar__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.navbar__logo-icon {
    width: 50px;
    height: 32px;
}
.navbar__logo-text {
    font-size: 24px;
    font-weight: 700;
    line-height: 41px;
}
.menu{
  display: flex;
  gap: 40px;
  align-items: center;
}

.menu a{
  text-decoration: none;
  color: #000;
  font-size: 20px;
  font-weight: 500;
}

.nav__icons {
    display: flex;
    gap: 25px;
    align-items: center;

}

.hero {
   
    height: 100vh;
    width: 100%;
    background-image: url("images/img-2.jpg"); 
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    margin-top: 0px;
   
}

.hero__container {
     width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    padding: 0 40px;
}

.hero__content {
    background-color:var(--secondary-color);
    padding: 84px;
    width: 643px;
    height: 443px;
    border-radius: 10px;
}

.hero__subtitle {
    font-size: 16px;
    letter-spacing: 3px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
    display: inline-block;
}

.hero__title {
    font-size: 52px;
    font-weight: 700;
    color:var(--primary-color);
    margin-bottom: 20px;
    line-height: 65px;
}

.hero__description {
    font-size: 18px;
    font-weight:500;
    color: #555;
    margin-bottom: 30px;
    line-height: 28px;
}

.hero__btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
   text-transform: uppercase;
}
/*Range Section */

.range {
    width: 1440px;
    padding: 80px 20px;
    background-color: #f5f5f5;
    width: 100%;
}

.range__container {
    max-width: 1440px;
    margin: 0 auto;
    text-align: center;
}

.range__header {
    margin-bottom: 60px;
}

.range__title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.range__subtitle {
    font-size: 16px;
    color: #666;
}

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

.range__image-wrapper {
    border-radius: 10px;
    overflow: hidden;
}

.range__image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}


.range__caption {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 600;
    font-family: inherit;
}
/*Product Section */

.products {
  padding: 80px 20px;
  background: #f5f5f5;
}

.products__container {
  max-width: 1440px;
  margin: auto;
}

.products__title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
}


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



.product {
  background: #fff;
  position: relative;
  overflow: hidden;
}




.product__image-wrapper {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.product__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



.product__badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 6px 12px;
  font-size: 12px;
  color: #fff;
  border-radius: 50px;
}

.product__badge--discount {
  background: #e97171;
}

.product__badge--new {
  background: #2ec1ac;
}


.product__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  opacity: 0;
  transition: 0.3s;
}

.product:hover .product__overlay {
  opacity: 1;
}
.product__actions span {
    align-items: center;
    display: inline-flex;
    gap: 6px;
}


.product__btn {
  background: #fff;
  padding: 12px 25px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}


.product__actions {
  display: flex;
  gap: 15px;
}

.product__actions span {
  color: #fff;
  font-size: 14px;
}


.product__info {
  padding: 20px;
}

.product__name {
  font-size: 20px;
  font-weight: 600;
}

.product__desc {
  font-size: 14px;
  color: #777;
  margin: 8px 0;
}

.product__price {
  font-size: 18px;
  font-weight: 600;
}

.product__old-price {
  margin-left: 10px;
  text-decoration: line-through;
  color: #aaa;
}


/* FOOTER */

.products__footer {
  text-align: center;
  margin-top: 40px;
}

.products__show-more {
  padding: 12px 30px;
  border: 1px solid #b88e2f;
  background: transparent;
  color: #b88e2f;
  cursor: pointer;
}
/* INSPIRATION SECTION  */

.inspiration {

width:100%;

background: #f3eee8;

}

.inspiration__container {

max-width: 1440px;

display: grid;

grid-template-columns: 1fr 1.5fr;

gap: 80px;

align-items: center;

margin: 0 auto;

}

.inspiration__content {

padding-left: 50px;

}

.inspiration__title {

font-size: 40px;

font-weight: 700;

line-height: 1.2;

margin-bottom: 20px;

}

.inspiration__text {

font-size: 16px;

font-weight: 500;

color: #666;

margin-bottom: 30px;

max-width: 420px;

}

.inspiration__btn {

display: inline-block;

padding: 14px 30px;

background: var(--primary-color);

color: #fff;

text-decoration: none;

font-weight: 600;

font-size: 16px   ;

}

.inspiration__gallery {

position: relative;

display: flex;

gap: 30px;

align-items: flex-start;

padding-top: 50px;

}

.inspiration__main {

position: relative;

width: 60%;

display: flex;

padding-bottom: 40px;

}

.inspiration__main img {

width: 100%;

height: 582px;

object-fit: cover;

}

.inspiration__side {

position: relative;

width: 40%;

display: flex;

overflow: hidden;

gap: 1rem;

}

/* .inspiration__side img {

width: 100%;

height: 486px;

object-fit: cover;

}  */

.image-1 {

width: 70%;

height: 486px;

}

.image-2 {

width: 30%;

height: 486px;

}

.inspiration__side {

position: relative;

}

.inspiration__svg-btn {

position: absolute;

right: 60px;

top: 50%;

transform: translateY(-50%);

border: none;

background: transparent;

cursor: pointer;

}

.inspiration__overlay {

position: absolute;

bottom: 40px;

left: 40px;

display: flex;

align-items: stretch;

padding-bottom: 20px;

}

.inspiration__card {

background: #fff;

padding: 25px 35px;

width: 217px;

display: flex;

flex-direction: column;

justify-content: center;

filter: blur(0.1);

}

.inspiration__card-sub {

font-size: 14px;

color: #777;

display: flex;

align-items: center;

gap: 10px;

margin-bottom: 8px;

}

.inspiration__line {

width: 25px;

height: 1px;

background: #ccc;

display: inline-block;

}

.inspiration__card-title {

font-size: 24px;

font-weight: 700;

margin: 0;

}

.inspiration__card-btn {

width: 48px;

height: 48px;

background: #b88e2f;

border: none;

display: flex;

align-items: center;

margin-top: 80px;

justify-content: center;

cursor: pointer;

}

.inspiration__dot {

position: absolute;

bottom: 80px;

right: 200px;

}

.gallery-section {

width: 100%;

}
.gallery-section {
    width: 100%;
    margin-bottom: 5rem;
    margin-top:5rem ;   

}

.gallery-section-main {
  text-align: center;
  align-items: center;
  margin: 0 auto;
  margin-top: 40px;
  margin-bottom: 50px;
}

.gallery-section h4 {
    font-size: 20px;
  font-weight: 600;
  color: #777;
  margin-bottom: 10px;
}

.gallery-section h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 50px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-auto-rows: 120px;
  gap: 1rem;
  width: 100%;
  
}


.img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
 .img1 { 
    grid-column:1 / span 1;
    grid-row:1 / span 4; 
       }
       .img2 { 
    grid-column:2 / span 2; 
    grid-row:2 / span 3; 
   
      }
      .img3 { 
    grid-column:4 / span 2; 
    grid-row:3 / span 7; 
   
      }
      .img4 { 
    grid-column:6 / span 2;
    grid-row:2 / span 3;
      }
      .img5 { 
    grid-column:8 / span 1; 
    grid-row:1/ span 4; 
}
.img8{ 
    grid-column:1 / span 1;
    grid-row:5 / span 5; 
    
   
}
.img9 { 
    grid-column:2 / span 2;
    grid-row:5 / span 4; 
} 
.img10 { 
    grid-column:6 / span 1;
    grid-row:5 / span 4;
   
    
    
} 
.img6 {
    grid-column:7 / span 2;
    grid-row:5 / span 2; 

} 
 
  
 
.footer {
    background-color: #f5f5f5;
    width: 100%;
}
.footer__container{
    max-width: 1440px;
    padding: 60px 80px 30px;
    color: #333;
    margin: 0 auto;

}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    

}

.footer-col {
    flex: 1;
    min-width: 180px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #999;
}



.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    
}


.footer-brand p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #777;
}

.newsletter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.newsletter input {
    border: none;
    border-bottom: 1px solid #000;
    background: transparent;
    padding: 6px 0;
    outline: none;
    font-size: 14px;
    font-weight: 400;
    width: 180px;
    height: 32px;
}

.newsletter button {
    border: none;
    background: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-bottom: 1px solid #000;
    padding-bottom: 6px;
     height: 32px;
}



hr {
    margin: 20px 0 20px;
    border: none;
    border-top: 1px solid #ddd;
}

.footer-bottom {
    font-size: 16px;
    font-weight: 400;
    color: #333;
}

