/* Moved from assets/css/style.css */
:root {
  --bg: #0b0e14;          /* deep navy */
  --bg-soft: #0f1320;     /* soft navy */
  --bg-elev: #121827;     /* elevated card */
  --text: #f3f4f6;        /* ivory-ish */
  --muted: #b8bcc8;       /* softer gray */
  --accent: #d4af37;      /* gold */
  --accent-2: #e8c96a;    /* softer gold */
  --accent-muted: rgba(212,175,55,0.15);
  --success: #21c07a;
  --warning: #ffcc66;
  --danger: #ff6b6e;
  --radius: 8px;
  --shadow-soft: 0 4px 16px rgba(0,0,0,0.2);
}

/* Light theme */
[data-theme="light"] {
  --bg: #fafbfc;
  --bg-soft: #ffffff;
  --bg-elev: #ffffff;
  --text: #1a1f2e;
  --muted: #5a6578;
  --accent: #b0841a;      /* rich gold */
  --accent-2: #d4af37;
  --accent-muted: rgba(176,132,26,0.15);
  --success: #16a085;
  --warning: #f39c12;
  --danger: #e74c3c;
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Respect user preference as initial baseline */
@media (prefers-color-scheme: light) {
  :root:not([data-theme]) {
    --bg: #f7f8fa;
    --bg-soft: #ffffff;
    --bg-elev: #ffffff;
    --text: #0d1220;
    --muted: #4b5565;
    --accent: #b0841a;
    --accent-2: #e7c873;
    --accent-muted: rgba(176,132,26,0.22);
    --shadow-soft: 0 10px 24px rgba(10, 15, 26, 0.10);
  }
}
 
 /* Reset */
 * { box-sizing: border-box; }
 html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
              color 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease,
              transform 0.3s ease;
}
*, *::before, *::after {
  transition: background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
              color 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
img, svg, video, iframe {
  transition: none !important;
}
img { max-width: 100%; display: block; }
 
 /* Typography */
h1, h2, h3, h4, h5, h6 { 
  font-family: 'Cormorant Garamond', Georgia, serif; 
  letter-spacing: 0.5px; 
  font-weight: 600; 
  line-height: 1.3;
}
h1 { font-size: clamp(2.4rem, 1.6rem + 2.8vw, 3.4rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 1.3rem + 1.8vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.4rem, 1.1rem + 1vw, 1.6rem); font-weight: 500; }
p { color: var(--muted); font-size: 1.05rem; }
 
 /* Layout */
.container { width: min(1200px, 94vw); margin-inline: auto; }
 .section { padding: 64px 0; }
 .section-light { background: var(--bg-soft); }
 .grid { display: grid; gap: 24px; }
 .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
 .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
 .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
 @media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(3, 1fr); } }
 @media (max-width: 800px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } }
 
 /* Navbar */
[data-theme="light"] .search-dropdown {
  border: 1px solid rgba(26,31,46,0.12);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
 
 /* Navbar */
.navbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 15, 26, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
[data-theme="light"] .navbar {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(26,31,46,0.12);
}

.navbar-inner { display: flex; align-items: center; padding: 18px 0; gap: 18px; }
.nav-links { display: flex; gap: 20px; align-items: center; flex: 1 1 auto; justify-content: flex-end; }
.navbar-inner .nav-cta { display: flex; gap: 12px; align-items: center; margin-left: 12px; }
.navbar-inner .nav-cta .btn { min-height: 44px; padding-inline: 18px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; }
@media (max-width: 900px) {
  .navbar-inner { flex-wrap: wrap; gap: 12px; justify-content: space-between; }
  .theme-toggle { order: 3; }
  .menu-toggle { order: 4; }
  .navbar-inner .nav-cta { order: 5; width: 100%; justify-content: center; flex-wrap: wrap; margin-left: 0; }
}

 .brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand .logo {
  width: 42px; height: 42px; border-radius: 8px;
  background: var(--accent);
  box-shadow: 0 2px 8px rgba(212,175,55,0.2);
}
 .brand .name { color: var(--text); font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 1.2rem; letter-spacing: 0.3px; }
.nav-links { display: flex; gap: 20px; align-items: center; }
.nav-links a { color: var(--muted); text-decoration: none; padding: 8px 14px; border-radius: 6px; transition: color .2s ease, background .2s ease; font-size: 0.95rem; }
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.04); }
[data-theme="light"] .nav-links a:hover { background: rgba(26,31,46,0.06); }
 .nav-cta { display: flex; gap: 12px; align-items: center; }

