@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap");

:root {
  --background: 0 0% 100%;
  --foreground: 218 40% 12%;
  --card: 0 0% 100%;
  --card-foreground: 218 40% 12%;
  --primary: 218 55% 20%;
  --primary-foreground: 0 0% 100%;
  --secondary: 216 20% 95%;
  --secondary-foreground: 218 40% 12%;
  --muted: 216 18% 93%;
  --muted-foreground: 218 15% 45%;
  --accent: 22 88% 52%;
  --accent-foreground: 0 0% 100%;
  --destructive: 0 84.2% 60.2%;
  --border: 216 20% 88%;
  --input: 216 20% 88%;
  --radius: 0.75rem;
  --bs-body-font-family: "Manrope", system-ui, sans-serif;
  --bs-body-color: hsl(var(--foreground));
  --bs-body-bg: hsl(var(--background));
  --bs-border-color: hsl(var(--border));
  --bs-primary: hsl(var(--primary));
  --bs-primary-rgb: 23, 45, 79;
  --obelisco-seam-size: clamp(5.75rem, 15vw, 12rem);
  --obelisco-green-weak: #c3de86;
  --obelisco-green-strong: #174e42;
  --obelisco-green-block: #174e42;
  --obelisco-green-dark: #14624c;
  --obelisco-orange-strong: #f28b34;
  --obelisco-orange-weak: #fabd47;
  --obelisco-orange-header: hsl(22 88% 46%);
  --obelisco-orange-header-light: hsl(22.05 87.76% 51.96%);
}

html { scroll-behavior: smooth; }

