:root {
  --primary: #6D3B5B;
  --primary-dark: #532947;
  --secondary: #C96B84;
  --accent: #D4AF37;
  --bg: #FFF9F5;
  --card: #FFFFFF;
  --text: #242124;
  --text-secondary: #6B6468;
  --border: #E8DDE1;
  --success: #22C55E;
  --danger: #DC2626;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(109, 59, 91, 0.08);
  --shadow-md: 0 10px 30px rgba(109, 59, 91, 0.12);
  --shadow-lg: 0 20px 50px rgba(109, 59, 91, 0.18);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0 0 0.5em;
  line-height: 1.2;
  color: var(--primary-dark);
}

p {
  margin: 0 0 1em;
  color: var(--text-secondary);
}

button {
  font-family: inherit;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* Layout */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: #FBF3EE;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 40px);
}

.section-header p {
  font-size: 17px;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--secondary);
  color: #fff;
}

.btn-secondary:hover {
  background: #b45a72;
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-gold {
  background: var(--accent);
  color: #3a2e0d;
}

.btn-gold:hover {
  background: #c29e2c;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  padding: 10px 20px;
  font-size: 14px;
}

.btn-whatsapp:hover {
  background: #1fb958;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

/* Status bar */

.status-bar {
  background: var(--primary-dark);
  color: #fff;
  font-size: 13px;
}

.status-bar-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 24px;
  justify-content: flex-end;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.status-open {
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
}

.status-closed {
  background: var(--danger);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.25);
}

/* Header */

.site-header {
  background: rgba(255, 249, 245, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  color: var(--primary-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
  border-color: var(--secondary);
}

.main-nav .btn-whatsapp {
  border: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary-dark);
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */

.hero {
  background: linear-gradient(135deg, #FFF9F5 0%, #FBEAF0 55%, #F6E4EC 100%);
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  color: var(--secondary);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin-top: 10px;
}

.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--secondary);
  font-size: 20px;
  margin-bottom: 16px;
}

.hero p.intro {
  font-size: 17px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-media {
  position: relative;
}

.hero-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.floor-strip {
  display: flex;
  gap: 16px;
  row-gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.floor-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
  box-shadow: var(--shadow-sm);
}

.floor-chip .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* Two column floor preview */

.two-col-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.preview-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.preview-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.preview-card-img {
  height: 260px;
  overflow: hidden;
  position: relative;
}

.preview-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.preview-card:hover .preview-card-img img {
  transform: scale(1.06);
}

.floor-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 2;
}

.preview-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.preview-card-body h3 {
  font-size: 24px;
}

.preview-card-body .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Chips */

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.chip {
  display: inline-block;
  background: #FBF0F5;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid #F1D9E3;
}

/* Cards grid */

.grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.card-img {
  height: 210px;
  overflow: hidden;
  background: #f2e9ee;
  position: relative;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.card-cat {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary);
  font-weight: 700;
}

.card-title {
  font-size: 19px;
  margin: 0;
}

.card-desc {
  font-size: 14px;
  margin: 0;
  flex: 1;
  color: var(--text-secondary);
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}

.price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--primary);
}

.badge {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-block;
}

.badge-featured {
  background: #FFF3D6;
  color: #8a6d10;
}

.badge-new {
  background: #E4F5E9;
  color: #1b8148;
}

.badge-in-stock {
  background: #E4F5E9;
  color: #1b8148;
}

.badge-out-stock {
  background: #FBE4E4;
  color: var(--danger);
}

/* Why choose us */

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.why-item {
  text-align: center;
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.why-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
}

.why-item h3 {
  font-size: 17px;
}

.why-item p {
  font-size: 14px;
  margin: 0;
}

/* Reviews */

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

.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}

.review-stars {
  color: var(--accent);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.review-name {
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 2px;
}

.review-date {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.review-text {
  font-size: 14.5px;
  color: var(--text-secondary);
  margin: 0;
}

/* Gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}

.filter-btn {
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(36, 33, 36, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 40px;
}

.lightbox-overlay.open {
  display: flex;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-sm);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: #fff;
  font-size: 32px;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

/* Location */

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

.location-info .floor-line {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  font-weight: 600;
}

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.map-frame iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

/* Forms */

.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--primary-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14.5px;
  background: #fff;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(201, 107, 132, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-error {
  color: var(--danger);
  font-size: 13px;
  margin-top: 4px;
}

.form-success {
  background: #E4F5E9;
  color: #1b8148;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-weight: 600;
}

.rating-select {
  display: flex;
  gap: 6px;
}

.rating-select button {
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--border);
  padding: 0;
  line-height: 1;
}

