:root {
  --navy: #832a89;
  --navy-light: #9a3da0;
  --gold: #36013f;
  --gold-light: #514ea2;
  --white: #ffffff;
  --off-white: #f9f7fa;
  --gray-100: #f5f5f5;
  --gray-200: #e8e8e8;
  --gray-300: #d1d1d1;
  --gray-500: #888;
  --gray-700: #444;
  --gray-900: #212121;
  --font-heading: 'Manrope', 'Inter', sans-serif;
  --font-body: 'Montserrat', 'Inter', -apple-system, sans-serif;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 8px;
  --transition: 0.2s ease;
  --footer-bg: #68226d;
  --tertiary: #514ea2;
}

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

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--navy); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.site-header {
  background: var(--navy);
  padding: 0 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { display: flex; align-items: baseline; gap: 8px; }
.logo-text { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--white); }
.logo-sub { font-family: var(--font-heading); font-size: 1rem; color: var(--white); opacity: 0.9; }
.main-nav { display: flex; gap: 28px; align-items: center; }
.main-nav > a, .nav-dropdown-toggle { color: var(--white); font-weight: 500; font-size: 0.95rem; transition: color var(--transition); letter-spacing: 0.3px; text-decoration: none; background: none; border: none; cursor: pointer; font-family: var(--font-body); padding: 0; display: inline-flex; align-items: center; gap: 4px; }
.main-nav > a:hover, .nav-dropdown-toggle:hover { color: rgba(255,255,255,0.7); }
.mobile-menu-btn { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; padding: 8px; }

.nav-dropdown { position: relative; }
.dropdown-arrow { font-size: 0.7rem; transition: transform var(--transition); }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 200px; padding: 8px 0; opacity: 0; visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  margin-top: 16px; z-index: 200;
}
.nav-dropdown-menu::before {
  content: ""; position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  border: 8px solid transparent; border-bottom-color: var(--white);
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; }
.nav-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
.nav-dropdown-menu a {
  display: block; padding: 10px 20px; color: var(--navy); font-size: 0.9rem;
  font-weight: 500; transition: background var(--transition);
}
.nav-dropdown-menu a:hover { background: var(--off-white); color: var(--navy); }

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--gold) 100%);
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23832a89"/><circle cx="600" cy="300" r="400" fill="%239a3da0" opacity="0.3"/><circle cx="200" cy="500" r="300" fill="%23514ea2" opacity="0.2"/></svg>') center/cover;
  opacity: 0.5;
}
.hero-content { position: relative; z-index: 1; text-align: center; width: 100%; padding: 60px 20px; }
.hero-content h1 {
  font-family: var(--font-heading); font-size: 3rem; font-weight: 700;
  color: var(--white); margin-bottom: 16px; line-height: 1.2;
}
.hero-content p { color: rgba(255,255,255,0.8); font-size: 1.2rem; margin-bottom: 40px; }