/* Search */
.search-container {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
  margin: 0 16px;
}
.search-input {
  width: 280px;
  padding: 10px 40px 10px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  color: var(--text);
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s ease;
}
.search-input:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.08);
}
[data-theme="light"] .search-input {
  border: 1px solid rgba(26,31,46,0.15);
  background: rgba(255,255,255,0.8);
}
[data-theme="light"] .search-input:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,1);
  box-shadow: 0 0 0 3px rgba(176,132,26,0.1);
}
.search-input::placeholder {
  color: var(--muted);
}
.search-btn {
  position: absolute;
  right: 8px;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 6px;
  font-size: 1.1rem;
  transition: color .2s ease;
  z-index: 2;
}
.search-btn:hover {
  color: var(--accent);
}

/* Search Dropdown */
.search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--bg-elev);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  max-height: 400px;
  overflow-y: auto;
  z-index: 100;
  display: none;
}
[data-theme="light"] .search-dropdown {
  border: 1px solid rgba(26,31,46,0.12);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.search-dropdown.active {
  display: block;
}
.search-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background .2s ease;
  text-decoration: none;
  color: var(--text);
}
.search-dropdown-item:last-child {
  border-bottom: none;
}
.search-dropdown-item:hover {
  background: rgba(255,255,255,0.05);
}
.search-dropdown-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.search-dropdown-item-content {
  flex: 1;
  min-width: 0;
}
.search-dropdown-item-title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--text);
  font-family: 'Cormorant Garamond', serif;
}
.search-dropdown-item-meta {
  font-size: 0.85rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-dropdown-item-price {
  font-weight: 600;
  color: var(--accent);
  font-size: 0.9rem;
  margin-left: auto;
  flex-shrink: 0;
  font-family: 'Cormorant Garamond', serif;
}
.search-dropdown-empty {
  padding: 24px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}
.search-dropdown-item-meta {
  font-size: 0.85rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-dropdown-item-price {
  font-weight: 600;
  color: var(--accent);
  font-size: 0.95rem;
  white-space: nowrap;
  font-family: 'Cormorant Garamond', serif;
}
.search-dropdown-footer {
  padding: 12px 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  background: rgba(255,255,255,0.02);
}
.search-dropdown-footer a {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}
.search-dropdown-footer a:hover {
  text-decoration: underline;
}

/* Mobile Nav */
.menu-toggle { display: none; }
@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 60px;
    padding: 12px 16px;
    background: rgba(12, 17, 30, 0.95);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(8px);
  }
  .nav-links.open { display: flex; flex-direction: column; gap: 6px; }
  .search-container {
    order: 3;
    width: auto;
    margin: 0 8px;
  }
  .search-input {
    width: 0;
    padding: 10px 0;
    opacity: 0;
    pointer-events: none;
    border: none;
    transition: all 0.3s ease;
  }
  .search-container.active .search-input {
    width: 200px;
    padding: 10px 40px 10px 16px;
    opacity: 1;
    pointer-events: all;
    border: 1px solid rgba(255,255,255,0.12);
  }
  .search-btn {
    position: relative;
    right: auto;
    padding: 10px;
    font-size: 1.2rem;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    transition: all 0.2s ease;
  }
  .search-btn:hover {
    background: rgba(255,255,255,0.08);
  }
  [data-theme="light"] .search-btn {
    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(26,31,46,0.15);
  }
  [data-theme="light"] .search-btn:hover {
    background: rgba(255,255,255,1);
  }
  .search-container.active .search-btn {
    position: absolute;
    right: 8px;
  }
  [data-theme="light"] .search-container.active .search-input {
    border: 1px solid rgba(26,31,46,0.15);
    background: rgba(255,255,255,1);
  }
  .navbar-inner .nav-cta {
    order: 5;
    display: flex;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
}
 
 /* Buttons */
.btn { 
  cursor: pointer; 
  border: 1px solid rgba(255,255,255,0.12); 
  color: var(--text); 
  background: rgba(255,255,255,0.03); 
  padding: 12px 24px; 
  border-radius: 6px; 
  transition: background .2s ease, border-color .2s ease; 
  letter-spacing: 0.3px; 
  font-size: 0.95rem;
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
}
.btn:hover, .btn:focus { 
  border-color: rgba(255,255,255,0.2); 
  background: rgba(255,255,255,0.06); 
  color: var(--text); 
}
.btn-primary, .btn-primary:hover, .btn-primary:focus { 
  background: var(--accent); 
  border: 1px solid var(--accent); 
  color: #0b0e14; 
  font-weight: 600; 
  box-shadow: 0 2px 8px rgba(212,175,55,0.25); 
}
.btn-primary:hover, .btn-primary:focus { 
  background: var(--accent-2); 
  box-shadow: 0 4px 12px rgba(212,175,55,0.3); 
}
.btn-ghost { background: rgba(255,255,255,0.04); color: var(--text); border-color: rgba(255,255,255,0.12); }
 .btn-icon { display: inline-flex; align-items: center; gap: 8px; }
 
 /* Hero */
.hero { padding: 90px 0 60px; background: var(--bg); }
.hero-inner { display: grid; grid-template-columns: 1.1fr 1fr; align-items: center; gap: 48px; }
.hero-copy h1 { font-size: clamp(2.8rem, 2rem + 3vw, 3.6rem); margin: 12px 0 8px; }
.hero .tag { color: var(--accent); font-weight: 500; letter-spacing: 1.6px; font-size: 0.85rem; text-transform: uppercase; font-family: 'Lato', sans-serif; }
.hero-subtitle { font-size: 1.15rem; max-width: 40ch; color: var(--text); font-weight: 500; margin-top: 12px; }
.hero-description { margin-top: 14px; max-width: 55ch; color: var(--muted); font-size: 1.02rem; line-height: 1.7; }
.hero-actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 16px; }
.hero-primary { padding-inline: 32px; }
.hero-actions .btn { min-height: 48px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; padding-inline: 28px; }
.hero-media { display: flex; justify-content: center; }
.hero-illustration { max-width: 440px; width: 100%; border-radius: 24px; box-shadow: 0 20px 60px rgba(0,0,0,0.35); }
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-copy h1 { font-size: clamp(2.4rem, 2rem + 2.5vw, 3.2rem); }
  .hero-illustration { max-width: 360px; margin: 24px auto 0; }
}

