/* PROPADDA - Premium Prop Shop Design System */

/* ===== CSS VARIABLES ===== */
:root {
  /* Colors - Light & White Dominant with Rich Gold Accents */
  --background: #ffffff;
  --card-bg: #ffffff;
  --foreground: #18181b;
  --secondary: #fafafa;
  --muted: #f4f4f5;
  --muted-foreground: #71717a;
  --border: #e4e4e7;
  --accent: #b89563;
  --accent-hover: #9c7c52;
  /* Legacy aliases kept for compatibility */
  --accent-gold: #b89563;
  --accent-gold-hover: #9c7c52;
  --white: #ffffff;
  --black: #18181b;

  /* Typography */
  --font-base: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --container-padding: 2rem;
  --section-padding: 5rem 0;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== BASE STYLES ===== */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-base);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: var(--foreground);
  color: var(--background);
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== CUSTOM CURSOR REMOVED ===== */

/* ===== LAYOUT ===== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

section {
  padding: var(--section-padding);
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.text-gradient {
  background: linear-gradient(to right, var(--foreground), var(--muted-foreground));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.uppercase {
  text-transform: uppercase;
}

.tracking-wide {
  letter-spacing: 0.3em;
}

.tracking-wider {
  letter-spacing: 0.2em;
}

/* ===== HEADER ===== */
:root {
  --header-surface: #e8e0d4;
  --header-height: 80px;
}

header,
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000001 !important;
  overflow: visible;
}

header.scrolled .header-desktop {
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(24, 24, 27, 0.03);
}

header.scrolled .header-desktop::before {
  background: rgba(255, 255, 255, 0.96);
}

/* ----- Desktop header (original layout) ----- */
.header-mobile {
  display: none;
}

.header-desktop {
  position: relative;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: padding 0.5s ease, box-shadow 0.5s ease;
}

.header-desktop::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: -1;
}

.header-inner-desktop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: visible;
  gap: 1rem;
}

.header-inner-desktop .propadda-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.header-inner-desktop .propadda-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.header-main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-main-nav > a,
.header-main-nav .nav-catalogue-link {
  font-family: var(--font-base);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.3s ease;
}

.header-main-nav > a:hover,
  .header-main-nav > a.active,
  .header-main-nav .nav-catalogue-link:hover,
  .header-main-nav .nav-catalogue-link.active {
    color: var(--accent-gold);
  }

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

.header-search-container {
  position: relative;
  z-index: 1000001;
}

.header-search-form {
  position: relative;
  margin: 0;
}

.header-search-form .search-filter-input,
.header-search-form .header-search-field {
  width: 220px;
  padding: 0.5rem 1rem 0.5rem 2.2rem;
  font-size: 0.8rem;
  border-radius: 30px;
  border: 1px solid var(--border);
  background: var(--secondary);
  color: var(--foreground);
  outline: none;
  transition: all 0.3s;
}

.header-search-form-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  color: var(--muted-foreground);
  pointer-events: none;
}

.header-icon-link {
  color: var(--foreground);
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
  text-decoration: none;
}

.header-icon-link:hover {
  opacity: 0.7;
}

.header-desktop .nav-shortlist-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--accent-gold);
  background: var(--accent-gold);
  color: #ffffff;
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}

.header-desktop .nav-shortlist-btn:hover {
  background: var(--accent-gold-hover);
  border-color: var(--accent-gold-hover);
  color: #ffffff;
}

