*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
}

html, body{
    width: 100%;
    height: 100%;
}
.navmenu a {
    /* color: var(--nav-color); */
    color: #C39D88;
    font-size: 18px;
    padding: 0 2px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }
  .navmenu svg{
    width: 22px;
    height: 22px;
  }
  .site-branding img{
    max-width: 145px;
    height: auto;
    vertical-align: middle;
    border: 0;
  }
  .header{
    border-bottom: 1px solid #00000010;
  }
  .hero-section {
    margin: 0;
    padding: 12px;
  }
  .hero-section img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block; /* removes inline gap */
  }
  .hero-section .row {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 45px 0;
  }
  .hero-section .card{
    border: 2px solid #C39D88;
    padding: 0px;
    border-radius: 20px;
  }
  .hero-section .card-body{
    display: flex;
    text-align: start;
    align-items: center;
    gap: 15px;
    padding: 30px 20px;
  }
  .hero-section .card-body i{
    color: #C39D88;
    font-size: 40px;
    font-weight: 1000;
  }
  .card-text h5{
    font-family: 'Times New Roman', Times, serif;
    font-size: 22px;
    font-weight: 500;
  }
  .card-text p {
    font-family: 'Times New Roman', Times, serif;
    opacity: .6;
    font-size: 18px;
    font-weight: 500;
  }
  .collection{
    width: 100%;
    min-height: 120vh;
    background-color: #E2DBD0;
  }
  .collection-img {
    aspect-ratio: 4 / 5;   /* keeps shape like 400x500 */
    width: 100%;           /* fill the column width */
    max-width: 400px;    /* control how "small" the box can be */
    margin: auto;          /* center inside col */
    overflow: hidden;      /* hide overflow edges */
  }
  
  .collection-img img {
    border: none;
    border-radius: 0;
    box-shadow: none;
    height: auto;
    max-width: 100%;
  }

  .part1 h3{
    font-size: 60px;
    color: #785340;
    padding-top: 350px;
    text-align: right;
  }
  /* Product Section   */
  /* .popular-products-section {
    background-color: #f9f9f9;
  } */
  
  .section-header h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #BCA396;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 500;
  }
  .btntextgrp{
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .btntextgrp p{
    margin-bottom: .3rem;
  }

  .shopingicon svg{
   width: 15px;
   height: 15px;
  }
  .product-card {
    /* border-radius: 8px; */
    overflow: hidden;
  
    .product-image {
      width: 300px;
      height: 200px;
      padding-top: 100%; /* square aspect ratio */
      position: relative;
  
      img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }
  
    .product-details {
      padding: 36px 0px;
      .product-title {
        font-size: 1.1rem;
        color: #333;
        padding: 0;
      }
  
      .product-price {
        font-size: 1rem;
        color: black;
      }
  
      button {
        padding: 0.3rem 1.2rem;
        font-size: 0.9rem;
        border: none;
        background-color: #BCA396;
        border-radius: 50px;
        display: flex;
        text-align: center;
        justify-content: center;
        align-items: center;
        gap: 5px;
      }
    }
  }
  .product-details h5{
    font-family: 'Times New Roman', Times, serif;
    font-size: 18px;
    opacity: .6;
    margin-bottom: 0;
  }
  
  /* Responsive grid adjustments if needed */
  @media (max-width: 768px) {
    .product-card .product-details .product-title {
      font-size: 1rem;
    }
    .product-card .product-price {
      font-size: 0.9rem;
    }
  }

  .product-image {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  
  .product-image img {
    width: 100%;
    transition: opacity 0.4s ease;
    display: block;
  }
  
  .product-image .hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }
  
  .product-image:hover .default-img{
    opacity: 0;
  }
  
  .product-image:hover .hover-img{
    opacity: 1;
  }
  .product-image:hover .btntextgrp{
    padding-top: 0;
  } 
  .btntextgrp {
    padding-top:25px;
    transition: padding 0.3s ease;
  }
  
  /* When hovering on product card */
  .product-card:hover .btntextgrp {
    padding-top: 0;
  }
  
  .thumbnail {margin-bottom:6px;}

.carousel-control.left,.carousel-control.right{
  background-image:none;
  margin-top:10%;
  width:5%;
}
/* Gallery Section */
.gallery-img {
  overflow: hidden;
}
.gallery-heading h2{
  color: #BCA396;
  font-family: 'Times New Roman', Times, serif;
  font-size: 36px;
}
.galler-btn .btn{
  background-color: #BCA396;
  color: #fff;
  padding: 10px 36px;
  border-radius: 25px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 500;
}
.gallery-img img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

/* Move image upward on hover */
.gallery-img:hover img {
  transform: translateY(-15px); 
}
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  width: 100vw;
  height: 100%;
  text-align: center;
  font-size: 18px;
  background-image: url();
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-slide img {
  display: block;
  object-fit: cover;
}
/*  */
.testimonial-section {
  position: relative;
  width: 100%;
  height: 80vh; /* full height */
  overflow: hidden;
}

/* background swiper */
.testimonial-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.testimonial-bg .swiper-slide {
  background-size: cover;
  background-position: center;
}
.testimonial-bg .overlay {
  position: absolute;
  inset: 0;
  background: #bca396f5;
  z-index: 2;
}

/* content swiper */
.testimonial-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-content .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.slide-box {
  text-align: center;
  color: #fff;
  /* background-color: red; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 160px;
}
.slide-box img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}
.slide-box h3 {
  font-family: 'Times New Roman', Times, serif;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 24px;
  color: #333;
}
.slide-box p {
  font-family: 'Times New Roman', Times, serif;
  color: #57514D;
  font-size: 18px;
  line-height: 1.5;
  width: 80%;
}

/* nav buttons */
.testimonial-content .swiper-button-next,
.testimonial-content .swiper-button-prev {
  color: #fff;
}
.swiper-pagination{
  margin-bottom: 50px;
}

.paginationpart .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: #fff;   /* bullet color */
  opacity: 0.6;
}
.paginationpart .swiper-pagination-bullet-active {
  opacity: 1;
}

/* Change next/prev arrow color & size */
.paginationpart .swiper-button-next,
.paginationpart .swiper-button-prev {
  color: #777777;  /* arrow color */
  width: 30px;     /* increase clickable area */
  height: 30px;
  border: 1px solid #777777;
  font-family: "Arial Black", sans-serif; /* thicker font */
  margin: 0 150px;
}

.paginationpart .swiper-button-next::after,
.paginationpart .swiper-button-prev::after {
  font-size: 16px; /* arrow icon size */
  font-weight: 900;
}
.section-title{
  display: flex;
  align-items: center;
  gap: 20px ;
}
.popular-products-section .container{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.section-title .title-text{
  text-align: start;
  font-size: 18px;
}
.title-image img{
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.popular-products-section .col-md-3 .img{
  width: 300px;
  height: 300px;
  background-color: red;
}
.popular-products-section .col-md-3 .img img{
  width: 100%;
  height: 100%;
  object-fit: cover ;
}
.btnl{
  background-color: #171515;
  color: #fff;
}
.btni{
  background-color: #C39D88;
  color: #fff;
}
/* Footer */
/* # Global Footer */
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: #000000db;
  font-size: 18px;
  font-weight: 500;
}

.footer .footer-about p {
  font-size: 16px;
  width: 90%;
  opacity: .6;
}
.social-links input{
  outline: none;
  border: none;
}
.social-links p{
  border: 1px solid #dadada;
  border-radius: 50px;
  padding: 6px;
}
.footer .social-links  {
  font-family: 'Times New Roman', Times, serif;
  
}

.footer h4 {
  font-size: 20px;
  font-weight: 500;
  position: relative;
  padding-bottom: 12px;
  font-family: 'Times New Roman', Times, serif;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--default-color);
}

.footer .footer-contact p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.footer .copyright {
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 4px;
  font-size: 13px;
}
.social-icon{
  position: fixed;
  right: 0;
  top: 45%;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-right: 30px;
}
.social-icon .facebook, .insta{
  width: 41px;
  height: 41px;
  border-radius: 10px;
  background-color: #caa180;  
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-icon i{
  color: #fff;
  font-size: 20px;
}