.landing-features { padding: 40px 0; background: linear-gradient(135deg, rgba(212,175,55,0.08), transparent); }
.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.feature-card { background: var(--bg-elev); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 32px 26px; display: flex; flex-direction: column; gap: 18px; align-items: center; text-align: center; box-shadow: 0 14px 40px rgba(0,0,0,0.18); min-height: 230px; }
.feature-icon { width: 68px; height: 68px; border-radius: 50%; background: rgba(212,175,55,0.18); display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.feature-content { display: flex; flex-direction: column; gap: 10px; }
.feature-content h3 { margin: 0; font-size: 1.2rem; }
.feature-content p { margin: 0; font-size: 0.95rem; color: var(--muted); }
.feature-link { color: var(--accent); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; justify-content: center; }
.feature-link::after { content: '→'; font-size: 1rem; }
[data-theme="light"] .feature-card { border: 1px solid rgba(26,31,46,0.12); box-shadow: 0 10px 26px rgba(0,0,0,0.1); background: #ffffff; }
[data-theme="light"] .feature-icon { background: rgba(176,132,26,0.12); }
@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr; } }

.landing-featured { padding: 40px 0 20px; }
.landing-featured h2 { text-align: center; margin-bottom: 28px; }
.landing-product-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.landing-product-card { background: var(--bg-elev); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 20px; text-align: center; box-shadow: 0 12px 36px rgba(0,0,0,0.18); }
.landing-product-card img { width: 100%; border-radius: 10px; margin-bottom: 16px; }
.landing-product-card h3 { margin: 0 0 8px; font-size: 1.1rem; }
.landing-product-card p { margin: 0 0 12px; color: var(--muted); font-size: 0.95rem; min-height: 56px; }
.landing-product-card .price { font-weight: 600; color: var(--accent); font-size: 1.05rem; }
[data-theme="light"] .landing-product-card { border: 1px solid rgba(26,31,46,0.12); box-shadow: 0 10px 30px rgba(0,0,0,0.08); background: #ffffff; }
@media (max-width: 1100px) { .landing-product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 700px) { .landing-product-grid { grid-template-columns: 1fr; } }

.landing-about { padding: 50px 0; }
.landing-about-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 32px; align-items: center; }
.landing-about-inner h2 { margin-bottom: 12px; }
.landing-map { border-radius: 16px; overflow: hidden; box-shadow: 0 18px 40px rgba(0,0,0,0.25); }
.landing-map iframe { width: 100%; height: 280px; border: 0; }
@media (max-width: 900px) { .landing-about-inner { grid-template-columns: 1fr; } }
 
 /* Marquee */