.hero-search {
  display: flex; gap: 0; max-width: 800px; margin: 0 auto;
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.search-input {
  flex: 1; border: none; padding: 16px 20px; font-size: 1rem;
  font-family: var(--font-body); outline: none; min-width: 0;
}
.search-select {
  border: none; border-left: 1px solid var(--gray-200); padding: 16px 16px;
  font-size: 0.9rem; background: var(--white); cursor: pointer; font-family: var(--font-body);
}

.btn {
  display: inline-block; padding: 12px 28px; font-size: 0.95rem; font-weight: 600;
  border: none; border-radius: var(--radius); cursor: pointer;
  font-family: var(--font-body); text-align: center; transition: all var(--transition);
  text-decoration: none; line-height: 1.4;
}
.btn-gold { background: var(--navy); color: var(--white); }
.btn-gold:hover { background: var(--navy-light); color: var(--white); }
.btn-outline { background: transparent; border: 2px solid var(--navy); color: var(--navy); padding: 10px 26px; }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-full { width: 100%; }

.section { padding: 80px 0; }
.section-alt { background: var(--off-white); }
.section-title {
  font-family: var(--font-heading); font-size: 2rem; font-weight: 600;
  color: var(--navy); margin-bottom: 40px; text-align: center;
}

.property-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.property-grid-small { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

.property-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition);
  display: block; color: inherit;
}
.property-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-image { position: relative; height: 220px; overflow: hidden; background: var(--gray-200); }
.card-image img { width: 100%; height: 100%; object-fit: cover; }
.status-badge {
  display: inline-block; padding: 4px 12px; border-radius: 4px;
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
}
.card-image .status-badge { position: absolute; top: 12px; left: 12px; }
.badge-active { background: var(--gold); color: var(--white); }
.badge-pending { background: #e67e22; color: var(--white); }
.badge-sold { background: var(--gray-500); color: var(--white); }

.card-body { padding: 20px; }
.card-price { font-family: var(--font-heading); font-size: 1.3rem; color: var(--navy); margin-bottom: 4px; }
.card-address { color: var(--gray-500); font-size: 0.9rem; margin-bottom: 12px; }
.card-features { display: flex; gap: 16px; font-size: 0.85rem; color: var(--gray-700); flex-wrap: wrap; }
.card-features span { display: flex; align-items: center; gap: 4px; }

.split-sections { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.split-section { text-align: center; }
.split-section .section-title { font-size: 1.5rem; }

.cta-section { background: var(--tertiary); }
.cta-content { text-align: center; }
.cta-content h2 { font-family: var(--font-heading); font-size: 2rem; color: var(--white); margin-bottom: 12px; }
.cta-content p { color: rgba(255,255,255,0.7); margin-bottom: 24px; }

.page-header { background: var(--navy); padding: 40px 0; }
.page-header h1 { font-family: var(--font-heading); color: var(--white); font-size: 2rem; }
.page-header p { color: rgba(255,255,255,0.7); }

.listings-layout { display: grid; grid-template-columns: 280px 1fr; gap: 32px; }
.filter-sidebar {
  background: var(--white); border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow); align-self: flex-start; position: sticky; top: 90px;
}
.filter-sidebar h3 { font-family: var(--font-heading); margin-bottom: 20px; color: var(--navy); }
.filter-group { margin-bottom: 16px; }
.filter-group label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 4px; color: var(--gray-700); }
.filter-input {
  width: 100%; padding: 10px 12px; border: 1px solid var(--gray-200);
  border-radius: 6px; font-size: 0.9rem; font-family: var(--font-body);
}

.empty-state { text-align: center; padding: 60px 20px; }
.empty-state h3 { font-family: var(--font-heading); color: var(--navy); margin-bottom: 8px; }
.empty-msg { text-align: center; color: var(--gray-500); padding: 40px 0; }

.pagination { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 40px; flex-wrap: wrap; }
.page-info { font-size: 0.9rem; color: var(--gray-500); }

.zpd { padding: 24px 0 80px; }

.zpd-gallery-wrapper { margin-bottom: 24px; border-radius: var(--radius); overflow: hidden; background: var(--gray-200); }
.zpd-gallery-tabs { display: flex; background: var(--gray-100); border-bottom: 1px solid var(--gray-200); overflow-x: auto; -webkit-overflow-scrolling: touch; }
.zpd-tab {
  display: flex; align-items: center; gap: 6px; padding: 12px 20px;
  font-size: 0.9rem; font-weight: 500; color: var(--gray-700);
  background: none; border: none; cursor: pointer; font-family: var(--font-body);
  border-bottom: 3px solid transparent; transition: all var(--transition);
  white-space: nowrap; flex-shrink: 0;
}
.zpd-tab:hover { color: var(--navy); }
.zpd-tab.active { color: var(--navy); border-bottom-color: var(--navy); background: var(--white); }
.zpd-tab svg { flex-shrink: 0; }
.zpd-gallery-panel { display: none; }

