body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f8f8f8;
  color: #222;
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


.navbar {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  color: #154734;
}

.main-nav {
  display: flex;
  gap: 30px;
}

.main-nav a {
  text-decoration: none;
  color: #222;
  font-size: 16px;
  font-weight: 500;
}

.header-icons {
  display: flex;
  gap: 16px;
}

.icon-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  color: #222;
}


.hero {
  padding: 50px 0;
  background: #fff;
}

.hero-box {
  display: flex;
  width: 100%;
  aspect-ratio: 2 / 1;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hero-left, .hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-right {
  background: #0b4d4a;
  color: #fff;
  flex-direction: column;
  text-align: left;
  padding: 40px;
}

.hero-right h1 {
  font-size: 32px;
  margin-bottom: 20px;
}

.hero-right p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.btn {
  padding: 12px 24px;
  border: none;
  background: #fff;
  color: #0b4d4a;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
  border-radius: 4px;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  max-width: 400px;
  width: 90%;
  position: relative;
}

.close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}


.trusted {
  padding: 40px 0;
  background-color: #f9f9f9;
  text-align: center;
  background: #fff;
}

.trusted__container {
  max-width: 1200px;
  margin: 0 auto;
}

.trusted__title {
  font-size: 25px;
  color: #2d3e50;
  margin-bottom: 50px;
  margin-top: 50px;
  font-weight: 600;
}

.trusted__logos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trusted__logo {
  max-height: 40px;
  transition: transform 0.3s ease-in-out;
  filter: grayscale(100%);
}

.trusted__logo:hover {
  transform: scale(1.1);
  filter: grayscale(0%);
}


.about {
  padding: 50px;
  background-color: #f7f8f9;
  background: #fff;
}

.about__container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about__image {
  flex: 1;
}

.about__image img {
  max-width: 100%;
  border-radius: 0px;
}

.about__content {
  flex: 1;
  padding-left: 80px;
}

.about__title {
  font-size: 28px;
  font-weight: bold;
  color: #2d3e50;
  margin-bottom: 15px;
}

.about__text {
  font-size: 18px;
  color: #444444;
  margin-bottom: 20px;
}

.about__list {
  list-style: none;
  padding: 0;
}

.about__item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.about__icon {
  width: 50px;
  height: 70px;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 18px;
}

.about__icon--quality {
  background-image: url("/images/icons/shield 3.png");
}

.about__icon--secure {
  background-image: url("/images/icons/Group 8982.png");
}

.about__icon--shipping {
  background-image: url("/images/icons/Group 8981.png");
}

.about__info {
  display: flex;
  flex-direction: column;
}

.about__subtitle {
  font-size: 20px;
  font-weight: bold;
  color: #2d3e50;
  margin-bottom: 2px;
}

.about__desc {
  font-size: 16px;
  color: #444444;
}


.popular-furniture {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.popular-furniture__container {
  max-width: 1400px;
  margin: auto;
  position: relative;
}

.popular-furniture__title {
  font-size: 28px;
  font-weight: bolder;
  text-align: center;
  margin-left: -920px;
}

.popular-furniture__description {
  max-width: 650px;
  margin: 15px auto 55px;
  text-align: left;
  margin-left: 100px;
  color: #666;
}

.popular-furniture__slider {
  position: relative;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.popular-furniture__items {
  display: flex;
  gap: 40px;
  transition: transform 0.5s ease-in-out;
}


.product-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  max-width: 380px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.product-card__image {
  width: 100%;
  height: 250px;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__info {
  padding: 20px;
  text-align: left;
}

.product-card__title {
  font-size: 20px;
  margin-bottom: 5px;
}

.product-card__price {
  font-size: 20px;
  color: #154444;
}

.product-card__actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 15px;
}

.product-card__button {
  background: #244D4D;
  color: white;
  border: none;
  padding: 12px 18px;
  cursor: pointer;
  margin-top: -90px;
  transition: 0.3s ease, transform 0.2s ease;
  margin-right: -60px;
}

.product-card__button:hover {
  background: #086060;
  transform: scale(1.05);
}

.product-card__icons {
  display: flex;
  gap: 12px;
}

.product-card__icon {
  width: 28px;
  height: 28px;
  background: no-repeat center;
  border: none;
  cursor: pointer;
  margin-top: -100px;
  transition: transform 0.2s ease;
}

.product-card__icon:hover {
  transform: scale(1.1);
}

.product-card__icon--like {
  background-image: url("/images/icons/Frame 41.png");
}

.product-card__icon--share {
  background-image: url("/images/icons/Frame 42.png");
}


.icons-section {
  background: #fff;
}

.container-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  background: #fff;
}

.top {
  text-align: center;
  margin-bottom: 28px;
}

.top h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
}

