/* ============================================
   MOCHUMBE FURNITURE - COMPLETE STYLES
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue: #1a237e;
  --blue-mid: #283593;
  --blue-light: #3949ab;
  --red: #b71c1c;
  --red-mid: #c62828;
  --accent: #8b0000;
  --white: #ffffff;
  --gray: #f7f8fc;
  --text: #1a1a2e;
  --muted: #666;
  --border: #e0e4f0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ===== OVERLAY & SIDE MENU ===== */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}
.overlay.active {
  opacity: 1;
  pointer-events: all;
}

.side-menu {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100vh;
  background: var(--blue);
  z-index: 1000;
  transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 24px 0;
}
.side-menu.open {
  left: 0;
}
.side-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.side-menu-header .logo-text {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.side-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}
.side-cats {
  flex: 1;
  padding: 20px 0;
  overflow-y: auto;
}
.side-cats h4 {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0 24px 10px;
}
.side-cat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 24px;
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  transition: 0.2s;
  border-left: 3px solid transparent;
}
.side-cat-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-left-color: var(--red-mid);
}
.side-cat-item i {
  width: 20px;
  color: rgba(255, 255, 255, 0.6);
}
.side-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.side-shop-btn {
  display: block;
  text-align: center;
  background: var(--red-mid);
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: 0.2s;
}
.side-shop-btn:hover {
  background: #e53935;
}

/* ===== POPUP ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 90px 24px 0 0;
}
.popup-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  width: 280px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  transform: translateY(-20px) scale(0.95);
  opacity: 0;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  border-top: 4px solid var(--red-mid);
  position: relative;
}
.popup-card.show {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}
.popup-card.hidden {
  display: none;
}
.popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--muted);
  cursor: pointer;
}
.popup-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}
.popup-card p {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.5;
}
.popup-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff;
  border: none;
  padding: 11px;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: 0.2s;
}
.popup-btn:hover {
  background: linear-gradient(135deg, var(--red), var(--red-mid));
}

/* ===== NOTIFICATION POPUP ===== */
.notification-popup {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #fff;
  border-radius: 16px;
  padding: 24px 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  z-index: 3000;
  display: none;
  align-items: center;
  gap: 20px;
  max-width: 500px;
  width: 90%;
  border-left: 5px solid var(--red-mid);
  transition: all 0.4s ease;
}
.notification-popup.show {
  display: flex;
  transform: translateX(-50%) translateY(0);
}
.notification-popup .notif-icon {
  font-size: 2rem;
  color: var(--red-mid);
  flex-shrink: 0;
}
.notification-popup .notif-content {
  flex: 1;
}
.notification-popup .notif-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.notification-popup .notif-content p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
}
.notification-popup .notif-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.notification-popup .notif-actions button {
  padding: 8px 18px;
  border-radius: 8px;
  border: none;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: 0.2s;
}
.notification-popup .notif-actions .allow-btn {
  background: var(--blue);
  color: #fff;
}
.notification-popup .notif-actions .allow-btn:hover {
  background: var(--red-mid);
}
.notification-popup .notif-actions .deny-btn {
  background: var(--gray);
  color: var(--muted);
}
.notification-popup .notif-actions .deny-btn:hover {
  background: #e0e0e0;
}

/* ===== HEADER & NAVIGATION ===== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 500;
  background: #fff;
  box-shadow: 0 2px 20px rgba(26, 35, 126, 0.08);
  height: auto;
  min-height: 70px;
}
.top-bar {
  background: var(--blue);
  color: #fff;
  text-align: center;
  font-size: 0.7rem;
  padding: 6px 10px;
  letter-spacing: 0.05em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.top-bar span {
  color: #ffd54f;
}
.nav-upper {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 24px;
  border-bottom: 1px solid var(--border);
  flex-wrap: nowrap;
  min-height: 70px;
}
.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  gap: 8px;
}
.nav-logo-img {
  height: 50px;
  width: auto;
  display: block;
  max-width: 200px;
  object-fit: contain;
}

.search-bar {
  flex: 0 1 420px;
  display: flex;
  align-items: center;
  background: var(--gray);
  border-radius: 50px;
  padding: 6px 16px;
  gap: 10px;
  min-width: 140px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}
.search-bar:focus-within {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(26, 35, 126, 0.1);
}
.search-bar i {
  color: var(--muted);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.search-bar input {
  border: none;
  background: none;
  outline: none;
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  width: 100%;
  color: var(--text);
  padding: 6px 0;
}
.search-bar input::placeholder {
  color: #aaa;
  font-weight: 300;
}
.search-bar .search-shortcut {
  font-size: 0.6rem;
  color: var(--muted);
  background: var(--border);
  padding: 2px 8px;
  border-radius: 4px;
  flex-shrink: 0;
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  margin-left: auto;
}
.register-btn {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.2s;
}
.register-btn:hover {
  background: var(--red-mid);
  transform: translateY(-1px);
}
.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--blue);
  padding: 6px 8px;
  position: relative;
  transition: 0.2s;
  border-radius: 50%;
}
.icon-btn:hover {
  color: var(--red-mid);
  background: rgba(183, 28, 28, 0.05);
}
.badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  background: var(--red-mid);
  color: #fff;
  border-radius: 50%;
  font-size: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 2px solid #fff;
}

.nav-lower {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 0 24px;
  background: #fff;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-lower::-webkit-scrollbar {
  display: none;
}
.nav-link {
  text-decoration: none;
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 10px 14px;
  border-bottom: 3px solid transparent;
  transition: 0.2s;
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  color: var(--blue);
  border-bottom-color: var(--red-mid);
}

.page {
  display: none;
}
.page.active {
  display: block;
}

/* ===== HERO ===== */
.hero {
  margin-top: 115px;
  min-height: calc(100vh - 115px);
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  align-items: center;
  background: linear-gradient(135deg, #eef0f8 0%, #f7f8fc 60%, #fff 100%);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 340px;
  height: 340px;
  background: radial-gradient(
    circle,
    rgba(26, 35, 126, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-text {
  padding: 60px 48px 60px 56px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(183, 28, 28, 0.08);
  color: var(--red-mid);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.hero-eyebrow span {
  width: 6px;
  height: 6px;
  background: var(--red-mid);
  border-radius: 50%;
  display: inline-block;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--blue);
  margin-bottom: 18px;
}
.hero h1 em {
  font-style: normal;
  color: var(--red-mid);
}
.hero p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 400px;
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--red-mid), var(--red));
  color: #fff;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  transition: 0.25s;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 6px 20px rgba(183, 28, 28, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(183, 28, 28, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid var(--blue);
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  transition: 0.25s;
  text-decoration: none;
  display: inline-block;
}
.btn-outline:hover {
  background: var(--blue);
  color: #fff;
}
.hero-stats {
  display: none;
}

.hero-visual {
  position: relative;
  height: 86vh;
  overflow: hidden;
}
.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.slide.active {
  opacity: 1;
}
.slide-1 {
  background: url(images/livingroomcollection.jpeg);
  background-size: cover;
  background-position: center;
}
.slide-2 {
  background: url(images/bedroomcollection2.jpeg);
  background-size: cover;
  background-position: center;
}
.slide-3 {
  background: url(images/diningcollection.jpeg);
  background-size: cover;
  background-position: center;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
}
.slide-label h3,
.slide-label p,
.hero-tag {
  color: #ffffff !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}
.slide-label p {
  opacity: 1 !important;
}
.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: 0.3s;
}
.dot.active {
  width: 24px;
  border-radius: 4px;
  background: #fff;
}
.slide-label {
  position: absolute;
  bottom: 60px;
  left: 40px;
  color: #fff;
  z-index: 5;
}
.slide-label h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.slide-label p {
  font-size: 0.85rem;
  opacity: 1;
}
.hero-tag {
  position: absolute;
  top: 40px;
  right: 40px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 5;
}

/* ===== SECTIONS ===== */
section {
  padding: 80px 56px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red-mid);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}