.header-desktop .nav-shortlist-btn .shortlist-badge {
  background: var(--background);
  color: var(--foreground);
  font-size: 0.75rem;
  padding: 0.1rem 0.4rem;
  border-radius: 10px;
  font-weight: 700;
  min-width: 1.25rem;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ----- Mobile header (compact) ----- */
.header-mobile {
  background: var(--header-surface);
  border-bottom: 1px solid rgba(24, 24, 27, 0.08);
}

.header-inner-mobile {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 48px;
  padding: 0.2rem 0.35rem;
}

.header-zone {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  z-index: 2;
}

.header-zone-left {
  justify-self: start;
}

.header-zone-right {
  justify-self: end;
}

.header-mobile .header-logo {
  justify-self: center;
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  z-index: 3;
}

.header-mobile .header-logo img {
  height: 26px;
  width: auto;
  max-width: 108px;
  object-fit: contain;
}

.header-tool-btn {
  background: none;
  border: none;
  color: var(--foreground);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease;
  position: relative;
  padding: 0;
}

.header-tool-btn:hover {
  background: rgba(24, 24, 27, 0.06);
}

.header-bag-btn .shortlist-badge,
.shortlist-badge-mobile {
  position: absolute;
  top: 4px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 10px;
  background: var(--foreground);
  color: var(--header-surface);
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

.header-mobile .header-search-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease;
  background: var(--header-surface);
}

.header-mobile .header-search-panel.open {
  max-height: min(65vh, 420px);
  opacity: 1;
  overflow-y: auto;
  padding: 0.5rem 0 0.65rem;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.header-mobile .header-search-form .search-filter-input {
  width: 100%;
  padding: 0.55rem 0.85rem 0.55rem 2.2rem;
  font-size: 0.85rem;
  border-radius: 30px;
  border: 1px solid rgba(24, 24, 27, 0.12);
  background: rgba(255, 255, 255, 0.65);
}

.mobile-menu-btn span {
  display: none;
}

header .logo {
  height: 2.5rem;
  width: auto;
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  transform-origin: left center;
}

header.scrolled .logo {
  height: 2rem;
  transform: scale(0.9);
}

/* Logo reveal animation */
@keyframes logoReveal {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo-reveal {
  animation: logoReveal 0.8s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes headerReveal {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-reveal {
  animation: headerReveal 0.8s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
  position: relative;
}

nav a:hover,
nav a.active {
  color: var(--foreground);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}

nav a.active::after,
nav a:hover::after {
  width: 100%;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: inline-flex;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--background);
  z-index: 999;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu nav {
  flex-direction: column;
  gap: 2rem;
}

.mobile-menu nav a {
  font-size: 2rem;
  font-weight: 300;
}

/* ===== FOOTER ===== */
footer {
  background: #09090b;
  color: #e4e4e7;
  padding: 5rem 0 3rem;
  border-top: 1px solid #1a1a1e;
}

footer .footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

footer .logo {
  height: 3rem;
  margin-bottom: 1.5rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.25rem;
}

.footer-logo img {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  z-index: 1;
  filter: brightness(0) invert(1);
}

footer h4 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #ffffff;
}

footer a {
  color: #a1a1aa;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

footer a:hover {
  color: var(--accent-gold);
}

/* Footer Journey CTA Section */
.footer-cta-journey {
  text-align: center;
  padding: 4rem 0 5rem;
  border-bottom: 1px solid #1d1d21;
  margin-bottom: 5rem;
}

.footer-cta-journey h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.footer-cta-journey p {
  color: #a1a1aa;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.7;
}

footer ul {
  list-style: none;
}

footer li {
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-links a {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--foreground);
}

.social-links a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Marquee */
.marquee {
  border-top: 1px solid var(--border);
  overflow: hidden;
  padding: 1.5rem 0;
}

.marquee-content {
  display: flex;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-text {
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  color: var(--muted-foreground);
  padding: 0 2rem;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.copyright {
  border-top: 1px solid #1a1a1e;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright p {
  font-size: 0.875rem;
  color: #71717a;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--accent-gold);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--accent-gold-hover);
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
}

.btn-outline:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #ffffff;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 10;
  color: var(--background);
  max-width: 1200px;
  padding: 0 var(--container-padding);
}

.hero h1 {
  margin-bottom: 2rem;
}

.hero p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  opacity: 0.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
}

.scroll-indicator span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.scroll-line {
  width: 1px;
  height: 3rem;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--background);
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(100%);
  }
}

/* ===== PROJECT CARDS ===== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 3rem;
}

.project-card {
  cursor: pointer;
  transition: transform 0.5s ease;
}

.project-card:hover {
  transform: translateY(-0.5rem);
}

.project-card-image {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
  aspect-ratio: 4/5;
}

.project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.project-card:hover .project-card-image img {
  transform: scale(1.1);
}

.project-card-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.project-card-title {
  font-size: 1.5rem;
  font-weight: 300;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all 0.5s ease;
}

.service-card:hover {
  background: var(--foreground);
  color: var(--background);
  border-color: var(--foreground);
}

.service-card .number {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  display: block;
}

.service-card:hover .number {
  color: rgba(255, 255, 255, 0.6);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.8;
}

.service-card:hover p {
  color: rgba(255, 255, 255, 0.7);
}

/* ===== CLIENT GRID ===== */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2rem;
  background: white;
}

.client-card {
  background: white;
  padding: 1.5rem 1rem;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-card img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 1;
}

.client-card:hover img {
  opacity: 0.8;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.testimonial-card {
  border: 1px solid var(--border);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2rem;
  flex: 1;
}

.testimonial-author {
  font-weight: 500;
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 4rem;
  align-items: start;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 0;
  border: none;
  border-bottom: 1px solid var(--border);
  background: transparent;
  font-family: var(--font-base);
  font-size: 1rem;
  transition: border-color 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--foreground);
}

.form-group textarea {
  resize: none;
  min-height: 150px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.contact-info-card {
  background: var(--background);
  padding: 2rem;
}

.contact-info-card svg,
.contact-info-card .icon {
  width: 1.5rem;
  height: 1.5rem;
  margin-bottom: 1rem;
}

.contact-info-card h3 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  margin-bottom: 1rem;
}

.contact-info-card p {
  color: var(--muted-foreground);
}

/* ===== FILTER BAR ===== */
.filter-bar {
  position: sticky;
  top: 5rem;
  z-index: 100;
  background: var(--background);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

.filter-buttons {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.filter-buttons::-webkit-scrollbar {
  height: 4px;
}

.filter-buttons::-webkit-scrollbar-thumb {
  background: var(--border);
}

.filter-btn {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: none;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  white-space: nowrap;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--foreground);
}

.filter-btn.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--foreground);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes logoReveal {
  from {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }

  to {
    clip-path: inset(0 0% 0 0);
    opacity: 1;
  }
}

.fade-up {
  animation: fadeUp 0.6s ease-out forwards;
}

.scale-in {
  animation: scaleIn 0.6s ease-out forwards;
}

.logo-reveal {
  animation: logoReveal 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

/* Stagger delays */
.delay-1 {
  animation-delay: 0.1s;
  opacity: 0;
}

.delay-2 {
  animation-delay: 0.2s;
  opacity: 0;
}

.delay-3 {
  animation-delay: 0.3s;
  opacity: 0;
}

.delay-4 {
  animation-delay: 0.4s;
  opacity: 0;
}

/* ===== UTILITY CLASSES ===== */
.bg-secondary {
  background: var(--secondary);
}

.bg-foreground {
  background: var(--foreground);
  color: var(--background);
}

.text-muted {
  color: var(--muted-foreground);
}

.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.py-32 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.pt-32 {
  padding-top: 8rem;
}

.pt-40 {
  padding-top: 10rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  :root {
    --header-height: 48px;
  }

  .header-desktop {
    display: none !important;
  }

  .header-mobile {
    display: block;
    position: relative;
    overflow: visible;
  }

  .header-mobile .header-search-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000002;
  }

  .header-mobile .header-search-panel .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .header-mobile .header-search-container .search-suggestions-overlay {
    position: relative;
    top: 0.5rem;
    width: 100%;
    left: 0;
    max-height: 45vh;
    overflow-y: auto;
    box-shadow: none;
    border: 1px solid rgba(24, 24, 27, 0.08);
  }

  body.header-search-open::after {
    content: '';
    position: fixed;
    inset: 0;
    top: var(--header-height);
    background: rgba(0, 0, 0, 0.25);
    z-index: 1000000;
    pointer-events: none;
  }

  .footer-logo {
    margin-bottom: 1rem !important;
  }

  .footer-logo img {
    height: 30px !important;
    max-width: 120px;
  }

  .mobile-menu {
    display: flex;
  }

  footer {
    padding: 3rem 0 2rem;
  }

  footer .footer-content {
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .clients-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .client-card {
    padding: 1rem 0.75rem;
    min-height: 80px;
  }

  .client-card img {
    max-height: 50px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  :root {
    --section-padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.5rem;
  }

  .client-card {
    padding: 2rem;
  }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--background);
}

::-webkit-scrollbar-thumb {
  background: var(--muted-foreground);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--foreground);
}

/* ===== TAILWIND COMPATIBILITY UTILITIES ===== */
.grid {
  display: grid;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.block {
  display: block;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.overflow-hidden {
  overflow: hidden;
}

/* Grid Columns */
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

/* Responsive Grids */
@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:p-12 {
    padding: 3rem;
  }

  .md\:p-24 {
    padding: 6rem;
  }

  .md\:p-32 {
    padding: 8rem;
  }
}

/* Spacing */
.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

.gap-24 {
  gap: 6rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-24 {
  margin-bottom: 6rem;
}

.mb-32 {
  margin-bottom: 8rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mt-24 {
  margin-top: 6rem;
}

.p-8 {
  padding: 2rem;
}

.p-16 {
  padding: 4rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

/* Typography */
.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-5xl {
  font-size: 3rem;
}

@media (min-width: 768px) {
  .text-5xl {
    font-size: 4rem;
  }
}

.font-light {
  font-weight: 300;
}

.uppercase {
  text-transform: uppercase;
}

.tracking-widest {
  letter-spacing: 0.25em;
}

.tracking-wider {
  letter-spacing: 0.15em;
}

.not-italic {
  font-style: normal;
}

/* Colors & Opacity */
.bg-transparent {
  background-color: transparent;
}

.text-gray-300 {
  color: #d1d5db;
}

.text-green-800 {
  color: #166534;
}

.text-red-800 {
  color: #991b1b;
}

.bg-green-100 {
  background-color: #dcfce7;
}

.bg-red-100 {
  background-color: #fee2e2;
}

.opacity-70 {
  opacity: 0.7;
}

.hover\:text-muted-foreground:hover {
  color: var(--muted-foreground);
}

/* Borders */
.border-b {
  border-bottom-width: 1px;
}

.border-gray-300 {
  border-color: #d1d5db;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded {
  border-radius: 0.25rem;
}

/* Focus States */
.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:border-black:focus {
  border-color: #000;
}

/* Max Widths */
.max-w-xs {
  max-width: 20rem;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-lg {
  max-width: 32rem;
}

.max-w-xl {
  max-width: 36rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Image Effects */
.object-cover {
  object-fit: cover;
}

.grayscale {
  filter: grayscale(100%);
}

.hover\:grayscale-0:hover {
  filter: grayscale(0);
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-700 {
  transition-duration: 700ms;
}

/* Space Utilities */
.space-y-4> :not([hidden])~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}

.space-y-8> :not([hidden])~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}

/* Aspect Ratio Fallback */
.aspect-square {
  aspect-ratio: 1 / 1;
}

.aspect-\[4\/5\] {
  aspect-ratio: 4 / 5;
}



/* ===== MOBILE MENU DARK MODE & UTILITIES FIX ===== */
.mobile-menu {
  background: var(--foreground) !important;
  color: var(--background) !important;
}

.mobile-menu nav a {
  color: var(--background) !important;
}

.mobile-menu .close-btn {
  color: var(--background) !important;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
}

/* Ensure dynamic content in About page wraps correctly */
.about-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--muted-foreground);
}

/* Contact Map Fix */
.contact-map-container {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 450px;
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}

.contact-map-container:hover {
  filter: grayscale(0%);
}

.contact-map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Contact Form Styling Fix */
.contact-form .form-group label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-bottom: 1px solid #e5e5e5 !important;
  padding: 1rem 0;
  font-size: 1rem;
  color: var(--foreground);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--foreground) !important;
}

/* Mobile Responsiveness for Sidebar/Nav */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    /* Hide default nav */
  }
}



/* ===== MOBILE MENU FIXED STYLING ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background-color: #000 !important;
  /* Force Black Background */
  z-index: 1000005 !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu nav {
  display: flex !important;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.mobile-menu nav a {
  font-size: 2rem;
  font-weight: 300;
  color: #fff !important;
  /* Force White Text */
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.mobile-menu.active nav a {
  opacity: 1;
  transform: translateY(0);
}

/* Close Button Styling */
.mobile-menu .close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: #fff !important;
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10000;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* ===== FIX MOBILE CLOSE BUTTON SIZE ===== */
.mobile-menu .close-btn {
  font-size: 2rem !important;
  /* Reduced from 3rem */
  width: 40px !important;
  /* Reduced from 50px */
  height: 40px !important;
  top: 1.5rem !important;
  right: 1.5rem !important;
}

/* ===== FIX CONTACT MAP OVERLAP ===== */
.contact-map-container {
  height: 500px !important;
  width: 100% !important;
  position: relative !important;
  margin-bottom: 0 !important;
  /* Ensure no negative margin */
  display: block;
  clear: both;
  /* Clear floats just in case */
}

main {
  padding-bottom: 0 !important;
  position: relative;
  z-index: 1;
  /* Ensure main content sits below the fixed header dropdowns */
}


/* ===== MOBILE CLIENTS GRID FIX ===== */
@media (max-width: 768px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    /* 2 columns on mobile */
    gap: 1rem !important;
  }

  .client-card {
    padding: 1rem;
    min-height: 80px;
  }

  .client-card img {
    max-height: 40px;
  }
}

/* ===== PROPADDA BRANDING & OVERRIDES ===== */
body {
  background: var(--background) !important;
  color: var(--foreground) !important;
}

.clients-grid, .client-card {
  background: #ffffff !important;
  
}

/* PROPADDA Logo font styles */
.propadda-logo {
  font-family: 'Playfair Display', 'Didot', 'Georgia', serif;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: var(--foreground) !important;
  font-weight: 400;
  text-transform: uppercase;
}

/* Catalogue Category horizontal layout */
.catalogue-categories-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 0.5rem;
  padding: 1rem 0;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  overflow: visible;
}

.category-tab-wrapper {
  display: inline-block;
  position: relative;
}

.category-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.6rem 1.2rem;
  background: var(--card-bg);
  color: var(--muted-foreground);
  border: 1px solid var(--border);
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  text-decoration: none;
}