body {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: hsl(var(--foreground));
  background: hsl(var(--background));
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { font-family: "Manrope", system-ui, sans-serif; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
button { font-family: inherit; }

.container-site {
  width: 100%;
  max-width: 92rem;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 576px) { .container-site { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 992px) { .container-site { padding-left: 2rem; padding-right: 2rem; } }
@media (min-width: 1400px) { .container-site { padding-left: 2.75rem; padding-right: 2.75rem; } }

.text-accent { color: hsl(var(--accent)) !important; }
.text-primary { color: hsl(var(--primary)) !important; }
.text-muted-fg,
.text-muted-fg { color: hsl(var(--muted-foreground)); }
.bg-accent { background-color: hsl(var(--accent)) !important; }
.bg-primary { background: hsl(var(--primary)) !important; }
.bg-secondary { background: hsl(var(--secondary)); }
.bg-card { background: hsl(var(--card)); }
.border-theme { border-color: hsl(var(--border)) !important; }

.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: hsl(var(--accent));
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.75rem 1.5rem;
  border: 0;
  border-radius: 999px;
  transition: background .2s, transform .15s;
}
.btn-accent:hover { background: hsl(22 88% 46%); color: #fff; }
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: hsl(var(--accent));
  color: #fff;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
  border: 0;
  border-radius: 999px;
  transition: background .2s;
}
.btn-pill:hover { background: hsl(22 88% 46%); color: #fff; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--obelisco-green-strong);
  border-bottom: 2px solid var(--obelisco-orange-header);
  box-shadow: 0 10px 28px -18px rgba(23, 78, 66, .45);
  transition: background .45s ease, box-shadow .45s ease, border-color .45s ease;
}
.site-header.is-scrolled {
  background: #fff;
  box-shadow: 0 12px 32px -20px rgba(0, 0, 0, .18);
  border-bottom-color: var(--obelisco-orange-header-light);
}

.header-main-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 1.5rem;
  height: 4.5rem;
}
@media (min-width: 576px) { .header-main-inner { height: 5rem; } }
.brand-link { flex-shrink: 0; display: flex; align-items: center; }
.brand-logo { height: 2.25rem; width: auto; }
@media (min-width: 576px) { .brand-logo { height: 2.75rem; } }
.site-header .brand-logo { display: block; }

.header-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  min-width: 0;
}
@media (min-width: 992px) { .header-nav { display: flex; } }
.nav-link-site {
  position: relative;
  display: flex; align-items: center;
  color: rgba(255,255,255,.88);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 0.4rem 0.55rem;
  white-space: nowrap;
  transition: color .35s ease;
}
.nav-link-site::after {
  content: "";
  position: absolute; left: 0.55rem; right: 0.55rem; bottom: 0.12rem;
  height: 2px; border-radius: 99px;
  background: var(--obelisco-orange-header);
  transform: scaleX(0);
  transition: transform .25s ease, background .45s ease;
}
.nav-link-site:hover { color: #fff; }
.nav-link-site.active { color: #fff; }
.nav-link-site.active::after { transform: scaleX(1); }
.site-header.is-scrolled .nav-link-site { color: var(--obelisco-green-dark); }
.site-header.is-scrolled .nav-link-site:hover,
.site-header.is-scrolled .nav-link-site.active { color: var(--obelisco-green-dark); }
.site-header.is-scrolled .nav-link-site::after { background: var(--obelisco-orange-header-light); }

.header-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  flex-shrink: 0;
}
.header-search { width: 15.5rem; }

.search-pill {
  display: flex;
  align-items: center;
  border: 1px solid hsl(var(--border));
  border-radius: 999px;
  padding: 0.4rem 0.45rem 0.4rem 0.85rem;
  background: hsl(var(--secondary) / 0.65);
  width: 100%;
  transition: box-shadow .2s, border-color .2s, background .2s;
}
.search-pill:focus-within {
  background: #fff;
  border-color: hsl(var(--accent) / 0.45);
  box-shadow: 0 0 0 3px hsl(var(--accent) / 0.12);
}
.search-pill i { color: hsl(var(--muted-foreground)); }
.search-pill:hover { background: #fff; }
.search-pill input {
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 0.8125rem;
  padding: 0 0.6rem;
  color: hsl(var(--foreground));
  min-width: 0;
}
.search-pill button {
  border: 0;
  background: hsl(var(--accent));
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
}
.search-pill button:hover { background: hsl(22 88% 46%); color: #fff; }

.site-header .search-pill {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.28);
}
.site-header .search-pill i { color: rgba(255,255,255,.78); }
.site-header .search-pill input { color: #fff; }
.site-header .search-pill input::placeholder { color: rgba(255,255,255,.6); }
.site-header .search-pill button { background: var(--obelisco-orange-header); }
.site-header .search-pill button:hover { background: hsl(22 88% 40%); color: #fff; }
.site-header .search-pill:hover,
.site-header .search-pill:focus-within {
  background: rgba(255,255,255,.22);
  border-color: rgba(242, 139, 52, .55);
  box-shadow: none;
}
.site-header.is-scrolled .search-pill {
  background: hsl(var(--secondary) / 0.65);
  border-color: hsl(var(--border));
}
.site-header.is-scrolled .search-pill i { color: var(--obelisco-green-dark); }
.site-header.is-scrolled .search-pill input { color: var(--obelisco-green-dark); }
.site-header.is-scrolled .search-pill input::placeholder { color: rgba(20, 98, 76, .55); }
.site-header.is-scrolled .search-pill button { background: var(--obelisco-orange-header-light); color: #fff; }
.site-header.is-scrolled .search-pill button:hover { background: var(--obelisco-orange-header); color: #fff; }
.site-header.is-scrolled .search-pill:hover,
.site-header.is-scrolled .search-pill:focus-within {
  background: #fff;
  border-color: rgba(242, 139, 52, .45);
  box-shadow: 0 0 0 3px rgba(242, 139, 52, .12);
}

.suggest-box {
  position: absolute;
  left: 0; right: 0; top: 100%;
  margin-top: 0.5rem;
  background: #fff;
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0,0,0,.12);
  overflow: hidden;
  z-index: 50;
}
.suggest-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.5rem 1rem; }
.suggest-item:hover { background: hsl(var(--secondary)); }
.suggest-thumb { width: 2.5rem; height: 2.5rem; border-radius: 0.5rem; overflow: hidden; background: hsl(var(--secondary)); flex-shrink: 0; }
.suggest-thumb img { width: 100%; height: 100%; object-fit: cover; }

.icon-btn {
  width: 2.5rem; height: 2.5rem;
  border: 0; background: transparent;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  color: hsl(var(--primary));
  position: relative;
  transition: background .2s, color .35s;
}
.site-header .icon-btn { color: #fff; }
.site-header .icon-btn:hover { background: rgba(255,255,255,.14); color: #fff; }
.site-header.is-scrolled .icon-btn { color: var(--obelisco-green-dark); }
.site-header.is-scrolled .icon-btn:hover { background: rgba(242, 139, 52, .12); color: var(--obelisco-green-dark); }
.site-header .quote-badge { background: var(--obelisco-orange-header); color: #fff; }
.site-header .btn-pill { background: var(--obelisco-orange-header); }
.site-header .btn-pill:hover { background: hsl(22 88% 40%); color: #fff; }
.site-header.is-scrolled .quote-badge { background: var(--obelisco-orange-header-light); }
.site-header.is-scrolled .btn-pill { background: var(--obelisco-orange-header-light); color: #fff; }
.site-header.is-scrolled .btn-pill:hover { background: var(--obelisco-orange-header); color: #fff; }
.icon-btn:hover { background: hsl(var(--accent) / 0.1); color: hsl(var(--accent)); }
.quote-badge {
  position: absolute; top: -2px; right: -2px;
  width: 1.25rem; height: 1.25rem;
  background: hsl(var(--accent)); color: #fff;
  font-size: 0.7rem; font-weight: 700;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
}

.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 60;
  background: #fff;
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid hsl(var(--border));
}

.hero {
  position: relative;
  aspect-ratio: 16 / 8;
  overflow: hidden;
}
@media (min-width: 576px) { .hero { aspect-ratio: 21 / 8; } }
@media (max-width: 575.98px) {
  .hero-copy h1 { font-size: 1.28rem; margin-bottom: 0.4rem; }
  .hero-copy p { font-size: 0.78rem; margin-bottom: 0; line-height: 1.35; }
  .hero-dots { bottom: 0.55rem; }
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: translateX(-100%);
  transition: transform .6s ease-in-out;
}
.hero-slide.active { transform: translateX(0); }
.hero-slide.exit { transform: translateX(100%); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.6), rgba(0,0,0,.2), transparent);
  pointer-events: none;
}
.hero-copy {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  pointer-events: none;
}
.hero-copy h1 {
  font-size: 1.5rem; font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 1rem;
  text-shadow: 0 2px 16px rgba(0,0,0,.4);
}
@media (min-width: 576px) { .hero-copy h1 { font-size: 2.25rem; } }
@media (min-width: 992px) { .hero-copy h1 { font-size: 3rem; } }
.hero-copy p {
  color: #e5e7eb; font-size: 0.875rem; max-width: 28rem; margin-bottom: 1.5rem;
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
}
.hero-dots {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.5rem; z-index: 10;
}
.hero-dot {
  height: 6px; width: 12px; border-radius: 999px; border: 0;
  background: rgba(255,255,255,.4);
}
.hero-dot.active { width: 32px; background: #fff; }

.benefits {
  border-top: 1px solid hsl(var(--border));
  border-bottom: 1px solid hsl(var(--border));
  background: hsl(var(--secondary) / 0.5);
}
.benefit-item { display: flex; align-items: center; gap: 0.75rem; padding: 1.25rem 0.75rem; }
.benefit-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 999px;
  background: hsl(var(--accent) / 0.1); color: hsl(var(--accent));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.section { padding: 1.25rem 0; }
@media (min-width: 576px) { .section { padding: 1.65rem 0; } }
@media (max-width: 767.98px) {
  .header-main-inner { height: 3.65rem; }
  .brand-logo { height: 1.9rem; }
  .section { padding: 0.85rem 0; }
  .section-title { font-size: 1.28rem; margin-top: 0.25rem; }
  .benefits .container-site { padding-top: 0.15rem; padding-bottom: 0.15rem; }
  .benefit-item {
    align-items: flex-start;
    gap: 0.45rem;
    padding: 0.6rem 0.35rem;
  }
  .benefit-icon { width: 1.85rem; height: 1.85rem; font-size: 0.82rem; }
  .benefit-item .small { font-size: 0.72rem; line-height: 1.2; }
  .benefit-item .text-muted-fg { font-size: 10px !important; line-height: 1.25; }
  .cat-card { aspect-ratio: 3 / 3.6; border-radius: 0.85rem; }
  .cat-card-body { padding: 0.65rem 0.65rem 0.7rem; }
  .cat-card-body h3 { font-size: 0.72rem; }
  .cat-card-num { width: 1.5rem; height: 1.5rem; font-size: 0.58rem; top: 0.45rem; left: 0.45rem; }
  .brands-marquee { margin-top: 0.35rem; }
}
.eyebrow {
  color: hsl(var(--accent));
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.eyebrow-row {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}
.eyebrow-line {
  display: block;
  width: 2rem;
  height: 1px;
  background: hsl(var(--accent));
  flex-shrink: 0;
}
.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 0.5rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: hsl(var(--primary));
}
@media (min-width: 576px) { .section-title { font-size: 1.875rem; } }
@media (min-width: 992px) { .section-title { font-size: 2.25rem; } }
.title-muted {
  font-weight: 400;
  color: hsl(var(--foreground) / 0.45);
}
.title-italic {
  font-style: italic;
  font-weight: 600;
  color: hsl(var(--accent));
}
.link-accent {
  color: hsl(var(--accent));
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
}
.link-collections {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: hsl(var(--primary));
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color .2s;
}
.link-collections:hover { color: hsl(var(--accent)); }
.link-collections span {
  border-bottom: 2px solid hsl(var(--accent) / 0.35);
  padding-bottom: 0.15rem;
}
.link-collections-arrow {
  width: 2.25rem; height: 2.25rem; border-radius: 999px;
  background: hsl(var(--accent)); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px hsl(var(--accent) / 0.35);
  transition: transform .2s;
  border-bottom: 0 !important;
  padding: 0 !important;
}
.link-collections:hover .link-collections-arrow { transform: scale(1.06); color: #fff; }

.cat-card {
  position: relative; display: block;
  aspect-ratio: 3 / 4.2;
  border-radius: 1.15rem;
  overflow: hidden;
  background: hsl(var(--secondary));
}
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.cat-card:hover img { transform: scale(1.05); }
.cat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72), rgba(0,0,0,.12) 45%, transparent);
}
.cat-card-num {
  position: absolute; top: 0.85rem; left: 0.85rem; z-index: 2;
  width: 2rem; height: 2rem; border-radius: 999px;
  background: #fff; color: hsl(var(--primary));
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.04em;
  display: flex; align-items: center; justify-content: center;
}
.cat-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.05rem 1rem 1.15rem; z-index: 1; }
.cat-card-body h3 {
  color: #fff; font-weight: 800; font-size: 0.92rem; margin: 0;
  text-transform: uppercase; letter-spacing: 0.04em; line-height: 1.2;
}
.cat-card-bar {
  display: block; width: 2rem; height: 3px;
  background: hsl(var(--accent)); border-radius: 99px; margin-top: 0.5rem;
}
.cat-card:hover h3 { color: hsl(var(--accent)); }

.product-card {
  display: flex; flex-direction: column; height: 100%;
  overflow: hidden; border-radius: 0.85rem;
  border: 1px solid hsl(var(--border));
  background: #fff;
  box-shadow: 0 2px 10px -6px hsl(var(--primary) / 0.18);
  transition: border-color .2s, box-shadow .2s;
}
.product-card:hover { border-color: hsl(var(--accent) / 0.45); box-shadow: 0 10px 24px -12px hsl(var(--primary) / 0.22); }
.product-card-img {
  position: relative; aspect-ratio: 1; overflow: hidden; background: #F5F5F5; flex-shrink: 0;
}
.product-card-img a { display: block; height: 100%; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-fav {
  position: absolute; top: 0.65rem; right: 0.65rem; z-index: 2;
  width: 2rem; height: 2rem; border-radius: 999px; border: 0;
  background: rgba(255,255,255,.92); color: hsl(var(--primary));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.08); cursor: pointer;
}
.product-fav:hover, .product-fav.is-on { color: hsl(var(--accent)); }
.product-card-body {
  flex: 1; display: flex; flex-direction: column; gap: 0.35rem;
  padding: 0.85rem 0.85rem 0.95rem;
}
.product-card-sku { font-size: 10px; color: hsl(var(--muted-foreground)); letter-spacing: 0.04em; }
.product-card-name {
  display: block;
  font-size: 0.78rem; font-weight: 800; line-height: 1.3;
  color: hsl(var(--primary)); text-transform: uppercase; letter-spacing: 0.03em;
}
.product-card-name:hover { color: hsl(var(--accent)); }
.product-card-toggle {
  display: inline-flex; align-items: center; gap: 0.3rem; align-self: flex-start;
  border: 0; background: none; padding: 0; cursor: pointer;
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: hsl(var(--muted-foreground));
}
.product-card-toggle i { font-size: 10px; transition: transform .2s; }
.product-card-toggle.is-open i { transform: rotate(180deg); }
.product-card-panel {
  font-size: 12px; color: hsl(var(--muted-foreground)); line-height: 1.45;
  background: hsl(var(--secondary)); border-radius: 0.5rem; padding: 0.6rem 0.7rem;
}
.product-card-panel p { margin: 0 0 0.35rem; }
.product-card-panel p:last-child { margin: 0; }
.product-card-swatches { display: flex; align-items: center; gap: 0.3rem; flex-wrap: wrap; }
.product-card-badge {
  display: inline-flex; align-self: flex-start;
  background: hsl(var(--accent) / 0.12); color: hsl(var(--accent));
  font-size: 10px; font-weight: 700; border-radius: 999px;
  padding: 0.28rem 0.6rem;
}
.product-card-lead {
  margin: 0.15rem 0 0; font-size: 1.15rem; font-weight: 800; line-height: 1.1;
  color: hsl(var(--primary)); letter-spacing: -0.02em;
}
.product-card-sub { margin: 0; font-size: 11px; color: hsl(var(--muted-foreground)); }
.product-card-qty {
  display: flex; align-items: center; justify-content: space-between; gap: 0.5rem;
  width: 100%; margin-top: 0.15rem; padding: 0.5rem 0.7rem;
  border: 1px solid hsl(var(--border)); border-radius: 0.55rem;
  background: #fff; color: hsl(var(--primary)); cursor: pointer;
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  transition: background .2s, border-color .2s, color .2s;
}
.product-card-qty.is-open {
  background: hsl(var(--accent)); color: #fff; border-color: hsl(var(--accent));
  border-radius: 0.55rem 0.55rem 0 0;
}
.product-card-qty-panel {
  border: 1px solid hsl(var(--accent)); border-top: 0;
  border-radius: 0 0 0.55rem 0.55rem; overflow: hidden; margin-top: -0.35rem;
}
.product-card-qty-panel table { width: 100%; margin: 0; font-size: 11px; }
.product-card-qty-panel th,
.product-card-qty-panel td { padding: 0.4rem 0.65rem; }
.product-card-qty-panel th {
  text-transform: uppercase; letter-spacing: 0.08em; font-size: 9px;
  color: hsl(var(--muted-foreground)); font-weight: 700; background: hsl(var(--secondary));
}
.product-card-qty-panel td:last-child { text-align: right; font-weight: 700; color: hsl(var(--primary)); }
.product-card-qty-panel tr.is-highlight td {
  background: hsl(var(--accent)); color: #fff;
}
.btn-card-more {
  display: flex; align-items: center; justify-content: center;
  width: 100%; margin-top: auto; padding: 0.6rem 0.75rem;
  border: 1px solid hsl(var(--accent)); border-radius: 0.5rem;
  color: hsl(var(--accent)); font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  transition: background .2s, color .2s;
}
.product-card:hover .btn-card-more { background: hsl(var(--accent)); color: #fff; }
.swatch { width: 12px; height: 12px; border-radius: 999px; border: 1px solid rgba(0,0,0,.1); display: inline-block; }

.brands-marquee {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}
.brands-marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-wrap {
  overflow: hidden;
  width: 100%;
  min-width: 0;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: brands-marquee 40s linear infinite;
  will-change: transform;
}
.marquee-track.reverse { animation-direction: reverse; animation-duration: 48s; }
.marquee-track.slow { animation-duration: 52s; }
.marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.brand-card {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0 1.35rem; flex-shrink: 0;
}
.brand-card-logo {
  width: 3.35rem; height: 3.35rem; border-radius: 1rem;
  background: #fff; border: 1px solid hsl(var(--border));
  box-shadow: 0 2px 10px -4px hsl(var(--primary) / 0.16);
  display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0;
}
@media (min-width: 768px) { .brand-card-logo { width: 3.6rem; height: 3.6rem; } }
.brand-card-logo img { width: 100%; height: 100%; object-fit: contain; padding: 0.4rem; }
.brand-card-name {
  font-size: 0.9rem; font-weight: 500;
  color: hsl(var(--foreground) / 0.7); white-space: nowrap;
  transition: color .3s;
}
.brand-card:hover .brand-card-name { color: hsl(var(--foreground)); }
.brand-card:hover .brand-card-logo { transform: scale(1.05); transition: transform .4s; }
.client-logo { height: 5rem; display: flex; align-items: center; justify-content: center; padding: 0 2rem; flex-shrink: 0; }
.client-logo img { max-height: 3rem; max-width: 140px; object-fit: contain; filter: grayscale(1); opacity: .6; transition: .3s; }
.client-logo:hover img { filter: none; opacity: 1; }
@keyframes brands-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.product-carousel { position: relative; }
.product-carousel-track {
  display: flex; gap: 1rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: auto; scrollbar-width: none;
  padding: 0.25rem 0.15rem 0.75rem;
}
.product-carousel-track::-webkit-scrollbar { display: none; }
.product-carousel-item {
  flex: 0 0 78%;
  scroll-snap-align: start;
  min-width: 0;
}
@media (min-width: 576px) { .product-carousel-item { flex-basis: 46%; } }
@media (min-width: 768px) { .product-carousel-item { flex-basis: 32%; } }
@media (min-width: 992px) { .product-carousel-item { flex-basis: 23.5%; } }
.carousel-nav {
  position: absolute; top: 38%; transform: translateY(-50%); z-index: 2;
  width: 2.35rem; height: 2.35rem; border-radius: 999px;
  border: 1px solid hsl(var(--border)); background: #fff;
  color: hsl(var(--primary)); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
  transition: background .2s, color .2s, border-color .2s;
  cursor: pointer;
}
.carousel-nav:hover {
  background: hsl(var(--accent)); color: #fff; border-color: hsl(var(--accent));
}
.carousel-nav.prev { left: -0.4rem; }
.carousel-nav.next { right: -0.4rem; }
@media (min-width: 992px) {
  .carousel-nav.prev { left: -1.1rem; }
  .carousel-nav.next { right: -1.1rem; }
}

.collections-hero {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  overflow: hidden;
  background: hsl(var(--primary));
}
@media (min-width: 576px) { .collections-hero { aspect-ratio: 21 / 9; } }
@media (min-width: 992px) { .collections-hero { aspect-ratio: 21 / 8; } }
.collections-hero .hero-slide {
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  color: #fff;
}
.collections-hero .hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7), rgba(0,0,0,.18) 48%, transparent);
  pointer-events: none;
}
.collections-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 1.35rem 1.5rem 2.6rem;
  max-width: 36rem;
}
@media (min-width: 768px) {
  .collections-hero-copy { padding: 1.75rem 2rem 2.85rem; }
}
.collections-hero-kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: hsl(var(--accent));
}
.collections-hero-title {
  font-size: clamp(1.7rem, 3.6vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 16px rgba(0,0,0,.4);
}
.collections-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
}
.collection-tile {
  position: relative; display: block;
  aspect-ratio: 21 / 9;
  border-radius: 1rem;
  overflow: hidden;
}
.collection-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.collection-tile:hover img { transform: scale(1.05); }
.collection-tile .tile-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  padding: 1.5rem; opacity: 0; transition: opacity .3s;
  background: rgba(0,0,0,.4);
  color: #fff;
}
.collection-tile:hover .tile-overlay { opacity: 1; }

