:root {
  --bg: #f7f3ec;
  --bg-2: #efe7d8;
  --surface: #ffffff;
  --ink: #1a1714;
  --ink-2: #4a423a;
  --muted: #8a8074;
  --line: rgba(26,23,20,0.12);
  --gold: #c9a14a;
  --gold-2: #e6c578;
  --wood: #8b5a2b;
  --cream: #f4ead8;
  --shadow-sm: 0 2px 12px rgba(26,23,20,0.06);
  --shadow-md: 0 12px 40px rgba(26,23,20,0.10);
  --shadow-lg: 0 30px 80px rgba(26,23,20,0.18);
  --glass: rgba(255,255,255,0.65);
  --radius: 18px;
  --serif: "Cormorant Garamond", serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(.2,.7,.2,1);
}
[data-theme="dark"] {
  --bg: #0f0d0b;
  --bg-2: #161310;
  --surface: #1a1714;
  --ink: #f6efe2;
  --ink-2: #c9beac;
  --muted: #8d8474;
  --line: rgba(246,239,226,0.10);
  --gold: #d6b25b;
  --gold-2: #f0d589;
  --cream: #2a241d;
  --glass: rgba(20,17,14,0.55);
  --shadow-md: 0 12px 40px rgba(0,0,0,0.4);
  --shadow-lg: 0 30px 80px rgba(0,0,0,0.55);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background .4s var(--ease), color .4s var(--ease);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0 0 .4em;
  color: var(--ink);
}
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h3 { font-size: 1.35rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
p { margin: 0 0 1em; color: var(--ink-2); }
.lead { font-size: 1.05rem; color: var(--ink-2); max-width: 56ch; }
.kicker {
  font-size: .78rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
  font-weight: 500;
}
.muted { color: var(--muted); }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(70px, 10vw, 130px) 0; }
.section-alt { background: var(--bg-2); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-head .lead { margin: 0 auto; }

/* Loader */
.loader {
  position: fixed; inset: 0; background: var(--bg);
  z-index: 9999; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 24px;
  transition: opacity .8s var(--ease), visibility .8s;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader-mark {
  font-family: var(--serif); font-size: 2rem; color: var(--ink);
  display: flex;
}
.loader-mark span {
  opacity: 0; transform: translateY(20px);
  animation: loadIn .6s var(--ease) forwards;
}
.loader-mark span:nth-child(1){animation-delay:.0s}
.loader-mark span:nth-child(2){animation-delay:.05s}
.loader-mark span:nth-child(3){animation-delay:.1s}
.loader-mark span:nth-child(4){animation-delay:.15s}
.loader-mark span:nth-child(5){animation-delay:.2s}
.loader-mark span:nth-child(6){animation-delay:.25s}
.loader-mark span:nth-child(7){animation-delay:.3s}
.loader-mark span:nth-child(8){animation-delay:.35s}
.loader-mark span:nth-child(9){animation-delay:.4s}
.loader-bar { width: 180px; height: 2px; background: var(--line); overflow: hidden; }
.loader-bar span { display:block; height:100%; width:0; background: var(--gold);
  animation: loadBar 1.2s var(--ease) forwards; }
@keyframes loadIn { to { opacity:1; transform:translateY(0); } }
@keyframes loadBar { to { width:100%; } }

/* Nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  transition: padding .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease), backdrop-filter .3s;
}
.nav.scrolled {
  padding: 10px 0;
  background: var(--glass);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 80px; height: 80px; border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ink), #3b322a);
  color: var(--gold-2); display: grid; place-items: center;
  font-family: var(--serif); font-size: 1rem; letter-spacing: 0;
  border: 1px solid var(--gold);
}
.brand-mark img {
  width: 100;
  height: 100;
  object-fit: cover;
}
.brand-text { font-family: var(--serif); font-size: 1.4rem; }
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  font-size: .9rem; color: var(--ink-2); position: relative;
  padding: 6px 0; transition: color .2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content:""; position:absolute; left:0; bottom:0; height:1px; width:0;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 4px; }
.icon-btn {
  width: 40px; height: 40px; display: grid; place-items: center;
  border-radius: 50%; color: var(--ink-2);
  transition: background .2s, color .2s;
}
.icon-btn:hover { background: var(--line); color: var(--ink); }
.icon-btn svg { width: 18px; height: 18px; }
#themeToggle .i-moon { display: none; }
[data-theme="dark"] #themeToggle .i-sun { display: none; }
[data-theme="dark"] #themeToggle .i-moon { display: block; }
.burger { display: none; flex-direction: column; gap: 4px; }
.burger span { width: 18px; height: 1.5px; background: currentColor; transition: transform .3s, opacity .3s; }
.burger.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.search-bar {
  max-height: 0; overflow: hidden; transition: max-height .35s var(--ease);
  background: var(--surface); border-bottom: 1px solid var(--line);
}
.search-bar.open { max-height: 80px; }
.search-bar input {
  width: 100%; max-width: 1280px; margin: 0 auto; display: block;
  padding: 18px 24px; background: transparent; border: none; outline: none;
  font-family: var(--serif); font-size: 1.3rem; color: var(--ink);
}

/* Hero */
.hero {
  position: relative; min-height: 100vh; overflow: hidden;
  display: flex; align-items: center;
  padding-top: 120px; padding-bottom: 80px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08); transition: transform 1.6s var(--ease);
  animation: heroFloat 14s ease-in-out infinite alternate;
}
@keyframes heroFloat {
  from { transform: scale(1.08) translate(0,0); }
  to { transform: scale(1.12) translate(-1.5%, -1.5%); }
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 60% at 20% 100%, rgba(26,23,20,.55), transparent 60%),
    linear-gradient(180deg, rgba(247,243,236,.4), rgba(247,243,236,.92));
}
[data-theme="dark"] .hero-veil {
  background:
    radial-gradient(80% 60% at 20% 100%, rgba(0,0,0,.7), transparent 60%),
    linear-gradient(180deg, rgba(15,13,11,.5), rgba(15,13,11,.95));
}
.hero-orbs .orb {
  position: absolute; border-radius: 50%; filter: blur(60px);
  opacity: .55; z-index: 0;
}
.orb.o1 { width: 320px; height: 320px; background: var(--gold-2); top: 10%; right: 10%; animation: floatA 12s ease-in-out infinite; }
.orb.o2 { width: 260px; height: 260px; background: var(--wood); bottom: 8%; left: 5%; animation: floatB 16s ease-in-out infinite; }
.orb.o3 { width: 200px; height: 200px; background: var(--cream); top: 50%; left: 40%; animation: floatA 18s ease-in-out infinite reverse; }
@keyframes floatA { 0%,100% { transform: translate(0,0);} 50% { transform: translate(30px,-25px); } }
@keyframes floatB { 0%,100% { transform: translate(0,0);} 50% { transform: translate(-25px,20px); } }

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  width: 100%;
}
.hero-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: .95; letter-spacing: -.02em;
  margin: 8px 0 24px; max-width: 14ch;
}
.hero-title em { color: var(--gold); font-style: italic; font-family: var(--serif); }
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span {
  display: inline-block; transform: translateY(110%);
  animation: lineUp 1s var(--ease) forwards;
}
.hero-title .line:nth-child(1) > span { animation-delay: .1s; }
.hero-title .line:nth-child(2) > span { animation-delay: .3s; }
.hero-title .line:nth-child(3) > span { animation-delay: .5s; }
@keyframes lineUp { to { transform: translateY(0); } }