.category-tab-btn.active, .category-tab-btn:hover {
  background: var(--foreground);
  color: var(--background);
  border-color: var(--foreground);
}

.category-sub-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  padding: 0.5rem 0;
  min-width: 200px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.category-tab-wrapper:hover .category-sub-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.category-tab-wrapper:hover .chevron-icon {
  transform: rotate(180deg);
}

.category-sub-item {
  padding: 0.6rem 1.2rem;
  font-size: 0.78rem;
  color: var(--muted-foreground);
  text-decoration: none;
  display: block;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-family: var(--font-base);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.category-sub-item:hover {
  background: var(--muted);
  color: var(--foreground);
  padding-left: 1.5rem;
}

.category-sub-item.active {
  background: var(--muted);
  color: var(--foreground);
  font-weight: 600;
}

/* Sidebar and Main Layout */
.catalogue-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  padding-bottom: 4rem;
}

@media (max-width: 992px) {
  .catalogue-layout {
    grid-template-columns: 1fr;
  }
}

.catalogue-sidebar {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: 8px;
  height: fit-content;
  position: sticky;
  top: 6.5rem;
}

.filter-section {
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
}

.filter-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.filter-title {
  color: var(--foreground);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Colors filter circle list */
.color-filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.color-dot-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s;
  position: relative;
}

