/* GLOBAL RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #ffffff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background-color: #ffffff;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo img {
  max-width: 32px;
}

.logo-icon {
  color: #b88e2f;
  font-size: 24px;
  font-weight: bold;
}

.logo h2 {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: #000000;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #b88e2f;
}

.nav-icons {
  display: flex;
  gap: 25px;
}

.nav-icons a {
  color: #000000;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-icons a:hover {
  color: #b88e2f;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: #000;
  cursor: pointer;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}

.hero-bg {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.card-overlay {
  position: absolute;
  top: 50%;
  right: 58px;
  transform: translateY(-50%);
  max-width: 540px;
  width: 40%;
}

.card-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

/* BROWSE THE RANGE */
.range-section {
  padding: 60px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.range-header h2 {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  color: #333333;
  margin-bottom: 8px;
}

.range-header p {
  font-size: 16px;
  color: #666666;
  margin-bottom: 40px;
}

.range-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.range-card {
  flex: 1;
}

.range-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.range-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333333;
  margin-top: 20px;
}

/* PRODUCT CARDS (SHARED STYLES) */
.product-grid {
  display: grid;
  gap: 30px;
}

.product-card {
  background: #f4f5f7;
  text-align: left;
  position: relative;
}

.product-img {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  z-index: 2;
}

.badge.discount {
  background: #e97171;
}

