/* =======================
   Root Variables
======================= */
:root {
  --accent: #c77d4a;
  --bg: #f6f6f6;
  --text: #222;
  --muted: #666;
}

/* =======================
   Global Styles
======================= */
* {
  box-sizing: border-box;
}

body {
  font-family: Inter, system-ui, "Segoe UI", Arial, sans-serif;
  margin: 0;
  color: var(--text);
  background: var(--bg);
  line-height: 1.4;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* =======================
   Header
======================= */
.site-header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  font-size: 1.2rem;
}

.nav {
  display: flex;
  gap: 18px;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.6rem;
}

/* =======================
   Hero Section
======================= */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-slider {
  display: flex;
  transition: transform 0.6s ease;
}

.slide {
  min-height: 400px;
  height: 620px;
  background-size: cover;
  background-position: center;
  flex: 0 0 100%;
  display: flex;
  align-items: center;
}

.hero-content {
  color: #fff;
  padding: 32px 16px;
  margin-top: 20px;
  margin-left: 20px;
  max-width: 600px;
}

.hero-content h1 {
  font-size: clamp(1.4rem, 4vw, 2.6rem);
  margin: 0 0 12px;
  line-height: 1.2;
}

.hero-content p {
  opacity: 0.95;
  margin: 0 0 20px;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
}

.btn {
  background: var(--accent);
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  display: inline-block;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #b56a3a;
}

.btn-gold:hover {
  background: #000 !important;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: background 0.3s ease;
}

.hero-dots button.active {
  background: var(--accent);
}

/* =======================
   Categories Section
======================= */
.categories {
  padding: 0;
  margin-bottom: 40px;
}
.categories.container {
  max-width: 1400px;
  padding-left: 12px;
  padding-right: 12px;
}

.categories h2 {
  background: #d6a71e;
  color: white;
  margin: 30px 0;
  padding: 20px 16px;
  text-align: center;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(214, 167, 30, 0.2);
}

.categories .grid {
  padding: 32px 0;
  margin-top: 0;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  height: 240px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card:hover img {
  transform: scale(1.1);
}

.card-label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  z-index: 10;
  backdrop-filter: blur(4px);
}

.card-action {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ff9b00;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(255, 155, 0, 0.4);
  z-index: 20;
}

.card-action:hover {
  background: #e88a00;
  transform: scale(1.15) rotate(45deg);
  box-shadow: 0 6px 20px rgba(255, 155, 0, 0.5);
}

.card-action svg {
  display: block;
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
}

/* =======================
   Featured Products
======================= */
.featured {
  padding: 36px 0;
}

.featured h2 {
  background: #d6a71e;
  color: white;
  margin: 30px 0;
  padding: 20px 16px;
  text-align: center;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(214, 167, 30, 0.2);
}

.featured.container {
  max-width: 1400px;
  padding-left: 12px;
  padding-right: 12px;
}

.more-products-wrapper {
  text-align: center;
  margin-top: 32px;
  padding: 0 20px;
}

.more-products-btn {
  background: linear-gradient(135deg, #d6a71e 0%, #ff9b00 100%);
  color: #fff;
  border: none;
  padding: 20px 40px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(214, 167, 30, 0.3);
  display: inline-block;
}

.more-products-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(214, 167, 30, 0.4);
  background: linear-gradient(135deg, #ff9b00 0%, #e88a00 100%);
}

.more-products-btn:active {
  transform: translateY(0);
}


.products-slider {
  position: relative;
  overflow: hidden;
  padding: 0 50px;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 30;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.slider-nav:hover {
  background: #f5f5f5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-50%) scale(1.1);
}

.slider-nav svg {
  width: 20px;
  height: 20px;
  color: #222;
}

.slider-prev {
  left: 0;
}

.slider-next {
  right: 0;
}

.products {
  display: flex;
  gap: 20px;
  transition: transform 0.6s ease;
  will-change: transform;
}

.products-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.products-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background 0.3s ease;
}

.products-dots button.active {
  background: var(--accent);
}

.product {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 0 0 calc(25% - 15px);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.product:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.product-sale {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ff9b00;
  color: #fff;
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  z-index: 10;
  letter-spacing: 0.5px;
}

.product img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.product-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 12px 0;
  line-height: 1.4;
  min-height: 42px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-pricing {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}

.product-price-old {
  font-size: 16px;
  color: #999;
  text-decoration: line-through;
  font-weight: 500;
}

.product-price-new {
  font-size: 20px;
  color: var(--text);
  font-weight: 700;
}

.product-whatsapp {
  background: #25D366;
  color: #fff;
  border: none;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  margin-top: auto;
  text-decoration: none;
}

.product-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.product-whatsapp svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* =======================
   Promotional Section
======================= */
.promo-section {
  padding: 60px 0;
  background: #f6f6f6;
}

.promo-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
  max-width: 1400px;
  padding-left: 12px;
  padding-right: 12px;
  justify-items: start;
}

.promo-content {
  justify-self: start;
}

.promo-image {
  justify-self: end;
}

.promo-content {
  background: white;
  padding: 48px 40px;
  border-radius: 20px;
}

.promo-heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #333;
  margin: 0 0 24px 0;
  line-height: 1.2;
}