.section-label::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--red-mid);
}
h2.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 8px;
}
.section-sub {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 40px;
}

/* ==========================================
   ===== SHOP BY CATEGORIES =====
   ========================================== */
.categories-section {
  background: var(--white);
}

.category-explorer {
  display: flex;
  gap: 24px;
  background: var(--gray);
  border-radius: 20px;
  padding: 20px;
  min-height: 500px;
  height: 75vh;
  max-height: 600px;
  position: relative;
  overflow: hidden;
}

/* MAIN CATEGORY */
.cat-main-wrapper {
  flex: 0 0 38%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 50px 10px;
}

.cat-main {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  position: relative;
}

.cat-card-main {
  width: 100%;
  height: 100%;
  max-height: 700px;
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  font-weight: 700;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.4s ease;
  border: 3px solid transparent;
  position: relative;
  flex-shrink: 0;
  text-align: center;
  width: 100%;
  min-width: 200px;
}

.cat-card-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 16px;
  z-index: 0;
}

.cat-card-main > * {
  position: relative;
  z-index: 1;
}

.cat-card-main:hover {
  transform: scale(1.03);
  filter: brightness(1.1);
}

.cat-label-main {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.shop-hint-main {
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 16px;
  border-radius: 30px;
  backdrop-filter: blur(4px);
  opacity: 0.8;
}

/* NAVIGATION ARROWS */
.cat-nav-btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--blue);
  z-index: 10;
  transition: 0.3s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-nav-btn:hover {
  background: var(--blue);
  color: #fff;
  transform: translateX(-50%) scale(1.1);
}

.cat-nav-btn.up {
  top: 6px;
}

.cat-nav-btn.down {
  bottom: 6px;
}

.cat-arrow-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--red-mid);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.3s;
  z-index: 15;
  box-shadow: 0 4px 15px rgba(183, 28, 28, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

.cat-arrow-btn:hover {
  transform: scale(1.1);
  background: var(--red);
}

/* SUB-ITEMS */
.cat-sub-wrapper {
  flex: 0 0 62%;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  padding: 0 10px;
  height: 100%;
  display: flex;
  align-items: center;
}

.cat-sub-grid {
  display: flex;
  gap: 16px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 16px 4px;
  width: 100%;
  align-items: stretch;
  flex-wrap: nowrap;
  height: 100%;
}

.sub-item-grid {
  flex: 0 0 calc(50% - 8px);
  border-radius: 14px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: 0.3s;
  border: 2px solid transparent;
  min-height: 200px;
  max-height: 400px;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  position: relative;
  margin-top: 50px;
}

.sub-item-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 14px;
  z-index: 0;
}

.sub-item-grid > * {
  position: relative;
  z-index: 1;
}

.sub-item-grid:hover {
  border-color: var(--blue);
  transform: scale(1.03);
}