.tabs {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 15px;
}

.tabs a {
  position: relative;
  text-decoration: none;
  padding: 6px 2px;
  color: inherit;
}

.tabs a.active {
  color: #0b4d4a;
  font-weight: 600;
}

.tabs a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  bottom: -10px;
  margin: 0 auto;
  width: 36px;
  border-radius: 2px;
}

.content {
  display: flex;
  gap: 10px;
  align-items: center;
  background: #fff;
}

.left {
  flex: 1 1 55%;
  min-width: 260px;
  position: relative;
}

.photo-box img {
  max-width: 100%;
  border-radius: 0px;
}

.right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  flex: 1 1 45%;
}

.room-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 20px;
  background: #fff;
  border: 1px solid #ddd;
  cursor: pointer;
  font-size: 14px;
  transition: 0.2s;
}

.room-btn img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.room-btn:hover {
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.room-btn.active {
  color: #ffffff;
  background-color: #013f3c;
}

.room-btn.active img {
  filter: brightness(0) invert(1);
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 80px 0;
  background: #f8f8f8;
}

.faq-section h2 {
  font-size: 32px;
  color: #2d3e50;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
}


.faq-section .accordion-button {
  background-color: #fff;
  color: #2d3e50;
  font-weight: 600;
  font-size: 16px;
  border: 1px solid #ddd;
  padding: 20px;
}

.faq-section .accordion-button:not(.collapsed) {
  background-color: #0b4d4a;
  color: white;
  border-color: #0b4d4a;
}

.faq-section .accordion-button:focus {
  border-color: #0b4d4a;
  box-shadow: 0 0 0 0.25rem rgba(11, 77, 74, 0.25);
}

.faq-section .accordion-button::after {
  filter: brightness(0) invert(1);
}

.faq-section .accordion-body {
  background-color: #fff;
  border: 1px solid #ddd;
  border-top: none;
  padding: 20px;
  color: #666;
  line-height: 1.6;
}

.faq-section .accordion-item {
  margin-bottom: 15px;
  border: none;
}


.testimonials-section {
  padding: 80px 0;
  background: #fff;
}

.testimonials-section h2 {
  font-size: 32px;
  color: #2d3e50;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
}

.testimonials-section .testimonial-card {
  background: #f8f8f8;
  padding: 40px;
  border-radius: 8px;
  max-width: 600px;
  margin: 0 auto;
}

.testimonials-section .testimonial-text {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonials-section .testimonial-author {
  color: #0b4d4a;
  font-weight: bold;
  font-size: 16px;
}

.testimonials-section .carousel-control-prev,
.testimonials-section .carousel-control-next {
  width: 40px;
  height: 40px;
  background-color: rgba(11, 77, 74, 0.8);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.testimonials-section .carousel-control-prev {
  left: -50px;
}

.testimonials-section .carousel-control-next {
  right: -50px;
}


.contact-form-section {
  padding: 80px 0;
  background: #f8f8f8;
}

.contact-form-section h2 {
  font-size: 32px;
  color: #2d3e50;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

.contact-form-section p {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  font-size: 16px;
}

.contact-form-section .form-control {
  border: 1px solid #ddd;
  padding: 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.contact-form-section .form-control:focus {
  border-color: #0b4d4a;
  box-shadow: 0 0 0 0.2rem rgba(11, 77, 74, 0.25);
}

.contact-form-section .btn-primary {
  background-color: #0b4d4a;
  border-color: #0b4d4a;
  padding: 12px 30px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.contact-form-section .btn-primary:hover {
  background-color: #086060;
  border-color: #086060;
  transform: translateY(-2px);
}

.contact-form-section .invalid-feedback {
  color: #dc3545;
  font-size: 14px;
}

.contact-form-section .was-validated .form-control:invalid {
  border-color: #dc3545;
}

.contact-form-section .was-validated .form-control:valid {
  border-color: #198754;
}


.custom-send-btn {
  background-color: #0b4d4a;
  border-color: #0b4d4a;
}

.custom-send-btn:hover {
  background-color: #086060;
  border-color: #086060;
}

.footer-section {
  background-color: #2d3e50;
  color: white;
  padding: 40px 0;
}

.footer-section a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #0b4d4a;
}



@media (max-width: 1440px) {
  .popular-furniture__title {
    margin-left: -700px;
  }
}

@media (max-width: 1200px) {
  .popular-furniture__title {
    margin-left: -500px;
  }
  .product-card {
    max-width: 300px;
  }
  .carousel-control-prev {
    left: -30px;
  }
  .carousel-control-next {
    right: -30px;
  }
}

@media (max-width: 1024px) {
  .trusted__logos {
    gap: 20px;
  }
  .about__container {
    flex-direction: column;
    text-align: center;
  }
  .about__content {
    padding-left: 0;
  }
  .popular-furniture__title {
    margin-left: -300px;
  }
  .popular-furniture__description {
    margin-left: 50px;
  }
}

@media (max-width: 900px) {
  .hero-box {
    flex-direction: column;
    aspect-ratio: auto;
  }
  .hero-left, .hero-right {
    width: 100%;
    height: auto;
  }
  .hero-right {
    padding: 20px;
    text-align: center;
  }
  .main-nav {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    padding: 20px;
    border-top: 1px solid #eee;
  }
  .main-nav.active {
    display: flex;
  }
  .content {
    flex-direction: column;
  }
  .right {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }
  .popular-furniture__title {
    margin-left: 0;
    text-align: center;
  }
  .popular-furniture__description {
    margin-left: 0;
    text-align: center;
  }
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}

@media (max-width: 768px) {
  .trusted__logos {
    flex-wrap: wrap;
    justify-content: center;
  }
  .trusted__logo {
    max-height: 30px;
  }
  .about__image img {
    max-width: 80%;
  }
  .about__text {
    font-size: 16px;
  }
  .product-card {
    max-width: 90%;
    margin: 0 auto;
  }
  .product-card__image {
    height: 220px;
  }
  .product-card__title {
    font-size: 16px;
  }
  .product-card__price {
    font-size: 16px;
  }
  .product-card__actions {
    flex-direction: column;
    align-items: center;
  }
  .product-card__button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
  }
  .product-card__icon {
    margin-top: 10px;
  }
  .right {
    grid-template-columns: 1fr;
  }
  .faq-section,
  .testimonials-section,
  .contact-form-section {
    padding: 60px 0;
  }
  .testimonial-card {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .product-card {
    max-width: 100%;
  }
  .product-card__image {
    height: 180px;
  }
  .product-card__title {
    font-size: 14px;
  }
  .product-card__price {
    font-size: 14px;
  }
  .product-card__button {
    font-size: 12px;
    padding: 8px;
  }
  .product-card__icons {
    gap: 8px;
  }
  .product-card__icon {
    width: 20px;
    height: 20px;
  }
  .tabs {
    flex-direction: column;
    gap: 15px;
  }
  .tabs a.active::after {
    bottom: -5px;
  }
  .hero-right h1 {
    font-size: 24px;
  }
  .about {
    padding: 30px 20px;
  }
  .popular-furniture {
    padding: 40px 15px;
  }
}