.zpd-gallery { position: relative; }
.zpd-gallery-main { position: relative; height: 520px; background: #000; overflow: hidden; }
.zpd-gallery-main img { width: 100%; height: 100%; object-fit: contain; }
.zpd-photo-counter {
  position: absolute; bottom: 16px; right: 16px;
  background: rgba(0,0,0,0.65); color: #fff; padding: 6px 14px;
  border-radius: 20px; font-size: 0.85rem; font-weight: 500;
}
.zpd-gallery-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.9); border: none; cursor: pointer;
  font-size: 1.2rem; color: var(--gray-900);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15); transition: all var(--transition);
}
.zpd-gallery-nav:hover { background: #fff; box-shadow: 0 4px 12px rgba(0,0,0,0.25); }
.zpd-nav-prev { left: 16px; }
.zpd-nav-next { right: 16px; }

.zpd-gallery-strip {
  display: flex; gap: 4px; padding: 8px;
  overflow-x: auto; background: var(--gray-100);
}
.zpd-thumb {
  width: 80px; height: 56px; object-fit: cover; border-radius: 4px;
  cursor: pointer; opacity: 0.5; transition: opacity var(--transition);
  border: 2px solid transparent; flex-shrink: 0;
}
.zpd-thumb:hover, .zpd-thumb.active { opacity: 1; border-color: var(--navy); }

.zpd-no-photo {
  height: 400px; display: flex; align-items: center; justify-content: center;
  color: var(--gray-500); font-size: 1.1rem;
}

.zpd-floorplan-view { padding: 24px; text-align: center; background: var(--white); min-height: 400px; display: flex; align-items: center; justify-content: center; }
.zpd-floorplan-view img { max-height: 500px; max-width: 100%; border-radius: 4px; }

.zpd-map-container { position: relative; }
.zpd-map { height: 450px; width: 100%; }
.zpd-map-overlay {
  position: absolute; inset: 0; z-index: 10;
  background: rgba(0,0,0,0.08); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
  border: none; width: 100%; font-family: var(--font-body);
}
.zpd-map-overlay:hover { background: rgba(0,0,0,0.15); }
.zpd-map-overlay-content {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.95); padding: 20px 32px; border-radius: var(--radius);
  box-shadow: var(--shadow); color: var(--gray-700); font-weight: 500;
}
.zpd-map-overlay.hidden { display: none; }

.zpd-content { display: grid; grid-template-columns: 1fr 340px; gap: 40px; margin-top: 8px; }

.zpd-tenancy-info {
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--gray-500); margin-bottom: 8px; font-weight: 500;
}

.zpd-price-block { margin-bottom: 12px; }
.zpd-price { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--gray-900); }
.zpd-price-alt { font-size: 0.95rem; color: var(--gray-500); margin-top: 2px; }

.zpd-title {
  font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600;
  color: var(--gray-900); margin-bottom: 4px; text-transform: capitalize;
}
.zpd-address { font-size: 1.05rem; font-weight: 400; color: var(--gray-700); margin-bottom: 20px; }

.zpd-features-strip { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.zpd-feature-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 20px;
  background: var(--off-white); border: 1px solid var(--gray-200);
  font-size: 0.88rem; color: var(--gray-700); font-weight: 500;
  white-space: nowrap;
}
.zpd-feature-pill svg { color: var(--navy); flex-shrink: 0; }

.zpd-divider { border: none; border-top: 1px solid var(--gray-200); margin: 24px 0; }

.zpd-section { margin-bottom: 8px; }
.zpd-section h3 {
  font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600;
  color: var(--gray-900); margin-bottom: 16px;
}

.zpd-bullets {
  list-style: none; padding: 0; margin: 0 0 16px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
}
.zpd-bullets li {
  padding: 6px 0 6px 24px; position: relative; font-size: 0.93rem; color: var(--gray-700);
}
.zpd-bullets li::before {
  content: ""; position: absolute; left: 4px; top: 12px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--navy);
}

.zpd-description { font-size: 0.95rem; line-height: 1.85; color: var(--gray-700); }
.zpd-summary { font-size: 0.93rem; color: var(--gray-500); margin-top: 12px; line-height: 1.7; }

.zpd-rooms { display: grid; gap: 12px; }
.zpd-room { border: 1px solid var(--gray-200); border-radius: 6px; padding: 16px; }
.zpd-room-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.zpd-room h4 { font-family: var(--font-heading); font-size: 1rem; color: var(--gray-900); }
.zpd-room-size { font-size: 0.85rem; color: var(--gray-500); font-weight: 500; }
.zpd-room p { font-size: 0.9rem; color: var(--gray-700); margin-top: 4px; }

.zpd-info-grid { display: grid; gap: 0; }
.zpd-info-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--gray-100);
}
.zpd-info-row:last-child { border-bottom: none; }
.zpd-info-label { font-size: 0.93rem; color: var(--gray-700); }
.zpd-info-value { font-size: 0.93rem; font-weight: 600; color: var(--gray-900); text-align: right; }