.rating-select button.active,
.rating-select button:hover {
  color: var(--accent);
}

/* FAQ */

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--primary-dark);
}

.faq-question::after {
  content: '+';
  font-size: 22px;
  color: var(--secondary);
  transition: transform 0.25s;
  flex-shrink: 0;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 24px;
}

.faq-answer-inner {
  padding-bottom: 20px;
  font-size: 14.5px;
  color: var(--text-secondary);
}

/* Misc page structure */

.breadcrumb {
  padding: 20px 0;
  font-size: 14px;
  color: var(--text-secondary);
}

.breadcrumb a {
  color: var(--primary);
  font-weight: 600;
}

.page-header {
  background: linear-gradient(135deg, #FBEAF0, #FFF9F5);
  padding: 56px 0;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(30px, 4vw, 44px);
}

.page-header p {
  max-width: 600px;
  margin: 0 auto;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}

.detail-gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 14px;
}

.detail-gallery-main img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.detail-thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.detail-thumbs img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
}

.detail-thumbs img.active {
  border-color: var(--secondary);
}

.detail-info .price {
  font-size: 30px;
  display: block;
  margin: 14px 0;
}

.detail-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}

.detail-meta-row {
  display: flex;
  gap: 8px;
  font-size: 14.5px;
}

.detail-meta-row strong {
  color: var(--primary-dark);
  min-width: 130px;
  flex-shrink: 0;
}

.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-images {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
}

.about-images img {
  border-radius: var(--radius-md);
  object-fit: cover;
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.about-images .stack {
  display: grid;
  gap: 14px;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
}

.split-section.reverse .split-media {
  order: 2;
}

.split-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.working-hours-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.working-hours-table th,
.working-hours-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
}

.working-hours-table th {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}

.working-hours-table tr:last-child td {
  border-bottom: none;
}

.working-hours-table tr.today {
  background: #FBF0F5;
  font-weight: 700;
}

.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
}

.pagination a,
.pagination span {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 14px;
}

.pagination a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.pagination .current {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-secondary);
  grid-column: 1 / -1;
}

/* Footer */

.site-footer {
  background: var(--primary-dark);
  color: #f3e6ee;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding: 64px 24px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-brand .brand-name {
  color: #fff;
}

.site-footer h4 {
  color: #f3d9e6;
  font-size: 15px;
  margin-bottom: 14px;
}

.site-footer p {
  color: #e6cfda;
  font-size: 14px;
}

.footer-col a {
  display: block;
  color: #e6cfda;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--accent);
}

.shop-status-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #fff;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: #d9b9c9;
}

.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: var(--shadow-lg);
  z-index: 90;
  transition: transform 0.2s;
}

.floating-whatsapp:hover {
  transform: scale(1.08);
}

/* Responsive */

@media (max-width: 960px) {
  .hero-inner,
  .two-col-preview,
  .location-grid,
  .detail-grid,
  .about-hero,
  .split-section {
    grid-template-columns: 1fr;
  }

  .split-section.reverse .split-media {
    order: 0;
  }

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

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

  .review-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: min(78vw, 320px);
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 90px 28px 28px;
    box-shadow: var(--shadow-lg);
    transition: right 0.3s ease;
    z-index: 99;
    overflow-y: auto;
  }

  .main-nav.open {
    right: 0;
  }

  .main-nav a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }

  .main-nav .btn-whatsapp {
    margin-top: 12px;
    text-align: center;
    justify-content: center;
  }

  .hamburger {
    display: flex;
  }

  .grid-cards {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

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

  .about-images {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding: 48px 24px 30px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .status-bar-inner {
    justify-content: center;
  }

  .hero {
    padding: 60px 0 70px;
  }

  .section {
    padding: 56px 0;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-actions .btn,
  .category-tabs .filter-btn {
    flex: 1 1 auto;
  }
}