.hero-sub { max-width: 48ch; font-size: 1.1rem; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin: 26px 0 40px; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 999px;
  font-size: .92rem; font-weight: 500; letter-spacing: .02em;
  transition: transform .3s var(--ease), background .3s, color .3s, box-shadow .3s;
  will-change: transform;
}
.btn svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn-primary {
  background: var(--ink); color: var(--bg);
  box-shadow: 0 12px 30px rgba(26,23,20,.25);
}
.btn-primary:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }
.btn-ghost {
  border: 1px solid var(--ink); color: var(--ink); background: transparent;
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); transform: translateY(-2px); }

.hero-meta { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-meta > div { display: flex; flex-direction: column; }
.hero-meta strong { font-family: var(--serif); font-size: 1.8rem; color: var(--ink); }
.hero-meta span { font-size: .8rem; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; }

.hero-float { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.float-card {
  position: absolute; width: 220px;
  background: var(--glass); backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid var(--line); border-radius: 18px;
  padding: 12px; display: flex; gap: 12px; align-items: center;
  box-shadow: var(--shadow-md);
  pointer-events: auto;
  animation: cardFloat 6s ease-in-out infinite alternate;
}
.float-card img { width: 60px; height: 60px; border-radius: 12px; object-fit: cover; }
.float-card span { font-size: .7rem; color: var(--gold); letter-spacing: .15em; text-transform: uppercase; display:block; }
.float-card b { font-family: var(--serif); font-weight: 600; font-size: 1.05rem; }
.float-card.f1 { right: 6%; top: 22%; animation-delay: 0s; }
.float-card.f2 { right: 14%; bottom: 18%; animation-delay: -3s; }
@keyframes cardFloat { from { transform: translateY(0); } to { transform: translateY(-14px); } }

.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  font-size: .75rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--muted); display: flex; align-items: center; gap: 12px; z-index: 2;
}
.hero-scroll span {
  width: 1px; height: 40px; background: var(--ink-2); position: relative; overflow: hidden;
}
.hero-scroll span::after {
  content:""; position:absolute; inset:0; background: var(--gold);
  transform: translateY(-100%); animation: scrollDot 2s var(--ease) infinite;
}
@keyframes scrollDot { to { transform: translateY(100%); } }