.ig-tile { position: relative; display: block; aspect-ratio: 1; border-radius: 0.75rem; overflow: hidden; background: hsl(var(--secondary)); }
.ig-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.ig-tile:hover img { transform: scale(1.05); }
.ig-tile .ig-hover {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.5rem; transition: background .2s;
}
.ig-tile:hover .ig-hover { background: rgba(0,0,0,.4); }

.ig-section {
  position: relative;
  background: var(--obelisco-green-block);
  color: #fff;
  overflow: hidden;
  padding: 2.5rem 0 2.75rem;
}
@media (min-width: 992px) {
  .ig-section { padding: 2.75rem 0 3rem; }
}
.ig-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
  margin-bottom: 1.35rem;
  position: relative;
  z-index: 2;
}
@media (min-width: 992px) {
  .ig-head {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 1.5rem;
    margin-bottom: 1.6rem;
  }
}
.ig-head-copy { max-width: 36rem; }
.ig-heading {
  font-size: clamp(1.65rem, 3vw, 2.65rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: #fff;
  margin: 0.3rem 0 0;
  max-width: none;
}
.ig-heading span { color: rgba(255,255,255,.48); font-weight: 500; }
.ig-lead {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(255,255,255,.62);
  max-width: 32rem;
  margin: 0.7rem 0 0;
}
.ig-head-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
}
@media (min-width: 992px) {
  .ig-head-actions { align-items: flex-end; padding-top: 0.85rem; }
}
.ig-arrows { display: flex; gap: 0.45rem; }
.ig-section .carousel-nav {
  position: static;
  transform: none;
  width: 2.25rem; height: 2.25rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  box-shadow: none;
}
.ig-section .carousel-nav:hover {
  background: hsl(var(--accent)); border-color: hsl(var(--accent)); color: #fff;
}
.ig-reels-wrap {
  position: relative;
  z-index: 1;
  container-type: inline-size;
}
.ig-watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(12rem, 28vw, 24rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.68;
  text-align: center;
  color: hsl(218 36% 29%);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}