.zpd-epc-grid { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.zpd-epc-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 16px 24px; background: var(--off-white); border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}
.zpd-epc-item span { font-size: 0.82rem; color: var(--gray-500); }
.zpd-epc-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: var(--white); font-size: 1.1rem; font-weight: 700;
}
.zpd-epc-images { margin-top: 16px; }
.zpd-epc-images img { max-width: 100%; border-radius: var(--radius); }

.zpd-agent-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 24px; margin-bottom: 20px;
  box-shadow: var(--shadow);
}
.zpd-agent-header {
  font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700;
  color: var(--navy); margin-bottom: 4px;
}
.zpd-agent-name { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 16px; }
.zpd-agent-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 12px; border-radius: 6px; font-size: 0.93rem;
  font-weight: 600; text-decoration: none; margin-bottom: 8px; transition: all var(--transition);
  font-family: var(--font-body); cursor: pointer; border: none;
}
.zpd-btn-call { background: var(--navy); color: var(--white); }
.zpd-btn-call:hover { background: var(--navy-light); color: var(--white); }
.zpd-btn-call svg { stroke: var(--white); }
.zpd-btn-whatsapp { background: #25D366; color: var(--white); }
.zpd-btn-whatsapp:hover { background: #20bd5a; color: var(--white); }
.zpd-btn-whatsapp svg { fill: var(--white); }
.zpd-btn-email { background: var(--off-white); color: var(--navy); border: 1px solid var(--gray-200); }
.zpd-btn-email:hover { background: var(--gray-100); color: var(--navy); }
.zpd-btn-email svg { stroke: var(--navy); }

.zpd-calc-card {
  background: var(--off-white); padding: 24px; border-radius: var(--radius);
  border: 1px solid var(--gray-200); margin-bottom: 20px;
}
.zpd-calc-card h3 { font-family: var(--font-heading); color: var(--navy); margin-bottom: 16px; font-size: 1.1rem; }
.calc-field { margin-bottom: 12px; }
.calc-field label { display: block; font-size: 0.85rem; color: var(--gray-500); margin-bottom: 4px; }
.calc-field input {
  width: 100%; padding: 10px; border: 1px solid var(--gray-200);
  border-radius: 6px; font-size: 0.95rem; font-family: var(--font-body);
}
.calc-result { margin-top: 16px; padding: 16px; background: var(--navy); color: var(--white); border-radius: 6px; text-align: center; }
.calc-result .monthly { font-size: 1.5rem; font-weight: 700; color: var(--white); }

.zpd-ref { color: var(--gray-500); font-size: 0.82rem; margin-top: 8px; }

.site-footer { background: var(--footer-bg); padding: 60px 0 30px; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-grid h3 { font-family: var(--font-heading); color: var(--white); margin-bottom: 16px; font-size: 1.3rem; }
.footer-grid h4 { color: var(--white); margin-bottom: 12px; }
.footer-grid p { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.8; }
.footer-grid a { display: block; color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 8px; }
.footer-grid a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.85rem; }

.content-wrapper { padding: 60px 0 80px; }
.content-page { max-width: 900px; margin: 0 auto; }
.content-hero { text-align: center; margin-bottom: 48px; }
.content-hero h1 { font-family: var(--font-heading); font-size: 2.2rem; color: var(--navy); margin-bottom: 12px; }
.content-hero .lead { font-size: 1.15rem; color: var(--gray-500); max-width: 600px; margin: 0 auto; }
.content-section { margin-bottom: 40px; }
.content-section h2 {
  font-family: var(--font-heading); font-size: 1.5rem; color: var(--navy);
  margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--navy);
}
.content-section h3 {
  font-family: var(--font-heading); font-size: 1.15rem; color: var(--navy);
  margin: 20px 0 10px;
}
.content-section p { margin-bottom: 12px; color: var(--gray-700); line-height: 1.8; font-size: 0.95rem; }
.content-section ul { margin: 12px 0 16px 24px; }
.content-section li { margin-bottom: 8px; color: var(--gray-700); line-height: 1.7; font-size: 0.95rem; }

.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 20px; }
.feature-item { background: var(--off-white); padding: 24px; border-radius: var(--radius); border-left: 4px solid var(--navy); }
.feature-item h3 { margin-top: 0; font-size: 1.1rem; }
.feature-item p { margin-bottom: 0; }