.color-dot-btn.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent);
  transform: scale(1.15);
}

/* Size filters checkboxes */
.size-filter-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted-foreground);
  cursor: pointer;
  user-select: none;
}

.filter-checkbox-label input {
  accent-color: var(--accent);
}

.filter-checkbox-label:hover {
  color: var(--foreground);
}

/* Search input design */
.search-filter-input {
  width: 100%;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.6rem 1rem;
  color: var(--foreground);
  font-family: var(--font-base);
  outline: none;
  font-size: 0.9rem;
}

.search-filter-input:focus {
  border-color: var(--foreground);
  box-shadow: 0 0 0 3px rgba(26,25,23,0.06);
}

/* Props Cards Grid */
.props-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.prop-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.prop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(26,25,23,0.12);
}

.prop-image-wrapper {
  position: relative;
  aspect-ratio: 1;
  background: var(--muted);
  overflow: hidden;
  cursor: pointer;
}

.prop-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.prop-card:hover .prop-image-wrapper img {
  transform: scale(1.05);
}

/* Interactive overlays for shortlist/wishlist — always visible */
.prop-action-overlay {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  flex-direction: row;
  gap: 0.4rem;
  z-index: 10;
  opacity: 1;
}

.prop-icon-btn {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  color: var(--foreground);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.prop-icon-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.prop-icon-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.prop-details-wrapper {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.prop-card-category {
  font-size: 0.7rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.prop-card-title {
  font-size: 0.9rem;
  color: var(--foreground);
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1.3;
  cursor: pointer;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.prop-card-specs {
  margin-top: auto;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  display: flex;
  gap: 0.5rem;
  border-top: 1px solid var(--border);
  padding-top: 0.5rem;
}

/* Shortlist Drawer slide out panel */
.shortlist-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 450px;
  height: 100vh;
  height: 100dvh;
  background: var(--card-bg);
  z-index: 1000002 !important;
  box-shadow: -4px 0 40px rgba(26,25,23,0.14);
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

@media (max-width: 480px) {
  .shortlist-drawer {
    width: 100%;
    right: -100%;
  }
}

.shortlist-drawer.open {
  right: 0;
}

.drawer-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 2;
  flex-shrink: 0;
  background: var(--card-bg);
}

.drawer-close-btn {
  background: none;
  border: none;
  color: var(--foreground);
  font-size: 1.5rem;
  cursor: pointer;
}

.drawer-body {
  padding: 1.5rem;
  flex: 0 0 auto;
  overflow: visible;
}

.drawer-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--secondary);
  flex: 0 0 auto;
}

.shortlist-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.shortlist-item img {
  width: 72px;
  height: 72px;
  min-width: 72px;
  object-fit: cover;
  border-radius: 4px;
  background: var(--secondary);
}

.shortlist-item-info {
  flex-grow: 1;
}

.shortlist-item-title {
  font-size: 0.9rem;
  color: var(--foreground);
  font-weight: 500;
}

.shortlist-item-remove {
  color: #ef4444;
  cursor: pointer;
  font-size: 0.75rem;
  margin-top: 0.25rem;
  display: inline-block;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(5px);
  z-index: 1000001 !important;
  display: none;
}

/* Form Styling in Drawer */
.drawer-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.drawer-form input, .drawer-form textarea {
  width: 100%;
  background: var(--background);
  border: 1px solid var(--border);
  color: var(--foreground);
  padding: 0.6rem 0.8rem;
  border-radius: 4px;
  outline: none;
  font-size: 0.85rem;
  font-family: var(--font-base);
}

.drawer-form input:focus, .drawer-form textarea:focus {
  border-color: var(--foreground);
  box-shadow: 0 0 0 3px rgba(26,25,23,0.06);
}

.gold-submit-btn {
  background: var(--accent-gold);
  color: #ffffff;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  border: 1px solid var(--accent-gold);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.gold-submit-btn:hover {
  background: var(--accent-gold-hover);
  color: #ffffff;
  border-color: var(--accent-gold-hover);
}

/* ===== CATALOGUE MEGA DROPDOWN MENU ===== */
.nav-catalogue-container {
  display: inline-block;
  overflow: visible;
  z-index: 1000001 !important;
}

.catalogue-mega-menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: -380px;
  width: 950px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(228, 228, 231, 0.6);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02);
  padding: 2.25rem;
  z-index: 1000001 !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
  max-height: 480px;
  overflow-y: auto;
}