.ig-section .ig-watermark {
  font-size: 42cqw;
  color: rgba(8, 48, 40, 0.42);
}
.ig-section .container-site { z-index: 1; }
.intro-navy .container-site { z-index: 2; }
.ig-follow {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.55rem;
  background: hsl(var(--accent)); color: #fff;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9rem 1.55rem;
  border-radius: 999px;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.ig-follow i { font-size: 1.1rem; }
.ig-follow:hover { background: hsl(22 88% 46%); color: #fff; transform: translateY(-1px); }
.ig-section .container-site {
  max-width: 72rem;
  padding-left: clamp(1.15rem, 2.8vw, 2.25rem);
  padding-right: clamp(1.15rem, 2.8vw, 2.25rem);
}
.ig-reels {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: auto;
  scrollbar-width: none;
  position: relative;
  z-index: 1;
  padding: 0;
  align-items: flex-start;
}
.ig-reels::-webkit-scrollbar { display: none; }
.ig-reel {
  position: relative;
  display: block;
  flex: 0 0 calc((100% - 1.65rem) / 4);
  width: calc((100% - 1.65rem) / 4);
  aspect-ratio: 3 / 4.2;
  height: auto;
  max-height: 26.5rem;
  min-height: 0;
  min-width: 0;
  border-radius: 1.35rem;
  overflow: hidden;
  background: hsl(218 40% 16%);
  scroll-snap-align: start;
}
.ig-reel::before { content: none; display: none; }
@media (max-width: 991px) {
  .ig-reel { flex-basis: min(52%, 14.5rem); width: min(52%, 14.5rem); max-height: none; }
}
@media (max-width: 575px) {
  .ig-reel { flex-basis: 68%; width: 68%; }
}
.ig-reel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform .5s;
}
.ig-reel:hover img { transform: scale(1.05); }
.ig-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(to top, rgba(0,0,0,.42), transparent 50%);
}
.ig-play-btn {
  width: 2.75rem; height: 2.75rem; border-radius: 999px;
  background: #efe6d6; color: hsl(var(--primary));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; padding-left: 2px;
}
.ig-reel-label {
  position: absolute; left: 0.7rem; bottom: 0.7rem;
  font-size: 0.65rem; font-weight: 700; color: #fff;
  background: rgba(0,0,0,.5);
  padding: 0.22rem 0.58rem;
  border-radius: 999px;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none !important; transform: none !important; }
  .product-carousel-track { scroll-behavior: auto; }
  .float-btn::before,
  .float-btn i { animation: none !important; }
}