.promo-text {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #555;
  line-height: 1.7;
  margin: 0 0 24px 0;
}

.promo-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.promo-list li {
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  color: #555;
  line-height: 1.8;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.promo-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #d6a71e;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
}

.promo-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ffb347 0%, #ff9b00 100%);
  color: #fff;
  padding: 16px 32px;
  border-radius: 120px;
  font-weight: 600;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 155, 0, 0.3);
}

.promo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 155, 0, 0.4);
  background: linear-gradient(135deg, #ff9b00 0%, #ff8c00 100%);
}

.promo-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  height: 100%;
  min-height: 500px;
}

.promo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
 
}

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

/* =======================
   Interiors Nova Section
======================= */
.homeinterior-section {
  padding: 60px 0;
  background: #f6f6f6;
}

.homeinterior-container {
  max-width: 1400px;
  padding-left: 12px;
  padding-right: 12px;
}

.homeinterior-main-heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #000;
  margin: 0 0 40px 0;
  text-align: center;
  line-height: 1.2;
}

.homeinterior-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.homeinterior-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  height: 100%;
  min-height: 500px;
}

.homeinterior-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.homeinterior-content {
  background: #fff;
  padding: 48px 40px;
  border-radius: 20px;
}

.homeinterior-heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #000;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.homeinterior-text {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #555;
  line-height: 1.7;
  margin: 0 0 24px 0;
}

.homeinterior-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.homeinterior-list li {
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  color: #333;
  line-height: 1.8;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
  font-weight: 500;
}

.homeinterior-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #000;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
}

.homeinterior-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ffb347 0%, #ff9b00 100%);
  color: #fff;
  padding: 16px 32px;
  border-radius: 120px;
  font-weight: 600;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 155, 0, 0.3);
}

.homeinterior-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 155, 0, 0.4);
  background: linear-gradient(135deg, #ff9b00 0%, #ff8c00 100%);
}

/* =======================
   About Section
======================= */
.about {
  padding: 36px 0 80px 0;
}