.catalogue-mega-menu::-webkit-scrollbar {
  width: 6px;
}
.catalogue-mega-menu::-webkit-scrollbar-track {
  background: transparent;
}
.catalogue-mega-menu::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

.nav-catalogue-container:hover .catalogue-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.nav-catalogue-container:hover .chevron-icon {
  transform: rotate(180deg);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 1.5rem;
}

.mega-menu-col {
  display: flex;
  flex-direction: column;
}

.mega-menu-cat-title {
  font-family: var(--font-base);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--foreground);
  margin-bottom: 0.75rem;
  transition: all 0.2s ease;
  display: inline-block;
}

.mega-menu-cat-title:hover {
  color: var(--muted-foreground);
  transform: translateX(2px);
}

.mega-menu-sublist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mega-menu-sublist a {
  font-size: 0.8rem;
  color: var(--muted-foreground);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  font-weight: 400;
  display: block;
  text-decoration: none;
}

.mega-menu-sublist a:hover {
  color: var(--foreground);
  transform: translateX(5px);
}

/* ===== SIDEBAR CATEGORY MENU ===== */
.sidebar-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-category-list li {
  margin: 0;
  padding: 0;
}

.sidebar-cat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.sidebar-cat-link {
  font-family: var(--font-base);
  font-size: 0.85rem;
  color: var(--muted-foreground);
  text-decoration: none;
  font-weight: 500;
  padding: 0.35rem 0;
  display: inline-block;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.sidebar-cat-link:hover, 
.sidebar-cat-link.active {
  color: var(--foreground);
  font-weight: 600;
}

.sidebar-cat-toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted-foreground);
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.sidebar-cat-toggle-btn:hover {
  color: var(--foreground);
  transform: scale(1.15);
}

