@import url('https://fonts.googleapis.com/css2?family=Quattrocento+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
  font-family: "Urbanist", sans-serif;
  background-color: #f9f9f9;
}

.header-top {
  background-color: #f8f9fa;
  font-size: 0.9rem;
}

.navbar-brand {
  font-weight: bold;
}

.header-top {
  background: rgba(16, 16, 16, 0.05);
}
a {
    color: rgb(0 142 82);
    text-decoration: underline;
}
.navbar-brand img {
  width: 200px;
}
  #moveTopBtn {
    display: none; /* Initially hidden */
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-size: 18px;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    display: flex;
  }
.header-top a {
    padding: 0px 5px;
    margin-right: 0px !important;
    color: #ffffff !important;
}
.me-auto {
  margin-left: auto !important;
}

.container-fluid.pd-rl {
  padding: 0px 40px;
}

a.btn.btn-primary {
  color: #fff !important;
}

.btn.btn-primary {
  background-color: #008d4c;
  padding: 3px 10px;
  border-radius: 3px;
  border: 0px;
}

.nav-top {
  display: flex;
  justify-content: space-between;
}

.top-left a {
  padding-right: 10px;
}

.nav-top {
  display: flex;
  justify-content: space-between;
  padding: 10px;
}
.header-top {

    background: #008e52;

}
.mob-menus {
    display: none;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: rgb(0 143 88);
}
.btn-left {
    text-align: left;
}

.btn-left {
    width: max-content;
}



@media (max-width: 1200px) {
.swiper-slide img {
    width: 100%!important;
    height: auto!important;
    object-fit: cover;
}
.swiper {
    width: 100%;
    height: 50vh!important;
}
}


@media (min-width: 992px) {
  .navbar-nav+.navbar-nav {
    margin-top: -10px;
    /* adjust spacing between rows if needed */
  }

ul.dropdown-menu.shift{
  margin-left: -60px;
}
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    flex-direction: column;
  }

  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
    display: flex !important;
    justify-content: flex-end !important;
  }


}
@media (max-width: 768px) {
  .mob-menus {
    display: block;
}
.m-right{
    display: none;
}
.product-image {
    position: relative;
    height: auto!important;

}

}



.swiper {
  width: 100%;
  height: 100vh;
}

.swiper-slide {
  position: relative;
}

.swiper-slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.slide-content {
  position: absolute;
  top: 20%;
  left: 10%;
  background: rgba(255, 255, 255, 0.85);
  padding: 30px;
  border-radius: 10px;
  max-width: 500px;
}

.slide-content h2 {
  font-size: 2rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .slide-content {
    top: 10%;
    left: 5%;
    padding: 20px;
    max-width: 90%;
  }

  .slide-content h2 {
    font-size: 1.5rem;
  }

  .swiper {
    width: 100%;
    height: auto !important;
  }
}
.item a {
    text-decoration: none;
}
.card h4 a{
  text-decoration: none;
}
.card {
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    background-color: #fff;
      padding: 20px!important;
}

.section-headers h2 {
    font-size: 28px;
    margin-bottom: 5px;
    font-weight: bold;
    color: #008e52;
  
}

.section-headers p{
  color: #888;

}
.category-section {
  padding: 80px 20px;
  text-align: center;
  background: #ffffff;
  
}

.category-title {
font-size: 28px;
    margin-bottom: 5px;
    font-weight: bold;
    color: #008e52;
}