.about h2 {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 32px;
  color: var(--text);
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.feature {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature h3 {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  margin: 0 0 12px;
  color: var(--accent);
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

/* =======================
   Responsive Styles - Tablet
======================= */
@media (min-width: 600px) {
  .container {
    padding: 0 24px;
  }

  .slide {
    min-height: 500px;
  }

  .hero-content {
    padding: 48px 24px;
    margin-left: 30px;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .card {
    height: 280px;
    border-radius: 18px;
  }

  .card-label {
    font-size: 14px;
    padding: 10px 18px;
    top: 16px;
    left: 16px;
    border-radius: 10px;
  }

  .card-action {
    width: 44px;
    height: 44px;
    bottom: 16px;
    right: 16px;
  }

  .card-action svg {
    width: 20px;
    height: 20px;
  }

  .products-slider {
    padding: 0 40px;
  }

  .slider-nav {
    width: 40px;
    height: 40px;
  }

  .product {
    flex: 0 0 calc((100% - 20px) / 2);
  }

  .product img {
    height: 220px;
  }

  .product-title {
    font-size: 14px;
    min-height: 40px;
  }

  .product-price-old {
    font-size: 14px;
  }

  .product-price-new {
    font-size: 18px;
  }

  .product-whatsapp {
    padding: 10px 14px;
    font-size: 13px;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .promo-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .promo-content {
    padding: 36px 28px;
  }

  .promo-image {
    order: -1;
  }

  .homeinterior-content-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .homeinterior-content {
    padding: 36px 28px;
  }

  .homeinterior-image {
    order: -1;
    min-height: 400px;
  }
}

/* =======================
   Responsive Styles - Desktop
======================= */
@media (min-width: 900px) {
  .container {
    padding: 0 32px;
  }
  .categories.container {
    padding-left: 16px;
    padding-right: 16px;
    margin-top: 50px;
  }
  .featured.container {
    padding-left: 16px;
    padding-right: 16px;
    margin-top: 50px;
  }

  .promo-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .slide {
    height: 620px;
    min-height: 620px;
  }

  .hero-content {
    padding: 64px 32px;
    margin-left: 40px;
    max-width: 700px;
    margin-top: 10px;
  }

  .hero-content h1 {
    font-size: 2.6rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .btn {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .hero-dots {
    bottom: 24px;
  }

  .hero-dots button {
    width: 12px;
    height: 12px;
  }

  .categories .grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 40px 0;
  }

  .categories .card {
    height: 300px;
    border-radius: 20px;
  }

  .categories .card-label {
    font-size: 15px;
    padding: 12px 20px;
    top: 20px;
    left: 20px;
    border-radius: 12px;
  }

  .categories .card-action {
    width: 48px;
    height: 48px;
    bottom: 20px;
    right: 20px;
  }

  .categories .card-action svg {
    width: 22px;
    height: 22px;
  }

  .products-slider {
    padding: 0 60px;
  }

  .product {
    flex: 0 0 calc((100% - 3 * 20px) / 4);
  }

  .product img {
    height: 260px;
  }

  .product-info {
    padding: 18px;
  }

  .product-title {
    font-size: 16px;
    min-height: 44px;
  }

  .product-price-old {
    font-size: 17px;
  }

  .product-price-new {
    font-size: 22px;
  }

  .product-whatsapp {
    padding: 14px 18px;
    font-size: 15px;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .feature {
    padding: 32px;
  }

  .promo-section {
    padding: 50px 0;
    margin-top: 50px;
  }

  .promo-container {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .promo-content {
    padding: 48px 40px;
    margin-left: -100px;
  }

  .promo-image {
    order: 0;
  }

  .homeinterior-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .homeinterior-content-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .homeinterior-content {
    padding: 48px 40px;
  }

  .homeinterior-image {
    order: 0;
    min-height: 500px;
  }
}

/* =======================
   Responsive Styles - Mobile
======================= */
@media (max-width: 599px) {
  .container {
    padding: 0 30px;
  }

  .slide {
    min-height: 350px;
  }

  .hero-content {
    padding: 24px 12px;
    margin-left: 10px;
    margin-top: 10px;
  }

  .hero-content h1 {
    font-size: 1.3rem;
    margin-bottom: 8px;
  }

  .hero-content p {
    font-size: 0.9rem;
    margin-bottom: 16px;
  }

  .btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  .hero-dots {
    bottom: 12px;
  }

  .hero-dots button {
    width: 8px;
    height: 8px;
    gap: 6px;
  }

  .categories h2 {
    font-size: 1.3rem;
    padding: 16px 12px;
    margin: 16px 0;
  }

  .categories .grid {
    padding: 24px 0;
  }

  .card {
    height: 220px;
    border-radius: 16px;
  }

  .card-label {
    font-size: 12px;
    padding: 8px 14px;
    top: 12px;
    left: 12px;
    border-radius: 8px;
  }

  .card-action {
    width: 40px;
    height: 40px;
    bottom: 12px;
    right: 12px;
  }

  .card-action svg {
    width: 18px;
    height: 18px;
  }

  .featured {
    padding: 24px 0;
  }

  .featured h2 {
    font-size: 1.3rem;
    padding: 16px 12px;
    margin:  16px 0;
  }

  .products-slider {
    padding: 0 30px;
  }

  .slider-nav {
    width: 36px;
    height: 36px;
  }

  .slider-nav svg {
    width: 18px;
    height: 18px;
  }

  .product {
    flex: 0 0 100%;
  }

  .product img {
    height: 200px;
  }

  .product-info {
    padding: 14px;
  }

  .product-title {
    font-size: 13px;
    min-height: 36px;
    margin-bottom: 10px;
  }

  .product-pricing {
    margin-bottom: 12px;
  }

  .product-price-old {
    font-size: 13px;
  }

  .product-price-new {
    font-size: 17px;
  }

  .product-whatsapp {
    padding: 10px 12px;
    font-size: 12px;
  }

  .product-whatsapp svg {
    width: 18px;
    height: 18px;
  }

  .product-sale {
    font-size: 11px;
    padding: 5px 12px;
  }

  .about {
    padding: 24px 0;
  }

  .about h2 {
    font-size: 1.4rem;
    margin-bottom: 24px;
  }

  .feature {
    padding: 20px;
  }

  .feature h3 {
    font-size: 1.1rem;
  }

  .feature p {
    font-size: 0.9rem;
  }

  .promo-section {
    padding: 40px 0;
  }

  .promo-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .promo-content {
    padding: 28px 20px;
  }

  .promo-heading {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }

  .promo-text {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .promo-list {
    margin-bottom: 24px;
  }

  .promo-list li {
    font-size: 0.85rem;
    margin-bottom: 10px;
    padding-left: 20px;
  }

  .promo-btn {
    padding: 14px 28px;
    font-size: 0.95rem;
    width: 100%;
    text-align: center;
    border-radius: 120px;
  }

  .promo-image {
    order: -1;
    min-height: 300px;
  }

  .more-products-wrapper {
    margin-top: 24px;
    padding: 0 12px;
  }

  .more-products-btn {
    padding: 12px 32px;
    font-size: 14px;
    width: 100%;
    max-width: 300px;
  }

  .homeinterior-section {
    padding: 40px 0;
  }

  .homeinterior-main-heading {
    font-size: 1.6rem;
    margin-bottom: 24px;
  }

  .homeinterior-content-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .homeinterior-content {
    padding: 28px 20px;
  }

  .homeinterior-heading {
    font-size: 1.4rem;
    margin-bottom: 16px;
  }

  .homeinterior-text {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .homeinterior-list {
    margin-bottom: 24px;
  }

  .homeinterior-list li {
    font-size: 0.85rem;
    margin-bottom: 10px;
    padding-left: 20px;
  }

  .homeinterior-btn {
    padding: 14px 28px;
    font-size: 0.95rem;
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }

  .homeinterior-image {
    order: -1;
    min-height: 300px;
  }
}

/* =======================
   Large Desktop (Optional)
======================= */
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
    
  }

  .slide {
    height: 700px;
  }

  .hero-content {
    max-width: 800px;
  }
}