.marquee {
  overflow: hidden; border: 1px solid rgba(255,255,255,0.08); background: var(--bg-elev);
  border-radius: 6px; margin-top: 28px;
}
.marquee-track { display: flex; gap: 32px; padding: 16px 24px; animation: scroll 50s linear infinite; }
 .marquee-item { white-space: nowrap; color: var(--muted); font-size: 0.95rem; }
 .marquee-item .dot { color: rgba(255,255,255,0.2); margin: 0 10px; }
 @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
 
 /* Cards */
.card { 
  background: var(--bg-elev); 
  border: 1px solid rgba(255,255,255,0.08); 
  border-radius: 8px; 
  overflow: hidden; 
  transition: border-color .2s ease, box-shadow .2s ease; 
}
.card:hover { 
  border-color: rgba(212,175,55,0.3); 
  box-shadow: 0 4px 16px rgba(0,0,0,0.2); 
}
[data-theme="light"] .card {
  border: 1px solid rgba(26,31,46,0.12);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
[data-theme="light"] .card:hover {
  border-color: rgba(176,132,26,0.3);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
 .card-body { padding: 20px; }
 .card-title { 
  font-family: 'Cormorant Garamond', serif; 
  font-weight: 600; 
  margin: 8px 0; 
  font-size: 1.3rem; 
  letter-spacing: 0.2px; 
}
 .card-meta { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }
 .card-price { margin-top: 12px; font-weight: 600; color: var(--accent); font-size: 1.1rem; font-family: 'Cormorant Garamond', serif; }
 .card-actions { display: flex; gap: 10px; margin-top: 16px; }
 
 /* Filters */
 .filters { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.filter { 
  padding: 10px 16px; 
  border-radius: 6px; 
  border: 1px solid rgba(255,255,255,0.12); 
  color: var(--muted); 
  background: rgba(255,255,255,0.03); 
  cursor: pointer; 
  transition: background .2s ease, color .2s ease, border-color .2s ease; 
  font-size: 0.9rem;
}
.filter.active, .filter:hover { color: var(--text); border-color: var(--accent); background: rgba(212,175,55,0.12); }
 
 /* Forms */
 .form { display: grid; gap: 16px; }
 .input, .textarea, .select { 
   width: 100%; 
   padding: 14px 16px; 
   border-radius: 6px; 
   border: 1px solid rgba(255,255,255,0.12); 
   background: var(--bg-elev); 
   color: var(--text); 
   outline: none; 
   transition: border-color .2s ease; 
   font-family: 'Lato', sans-serif;
   font-size: 0.95rem;
}
 .input:focus, .textarea:focus, .select:focus { border-color: var(--accent); }
[data-theme="light"] .input, [data-theme="light"] .textarea, [data-theme="light"] .select {
  border: 1px solid rgba(26,31,46,0.15);
  background: rgba(255,255,255,0.9);
}
[data-theme="light"] .input:focus, [data-theme="light"] .textarea:focus, [data-theme="light"] .select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(176,132,26,0.1);
}
 .textarea { min-height: 140px; resize: vertical; }
 
 /* Testimonial Carousel */
.carousel { position: relative; overflow: hidden; border-radius: 8px; border: 1px solid rgba(255,255,255,0.08); background: var(--bg-elev); }
 .carousel-track { display: flex; transition: transform .5s ease; }
 .testimonial { flex: 0 0 100%; padding: 32px; }
 .testimonial .stars { color: var(--accent-2); margin-bottom: 12px; font-size: 1.1rem; }
 .testimonial p { font-size: 1.05rem; line-height: 1.8; font-style: italic; }
 .carousel-dots { position: absolute; left: 0; right: 0; bottom: 12px; display: flex; gap: 10px; justify-content: center; }
 .carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.25); transition: background .2s ease; }
.carousel-dot.active { background: var(--accent); }
 
 /* Badges */