.sidebar-cat-toggle-btn i {
  transition: transform 0.25s ease;
}

.sidebar-cat-toggle-btn i.rotated {
  transform: rotate(180deg);
}

.sidebar-sub-list {
  list-style: none;
  padding-left: 1rem;
  margin: 0.25rem 0 0.5rem 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border-left: 1px solid var(--border);
}

.sidebar-sub-link {
  font-family: var(--font-base);
  font-size: 0.78rem;
  color: var(--muted-foreground);
  text-decoration: none;
  padding: 0.2rem 0;
  display: inline-block;
  transition: all 0.2s ease;
}

.sidebar-sub-link:hover, 
.sidebar-sub-link.active {
  color: var(--foreground);
  font-weight: 500;
  padding-left: 2px;
}

/* ===== SEARCH SUGGESTIONS OVERLAY ===== */
.header-search-container .search-suggestions-overlay {
  width: 100%;
  left: 0;
  right: auto;
}

.search-suggestions-overlay {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  width: 320px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  max-height: 380px;
  overflow-y: auto;
  z-index: 1000001 !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.search-suggestions-overlay.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.suggestion-item:hover {
  background: var(--muted);
}

/* ===== SHORTLIST UPGRADES STYLE ===== */
.form-section-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-gold);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.25rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.form-field-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted-foreground);
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.drawer-select {
  width: 100%;
  background: var(--background);
  border: 1px solid var(--border);
  color: var(--foreground);
  padding: 0.6rem 0.8rem;
  border-radius: 4px;
  outline: none;
  font-size: 0.85rem;
  font-family: var(--font-base);
  cursor: pointer;
}

.drawer-select:focus {
  border-color: var(--foreground);
}

.qty-btn-minus:hover, .qty-btn-plus:hover {
  background: var(--foreground) !important;
  color: var(--background) !important;
  border-color: var(--foreground) !important;
}

.shortlist-item-remove:hover {
  text-decoration: underline;
}

/* ===== CATALOGUE V2 — SPA layout ===== */
.catalogue-page {
  padding-top: 120px;
  min-height: 80vh;
  padding-bottom: 4rem;
}

.catalogue-hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.catalogue-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin: 0 0 0.35rem;
  color: var(--foreground);
  font-weight: 500;
}

.catalogue-hero-sub {
  color: var(--muted-foreground);
  font-weight: 300;
  font-size: 0.95rem;
  margin: 0;
}

.catalogue-hero-meta {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-foreground);
  font-weight: 600;
}

.catalogue-toolbar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.catalogue-filter-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--card-bg);
  color: var(--foreground);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.catalogue-active-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex: 1;
}

