/* Reset & Body */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
}

h2 {
  font: 1em sans-serif;
}

/* NAVBAR */
.navbar {
  position: fixed; /* changed from absolute */
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  z-index: 1000;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  width: 40px;
  height: 40px;
  object-fit: cover;
  margin-right: 8px;
  border-radius: 5px;
}

.brand-name {
  font-size: 18px;
  font-weight: bold;
  color: white;
}

/* Hamburger (hidden on desktop) */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}

nav ul.menu {
  list-style: none;
  display: flex;
}

nav ul.menu li {
  margin-left: 20px;
}

nav ul.menu li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav ul.menu li a:hover {
  color: gold;
}

/* SWIPER SLIDER */
.swiper {
  width: 100%;
  height: 70vh;
}

.swiper-slide {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* scales image without zooming */
  animation: zoomPan 6s ease-in-out infinite;
  will-change: transform;
}

/* Slide text overlay */
.slide-text {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.5);
  padding: 25px 35px;
  border-radius: 10px;
  text-align: center;
  color: white;
  max-width: 50%;
}

.slide-text h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.slide-text p {
  font-size: 16px;
  margin-bottom: 15px;
}

.slide-btn {
  background-color: gold;
  color: black;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
}

.slide-btn:hover {
  background-color: darkorange;
}

/* New Arrivals Section */
.new-arrivals {
  padding: 60px 20px;
  background: #f9f9f9;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #111;
}