/* Marquee */
.marquee {
  background: var(--ink); color: var(--bg);
  padding: 18px 0; overflow: hidden; border-block: 1px solid var(--ink);
}
.marquee-track {
  display: flex; gap: 40px; white-space: nowrap;
  animation: scroll 30s linear infinite; width: max-content;
  font-family: var(--serif); font-size: 1.1rem; letter-spacing: .04em;
}
.marquee-track span:nth-child(even) { color: var(--gold); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Filters */
.filters {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 50px;
}
.filter {
  padding: 10px 20px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--ink-2);
  font-size: .85rem; transition: all .25s;
}
.filter:hover { color: var(--ink); border-color: var(--ink); }
.filter.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* Grid */
.grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}
.empty { text-align: center; color: var(--muted); padding: 60px 0; }

.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--bg-2); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.card:hover .card-media img { transform: scale(1.08); }
.card-cat {
  position: absolute; top: 14px; left: 14px;
  background: var(--glass); backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 6px 12px; border-radius: 999px;
  font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--ink);
  border: 1px solid var(--line);
}
.card-body { padding: 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-body h3 { font-family: var(--serif); font-size: 1.5rem; margin: 0; }
.card-price { color: var(--gold); font-weight: 600; font-size: 1rem; letter-spacing: .02em; }
.card-desc { font-size: .9rem; color: var(--ink-2); margin: 0 0 14px; flex: 1; }
.card-actions { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.act {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 11px 8px; border-radius: 12px; font-size: .78rem; font-weight: 500;
  transition: transform .2s, background .2s, color .2s, border-color .2s;
  border: 1px solid var(--line); color: var(--ink); background: transparent;
}
.act svg { width: 14px; height: 14px; }
.act:hover { transform: translateY(-2px); }
.act.wa { background: #25d366; color: #fff; border-color: #25d366; }
.act.wa:hover { background: #1ebe5b; }
.act.call { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.act.call:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.act.sms { background: var(--surface); }
.act.sms:hover { background: var(--bg-2); border-color: var(--ink); }

/* Why */
.why-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px; align-items: center;
}
.why-img {
  margin-top: 30px; border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover;
  box-shadow: var(--shadow-md);
}
.why-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.why-list li {
  display: flex; gap: 22px; padding: 28px 0; border-bottom: 1px solid var(--line);
}
.why-list li:last-child { border-bottom: none; }
.why-list span {
  font-family: var(--serif); font-size: 1.6rem; color: var(--gold); min-width: 50px;
}
.why-list h3 { margin: 0 0 6px; font-family: var(--serif); font-size: 1.35rem; }
.why-list p { margin: 0; font-size: .95rem; }

/* About */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-grid img { border-radius: var(--radius); aspect-ratio: 4/5; object-fit: cover; box-shadow: var(--shadow-lg); }

/* Testimonials */
.testimonials {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px;
}
.testimonial {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 30px; margin: 0;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial blockquote {
  margin: 0 0 18px; font-family: var(--serif); font-size: 1.35rem; line-height: 1.4; color: var(--ink);
}
.testimonial figcaption { color: var(--muted); font-size: .85rem; letter-spacing: .05em; }

/* CTA */
.cta {
  background: linear-gradient(135deg, var(--ink) 0%, #2a221b 100%);
  color: var(--bg); padding: 100px 0; position: relative; overflow: hidden;
}
.cta::before {
  content:""; position: absolute; inset: -50%;
  background: radial-gradient(circle, var(--gold) 0%, transparent 60%);
  opacity: .12; animation: ctaPulse 8s ease-in-out infinite;
}
@keyframes ctaPulse { 50% { transform: scale(1.2); opacity: .2; } }
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta h2 { color: var(--bg); font-size: clamp(2rem, 5vw, 3.6rem); }
.cta p { color: rgba(246,239,226,.7); }
.cta .hero-cta { justify-content: center; }
.cta .btn-ghost { border-color: var(--bg); color: var(--bg); }
.cta .btn-ghost:hover { background: var(--bg); color: var(--ink); }
.cta .btn-primary { background: var(--gold); color: var(--ink); }
.cta .btn-primary:hover { background: var(--gold-2); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 30px 0; display: flex; flex-direction: column; gap: 20px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.ci { width: 44px; height: 44px; min-width: 44px; border-radius: 12px; background: var(--bg-2); display: grid; place-items: center; color: var(--gold); }
.ci svg { width: 20px; height: 20px; }
.contact-list b { display: block; font-family: var(--serif); font-size: 1.1rem; color: var(--ink); font-weight: 600; }
.contact-list a, .contact-list span { color: var(--ink-2); font-size: .95rem; }
.contact-list a:hover { color: var(--gold); }
.map { margin-top: 30px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); height: 240px; }
.map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.4) contrast(.95); }
[data-theme="dark"] .map iframe { filter: grayscale(.6) invert(.92) contrast(.85); }

.contact-form {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 40px;
  display: flex; flex-direction: column; gap: 18px;
  box-shadow: var(--shadow-md);
}
.contact-form h3 { font-family: var(--serif); font-size: 1.8rem; margin: 0 0 8px; }
.contact-form label { display: flex; flex-direction: column; gap: 6px; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.contact-form input, .contact-form select, .contact-form textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--ink);
  padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px;
  background: var(--bg); outline: none; transition: border-color .2s;
  resize: vertical;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold); }
.form-note { background: var(--cream); color: var(--ink); padding: 12px 16px; border-radius: 12px; font-size: .9rem; margin: 0; }

/* Footer */
.footer { background: var(--ink); color: var(--bg); padding: 70px 0 30px; }
.footer .brand-text { color: var(--bg); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 50px; border-bottom: 1px solid rgba(246,239,226,.1);
}
.footer-grid h4 { color: var(--gold); margin-bottom: 18px; }
.footer-grid a { display: block; color: rgba(182, 122, 12, 0.6); margin-bottom: 10px; font-size: .9rem; transition: color .2s; }
.footer-grid a:hover { color: var(--gold); }
.footer-grid p { color: rgba(182, 122, 12, 0.6); max-width: 30ch; margin-top: 16px; }
.footer-bottom {
  display: flex; justify-content: space-between; padding-top: 30px;
  font-size: .82rem; color: rgba(246,239,226,.5);
}

/* To top */
.to-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--ink); color: var(--bg);
  display: grid; place-items: center;
  opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: opacity .3s, transform .3s, background .3s;
  box-shadow: var(--shadow-md);
}
.to-top svg { width: 20px; height: 20px; }
.to-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.to-top:hover { background: var(--gold); color: var(--ink); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 960px) {
  .why-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .float-card.f1, .float-card.f2 { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links {
    position: fixed; top: 70px; left: 0; right: 0; bottom: 0;
    background: var(--bg); flex-direction: column; align-items: center;
    justify-content: center; gap: 30px; font-size: 1.4rem;
    transform: translateX(100%); transition: transform .4s var(--ease);
    padding: 40px; z-index: 99;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.6rem; color: var(--ink); font-family: var(--serif); }
  .burger { display: flex; }
  .hero-meta { gap: 24px; }
  .hero-meta strong { font-size: 1.4rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .contact-form { padding: 28px; }
  .card-actions { grid-template-columns: 1fr; }
}

.product-slider{
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-btn{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;

    width: 40px;
    height: 40px;

    border-radius: 50%;
    border: none;

    background: rgba(255,255,255,.85);
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
}

.prev{
    left: 10px;
}

.next{
    right: 10px;
}

.slider-btn svg{
    width: 20px;
    height: 20px;
}