.active-chip {
  border: 1px solid var(--border);
  background: var(--secondary);
  color: var(--foreground);
  font-size: 0.75rem;
  padding: 0.35rem 0.65rem;
  border-radius: 20px;
  cursor: pointer;
}

.catalogue-cat-pills-wrap,
.catalogue-sub-pills-wrap {
  margin-bottom: 1rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.catalogue-cat-pills-wrap::-webkit-scrollbar,
.catalogue-sub-pills-wrap::-webkit-scrollbar {
  display: none;
}

.catalogue-cat-pills,
.catalogue-sub-pills {
  display: flex;
  gap: 0.5rem;
  min-width: max-content;
  padding-bottom: 0.25rem;
}

.cat-pill,
.sub-pill {
  border: 1px solid var(--border);
  background: var(--card-bg);
  color: var(--muted-foreground);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.45rem 0.9rem;
  border-radius: 30px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.cat-pill:hover,
.sub-pill:hover {
  border-color: var(--foreground);
  color: var(--foreground);
}

.cat-pill.active,
.sub-pill.active {
  background: var(--foreground);
  color: var(--background);
  border-color: var(--foreground);
}

.catalogue-layout-v2 {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.catalogue-filters-panel {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  position: sticky;
  top: 6.5rem;
  max-height: calc(100vh - 8rem);
  overflow-y: auto;
}

.catalogue-filters-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

.catalogue-filters-header h3 {
  margin: 0;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-gold);
}

.catalogue-filters-close {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--foreground);
  line-height: 1;
}

.catalogue-filters-body {
  padding: 1rem 1.25rem 1.25rem;
}

.filter-section-v2 {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.filter-section-v2:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 1rem;
}

.catalogue-clear-btn {
  width: 100%;
  padding: 0.65rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: transparent;
  color: var(--muted-foreground);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s;
}

.catalogue-clear-btn:hover {
  border-color: var(--foreground);
  color: var(--foreground);
}

.catalogue-filters-backdrop {
  display: none;
}

.catalogue-main {
  min-width: 0;
}

.props-grid-animated {
  min-height: 200px;
}

.prop-card-enter {
  animation: propCardEnter 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes propCardEnter {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.prop-card-skeleton {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  padding-bottom: 1rem;
}

.skeleton-image {
  aspect-ratio: 1;
  background: linear-gradient(90deg, var(--muted) 25%, var(--secondary) 50%, var(--muted) 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.2s ease-in-out infinite;
}

.skeleton-line {
  height: 12px;
  margin: 0.75rem 1rem 0.5rem;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--muted) 25%, var(--secondary) 50%, var(--muted) 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.2s ease-in-out infinite;
}

.skeleton-line.short {
  width: 50%;
  margin-bottom: 0;
}

@keyframes skeletonShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.catalogue-loading-state {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.25rem;
  width: 100%;
  margin-bottom: 1rem;
}

.catalogue-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4rem 2rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--secondary);
  gap: 0.75rem;
}

.catalogue-empty-state h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin: 0;
  font-weight: 500;
}

.catalogue-empty-state p {
  color: var(--muted-foreground);
  margin: 0 0 0.5rem;
  max-width: 360px;
}