.values-list { list-style: none; margin: 0; padding: 0; }
.values-list li { padding: 12px 0; border-bottom: 1px solid var(--gray-200); font-size: 0.95rem; color: var(--gray-700); line-height: 1.7; }
.values-list li:last-child { border-bottom: none; }

.contact-details { background: var(--off-white); padding: 24px; border-radius: var(--radius); margin-top: 16px; }
.contact-details p { margin-bottom: 8px; }

.legal-page .content-section ul { margin-left: 20px; }

@media (max-width: 1024px) {
  .property-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .features-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-content h1 { font-size: 2rem; }
  .hero-search { flex-direction: column; }
  .search-select { border-left: none; border-top: 1px solid var(--gray-200); }
  .property-grid { grid-template-columns: 1fr; }
  .split-sections { grid-template-columns: 1fr; gap: 40px; }
  .listings-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .zpd-content { grid-template-columns: 1fr; }
  .zpd-sidebar { order: -1; }
  .zpd-gallery-main { height: 300px; }
  .zpd-bullets { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .content-page [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }

  .main-nav {
    display: none; flex-direction: column;
    position: absolute; top: 70px; left: 0; right: 0;
    background: var(--navy); padding: 20px; gap: 0;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 200;
  }
  .main-nav.active { display: flex; }
  .main-nav > a, .nav-dropdown-toggle { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1); width: 100%; display: block; text-align: left; }
  .main-nav > a:last-child { border-bottom: none; }
  .mobile-menu-btn { display: block; }

  .nav-dropdown { width: 100%; }
  .nav-dropdown-menu {
    position: static; transform: none; opacity: 1; visibility: visible;
    box-shadow: none; background: rgba(255,255,255,0.05); margin-top: 0;
    border-radius: 0; padding: 0;
  }
  .nav-dropdown-menu::before { display: none; }
  .nav-dropdown-menu a { color: rgba(255,255,255,0.7); padding: 10px 20px; font-size: 0.9rem; }
  .nav-dropdown-menu a:hover { background: rgba(255,255,255,0.05); color: var(--white); }
  .dropdown-arrow { display: none; }

  .content-hero h1 { font-size: 1.6rem; }
  .content-section h2 { font-size: 1.3rem; }
}

.footer-legal {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
  line-height: 1.5;
}
.footer-legal a { color: rgba(255,255,255,0.65); text-decoration: underline; }
.footer-legal a:hover { color: #fff; }

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: #fff;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
  border-top: 3px solid #832a89;
  animation: slideUp 0.4s ease;
}
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
}
.cookie-text h4 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: #36013f;
  font-family: 'Manrope', sans-serif;
}
.cookie-text p {
  margin: 0;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.5;
}
.cookie-text a { color: #832a89; text-decoration: underline; }
.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.cookie-accept { background: #832a89; color: #fff; }
.cookie-accept:hover { background: #6a2270; }
.cookie-essential { background: #f0f0f0; color: #333; }
.cookie-essential:hover { background: #e0e0e0; }
.cookie-manage { background: transparent; color: #832a89; border: 1px solid #832a89; }
.cookie-manage:hover { background: #f9f0fa; }
.cookie-preferences {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #eee;
}
.cookie-toggle {
  display: block;
  padding: 10px 0;
  cursor: pointer;
}
.cookie-toggle span {
  font-weight: 600;
  font-size: 0.9rem;
  color: #333;
  margin-left: 8px;
}
.cookie-toggle small {
  display: block;
  margin-left: 28px;
  font-size: 0.78rem;
  color: #888;
  margin-top: 2px;
}
.cookie-toggle input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #832a89;
  vertical-align: middle;
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.6rem; }
  .hero { min-height: 400px; }
  .section { padding: 40px 0; }
  .content-wrapper { padding: 40px 0 60px; }
  .container { padding: 0 16px; }
  .card-image { height: 180px; }
  .zpd-title { font-size: 1.2rem; }
  .zpd-price { font-size: 1.5rem; }
  .zpd-gallery-main { height: 240px; }
  .zpd-features-strip { gap: 6px; }
  .zpd-feature-pill { padding: 6px 12px; font-size: 0.82rem; }
  .zpd-tab { padding: 10px 12px; font-size: 0.82rem; }
}