.badge { 
  display: inline-block; 
  padding: 6px 12px; 
  border-radius: 4px; 
  font-size: 0.85rem; 
  color: #0b0e14; 
  background: var(--accent); 
  box-shadow: 0 2px 6px rgba(212,175,55,0.2); 
  font-weight: 600; 
  font-family: 'Lato', sans-serif;
}
 
 /* Footer */
 .footer { margin-top: 40px; border-top: 1px solid rgba(255,255,255,0.06); background: rgba(10,15,26,0.9); }
.footer-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; padding: 24px 0; }
 .footer a { color: var(--muted); text-decoration: none; }
 .footer a:hover { color: var(--text); }
 .footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 12px 0; color: var(--muted); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
@media (max-width: 600px) { .footer-inner { grid-template-columns: 1fr; } }

/* Footer in light mode */
[data-theme="light"] .footer { background: #f8f9fa; border-top-color: rgba(26,31,46,0.12); }
[data-theme="light"] .footer-bottom { border-top-color: rgba(26,31,46,0.12); }
[data-theme="light"] .carousel {
  border: 1px solid rgba(26,31,46,0.12);
}
[data-theme="light"] .carousel-dot {
  background: rgba(26,31,46,0.25);
}
 
 /* Utility */
 .hidden { display: none !important; }
 .center { text-align: center; }
 .muted { color: var(--muted); }
 .mt-1 { margin-top: 10px; } .mt-2 { margin-top: 20px; } .mt-3 { margin-top: 30px; }
 .mb-1 { margin-bottom: 10px; } .mb-2 { margin-bottom: 20px; } .mb-3 { margin-bottom: 30px; }
 
 /* Floating WhatsApp */
 .whatsapp { 
  position: fixed; 
  right: 20px; 
  bottom: 20px; 
  background: #25d366; 
  color: #00131f; 
  border-radius: 6px; 
  padding: 14px 20px; 
  font-weight: 600; 
  box-shadow: 0 4px 12px rgba(0,0,0,0.25); 
  z-index: 60; 
  text-decoration: none; 
  font-size: 0.95rem;
}
 .whatsapp:hover { 
  background: #20ba5a; 
  box-shadow: 0 6px 16px rgba(0,0,0,0.3); 
}

/* Theme toggle */
.theme-toggle { 
  background: rgba(255,255,255,0.03); 
  border: 1px solid rgba(255,255,255,0.10); 
  border-radius: 999px; 
  padding: 10px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text); 
  cursor: pointer; 
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  font-size: 1.3rem;
}
.theme-toggle:hover { 
  background: rgba(255,255,255,0.06); 
  transform: scale(1.05);
}
.theme-toggle:active {
  transform: scale(0.95);
}
.theme-toggle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
  opacity: 0;
  pointer-events: none;
}
.theme-toggle:active::before {
  width: 200px;
  height: 200px;
  opacity: 0.35;
  transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
}
.theme-toggle-icon {
  display: inline-block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  position: absolute;
  z-index: 1;
}
.theme-toggle-icon.rotate {
  animation: rotate360 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes rotate360 {
  from { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.2); }
  to { transform: rotate(360deg) scale(1); }
}
.theme-toggle-icon.fade {
  animation: fadeFlip 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes fadeFlip {
  0% { transform: rotateY(0deg) scale(1); opacity: 1; }
  50% { transform: rotateY(90deg) scale(0.8); opacity: 0; }
  100% { transform: rotateY(0deg) scale(1); opacity: 1; }
}
[data-theme="light"] .theme-toggle { 
  background: rgba(26,31,46,0.06); 
  border-color: rgba(26,31,46,0.15); 
}
[data-theme="light"] .theme-toggle:hover { 
  background: rgba(26,31,46,0.10); 
}
 
 /* Gallery */
 .gallery { columns: 1; column-gap: 20px; }
 @media (min-width: 700px) { .gallery { columns: 2; } }
 @media (min-width: 1000px) { .gallery { columns: 3; } }
 .gallery img { width: 100%; margin: 0 0 20px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.08); }
 
 /* Tables (Catalogue) */
 .table { width: 100%; border-collapse: collapse; }
 .table th, .table td { padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,0.08); text-align: left; }
 .table th { 
   color: var(--accent); 
   font-weight: 600; 
   font-family: 'Cormorant Garamond', serif;
   font-size: 1.1rem;
}
 .table td { color: var(--muted); }
 .table tr:hover td { background: rgba(255,255,255,0.03); }
 
 /* Small hover lift for icons */
 .icon-hover { transition: opacity .2s ease; display: inline-block; }
 .icon-hover:hover { opacity: 0.8; }