.catalogue-load-more {
  text-align: center;
  padding: 1.5rem;
  color: var(--muted-foreground);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.prop-icon-btn {
  width: 32px;
  height: 32px;
}

.prop-details-wrapper {
  padding: 0.75rem 0.85rem 0.85rem;
}

.prop-card-category {
  font-size: 0.65rem;
  margin-bottom: 0.2rem;
}

@media (max-width: 1024px) {
  .catalogue-layout-v2 {
    grid-template-columns: 1fr;
  }

  .catalogue-filters-panel {
    display: none;
  }

  .catalogue-filter-toggle {
    display: inline-flex;
  }

  .catalogue-filters-panel.open {
    display: block;
    position: fixed;
    z-index: 1000003;
    background: var(--card-bg);
    border: 1px solid var(--border);
    box-shadow: 0 -8px 40px rgba(0,0,0,0.15);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .catalogue-filters-close {
    display: block;
  }

  .catalogue-filters-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000002;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    display: none;
  }

  .catalogue-filters-backdrop.open {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }

  .props-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .catalogue-filters-panel.open {
    top: 0;
    left: 0;
    width: min(340px, 90vw);
    height: 100dvh;
    border-radius: 0;
    transform: translateX(0);
    animation: filterSlideInLeft 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }
}

@keyframes filterSlideInLeft {
  from { transform: translateX(-105%); }
  to { transform: translateX(0); }
}

@media (max-width: 768px) {
  .catalogue-page {
    padding-top: calc(var(--header-height) + 12px);
  }

  body.header-search-open .catalogue-page {
    padding-top: calc(var(--header-height) + 12px);
  }

  .catalogue-hero {
    margin-bottom: 1rem;
  }

  .catalogue-hero-title {
    font-size: 1.6rem;
  }

  .catalogue-hero-sub {
    font-size: 0.85rem;
  }

  .catalogue-filters-panel.open {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: min(88dvh, 640px);
    border-radius: 20px 20px 0 0;
    border-bottom: none;
    animation: filterSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding-bottom: env(safe-area-inset-bottom, 0);
  }

  .catalogue-filters-header {
    position: sticky;
    top: 0;
    background: var(--card-bg);
    z-index: 2;
    padding-top: 1.25rem;
  }

  .catalogue-filters-header::before {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background: var(--border);
    border-radius: 4px;
    margin: 0 auto 1rem;
  }

  .catalogue-filters-body {
    padding-bottom: 2rem;
  }

  .catalogue-toolbar {
    position: sticky;
    top: var(--header-height);
    z-index: 50;
    background: var(--background);
    padding: 0.5rem 0;
    margin-bottom: 0.75rem;
  }

  .cat-pill,
  .sub-pill {
    font-size: 0.7rem;
    padding: 0.4rem 0.75rem;
  }

  .props-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .prop-icon-btn {
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
  }

  .prop-action-overlay {
    top: 6px;
    right: 6px;
    gap: 0.35rem;
  }

  .shortlist-drawer {
    width: 100%;
    right: -100%;
  }

  body.catalogue-filters-open {
    overflow: hidden;
  }
}

@keyframes filterSlideUp {
  from { transform: translateY(105%); }
  to { transform: translateY(0); }
}

@media (max-width: 480px) {
  .prop-card-title {
    font-size: 0.78rem;
  }

  .prop-details-wrapper {
    padding: 0.6rem 0.65rem 0.7rem;
  }

  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

/* ===== DETAIL PAGE MOBILE ===== */
@media (max-width: 768px) {
  main[style*="padding-top: 120px"] {
    padding-top: calc(var(--header-height) + 16px) !important;
    padding-bottom: 3rem !important;
  }

  main[style*="grid-template-columns: repeat(auto-fit, minmax(400px"] {
    display: block !important;
  }

  main .container > div[style*="grid-template-columns: repeat(auto-fit, minmax(400px"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }

  main h1[style*="font-size: 2.8rem"] {
    font-size: 1.75rem !important;
  }
}

/* ===== SHORTLIST ANIMATIONS ===== */
@keyframes shortlistBtnPop {
  0% { transform: scale(1); }
  35% { transform: scale(1.35); }
  65% { transform: scale(0.9); }
  100% { transform: scale(1); }
}

@keyframes shortlistBadgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.45); }
}

@keyframes propCardShortlistFlash {
  0% { box-shadow: 0 0 0 0 rgba(26, 25, 23, 0.25); }
  50% { box-shadow: 0 0 0 6px rgba(26, 25, 23, 0.12); transform: translateY(-2px); }
  100% { box-shadow: 0 16px 40px rgba(26,25,23,0.12); transform: translateY(0); }
}

@keyframes navShortlistPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.shortlist-btn-pop {
  animation: shortlistBtnPop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.shortlist-btn-pop.active {
  background: var(--foreground) !important;
  color: var(--background) !important;
  border-color: var(--foreground) !important;
}

.shortlist-btn-shrink {
  animation: shortlistBtnPop 0.35s ease reverse;
}

.shortlist-badge-pulse {
  animation: shortlistBadgePulse 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-shortlist-btn-pulse {
  animation: navShortlistPulse 0.55s ease;
}

.prop-card-shortlisted {
  animation: propCardShortlistFlash 0.75s ease;
}

.shortlist-toast {
  position: fixed;
  bottom: calc(1.25rem + env(safe-area-inset-bottom, 0));
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 1000004;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--foreground);
  color: var(--background);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  pointer-events: none;
  white-space: nowrap;
}

.shortlist-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

@media (min-width: 769px) {
  .shortlist-toast {
    bottom: auto;
    top: calc(var(--header-height) + 1rem);
    transform: translateX(-50%) translateY(-120%);
  }

  .shortlist-toast.show {
    transform: translateX(-50%) translateY(0);
  }
}

/* Homepage category grid */
.home-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1.25rem;
}

.home-category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease;
}

.home-category-card:hover {
  transform: translateY(-4px);
}

.home-category-thumb {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--secondary);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.home-category-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.home-category-card:hover .home-category-thumb img {
  transform: scale(1.05);
}

.home-category-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
}

.home-category-name {
  font-family: var(--font-base);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  color: var(--foreground);
  line-height: 1.3;
}

@media (min-width: 768px) {
  .home-categories-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.5rem;
  }
}