.badge.new {
  background: #2ec1ac;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(58, 58, 58, 0.72);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.product-card:hover .overlay,
.overlay.active {
  opacity: 1;
  visibility: visible;
}

.add-btn {
  background: #fff;
  color: #b88e2f;
  border: none;
  padding: 12px 32px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.actions {
  display: flex;
  gap: 14px;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  flex-wrap: wrap;
  justify-content: center;
}

.product-info {
  padding: 16px;
}

.product-info h3 {
  font-size: 20px;
  color: #3a3a3a;
  font-weight: 600;
  margin-bottom: 4px;
}

.product-info p {
  font-size: 14px;
  color: #898989;
  margin-bottom: 8px;
}

.price {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.price .current {
  font-size: 16px;
  font-weight: 600;
  color: #3a3a3a;
}

.price .old {
  font-size: 14px;
  color: #b0b0b0;
  text-decoration: line-through;
}

.products-section {
  padding: 50px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.products-section h2 {
  font-size: clamp(22px, 4vw, 32px);
  color: #333;
  margin-bottom: 40px;
}

.products-section .product-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.products-section .product-img {
  height: 300px;
}

.products-section .badge {
  width: 48px;
  height: 48px;
  font-size: 14px;
}

.bottom-products {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.bottom-products .product-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.bottom-products .product-img {
  height: 280px;
}

.bottom-products .badge {
  width: 44px;
  height: 44px;
  font-size: 13px;
}

.btn-container {
  text-align: center;
  margin-top: 40px;
}

.show-more-btn {
  background: #ffffff;
  color: #b88e2f;
  border: 1px solid #b88e2f;
  padding: 12px 70px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.show-more-btn:hover {
  background: #b88e2f;
  color: #ffffff;
}

/* ROOM INSPIRATION (ROOMIFY) */
.roomify-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 30px;
  flex-wrap: wrap;
}

.roomify-info {
  flex: 1 1 320px;
  max-width: 400px;
}

.roomify-info__title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  color: #1f1d1a;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.roomify-info__desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6b6560;
  margin-bottom: 30px;
}

.roomify-cta {
  display: inline-block;
  background: #c8952b;
  color: #ffffff;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 28px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.roomify-cta:hover {
  background: #b4841f;
  transform: translateY(-1px);
}

.roomify-cover {
  flex: 1 1 300px;
  max-width: 320px;
}

.roomify-cover__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.roomify-slider {
  display: flex;
  align-items: center;
  gap: 20px;
  overflow: hidden;
  flex: 1 1 300px;
  max-width: 320px;
}

.roomify-slide {
  flex: 0 0 260px;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  background: #e9e4da;
}

.roomify-slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.roomify-slide--peek {
  flex: 0 0 30px;
  border-radius: 16px 0 0 16px;
}

.roomify-slide--peek .roomify-slide__img {
  width: 260px;
  max-width: none;
}

/* SHARE YOUR SETUP GALLERY */
.gallery-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px 40px;
}

.gallery-heading {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-heading .eyebrow {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.gallery-heading .hashtag {
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 700;
  color: #1a1a1a;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 90px;
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Desktop asymmetric layout (matches the original design mockup) */
.item-1 {
  grid-column: 1 / 3;
  grid-row: 1 / 4;
}

.item-2 {
  grid-column: 3 / 6;
  grid-row: 1 / 4;
}

.item-3 {
  grid-column: 1 / 3;
  grid-row: 4 / 7;
}

.item-4 {
  grid-column: 3 / 6;
  grid-row: 4 / 7;
}

.item-5 {
  grid-column: 6 / 8;
  grid-row: 1 / 7;
}

.item-6 {
  grid-column: 8 / 11;
  grid-row: 1 / 5;
}

.item-7 {
  grid-column: 11 / 13;
  grid-row: 1 / 5;
}

.item-8 {
  grid-column: 8 / 10;
  grid-row: 5 / 7;
}

.item-9 {
  grid-column: 10 / 13;
  grid-row: 5 / 7;
}

/* FOOTER */
footer {
  background: #ffffff;
  border-top: 1px solid #e5e5e5;
  padding: 60px 100px 30px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 60px;
}

.footer-col {
  min-width: 180px;
}

.footer-col .logo {
  font-size: 28px;
  font-weight: 600;
  color: #000;
  margin-bottom: 25px;
}

.address {
  font-size: 14px;
  line-height: 1.7;
  color: #000;
  max-width: 200px;
}

.col-title {
  font-size: 14px;
  color: #9f9f9f;
  margin-bottom: 25px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 22px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
}

.newsletter-input {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  border-bottom: 1px solid #000;
  padding-bottom: 8px;
  max-width: 240px;
}

.newsletter-input input {
  border: none;
  outline: none;
  font-size: 14px;
  color: #000;
  flex: 1;
  background: transparent;
  min-width: 0;
}

.newsletter-input input::placeholder {
  color: #000;
}

.newsletter-input button {
  background: none;
  border: none;
  border-bottom: 1px solid #000;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  padding-bottom: 2px;
  white-space: nowrap;
}

.footer-divider {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin-bottom: 25px;
}

.copyright {
  font-size: 14px;
  color: #000;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 992px) {
  .bottom-products .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  footer {
    padding: 50px 50px 30px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 16px 24px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links,
  .nav-icons {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 20px 24px;
    gap: 18px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    z-index: 10;
  }

  .nav-icons.open {
    display: flex;
    position: absolute;
    top: calc(100% + 190px);
    left: 0;
    width: 100%;
    justify-content: center;
    background: #ffffff;
    padding: 16px 24px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    z-index: 10;
  }

  .hero-section {
    display: flex;
    flex-direction: column;
  }

  .card-overlay {
    position: relative;
    top: 0;
    right: 0;
    transform: none;
    width: 90%;
    margin: -50px auto 20px auto;
  }

  .range-grid {
    flex-direction: column;
  }

  .range-card img {
    height: 320px;
  }

  .products-section .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .roomify-wrap {
    text-align: center;
    justify-content: center;
    padding: 60px 20px;
  }

  .roomify-info {
    max-width: 100%;
  }

  .roomify-slider {
    justify-content: center;
    margin: 0 auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .item-1,
  .item-2,
  .item-3,
  .item-4,
  .item-5,
  .item-6,
  .item-7,
  .item-8,
  .item-9 {
    grid-column: span 1;
    grid-row: span 1;
  }

  footer {
    padding: 40px 24px 20px;
  }

  .footer-top {
    gap: 30px;
    padding-bottom: 40px;
  }
}

@media (max-width: 620px) {
  .roomify-slider {
    flex-direction: column;
  }

  .roomify-slide--peek {
    display: none;
  }
}

@media (max-width: 576px) {

  .products-section .product-grid,
  .bottom-products .product-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .roomify-info__title {
    font-size: 1.9rem;
  }

  .show-more-btn {
    padding: 12px 40px;
    width: 100%;
  }

  .newsletter-input {
    max-width: 100%;
  }

  .footer-top {
    flex-direction: column;
    gap: 30px;
  }

  .footer-col {
    min-width: 100%;
  }

  .range-card img {
    height: 240px;
  }

  .card-overlay {
    width: 95%;
  }
}