.site-footer {
  position: relative;
  background: hsl(var(--accent));
  color: #fff;
  padding: 3.75rem 0 1.1rem;
  overflow: hidden;
}
.site-footer .container-site { position: relative; z-index: 2; }
.site-footer a { color: rgba(255,255,255,.7); font-size: 0.8125rem; }
.site-footer a:hover { color: #fff; }
.site-footer .footer-logo {
  display: block;
  height: 2.25rem;
  width: auto;
  position: relative;
  z-index: 4;
  margin: -3.35rem 0 0.85rem;
  filter: brightness(0) invert(1);
}
main:has(.intro-navy) + .site-footer .footer-logo { margin-top: -3.5rem; }
.footer-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 2rem;
}
.footer-tagline {
  margin: 0;
  max-width: 22rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255,255,255,.7);
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem 1.15rem;
  max-width: 36rem;
}
.footer-contact span { font-size: 0.8125rem; color: rgba(255,255,255,.7); }
.footer-contact i { margin-right: 0.3rem; }
.footer-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  margin-top: 0.9rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,.2);
  font-size: 0.75rem;
  color: rgba(255,255,255,.6);
}
.footer-legal { display: flex; gap: 1rem; }
.footer-copy a { color: rgba(255,255,255,.6); font-size: 0.75rem; }
.footer-copy a:hover { color: #fff; }
main:has(.intro-navy) + .site-footer { padding-top: 4.75rem; }

.section-glass {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  backdrop-filter: blur(7px) saturate(120%);
  -webkit-backdrop-filter: blur(7px) saturate(120%);
}
.section-glass-blue {
  background: rgba(8, 40, 34, 0.18);
}
.section-glass-orange {
  background: hsla(22, 90%, 50%, 0.1);
}

.seam-word {
  position: absolute;
  left: 50%;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  font-size: var(--obelisco-seam-size);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.68;
  text-align: center;
  white-space: nowrap;
}
.seam-word-navy {
  bottom: 0;
  transform: translateX(-50%);
  color: rgba(232, 248, 242, 0.42);
}
.seam-word-orange {
  display: none;
  top: 0;
  transform: translateX(-50%);
  color: rgba(18, 32, 58, 0.32);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 78%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 78%);
}
.seam-word-orange span {
  display: block;
  transform: scaleY(-1);
  filter: blur(1.2px);
}
main:has(.intro-navy) + .site-footer .seam-word-orange { display: block; }