.category-subtitle {
  color: #888;
  margin-bottom: 2.5rem;
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.category-card {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.category-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.category-card:hover .category-img {
  transform: scale(1.08);
  filter: brightness(0.5);
}

.category-content {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  transition: all 0.4s ease;
}

.category-label {
  background: white;
  color: #333;
  padding: 5px 10px;
  font-weight: 500;
  border-radius: 10px;
  font-size: 10px;
  line-height: 13px;
  display: inline-block;
  transition: transform 0.4s ease;
}

.category-viewmore {
  font-size: 13px;
  color: #fff;
  margin-top: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.category-card:hover .category-content {
  transform: translate(-50%, -135%);
}

.category-card:hover .category-viewmore {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .category-card {
    width: 120px;
    height: 120px;
  }

  .category-label {
    font-size: 9px;
    padding: 4px 15px;
  }

  .category-viewmore {
    font-size: 12px;
  }
}




section.weekly {
  padding: 80px 20px;
  background: #f9f7f4;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.section-title {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
}

.tabs {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.tab-btn {
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 8px 10px;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    color: #333;
}
.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: #000;
}

.product-card {
  transition: opacity 0.3s ease;
}

.product-card.hidden {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

@media (max-width: 768px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .tabs {
    width: 100%;
    flex-direction: column;
  }

  .tab-btn {
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #eee;
  }

  .tab-btn.active::after {
    left: 0;
    right: auto;
    width: 100%;
  }
}

.product-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.product-card {
  position: relative;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 250px;
  transition: 0.3s;
}

.product-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #4CAF50;
  color: white;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 5px;
  font-weight: bold;
  z-index: 2;
      display: none;
}

.product-details {
  padding: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.product-card:hover .product-details {
  transform: translateY(-20px);
}

.product-name {

    margin-bottom: 15px;
    font-size: 18px;
}

.category {
  font-size: 13px;
  color: #999;
  margin: 2px 0;
}

.price {
  font-size: 16px;
  color: #ff7f50;
  font-weight: 600;
}

.product-hover-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.product-card:hover .product-hover-actions {
  transform: translateY(0);
}

.product-hover-actions input.quantity {
  width: 50px;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.product-hover-actions .add-to-cart {
  padding: 6px 14px;
  background: #ff7f50;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}



section.Kitchen {
  background: #f9f7f4;
  padding: 80px 20px;
}



.brand-section {
  padding: 40px 20px;
  background: #f9f7f4;

}

.section-title {
  font-size: 28px;
  margin-bottom: 5px;
}

.section-subtitle {
  color: #777;
  margin-bottom: 30px;
}

.brand-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.brand-card {
  position: relative;
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.brand-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.brand-info {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}

.brand-logo {
  background: white;
  color: black;
  font-weight: bold;
  font-size: 14px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

.brand-logo img {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  padding: 10px;
}

.brand-name {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
}

.brand-location {
  margin: 0;
  font-size: 13px;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
  .brand-grid {
    flex-direction: column;
    align-items: center;
  }

  .brand-card {
    width: 100%;
    height: 250px;
    margin-bottom: 10px;
  }
  .product-hover-actions .add-to-cart {
    padding: 5px 10px;
}
.product-hover-actions a {
    font-size: 12px;
}

}

@media (max-width: 500px) {
.product-name {
    margin-bottom: 15px;
    font-size: 15px;
}

}





.furniture-section {
  background: #f9f7f4;
  padding: 80px 20px;

}

.section-header h2 {
    font-size: 28px;
    margin-bottom: 5px;
    font-weight: bold;
    color: #008e52;
}

.section-header p {
  color: #777;
  margin-bottom: 25px;
}

.furniture-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.product-cards {
  display: flex;
  flex: 2;
  gap: 10px;
  flex-wrap: wrap;
}

.product-card {
  position: relative;
  background: white;
  border-radius: 12px;
  width: 100%;
  margin-bottom: 20px;
  padding: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.product-card img {
  width: 100%;
  object-fit: contain;
  margin-bottom: 10px;
}

.product-info h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.category {
  font-size: 13px;
  color: #777;
}

.price {
  font-size: 14px;
  font-weight: bold;
  color: #ff6f00;
}

.wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  color: #aaa;
  font-size: 18px;
}

.featured-room {
  position: relative;
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  min-width: 300px;
  max-width: 100%;
}

.featured-room img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.featured-room .dot {
  position: absolute;
  width: 15px;
  height: 15px;
  background: white;
  border: 2px solid #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.featured-room .dot:hover {
  background: #ff6f00;
  border-color: #ff6f00;
}

/* Responsive */
@media (max-width: 768px) {
  .furniture-content {
    flex-direction: column;
    align-items: center;
  }

  .product-cards {
    justify-content: center;
  }

  

  .featured-room {
    width: 100%;
  }
}




.masonry-grid {
  column-count: 4;
  column-gap: 20px;
  padding: 20px;
  background: #f9f7f4;
}

.masonry-item {
  background: white;
  margin-bottom: 20px;
  break-inside: avoid;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
}

.masonry-item.text-box {
  padding: 20px;
  background: #dce4e6;
}

.masonry-item.text-box h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.masonry-item.text-box p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

/* Responsive Columns */
@media (max-width: 1200px) {
  .masonry-grid {
    column-count: 3;
  }
}

@media (max-width: 768px) {
  .masonry-grid {
    column-count: 2;
  }
}

@media (max-width: 480px) {
  .masonry-grid {
    column-count: 1;
  }
}


.rotating-circle img {

  animation: pendulumRotate 3s ease-in-out infinite;
  transform-origin: center center;
  /* rotate around center */
}

@keyframes pendulumRotate {
  0% {
    transform: rotate(-5deg);
  }

  50% {
    transform: rotate(5deg);
  }

  100% {
    transform: rotate(-5deg);
  }
}



.about-section {
  padding: 80px 20px;
  background: #fff;
  color: #222;
  position: relative;
}

.about-images img {
  width: 100%;
}

.about-text {
  margin-top: 10%;
}

img.ab-bg1 {
  position: absolute;
  bottom: -30px;
  right: 20px;
  width: 26%;
  opacity: .6;
}

.about-text h5 {
  color: #151515;
  font-size: 18px;
  margin-bottom: 10px;
  font-style: italic;
}

.about-text h2 {
    font-size: 28px;
    margin-bottom: 5px;
    font-weight: bold;
    color: #008e52;
}

.about-text h2 span {
  font-weight: bold;
}

.about-text p {
  font-size: 16px;
  line-height: 1.6;
 color: #888;
}

.signature {
  margin-top: 20px;
  width: 120px;
}

.about-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.video-text {
  flex: 1;
}

.video-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.video-text h2 em {
  font-style: italic;
  color: #444;
}

.video-text p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.buttons .btn {
  padding: 10px 20px;
  text-decoration: none;
  margin-right: 10px;
  font-weight: bold;
  border-radius: 5px;
  display: inline-block;
}

.btn-green {
  background: #6a8600;
  color: #fff;
}

.btn-outline {
  border: 2px solid #6a8600;
  color: #6a8600;
}

.video-img {
  flex: 1;
  position: relative;
}

.video-img img {
  width: 100%;
  border-radius: 10px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 50%;
  cursor: pointer;
}


@media (max-width: 768px) {

  .about-text {
    margin-top: 10px;
  }
}




.hover-zoom {
  overflow: hidden;
}

.hover-zoom img {
  transition: transform 0.5s ease;
}

.hover-zoom:hover img {
  transform: scale(1.05);
}

.caption {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: #333;
  background: rgba(255, 255, 255, 0.8);
  padding: 10px;
  max-width: 90%;
}

.caption h6 {
  color: #5b946b;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.caption h5 {
  font-size: 18px;
  font-weight: bold;
}

.caption a {
  font-size: 13px;
  color: #5b946b;
  text-decoration: none;
  border-bottom: 1px solid #5b946b;
}

.position-relative {
  height: 100%;
}







footer a {
    color: #fff;
    text-decoration: none;
}

footer.bg-light {
    background: #595959 !important;
    color: #fff;
}

footer h5 {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 20px;
}

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

footer ul li {
  margin-bottom: 8px;
  cursor: pointer;
  transition: color 0.3s ease;
      display: flex;
}

footer ul li:hover {
  color: #007bff;
  text-decoration: underline;
}

footer p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

footer img {
    max-width: 100%;
    background: #fff;
    border-radius: 5px;
    padding: 10px;
}

footer .bi {
  margin-right: 8px;
  font-size: 16px;
  vertical-align: middle;
}

footer .bottom-bar {
  border-top: 1px solid #ddd;
  padding-top: 15px;
  margin-top: 30px;
  font-size: 13px;
}

footer .bottom-bar img {
  height: 25px;
  margin-right: 6px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

footer .bottom-bar img:hover {
  opacity: 1;
}

section.inner-section {
    padding: 80px 0px;
    background: #f9f7f4;
}

ul.foot {
    margin-top: 20px;
    padding-left: 0px;
}
ul.foot li {
    list-style: none;
    padding-bottom: 20px;
    display: flex;
    font-size: 18px;
    color: #666;
}
ul.foot li i.bi {
    padding-right: 10px;
}
ul.social-icons {
    display: flex;
    justify-content: space-around;
    padding-left: 0px;
}
ul.social-icons li {
    text-align: center;
    list-style: none;
    background: #eee;
    width: 40px;
    border-radius: 50%;
    height: 40px;
    line-height: 40px;
}
section.inner-section.contact h3 {
    color: #008e52;
    margin-top: 20px;
}
section.inner-section.contact h5 {
    color: #008e52;
    padding-bottom: 15px;
}

ul.social-icons a {
    color: #333333;
}
ul.foot li a {
    text-decoration: none;
    color: inherit;
}

ul.foot li i.bi a{
   text-decoration: none;
    color: inherit;
}
ul.foot a {
    text-decoration: none;
}
h4.abt-sub {
    color: #008e52;
    font-weight: 600;
    margin-bottom: 10px;
}
h2.abt-sub {
    background: #eee;
    padding: 20px;
}
h2.abt-sub {
    background: #eee;
    padding: 20px;
    display: inline-flex;
    border-radius: 10px;
    margin-right: 10px;
    margin-top: 10px;
}
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 5px rgba(0,0,0,0.2);
  transition: right 0.3s ease;
  z-index: 1000;
  padding: 20px;
}
.card-block {
    padding: 20px;
}
.cart-sidebar.cart-open {
  right: 0;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.cart-item button {
  background: red;
  color: white;
  border: none;
  padding: 3px 5px;
  cursor: pointer;
}

.cart-open {
  right: 0 !important;
}

.cart-icon {
    position: fixed;
    top: 5px;
    right: 20px;
    cursor: pointer;
    font-size: 24px;
    z-index: 9999999;
 
}
section.related h3 {
    text-align: center;
    margin-bottom: 30px !important;
    color: #008e52;
    font-weight: 600;
}
.inlline-sec {
    display: inline-flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 10px;
}
.cart-count {
    background: red;
 
    border-radius: 50%;
    padding: 5px 10px;
    font-size: 14px;
    position: relative;
    top: -5px;
    right: -5px;
}

img.pec {
  margin-bottom: 20px;
}
.m-right {
    padding-right: 40px;
}
.qty-controls {
    display: inline-block;
    align-items: center;
    margin: auto;
}

.qty-controls button {
  width: 30px;
  height: 30px;
  border: none;
  background: #007bff;
  color: white;
}

.qty-controls input {
  width: 50px;
  text-align: center;
  margin: 0 5px;
}
.btn.btn-primary {
    background-color: #008d4c;
    padding: 5px 10px;
    border-radius: 3px;
    border: 0px;
    display: block;
    margin: auto;
    margin-top: 20px !important;
}


button.btn.btn-primary.sec {
    background: none!important;
    border: 1px solid #008d4c!important;
    color: #008d4c!important;
}

.prodect-box h4 {
    margin-bottom: 15px;
    font-size: 18px;
}


section.products {
    padding: 80px 0px;
}

section.products h1 {
    text-align: center;
    margin-bottom: 40px;
    color: #008e52;
    font-weight: 600;
}

.prodect-box {
    text-align: center;
}
section.inner-section.contact h1 {
    text-align: center;
    margin-bottom: 40px;
    color: #008e52;
    font-weight: 600;
}
section.related {
    background: #eeee;
    padding: 80px 0px;
}

.owl-carousel .owl-nav {
  position: absolute;
  top: 40%;
  width: 100%;
  display: flex !important;
  justify-content: space-between;
  padding: 0 15px;
  z-index: 10;
}

.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    padding: 10px 15px !important;
    color: #fff;
    font-size: 20px;
    border-radius: 50%;
    cursor: pointer;
}
.owl-carousel .owl-nav button.owl-prev {
    margin-left: -35px;
}
.owl-carousel .owl-nav button.owl-next{
  margin-right: -35px;
}
.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