/* Flex Container */
.products-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* Product Card */
.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  flex: 1 1 calc(25% - 20px); /* Desktop: 4 boxes */
  max-width: calc(25% - 20px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Image Section */
.product-image {
  position: relative;
  width: 100%;
  height: 220px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sale Badge */
.sale-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #fff;
  color: #000;
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 600;
}

/* Product Details */
.product-details {
  padding: 16px;
}

.rating {
  color: #ccc;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.product-name {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #222;
}

/* Price Styling */
.price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.old-price {
  color: #999;
  text-decoration: line-through;
  font-size: 0.9rem;
}

.new-price {
  color: #000;
  font-weight: 700;
  font-size: 1.05rem;
}

.whatsapp-btn {
  margin-top: 14px;
  width: 100%;
  padding: 12px;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
}

/* About Us */
.about-us {
  padding: 80px 20px 50px 50px;
  background: #fff;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #111;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
}

/* Why choose Us */
.why-choose-us {
  padding: 80px 20px 35px 35px;
  background: #f9f9f9;
}

.choose-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.choose-card {
  flex: 1 1 calc(25% - 20px);
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.choose-card h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
  color: #111;
}

.choose-card p {
  font-size: 0.95rem;
  color: #555;
}

.location-section {
  position: relative;
  width: 100%;
  height: 500px; /* Adjust as needed */
  background: url("images/location-image.PNG") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.location-overlay {
  position: relative;
  width: 100%;
  height: 500px;
  text-align: center;
  background-color: rgba(
    0,
    0,
    0,
    0.5
  ); /* semi-transparent overlay for readability */
  padding: 40px 20px;
  border-radius: 16px;
  color: #fff;
}

.location-overlay h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.map-container {
  width: 100%;
  max-width: 900px; /* desktop limit */
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.delivery-coverage {
  max-width: 900px;
  margin: 60px auto;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 10px;
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
}

.delivery-coverage h2 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #111;
}

.delivery-coverage p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.delivery-coverage .neighboring {
  font-weight: 600;
  color: #000;
}

/* PRODUCTS PAGE HEADER */
.products-header {
  padding: 60px 20px 30px;
  text-align: center;
  background: #f6f6f6;
}

.products-header h1 {
  font-size: 2.2rem;
  color: #111;
}

.products-header p {
  margin-top: 8px;
  color: #555;
  font-size: 1rem;
}

/* PRODUCT CATEGORIES */
.product-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 30px 20px;
  background: #fff;
}

.product-categories a {
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 25px;
  background: #f0f0f0;
  color: #111;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.product-categories a:hover {
  background: #000;
  color: #fff;
}

/* PRODUCTS GRID (EMPTY FOR NOW) */
.products-grid {
  max-width: 1200px;
  margin: auto;
  padding: 30px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-image {
  position: relative;
}

.product-image img {
  width: 100%;
  display: block;
}

.sale-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #fff;
  color: #111;
  padding: 5px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 10px;
}

.product-info {
  padding: 16px;
}

.product-name {
  font-size: 1.1rem;
  color: #111;
  margin: 8px 0;
}

.product-price {
  display: flex;
  gap: 10px;
  align-items: center;
}

.original-price {
  color: #999;
  text-decoration: line-through;
}

.discount-price {
  font-weight: 700;
  color: #111;
}

.whatsapp-btn {
  margin-top: 12px;
  display: block;
  text-align: center;
  background: #25d366;
  color: #fff;
  padding: 10px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

.custom-furniture-cta {
  background: #f6f6f6;
  padding: 60px 20px;
  text-align: center;
}

.custom-furniture-cta h2 {
  font-size: 2rem;
  color: #111;
  margin-bottom: 12px;
}

.custom-furniture-cta p {
  max-width: 700px;
  margin: 0 auto 25px;
  color: #555;
  line-height: 1.6;
}

.cta-whatsapp-btn {
  display: inline-block;
  background: #25d366;
  color: #fff;
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
}
/* PAGINATION BUTTONS CONTAINER */
.pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 40px 0;
  flex-wrap: wrap;
}

/* PAGINATION BUTTONS */
.pagination button {
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  background: #f0f0f0;
  color: #111;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination button:hover {
  background: #000;
  color: #fff;
}

/* ACTIVE PAGE BUTTON */
.pagination button.active {
  background: #111;
  color: #fff;
}

/* ================= PAGE HEADER ================= */
.page-header {
  padding: 120px 20px 60px;
  text-align: center;
  background: #f8f8f8;
}

.page-header h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.page-header p {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* ================= CONTACT SECTION ================= */
.contact-section {
  padding: 60px 20px;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.contact-info a {
  color: inherit;
  text-decoration: none;
}

.btn-whatsapp {
  display: inline-block;
  margin-top: 20px;
  background: #25d366;
  color: #fff;
  padding: 14px 22px;
  border-radius: 5px;
  font-weight: bold;
}

/* ================= MAP ================= */
.contact-map iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 8px;
}
/* Desktop (default) */
/* No media query */

/* Tablet + large phones */
/* @media (max-width: 768px) {
  .swiper,
  .swiper-slide {
    height: 70vh;
  } */

/* .swiper-slide img {
    animation: none;
  } */
/* } */

/* Phones */
/* @media (max-width: 480px) {
  .swiper,
  .swiper-slide {
    height: 65vh;
  }
} */

/* ================= RESPONSIVE ================= */
@media (min-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .contact-map iframe {
    height: 420px;
  }
}

/* TABLET */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* SMALL MOBILE */
@media (max-width: 400px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .location-section {
    height: 600px;
  }

  .location-overlay h2 {
    font-size: 1.6rem;
  }

  .map-container {
    max-width: 100%;
    height: 300px;
  }
}

@media (max-width: 480px) {
  .location-section {
    height: 650px;
  }

  .location-overlay h2 {
    font-size: 1.4rem;
  }

  .map-container {
    height: 250px;
  }
}

.reviews-section {
  padding: 80px 20px;
  background: #fff;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #111;
}

.reviews-container {
  display: flex;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.review-card {
  flex: 1 1 calc(25% - 20px);
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin: 15px 0 20px;
}

.reviewer {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reviewer strong {
  color: #111;
  font-size: 0.9rem;
}

.source {
  font-size: 0.8rem;
  color: #777;
}

.site-footer {
  background: #111;
  color: #ccc;
  padding: 40px 20px;
  text-align: center;
}

.footer-content {
  max-width: 1100px;
  margin: auto;
}

.footer-socials {
  margin-bottom: 20px;
}

.footer-socials a {
  font-size: 1.6rem;
  margin: 0 10px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.footer-socials a:hover {
  transform: scale(1.2);
}

.footer-text {
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer-credit {
  font-size: 0.85rem;
}

.footer-credit a {
  color: #c9a14a; /* gold accent */
  text-decoration: none;
  font-weight: 600;
}

.footer-credit a:hover {
  text-decoration: underline;
}
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 20px;
  background: #25d366;
  color: #fff;
  padding: 12px 16px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Icon */
.whatsapp-icon {
  font-size: 1.2rem;
}

/* Mobile: icon only */
@media (max-width: 480px) {
  .whatsapp-float {
    padding: 12px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    bottom: 100;
  }

  .whatsapp-icon svg {
    fill: #fff; /* white color */
  }

  .whatsapp-text {
    display: inline;
    white-space: nowrap;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .review-card {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 600px) {
  .review-card {
    flex: 1 1 100%;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }

  .choose-card {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

@keyframes zoomPan {
  from {
    transform: scale(1) translate(0, 0);
  }
  to {
    transform: scale(1.1) translate(-10px, -10px);
  }
}

/* MOBILE STYLES */
@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
  }

  nav ul.menu {
    flex-direction: column;
    background: rgba(46, 45, 45, 0.9);
    position: absolute;
    top: 65px;
    right: 0;
    width: 200px;
    display: none;
    padding: 10px 0;
    border-radius: 5px;
  }

  nav ul.menu.show {
    display: flex;
  }

  nav ul.menu li {
    margin: 12px 0;
    text-align: center;
  }

  nav ul.menu li a {
    font-size: 18px;
  }

  .slide-text {
    top: 25%;
    padding: 20px;
  }

  .slide-text h2 {
    font-size: 22px;
  }

  .slide-text p {
    font-size: 14px;
  }

  .slide-btn {
    padding: 8px 16px;
    font-size: 14px;
  }
}

/* SMALLER PHONES */
@media screen and (max-width: 480px) {
  .slide-text {
    top: 20%;
    padding: 15px;
  }

  .slide-text h2 {
    font-size: 18px;
  }

  .slide-text p {
    font-size: 13px;
  }

  .slide-btn {
    padding: 6px 12px;
    font-size: 12px;
  }
}

/* Tablet & Mobile: 2 boxes */
@media (max-width: 1024px) {
  .product-card {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

/* Small Mobile: 1 box (optional but recommended) */
@media (max-width: 480px) {
  .product-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