.sub-name-grid {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.sub-cat-grid {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* SCROLL BUTTONS */
.sub-scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: 0.2s;
}

.sub-scroll-btn:hover {
  background: var(--blue);
  color: #fff;
}

.sub-scroll-btn.left {
  left: 4px;
}

.sub-scroll-btn.right {
  right: 4px;
}

/* ==========================================
   ===== TRENDING PRODUCTS =====
   ========================================== */
.trending-section {
  background: var(--gray);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
  position: relative;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.product-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.product-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 0;
}
.product-img .prod-label {
  display: none;
}
.prod-bg-1 {
  background: url(images/3seatersofa.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-2 {
  background: url(images/kingbed2.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-3 {
  background: url(images/diningcollection.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-4 {
  background: url(images/exercutivedesk.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-5 {
  background: url(images/l-shapedcornersofa.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-6 {
  background: url(images/doublewardrobe.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-7 {
  background: url(images/tvstand.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-8 {
  background: url(images/4seaterdining.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-9 {
  background: url(images/wallpanel.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-10 {
  background: url(images/doubledoor.png);
  background-size: cover;
  background-position: center;
}
.prod-bg-11 {
  background: url(images/egonomicchaire1.png);
  background-size: cover;
  background-position: center;
}
.prod-bg-12 {
  background: url(images/bedframe2.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-13 {
  background: url(images/coofetable.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-14 {
  background: url(images/shelf.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-15 {
  background: url(images/reclinersofa.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-16 {
  background: url(images/sectional.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-17 {
  background: url(images/sleepersofa.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-18 {
  background: url(images/armchair1.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-19 {
  background: url(images/ottoman1.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-20 {
  background: url(images/wallshelf.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-21 {
  background: url(images/tv.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-22 {
  background: url(images/sidetable.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-23 {
  background: url(images/lamptable.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-24 {
  background: url(images/queenbed.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-25 {
  background: url(images/twinbed.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-26 {
  background: url(images/dresser.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-27 {
  background: url(images/nightstand.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-28 {
  background: url(images/wardrobe3door.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-29 {
  background: url(images/vanity2.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-30 {
  background: url(images/storagebench.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-31 {
  background: url(images/exercutivechair.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-32 {
  background: url(images/conferencetable.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-33 {
  background: url(images/officewardrob.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-34 {
  background: url(images/office.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-35 {
  background: url(images/lamp.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-36 {
  background: url(images/egonomicchaire1.png);
  background-size: cover;
  background-position: center;
}
.prod-bg-37 {
  background: url(images/roundtable.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-38 {
  background: url(images/diningbench.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-39 {
  background: url(images/barstool.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-40 {
  background: url(images/sideboard2.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-41 {
  background: url(images/buffet.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-42 {
  background: url(images/winerack.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-43 {
  background: url(images/diningset4.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-44 {
  background: url(images/interiorlamp.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-45 {
  background: url(images/decorativemirror.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-46 {
  background: url(images/rug.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-47 {
  background: url(images/slidingdoor.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-48 {
  background: url(images/frenchdoor.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-49 {
  background: url(images/pocketdoor.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-50 {
  background: url(images/folddoor.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-51 {
  background: url(images/doorframe.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-52 {
  background: url(images/doorhardware.jpeg);
  background-size: cover;
  background-position: center;
}
.prod-bg-53 {
  background: url(images/mirrordoor.jpeg);
  background-size: cover;
  background-position: center;
}

.wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  background: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: 0.2s;
  z-index: 2;
}
.wishlist-btn:hover,
.wishlist-btn.active {
  color: var(--red-mid);
}
.new-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--red-mid);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  z-index: 2;
}
.product-info {
  padding: 14px;
}
.product-category {
  font-size: 0.65rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}
.product-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.product-price-note {
  font-size: 0.7rem;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.product-price-note i {
  color: var(--red-mid);
}
.product-actions {
  display: flex;
  gap: 6px;
}
.add-cart-btn {
  flex: 1;
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 7px;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}
.add-cart-btn:hover {
  background: var(--red-mid);
}
.wa-btn {
  width: 32px;
  height: 32px;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  flex-shrink: 0;
}
.wa-btn:hover {
  background: #1da851;
}

/* ===== SERVICES ===== */
.services-section {
  background: #fff;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.service-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--red-mid));
  transform: scaleX(0);
  transition: 0.3s;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover {
  border-color: transparent;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(
    135deg,
    rgba(26, 35, 126, 0.08),
    rgba(183, 28, 28, 0.08)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.service-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}
.service-card p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: linear-gradient(
    135deg,
    var(--blue) 0%,
    var(--blue-mid) 60%,
    #1565c0 100%
  );
  padding: 48px 32px;
  border-radius: 15px;
  margin: 0 56px 40px;
}
.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-section h2 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.newsletter-section p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
  font-size: 0.9rem;
}
.newsletter-form {
  display: flex;
  gap: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 440px;
  margin: 0 auto;
  align-items: center;
}
.newsletter-form input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  color: #fff;
  padding: 8px 16px;
  min-width: 0;
}
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.newsletter-form button {
  background: #fff;
  color: var(--blue);
  border: none;
  padding: 11px 24px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.newsletter-form button:hover {
  background: var(--red-mid);
  color: #fff;
}

/* ===== REVIEWS ===== */
.reviews-section {
  background: var(--gray);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  position: relative;
}
.quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2.5rem;
  color: rgba(26, 35, 126, 0.06);
}
.stars {
  display: flex;
  gap: 3px;
  color: #ffb300;
  font-size: 0.8rem;
  margin-bottom: 12px;
}
.review-text {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}
.av-1 {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
}
.av-2 {
  background: linear-gradient(135deg, var(--red), var(--red-mid));
}
.av-3 {
  background: linear-gradient(135deg, #2e7d32, #66bb6a);
}
.reviewer-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}
.reviewer-loc {
  font-size: 0.72rem;
  color: var(--muted);
}

/* ===== CONTACT ===== */
.contact-section {
  background: #fff;
  padding: 80px 56px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 24px;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(
    135deg,
    rgba(26, 35, 126, 0.08),
    rgba(183, 28, 28, 0.08)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
}
.contact-item span {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}
.contact-form h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 20px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: 0.2s;
  background: #fff;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff;
  border: none;
  padding: 13px;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: 0.2s;
  margin-top: 4px;
}
.submit-btn:hover {
  background: var(--red-mid);
}
.wa-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-top: 12px;
  transition: 0.2s;
}
.wa-contact-btn:hover {
  background: #1da851;
}

/* ===== FOOTER ===== */
footer {
  background: var(--blue);
  color: #fff;
  padding: 56px 56px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand-name {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.footer-brand-name span {
  color: #ffd54f;
}
.footer-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 20px;
}
.social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  transition: 0.2s;
}
.social-link:hover {
  background: var(--red-mid);
}
.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.83rem;
  transition: 0.2s;
}
.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}
.footer-hours {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}
.footer-bottom a:hover {
  color: #fff;
}
.yrs-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}
.yrs-badge span {
  font-weight: 700;
  color: #ffd54f;
}

/* ===== SHOP PAGE ===== */
.shop-hero {
  margin-top: 115px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: url(images/shopbg.jpeg);
  background-size: cover;
  background-position: center;
}
.shop-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}
.shop-hero > * {
  position: relative;
  z-index: 1;
}
.shop-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.shop-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.shop-filters {
  padding: 32px 56px 0;
  background: #fff;
  position: sticky;
  top: 115px;
  z-index: 200;
  border-bottom: 1px solid var(--border);
}
.filter-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 0;
}
.filter-tabs::-webkit-scrollbar {
  display: none;
}
.filter-tab {
  background: none;
  border: 2px solid var(--border);
  color: var(--muted);
  font-family: "Poppins", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.2s;
  margin-bottom: 16px;
}
.filter-tab:hover,
.filter-tab.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.shop-content {
  padding: 40px 56px 80px;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  margin-top: 115px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
  background: url(images/livingroomw2.jpeg);
  background-size: cover;
  background-position: center;
  position: relative;
}
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}
.about-hero > * {
  position: relative;
  z-index: 1;
}
.about-hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.about-hero p {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.about-section {
  padding: 72px 56px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-visual {
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  background: url(images/diningcollection2.jpeg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
}
.about-text .section-label {
  margin-bottom: 10px;
}
.about-text h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 16px;
}
.about-text p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.milestones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.milestone {
  background: var(--gray);
  border-radius: 12px;
  padding: 18px;
  border-left: 3px solid var(--red-mid);
}
.milestone strong {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--blue);
  display: block;
}
.milestone span {
  font-size: 0.78rem;
  color: var(--muted);
}

.find-section {
  padding: 40px 56px;
  background: #fff;
}
.find-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.find-card {
  border-radius: 16px;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  position: relative;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.find-card:hover {
  transform: scale(1.03);
}
.find-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 16px;
  z-index: 0;
}
.find-card > * {
  position: relative;
  z-index: 1;
}
.find-card span {
  font-size: 1.4rem;
  font-weight: 700;
}
.find-1 {
  background-image: url(images/livingroom4.jpeg);
}
.find-2 {
  background-image: url(images/bedroomcollection.jpeg);
}
.find-3 {
  background-image: url(images/diningcollection.jpeg);
}
.find-4 {
  background-image: url(images/office.jpeg);
}

/* ===== SHOWROOM PAGE ===== */
.showroom-hero {
  margin-top: 115px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
  background: url(images/doorsmirror.jpeg);
  background-size: cover;
  background-position: center;
  position: relative;
}
.showroom-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}
.showroom-hero > * {
  position: relative;
  z-index: 1;
}
.showroom-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.showroom-hero p {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.gallery-section {
  padding: 72px 56px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 20px;
}
.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}
.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  z-index: 0;
}
.gallery-item > * {
  position: relative;
  z-index: 1;
}
.gallery-item:hover {
  transform: scale(1.02);
}
.gallery-item.tall {
  grid-row: span 2;
}
.gallery-item.wide {
  grid-column: span 2;
}
.g-1 {
  background-image: url(images/livingroom3.jpeg);
}
.g-2 {
  background-image: url(images/bedroomcollection2.jpeg);
}
.g-3 {
  background-image: url(images/diningcollection2.jpeg);
}
.g-4 {
  background-image: url(images/exercutivedesk.jpeg);
}
.g-5 {
  background-image: url(images/livingroom4.jpeg);
}
.g-6 {
  background-image: url(images/doorsmirror.jpeg);
}
.g-7 {
  background-image: url(images/tv.jpeg);
}
.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #fff;
  padding: 20px 16px 14px;
  font-weight: 600;
  font-size: 0.85rem;
  z-index: 2;
}

/* ===== CART ===== */
.cart-page {
  padding: 80px 56px;
  margin-top: 115px;
}
.cart-page h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 32px;
}
.cart-empty {
  text-align: center;
  padding: 64px 0;
  color: var(--muted);
}
.cart-empty i {
  font-size: 4rem;
  margin-bottom: 16px;
  color: var(--border);
}
.cart-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 700px;
}
.cart-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
}
.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.cart-item-info {
  flex: 1;
}
.cart-item-cat {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.cart-item-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}
.cart-item-note {
  font-size: 0.78rem;
  color: var(--blue);
  margin-top: 4px;
}
.cart-remove {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 1rem;
  transition: 0.2s;
  padding: 4px 8px;
}
.cart-remove:hover {
  color: var(--red-mid);
}
.cart-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 24px;
  transition: 0.2s;
}
.cart-wa-btn:hover {
  background: #1da851;
}

.floating-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  z-index: 400;
  transition: 0.2s;
}
.floating-wa:hover {
  transform: scale(1.1);
}

.toast {
  position: fixed;
  bottom: 90px;
  right: 28px;
  background: var(--blue);
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  transform: translateY(20px);
  opacity: 0;
  transition: 0.3s;
  z-index: 600;
  pointer-events: none;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
}
.modal-overlay.open {
  display: flex;
}
.modal-box {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  width: 380px;
  max-width: 90vw;
  position: relative;
}
.modal-box h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 8px;
}
.modal-box p {
  font-size: 0.83rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--muted);
}
.modal-submit {
  width: 100%;
  margin-top: 16px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff;
  border: none;
  padding: 13px;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: 0.2s;
}
.modal-submit:hover {
  background: var(--red-mid);
}
.modal-divider {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  margin: 14px 0;
}

/* ==========================================
   ===== RESPONSIVE =====
   ========================================== */

/* Category Responsive */
@media (max-width: 900px) {
  .category-explorer {
    flex-direction: column;
    gap: 12px;
    min-height: 500px;
    max-height: 650px;
    padding: 14px;
  }
  .cat-main-wrapper {
    flex: 1;
    width: 100%;
    max-height: 200px;
    padding: 10px 6px;
  }
  .cat-card-main {
    min-height: 160px;
    font-size: 1rem;
    padding: 16px 18px;
  }
  .cat-label-main {
    font-size: 1.8rem;
  }
  .cat-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  .cat-arrow-btn {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
    top: 10px;
    right: 10px;
  }
  .cat-sub-wrapper {
    flex: 1;
    width: 100%;
    min-height: 250px;
    max-height: 380px;
    padding: 0 6px;
  }
  .sub-item-grid {
    flex: 0 0 calc(50% - 6px);
    min-height: 140px;
    max-height: 200px;
    padding: 14px 10px;
  }
  .sub-name-grid {
    font-size: 0.85rem;
  }
  .sub-cat-grid {
    font-size: 0.6rem;
  }
  .sub-scroll-btn {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
  }
}

@media (max-width: 768px) {
  .category-explorer {
    min-height: 550px;
    max-height: 700px;
    padding: 12px;
  }
  .cat-main-wrapper {
    max-height: 200px;
  }
  .cat-card-main {
    min-height: 250px;
    padding: 14px;
  }
  .cat-label-main {
    font-size: 1.6rem;
  }
  .cat-nav-btn {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }
  .cat-arrow-btn {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
    top: 8px;
    right: 8px;
  }
  .cat-sub-wrapper {
    min-height: 220px;
    max-height: 390px;
    padding: 0 4px;
    margin-top: 150px;
  }
  .sub-item-grid {
    flex: 0 0 calc(50% - 6px);
    min-height: 120px;
    max-height: 350px;
    padding: 12px 8px;
  }
  .sub-name-grid {
    font-size: 0.8rem;
  }
  .sub-cat-grid {
    font-size: 0.55rem;
  }
  .sub-scroll-btn {
    width: 26px;
    height: 26px;
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .section-sub {
    font-size: 0.8rem;
  }
  .category-explorer {
    min-height: 480px;
    max-height: 600px;
    padding: 10px;
    gap: 8px;
    border-radius: 14px;
  }
  .cat-main-wrapper {
    max-height: 140px;
    padding: 6px 4px;
    min-height: 250px;
    border-radius: 15px;
    margin-top: 20px;
  }
  .cat-card-main {
    min-height: 400px;
    padding: 12px;
  }
  .cat-label-main {
    font-size: 1.4rem;
  }
  .shop-hint-main {
    font-size: 0.9rem;
    padding: 2px 12px;
  }
  .cat-nav-btn {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
  }
  .cat-arrow-btn {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
    top: 6px;
    right: 6px;
  }
  .cat-sub-wrapper {
    min-height: 100px;
    max-height: 280px;
    padding: 0 4px;
    border-radius: 10px;
    margin-top: 20px;
  }
  .sub-item-grid {
    flex: 0 0 calc(50% - 4px);
    min-height: 240px;
    max-height: 140px;
    padding: 10px 6px;
    border-radius: 10px;
    margin-top: 8px;
  }
  .sub-name-grid {
    font-size: 1rem;
  }
  .sub-cat-grid {
    font-size: 0.7rem;
  }
  .sub-scroll-btn {
    width: 22px;
    height: 22px;
    font-size: 0.6rem;
  }
  .sub-scroll-btn.left {
    left: 2px;
  }
  .sub-scroll-btn.right {
    right: 2px;
  }
}

/* Global Responsive */
@media (max-width: 1024px) {
  .nav-upper {
    padding: 10px 16px;
    gap: 8px;
    min-height: 65px;
  }
  .nav-logo-img {
    height: 40px;
    max-width: 150px;
  }
  .search-bar {
    max-width: 320px;
    min-width: 100px;
    margin-left: 0;
  }
  .register-btn {
    padding: 6px 12px;
    font-size: 0.7rem;
  }
  .nav-link {
    font-size: 0.75rem;
    padding: 8px 10px;
  }
  .hero {
    margin-top: 105px;
  }
  .shop-hero,
  .about-hero,
  .showroom-hero {
    margin-top: 105px;
  }
  .cart-page {
    margin-top: 105px;
  }
  .hero-text {
    padding: 40px 32px 40px 40px;
  }
  .hero h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  }
  .hero p {
    font-size: 0.85rem;
  }
  section {
    padding: 60px 32px;
  }
  .newsletter-section {
    margin: 0 32px 32px;
    padding: 40px 24px;
  }
  .newsletter-section h2 {
    font-size: 1.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  footer {
    padding: 40px 32px 20px;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .shop-filters,
  .shop-content {
    padding-left: 32px;
    padding-right: 32px;
  }
  .cart-page {
    padding: 60px 32px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-visual {
    height: 300px;
  }
  .find-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .find-card {
    min-height: 160px;
  }
}

@media (max-width: 768px) {
  .nav-upper {
    padding: 8px 12px;
    gap: 6px;
    flex-wrap: nowrap;
    min-height: 60px;
  }
  .nav-logo-img {
    height: 35px;
    max-width: 120px;
  }
  .search-bar {
    max-width: 200px;
    min-width: 60px;
    padding: 4px 12px;
    gap: 6px;
    flex: 0 1 180px;
  }
  .search-bar input {
    font-size: 0.7rem;
  }
  .search-bar .search-shortcut {
    display: none;
  }
  .search-bar i {
    font-size: 0.8rem;
  }
  .register-btn {
    display: none;
  }
  .icon-btn {
    font-size: 0.9rem;
    padding: 4px 6px;
  }
  .badge {
    width: 16px;
    height: 16px;
    font-size: 0.45rem;
  }
  .nav-lower {
    padding: 0 12px;
    gap: 0;
  }
  .nav-link {
    font-size: 0.7rem;
    padding: 8px 10px;
  }
  .hero {
    margin-top: 95px;
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .shop-hero,
  .about-hero,
  .showroom-hero {
    margin-top: 95px;
  }
  .cart-page {
    margin-top: 95px;
  }
  .hero-text {
    padding: 30px 20px 20px;
    text-align: center;
  }
  .hero p {
    max-width: 100%;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-visual {
    height: 280px;
  }
  .hero h1 {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }
  .slide-label {
    bottom: 30px;
    left: 20px;
  }
  .slide-label h3 {
    font-size: 1.2rem;
  }
  .hero-tag {
    top: 16px;
    right: 16px;
    font-size: 0.65rem;
    padding: 6px 12px;
  }
  section {
    padding: 40px 16px;
  }
  .section-title {
    font-size: 1.4rem;
  }
  .section-sub {
    font-size: 0.8rem;
    max-width: 100%;
  }
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
  }
  .product-img {
    height: 140px;
  }
  .product-name {
    font-size: 0.8rem;
  }
  .product-category {
    font-size: 0.55rem;
  }
  .add-cart-btn {
    font-size: 0.65rem;
    padding: 5px;
  }
  .wa-btn {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
  }
  .newsletter-section {
    margin: 0 12px 24px;
    padding: 28px 16px;
    border-radius: 12px;
  }
  .newsletter-section h2 {
    font-size: 1.2rem;
  }
  .newsletter-section p {
    font-size: 0.8rem;
    margin-bottom: 16px;
  }
  .newsletter-form {
    flex-wrap: wrap;
    background: transparent;
    border: none;
    padding: 0;
    gap: 8px;
    border-radius: 0;
    max-width: 100%;
  }
  .newsletter-form input {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    flex: none;
  }
  .newsletter-form button {
    width: 100%;
    border-radius: 50px;
    padding: 10px;
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  footer {
    padding: 32px 16px 16px;
  }
  .footer-brand-name {
    font-size: 1.2rem;
  }
  .footer-desc {
    font-size: 0.75rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 180px;
    gap: 12px;
  }
  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }
  .gallery-label {
    font-size: 0.75rem;
    padding: 12px 12px 10px;
  }
  .shop-hero {
    height: 200px;
  }
  .shop-hero h1 {
    font-size: 1.8rem;
  }
  .shop-hero p {
    font-size: 0.8rem;
  }
  .shop-filters {
    padding: 16px 16px 0;
    top: 95px;
  }
  .filter-tab {
    font-size: 0.7rem;
    padding: 6px 14px;
    margin-bottom: 10px;
  }
  .shop-content {
    padding: 24px 16px 40px;
  }
  .about-hero {
    height: 220px;
  }
  .about-hero h1 {
    font-size: 1.8rem;
  }
  .about-section {
    padding: 40px 16px;
  }
  .about-grid {
    gap: 30px;
  }
  .about-visual {
    height: 220px;
  }
  .about-text h2 {
    font-size: 1.4rem;
  }
  .about-text p {
    font-size: 0.8rem;
  }
  .milestones {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .milestone strong {
    font-size: 1.2rem;
  }
  .find-section {
    padding: 30px 16px;
  }
  .find-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .find-card {
    min-height: 120px;
    font-size: 1.2rem;
  }
  .find-card span {
    font-size: 1rem;
  }
  .showroom-hero {
    height: 200px;
  }
  .showroom-hero h1 {
    font-size: 1.8rem;
  }
  .gallery-section {
    padding: 40px 16px;
  }
  .cart-page {
    padding: 40px 16px;
  }
  .cart-page h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
  .cart-item {
    padding: 14px;
    gap: 12px;
    flex-wrap: wrap;
  }
  .cart-item-img {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  .cart-item-name {
    font-size: 0.8rem;
  }
  .cart-wa-btn {
    padding: 10px 20px;
    font-size: 0.8rem;
    width: 100%;
    justify-content: center;
  }
  .contact-section {
    padding: 40px 16px;
  }
  .contact-grid {
    gap: 24px;
  }
  .contact-info h3 {
    font-size: 1.2rem;
  }
  .contact-item {
    gap: 12px;
    margin-bottom: 14px;
  }
  .contact-icon {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }
  .contact-item span {
    font-size: 0.8rem;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .submit-btn {
    padding: 10px;
    font-size: 0.8rem;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .review-card {
    padding: 18px;
  }
  .review-text {
    font-size: 0.8rem;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .service-card {
    padding: 18px 16px;
  }
  .service-card h4 {
    font-size: 0.85rem;
  }
  .service-card p {
    font-size: 0.75rem;
  }
  .service-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  .floating-wa {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    bottom: 16px;
    right: 16px;
  }
  .toast {
    bottom: 72px;
    right: 16px;
    font-size: 0.75rem;
    padding: 10px 16px;
  }
  .notification-popup {
    padding: 16px 18px;
    bottom: 80px;
    flex-wrap: wrap;
    gap: 10px;
    width: 92%;
  }
  .notification-popup .notif-actions {
    width: 100%;
    justify-content: flex-end;
  }
  .notification-popup .notif-actions button {
    padding: 6px 14px;
    font-size: 0.7rem;
  }
  .notification-popup .notif-content h4 {
    font-size: 0.9rem;
  }
  .notification-popup .notif-content p {
    font-size: 0.75rem;
  }
  .notification-popup .notif-icon {
    font-size: 1.5rem;
  }
  .modal-box {
    padding: 24px 20px;
    width: 92%;
  }
  .modal-box h3 {
    font-size: 1.1rem;
  }
  .popup-card {
    width: 240px;
    padding: 20px 16px;
  }
  .popup-card h3 {
    font-size: 0.9rem;
  }
  .popup-card p {
    font-size: 0.75rem;
  }
  .popup-overlay {
    padding: 60px 12px 0 0;
  }
  .side-menu {
    width: 260px;
    left: -280px;
  }
  .side-menu.open {
    left: 0;
  }
  .yrs-badge {
    font-size: 0.65rem;
    padding: 4px 12px;
  }
}

@media (max-width: 480px) {
  .top-bar {
    font-size: 0.55rem;
    padding: 4px 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .nav-upper {
    padding: 6px 8px;
    gap: 4px;
    min-height: 50px;
  }
  .hamburger span {
    width: 18px;
    height: 2px;
    gap: 3px;
  }
  .nav-logo-img {
    height: 30px;
    max-width: 90px;
  }
  .search-bar {
    max-width: 120px;
    min-width: 50px;
    padding: 3px 8px;
    gap: 4px;
    border-radius: 30px;
    flex: 0 1 100px;
  }
  .search-bar input {
    font-size: 0.6rem;
    padding: 3px 0;
  }
  .search-bar i {
    font-size: 0.65rem;
  }
  .icon-btn {
    font-size: 0.75rem;
    padding: 3px 4px;
  }
  .badge {
    width: 14px;
    height: 14px;
    font-size: 0.4rem;
    border-width: 1px;
  }
  .nav-lower {
    padding: 0 8px;
  }
  .nav-link {
    font-size: 0.6rem;
    padding: 6px 8px;
  }
  .hero {
    margin-top: 85px;
  }
  .shop-hero,
  .about-hero,
  .showroom-hero {
    margin-top: 85px;
  }
  .cart-page {
    margin-top: 85px;
  }
  .hero-text {
    padding: 20px 14px 16px;
  }
  .hero h1 {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  .hero p {
    font-size: 0.75rem;
    margin-bottom: 18px;
  }
  .hero-eyebrow {
    font-size: 0.6rem;
    padding: 4px 10px;
    margin-bottom: 14px;
  }
  .btn-primary,
  .btn-outline {
    padding: 10px 20px;
    font-size: 0.75rem;
  }
  .hero-visual {
    height: 200px;
  }
  .slide-label h3 {
    font-size: 1rem;
  }
  .slide-label p {
    font-size: 0.65rem;
  }
  .hero-tag {
    top: 10px;
    right: 10px;
    font-size: 0.5rem;
    padding: 4px 8px;
  }
  section {
    padding: 30px 12px;
  }
  .section-label {
    font-size: 0.6rem;
  }
  .section-title {
    font-size: 1.2rem;
  }
  .section-sub {
    font-size: 0.7rem;
    margin-bottom: 20px;
  }
  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .product-img {
    height: 110px;
  }
  .product-info {
    padding: 10px;
  }
  .product-name {
    font-size: 0.7rem;
    margin-bottom: 2px;
  }
  .product-category {
    font-size: 0.5rem;
  }
  .product-price-note {
    font-size: 0.6rem;
    margin-bottom: 6px;
  }
  .add-cart-btn {
    font-size: 0.55rem;
    padding: 4px;
    border-radius: 6px;
  }
  .wa-btn {
    width: 24px;
    height: 24px;
    font-size: 0.6rem;
    border-radius: 6px;
  }
  .new-badge {
    font-size: 0.45rem;
    padding: 2px 6px;
    top: 6px;
    left: 6px;
  }
  .wishlist-btn {
    width: 26px;
    height: 26px;
    font-size: 0.7rem;
    top: 6px;
    right: 6px;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .service-card {
    padding: 14px 12px;
    border-radius: 12px;
  }
  .service-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
    margin-bottom: 8px;
    border-radius: 8px;
  }
  .service-card h4 {
    font-size: 0.7rem;
  }
  .service-card p {
    font-size: 0.6rem;
  }
  .newsletter-section {
    padding: 20px 12px;
    margin: 0 6px 16px;
    border-radius: 10px;
  }
  .newsletter-section h2 {
    font-size: 1rem;
  }
  .newsletter-section p {
    font-size: 0.7rem;
    margin-bottom: 12px;
  }
  .newsletter-form input {
    font-size: 0.7rem;
    padding: 8px 12px;
  }
  .newsletter-form button {
    font-size: 0.7rem;
    padding: 8px 16px;
  }
  .reviews-grid {
    gap: 12px;
  }
  .review-card {
    padding: 14px;
  }
  .quote-icon {
    font-size: 1.5rem;
    top: 12px;
    right: 12px;
  }
  .stars {
    font-size: 0.6rem;
  }
  .review-text {
    font-size: 0.7rem;
    margin-bottom: 10px;
  }
  .reviewer-avatar {
    width: 32px;
    height: 32px;
    font-size: 0.7rem;
  }
  .reviewer-name {
    font-size: 0.7rem;
  }
  .reviewer-loc {
    font-size: 0.6rem;
  }
  .shop-hero {
    height: 160px;
  }
  .shop-hero h1 {
    font-size: 1.4rem;
  }
  .shop-hero p {
    font-size: 0.7rem;
  }
  .shop-filters {
    padding: 10px 12px 0;
    top: 85px;
  }
  .filter-tab {
    font-size: 0.6rem;
    padding: 4px 10px;
    border-width: 1.5px;
    margin-bottom: 8px;
  }
  .shop-content {
    padding: 16px 12px 30px;
  }
  .about-hero {
    height: 180px;
  }
  .about-hero h1 {
    font-size: 1.4rem;
  }
  .about-hero p {
    font-size: 0.75rem;
  }
  .about-section {
    padding: 30px 12px;
  }
  .about-visual {
    height: 180px;
  }
  .about-text h2 {
    font-size: 1.2rem;
  }
  .about-text p {
    font-size: 0.7rem;
    margin-bottom: 10px;
  }
  .milestones {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 16px;
  }
  .milestone {
    padding: 12px;
    border-left-width: 2px;
  }
  .milestone strong {
    font-size: 1rem;
  }
  .milestone span {
    font-size: 0.6rem;
  }
  .find-section {
    padding: 20px 12px;
  }
  .find-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .find-card {
    min-height: 80px;
    font-size: 1.2rem;
    padding: 12px;
  }
  .find-card span {
    font-size: 0.7rem;
  }
  .showroom-hero {
    height: 160px;
  }
  .showroom-hero h1 {
    font-size: 1.4rem;
  }
  .gallery-section {
    padding: 30px 12px;
  }
  .gallery-grid {
    grid-auto-rows: 140px;
    gap: 8px;
  }
  .gallery-label {
    font-size: 0.6rem;
    padding: 8px 10px 6px;
  }
  .cart-page {
    padding: 30px 12px;
  }
  .cart-page h2 {
    font-size: 1.2rem;
    margin-bottom: 16px;
  }
  .cart-item {
    padding: 10px;
    gap: 10px;
  }
  .cart-item-img {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  .cart-item-name {
    font-size: 0.7rem;
  }
  .cart-item-cat {
    font-size: 0.55rem;
  }
  .cart-item-note {
    font-size: 0.6rem;
  }
  .cart-remove {
    font-size: 0.8rem;
  }
  .cart-wa-btn {
    padding: 8px 16px;
    font-size: 0.7rem;
  }
  .contact-section {
    padding: 30px 12px;
  }
  .contact-info h3 {
    font-size: 1rem;
  }
  .contact-item span {
    font-size: 0.7rem;
  }
  .contact-icon {
    width: 32px;
    height: 32px;
    font-size: 0.7rem;
  }
  .contact-form h3 {
    font-size: 1rem;
  }
  .form-group label {
    font-size: 0.6rem;
  }
  .form-group input,
  .form-group textarea {
    padding: 8px 10px;
    font-size: 0.7rem;
    border-radius: 8px;
  }
  .submit-btn {
    font-size: 0.7rem;
    padding: 8px;
  }
  .wa-contact-btn {
    font-size: 0.7rem;
    padding: 8px 12px;
  }
  .footer-grid {
    gap: 16px;
  }
  footer {
    padding: 24px 12px 12px;
  }
  .footer-brand-name {
    font-size: 1rem;
  }
  .footer-desc {
    font-size: 0.65rem;
    margin-bottom: 12px;
  }
  .social-link {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
  }
  .footer-col h5 {
    font-size: 0.65rem;
    margin-bottom: 10px;
  }
  .footer-links a {
    font-size: 0.7rem;
  }
  .footer-hours {
    font-size: 0.7rem;
  }
  .footer-bottom p {
    font-size: 0.6rem;
  }
  .footer-bottom a {
    font-size: 0.6rem;
  }
  .floating-wa {
    width: 38px;
    height: 38px;
    font-size: 1rem;
    bottom: 12px;
    right: 12px;
  }
  .toast {
    bottom: 60px;
    right: 12px;
    font-size: 0.65rem;
    padding: 8px 12px;
  }
  .modal-box {
    padding: 18px 14px;
    border-radius: 14px;
  }
  .modal-box h3 {
    font-size: 0.9rem;
  }
  .modal-box p {
    font-size: 0.7rem;
    margin-bottom: 16px;
  }
  .modal-submit {
    padding: 10px;
    font-size: 0.8rem;
  }
  .popup-card {
    width: 200px;
    padding: 16px 12px;
  }
  .popup-card h3 {
    font-size: 0.8rem;
  }
  .popup-card p {
    font-size: 0.65rem;
    margin-bottom: 12px;
  }
  .popup-btn {
    font-size: 0.7rem;
    padding: 8px;
  }
  .notification-popup {
    padding: 12px 14px;
    bottom: 64px;
    gap: 8px;
    border-left-width: 3px;
  }
  .notification-popup .notif-icon {
    font-size: 1.2rem;
  }
  .notification-popup .notif-content h4 {
    font-size: 0.75rem;
  }
  .notification-popup .notif-content p {
    font-size: 0.65rem;
  }
  .notification-popup .notif-actions button {
    font-size: 0.6rem;
    padding: 4px 10px;
  }
  .yrs-badge {
    font-size: 0.55rem;
    padding: 3px 10px;
  }
}