@media (max-width: 767px) {
  .site-footer { padding-top: 3.25rem; }
  main:has(.intro-navy) + .site-footer { padding-top: 5.25rem; }
  .site-footer .footer-logo,
  main:has(.intro-navy) + .site-footer .footer-logo { margin-top: -2.35rem; }
  .section-glass {
    backdrop-filter: blur(4px) saturate(115%);
    -webkit-backdrop-filter: blur(4px) saturate(115%);
  }
  .section-glass-orange { background: hsla(22, 90%, 50%, 0.06); }
  .seam-word-orange {
    color: rgba(10, 18, 36, 0.62);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.95) 0%, rgba(0,0,0,.55) 55%, transparent 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.95) 0%, rgba(0,0,0,.55) 55%, transparent 100%);
  }
  .seam-word-orange span {
    filter: blur(0.25px);
    text-shadow: 0 2px 10px rgba(10, 18, 36, 0.35);
  }
}

.float-contact {
  position: fixed; bottom: 1.35rem; right: 1.35rem; z-index: 40;
  display: flex; flex-direction: column; gap: 0.75rem;
  isolation: isolate;
}
.float-btn {
  position: relative;
  z-index: 1;
  width: 3.5rem; height: 3.5rem; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 10px 24px rgba(0,0,0,.2);
  font-size: 1.4rem;
  transition: transform .15s;
}
.float-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
  animation: float-pulse 2.1s ease-out infinite;
}
.float-btn i { animation: float-bob 2.1s ease-in-out infinite; }
.float-btn:hover { transform: scale(1.06); color: #fff; }
.float-btn:hover::before,
.float-btn:hover i { animation-play-state: paused; }
.float-wa { background: #25D366; }
.float-wa::before { background: #25D366; }
.float-ig { background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #F77737 100%); }
.float-ig::before { background: #E1306C; animation-delay: 0.55s; }
.float-ig i { animation-delay: 0.55s; }
@keyframes float-pulse {
  0% { transform: scale(1); opacity: 0.55; }
  70% { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}
@keyframes float-bob {
  0%, 100% { transform: scale(1); }
  45% { transform: scale(1.12); }
}

.overlay-scrim {
  display: none; position: fixed; inset: 0; z-index: 55;
  background: rgba(0,0,0,.3); backdrop-filter: blur(2px);
}
.overlay-scrim.open { display: block; }
.search-overlay {
  display: none; position: fixed; left: 50%; transform: translateX(-50%);
  top: 5rem; z-index: 56; width: 100%; max-width: 36rem; padding: 0 1rem;
}
.search-overlay.open { display: block; }
.search-overlay-box { background: #fff; border-radius: 1rem; box-shadow: 0 25px 50px rgba(0,0,0,.2); overflow: hidden; border: 1px solid hsl(var(--border)); }

.quote-scrim {
  display: none; position: fixed; inset: 0; z-index: 55;
  background: rgba(0,0,0,.4); backdrop-filter: blur(4px);
}
.quote-scrim.open { display: block; }
.quote-panel {
  position: fixed; top: 0; right: 0; height: 100%; width: 100%; max-width: 28rem;
  background: #fff; z-index: 56; box-shadow: -10px 0 40px rgba(0,0,0,.15);
  display: none; flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s ease;
}
.quote-panel.open { display: flex; transform: translateX(0); }

.page-hero {
  position: relative;
  padding: 3.25rem 0 2.85rem;
  background: var(--obelisco-green-strong);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: "OBELISCO";
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  font-size: clamp(8.2rem, 28vw, 19.5rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: .68;
  color: rgba(8, 48, 40, .14);
  pointer-events: none;
  white-space: nowrap;
}
.page-hero .container-site { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--obelisco-orange-weak); }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0.45rem 0 0.75rem;
}
.page-hero p { margin: 0 auto; max-width: 34rem; color: rgba(255,255,255,.78); }
.page-hero-compact { padding: 2.35rem 0 2rem; }
.page-hero-compact h1 { margin-bottom: 0.35rem; }

.page-chip {
  display: inline-flex; align-items: center;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  font-size: 0.8rem; font-weight: 650;
  border: 1px solid rgba(23, 78, 66, .18);
  color: var(--obelisco-green-strong);
  background: #fff;
  transition: .2s;
}
.page-chip:hover { border-color: var(--obelisco-green-strong); color: var(--obelisco-green-strong); }
.page-chip.is-on {
  background: var(--obelisco-green-strong);
  border-color: var(--obelisco-green-strong);
  color: #fff;
}

.step-row { display: flex; gap: 1.15rem; margin-bottom: 1.35rem; }
.step-num {
  flex-shrink: 0;
  width: 3.1rem; height: 3.1rem;
  border-radius: 0.9rem;
  background: var(--obelisco-green-strong);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; letter-spacing: .04em;
}
.step-kicker {
  color: var(--obelisco-orange-header);
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.faq-card {
  background: #fff;
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 1.15rem 1.25rem;
  margin-bottom: 0.75rem;
}
.faq-card h3 { color: var(--obelisco-green-strong); }

.contact-card {
  display: flex; align-items: center; gap: 1.15rem;
  padding: 1.25rem 1.3rem; border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  background: #fff; height: 100%;
  transition: .2s;
}
.contact-card:hover { border-color: hsl(var(--accent) / 0.45); box-shadow: 0 10px 24px rgba(23, 78, 66, .08); transform: translateY(-2px); }
.contact-ico {
  width: 2.85rem; height: 2.85rem; border-radius: 0.8rem;
  background: var(--obelisco-green-strong); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; flex-shrink: 0;
}
.contact-card .label { font-size: 0.72rem; letter-spacing: .08em; text-transform: uppercase; color: hsl(var(--muted-foreground)); }
.contact-card .value { font-weight: 650; color: var(--obelisco-green-strong); }

.product-card-cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--obelisco-orange-header);
  margin-bottom: 0.25rem;
}
.catalog-head {
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center;
  gap: 1rem; padding: 0 0 1.25rem;
}
.pagination .page-link {
  color: var(--obelisco-green-strong);
  border-radius: 999px;
  border-color: rgba(23, 78, 66, .18);
  margin: 0 0.15rem;
}
.pagination .page-item.active .page-link {
  background: var(--obelisco-green-strong);
  border-color: var(--obelisco-green-strong);
  color: #fff;
}
.pagination .page-link:hover { background: rgba(23, 78, 66, .08); color: var(--obelisco-green-strong); }

.breadcrumb-site { font-size: 0.75rem; color: #9ca3af; display: flex; align-items: center; gap: 0.5rem; padding: 1rem 0; }
.breadcrumb-site a:hover { color: hsl(var(--accent)); }

.filter-section { border-bottom: 1px solid hsl(var(--border)); }
.filter-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 0; background: none; border: 0; font-weight: 600; font-size: 0.875rem;
}
.filter-body { display: none; padding-bottom: 1rem; }
.filter-section.open .filter-body { display: block; }
.check-opt { display: flex; align-items: center; gap: 0.6rem; font-size: 0.875rem; cursor: pointer; margin: 0.35rem 0; }
.check-box {
  width: 1rem; height: 1rem; border-radius: 0.2rem; border: 1px solid hsl(var(--border));
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.check-opt.active .check-box { background: var(--obelisco-green-strong); border-color: var(--obelisco-green-strong); color: #fff; }

.gallery-main { position: relative; aspect-ratio: 1; border-radius: 1rem; overflow: hidden; background: #F5F5F5; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 2.5rem; height: 2.5rem; border-radius: 999px; border: 0;
  background: rgba(255,255,255,.8); display: flex; align-items: center; justify-content: center;
}
.gallery-nav.left { left: 0.75rem; }
.gallery-nav.right { right: 0.75rem; }
.thumb { width: 5rem; height: 5rem; border-radius: 0.5rem; overflow: hidden; border: 2px solid transparent; padding: 0; background: none; }
.thumb.active { border-color: hsl(var(--accent)); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }

.qty-box { display: flex; align-items: center; border: 1px solid hsl(var(--border)); border-radius: 0.75rem; overflow: hidden; }
.qty-box button { width: 2.75rem; height: 2.75rem; border: 0; background: #fff; }
.qty-box input { width: 4rem; height: 2.75rem; border: 0; border-left: 1px solid hsl(var(--border)); border-right: 1px solid hsl(var(--border)); text-align: center; outline: none; }

.auth-wrap,
.auth-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background: #f4f6f8;
}
.auth-card,
.auth-card {
  background: #fff;
  border: 1px solid #e6ebf0;
  border-radius: 1rem;
  padding: 1.5rem 1.35rem 1.6rem;
  box-shadow: 0 1px 2px rgba(23, 78, 66, .04);
}
.auth-icon,
.auth-icon {
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 0.9rem;
  background: var(--obelisco-green-strong);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 1rem;
}
.auth-wrap h1,
.auth-wrap .h3 {
  color: hsl(var(--foreground));
  letter-spacing: -0.02em;
}
.auth-wrap .text-muted-fg,
.auth-wrap .text-muted-fg { color: #7b8794; }
.auth-card .form-label {
  font-size: 0.875rem;
  font-weight: 650;
  color: hsl(var(--foreground));
  margin-bottom: 0.4rem;
}
.auth-card .form-control,
.auth-card .form-select {
  background: #eef2f6;
  border: 1px solid transparent;
  border-radius: 0.7rem;
  padding: 0.75rem 0.95rem;
  height: 3rem;
}
.auth-card .form-control:focus,
.auth-card .form-select:focus {
  background: #fff;
  border-color: var(--obelisco-green-strong);
  box-shadow: 0 0 0 .2rem rgba(23, 78, 66, .14);
}
.auth-card .btn-accent,
.auth-card .btn-accent {
  width: 100%;
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-weight: 700;
  background: var(--obelisco-orange-header);
}
.auth-card .btn-accent:hover,
.auth-card .btn-accent:hover { background: var(--obelisco-orange-header); }
.auth-link { color: var(--obelisco-green-strong) !important; font-weight: 650; }
.auth-link:hover { color: var(--obelisco-green-dark) !important; }
.auth-forgot { color: #8b95a1 !important; font-weight: 500; }
.auth-forgot:hover { color: var(--obelisco-green-strong) !important; }
.form-control, .form-select {
  border-radius: 0.5rem;
  border-color: hsl(var(--border));
  padding: 0.7rem 0.9rem;
}
.form-control:focus, .form-select:focus {
  border-color: hsl(var(--accent));
  box-shadow: 0 0 0 .2rem hsl(var(--accent) / 0.15);
}
.input-icon { position: relative; }
.input-icon i { position: absolute; left: 0.85rem; top: 50%; transform: translateY(-50%); color: #8b95a1; pointer-events: none; }
.input-icon .form-control { padding-left: 2.5rem; height: 3rem; }

.admin-top {
  background: #fff; border-bottom: 1px solid hsl(var(--border));
  position: sticky; top: 0; z-index: 40; height: 3.5rem;
  display: flex; align-items: center; justify-content: space-between; padding: 0 1.25rem;
}
.admin-badge {
  font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: hsl(var(--accent)); background: hsl(var(--accent) / 0.1);
  padding: 0.15rem 0.5rem; border-radius: 0.25rem;
}
.admin-layout { display: flex; min-height: calc(100vh - 3.5rem); }
.admin-side {
  width: 14rem; flex-shrink: 0;
  background: #fff; border-right: 1px solid hsl(var(--border));
  padding: 0.75rem;
}
.admin-side a {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.65rem 0.75rem; border-radius: 0.5rem; font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}
.admin-side a:hover { background: hsl(var(--secondary)); }
.admin-side a.active { background: hsl(var(--accent) / 0.1); color: hsl(var(--accent)); font-weight: 500; }
.admin-main { flex: 1; padding: 1.5rem; background: hsl(var(--background)); }
.stat-card {
  background: #fff; border: 1px solid hsl(var(--border)); border-radius: 0.75rem; padding: 1.25rem;
  transition: border-color .2s;
}
.stat-card:hover { border-color: hsl(var(--accent) / 0.3); }
.admin-table { background: #fff; border: 1px solid hsl(var(--border)); border-radius: 0.75rem; overflow: hidden; }
.admin-table table { margin: 0; }
.admin-table th { font-size: 0.75rem; text-transform: uppercase; letter-spacing: .06em; color: hsl(var(--muted-foreground)); }
.thumb-sm { width: 40px; height: 40px; object-fit: cover; border-radius: 0.4rem; background: hsl(var(--secondary)); }

.intro-navy {
  position: relative;
  background: var(--obelisco-green-block);
  color: #fff;
  padding: 4.5rem 0 8.5rem;
  overflow: hidden;
}
.intro-navy .ig-heading {
  max-width: none;
  font-size: clamp(2.05rem, 4.2vw, 3.7rem);
  line-height: 1.08;
  margin: 0.45rem 0 0;
}
.intro-navy .ig-lead {
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 1rem 0 0;
}
.intro-navy .ig-follow {
  gap: 0.7rem;
  font-size: 0.8rem;
  padding: 1.2rem 2.15rem;
}
.intro-navy .ig-follow i { font-size: 1.3rem; }
.about-hero { position: relative; padding: 6rem 0; overflow: hidden; color: #fff; }
.about-hero img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-hero .veil { position: absolute; inset: 0; background: rgba(10,10,10,.7); }

.contact-card {
  display: flex; align-items: center; gap: 1.15rem;
  padding: 1.25rem 1.3rem; border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  background: #fff; height: 100%;
  transition: .2s;
}
.contact-card:hover { border-color: hsl(var(--accent) / 0.45); box-shadow: 0 10px 24px rgba(23, 78, 66, .08); transform: translateY(-2px); }

.social-login,
.auth-google { display: flex; flex-direction: column; align-items: stretch; gap: 0.6rem; margin-bottom: 0.25rem; width: 100%; }
.auth-google #google-signin-btn { width: 100%; min-height: 44px; display: flex; justify-content: center; }
.social-or { text-align: center; color: #8b95a1; font-size: 0.8rem; margin: 0.85rem 0 1rem; }
.account-card { background: #fff; border: 1px solid hsl(var(--border)); border-radius: 1rem; padding: 1.25rem; }
.toast-item { background: #fff; border: 1px solid hsl(var(--border)); border-radius: 0.75rem; padding: 0.75rem 1rem; box-shadow: 0 10px 30px rgba(0,0,0,.12); min-width: 240px; }

@media (max-width: 767px) {
  .admin-side { display: none; }
  .admin-mobile-nav {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0;
    background: #fff; border-top: 1px solid hsl(var(--border)); z-index: 40;
    justify-content: space-around; padding: 0.25rem;
  }
  .admin-main { padding-bottom: 4.5rem; }
}
@media (min-width: 768px) { .admin-mobile-nav { display: none; } }
