:root {
  --bg: #f7f3ec;
  --bg-2: #fffaf2;
  --bg-3: #e9eef4;
  --text: #081a33;
  --muted: #526276;
  --red: #c61f35;
  --red-2: #e6334b;
  --steel: #6f8fa6;
  --navy: #071c3a;
  --card: rgba(255,255,255,.78);
  --line: rgba(7,28,58,.12);
  --shadow: 0 24px 70px rgba(7,28,58,.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Manrope, system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(198,31,53,.10), transparent 24rem),
    radial-gradient(circle at 88% 14%, rgba(111,143,166,.18), transparent 28rem),
    linear-gradient(135deg, var(--bg), var(--bg-2) 48%, #eef3f7);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.cursor-glow {
  position: fixed;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(198,31,53,.08), rgba(111,143,166,.09), transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,250,242,.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  max-width: 1180px;
  margin: auto;
  padding: .8rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand { display: flex; align-items: center; gap: .95rem; }

.brand-mark {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(7,28,58,.18));
}

.brand-copy strong {
  display: block;
  font-size: 1.04rem;
  font-weight: 900;
  color: var(--navy);
}

.brand-copy small {
  display: block;
  color: var(--muted);
  font-size: .8rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  font-weight: 800;
  color: #435369;
}

.nav-links a:hover { color: var(--red); }

.nav-cta {
  background: linear-gradient(135deg, var(--red), var(--red-2));
  padding: .75rem 1rem;
  border-radius: 999px;
  color: #fff !important;
  box-shadow: 0 14px 30px rgba(198,31,53,.24);
}

.editor-link {
  border: 1px solid rgba(7,28,58,.18);
  background: rgba(255,255,255,.58);
  padding: .7rem .9rem;
  border-radius: 999px;
  color: var(--navy) !important;
}

.nav-toggle {
  display: none;
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .55rem .75rem;
}

.section {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: auto;
  padding: 5.8rem 1.25rem;
}

.hero {
  min-height: 86vh;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 3rem;
}

.page-hero { max-width: 980px; }

.eyebrow {
  margin: 0 0 1rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 900;
}

h1, h2, h3 { margin-top: 0; line-height: 1.04; }

h1 {
  font-family: Montserrat, sans-serif;
  font-size: clamp(3rem, 6.5vw, 6rem);
  letter-spacing: -.05em;
  margin-bottom: 1.25rem;
  color: var(--navy);
}

h2 {
  font-family: Montserrat, sans-serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  letter-spacing: -.04em;
  margin-bottom: 1rem;
  color: var(--navy);
}

h3 { font-size: 1.25rem; color: var(--navy); }

p { color: var(--muted); line-height: 1.75; }

.hero-copy { max-width: 690px; font-size: 1.08rem; }

.hero-actions, .card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.btn, button {
  border: none;
  border-radius: 999px;
  padding: .95rem 1.35rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: inherit;
  transition: transform .25s ease, box-shadow .25s ease;
}

.btn:hover, button:hover { transform: translateY(-3px); }

.btn.primary, button.primary {
  background: linear-gradient(135deg, var(--red), var(--red-2));
  color: #fff;
  box-shadow: 0 16px 40px rgba(198,31,53,.24);
}

.btn.ghost, button.ghost {
  background: rgba(255,255,255,.70);
  color: var(--navy);
  border: 1px solid var(--line);
}

button.danger {
  background: rgba(198,31,53,.10);
  color: var(--red);
}

.hero-stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats div {
  min-width: 140px;
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.68);
  box-shadow: 0 14px 40px rgba(7,28,58,.06);
}

.hero-stats strong {
  display: block;
  font-size: 1.4rem;
  color: var(--navy);
}

.hero-stats span { color: var(--muted); font-size: .87rem; }

.hero-card,
.product-card,
.feature-card,
.contact-card,
.gallery-card,
.editor-card,
.editor-panel,
.editor-sidebar,
.detail-image {
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
  padding: 1.3rem;
  box-shadow: var(--shadow);
}

.hero-card {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 38px;
  background:
    radial-gradient(circle at 25% 15%, rgba(198,31,53,.10), transparent 28rem),
    linear-gradient(145deg, rgba(255,255,255,.86), rgba(236,242,247,.72));
  backdrop-filter: blur(18px);
}

.hero-logo {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 128px;
  height: 128px;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(7,28,58,.20));
}

.pack-stage {
  position: relative;
  width: min(92%,480px);
  height: 360px;
  z-index: 2;
}

.pack-item {
  position: absolute;
  bottom: 38px;
  border-radius: 28px;
  box-shadow: 0 24px 40px rgba(7,28,58,.16);
  animation: floaty 4.5s ease-in-out infinite;
}

.bottle.tall.blue-outline {
  left: 30px;
  width: 110px;
  height: 250px;
  background: linear-gradient(180deg, rgba(255,255,255,.58), rgba(216,228,238,.34));
  border: 3px solid var(--steel);
}

.bottle.tall.blue-outline:before {
  content: "";
  position: absolute;
  width: 54px;
  height: 52px;
  top: -48px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 12px;
  background: linear-gradient(180deg,#d9e8f2,var(--steel));
}

.bottle.red-bottle {
  left: 168px;
  width: 126px;
  height: 280px;
  background: linear-gradient(180deg,#ef5e73,var(--red));
  animation-delay: .8s;
}

.bottle.red-bottle:before {
  content: "";
  position: absolute;
  width: 64px;
  height: 48px;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
  background: linear-gradient(180deg,#ceddeb,#7d99b1);
}

.jar.silver-jar {
  left: 320px;
  width: 122px;
  height: 170px;
  border-radius: 36px;
  background: linear-gradient(180deg,#ffffff,#9ab3c8);
  animation-delay: 1.4s;
}

.jar.silver-jar:before {
  content: "";
  position: absolute;
  width: 148px;
  height: 32px;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 18px;
  background: linear-gradient(180deg,#d6e5f1,#6b87a0);
}

.light-sweep {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,transparent 30%,rgba(255,255,255,.45) 45%,transparent 62%);
  transform: translateX(-140%);
  animation: sweep 4.5s ease-in-out infinite;
}

.product-grid, .feature-grid, .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.product-card {
  min-height: 360px;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.product-card:hover, .feature-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,.90);
  border-color: rgba(198,31,53,.28);
}

.product-card a { color: var(--red); font-weight: 900; }

.mini-wa {
  background: #25d366;
  color: white !important;
  padding: .55rem .8rem;
  border-radius: 999px;
}

.pill {
  display: inline-flex;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: rgba(198,31,53,.10);
  color: var(--red);
  font-size: .78rem;
  font-weight: 900;
  margin: .2rem 0 .8rem;
}

.product-art {
  height: 165px;
  margin-bottom: 1.2rem;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg,rgba(111,143,166,.16),rgba(198,31,53,.14));
}

.product-art:before, .product-art:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  box-shadow: inset 8px 0 14px rgba(255,255,255,.25),0 16px 30px rgba(7,28,58,.14);
}

.product-art.pet:before {
  width: 58px;
  height: 112px;
  border-radius: 26px 26px 18px 18px;
  background: rgba(255,255,255,.55);
  border: 2px solid var(--steel);
}

.product-art.pet:after {
  width: 34px;
  height: 30px;
  bottom: 126px;
  border-radius: 8px;
  background: var(--steel);
}

.product-art.blog-art:before {
  width: 120px;
  height: 88px;
  border-radius: 18px;
  background: linear-gradient(180deg,#fff,#bed2e0);
}

.product-art.blog-art:after {
  width: 80px;
  height: 12px;
  bottom: 58px;
  border-radius: 999px;
  background: var(--red);
}

.card-img {
  width: 100%;
  height: 165px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  margin-bottom: 1.2rem;
  background: rgba(7,28,58,.04);
}

.detail-image .card-img, .detail-image .product-art {
  height: 430px;
  margin: 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
  align-items: start;
}

.clean-list p {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.60);
  padding: 1rem;
  border-radius: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .85rem;
}

input, select, textarea, pre.spec-box {
  width: 100%;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.74);
  color: var(--navy);
  font-family: inherit;
  outline: none;
}

input::placeholder, textarea::placeholder { color: #728094; }
select option { color: #111; }
textarea { min-height: 140px; resize: vertical; }

pre.spec-box {
  white-space: pre-wrap;
  color: var(--muted);
  line-height: 1.7;
}

/* Editor */
.editor-body {
  background:
    radial-gradient(circle at top left, rgba(198,31,53,.08), transparent 28rem),
    linear-gradient(135deg, #f7f3ec, #fffaf2 55%, #eef3f7);
}

.editor-shell {
  max-width: 1280px;
  margin: auto;
  padding: 2rem 1.25rem 5rem;
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 1.2rem;
}

.editor-sidebar {
  position: sticky;
  top: 110px;
  align-self: start;
  display: grid;
  gap: .7rem;
}

.editor-sidebar img { width: 98px; filter: drop-shadow(0 12px 24px rgba(7,28,58,.18)); }

.editor-tab {
  justify-content: flex-start;
  background: rgba(255,255,255,.68);
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: .85rem 1rem;
}

.editor-tab.active {
  background: linear-gradient(135deg, var(--red), var(--red-2));
  color: #fff;
}

.editor-main { display: grid; gap: 1rem; }
.editor-panel { display: none; }
.editor-panel.active { display: block; }

.editor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
}

.editor-grid.full { grid-template-columns: 1fr; }

.editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin: 1rem 0;
}

.editor-list {
  display: grid;
  gap: .8rem;
  margin-top: 1rem;
}

.editor-list-row {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: .85rem;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.68);
  border-radius: 18px;
}

.row-img {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: rgba(7,28,58,.05);
  display: grid;
  place-items: center;
  overflow: hidden;
  font-weight: 900;
  color: var(--navy);
}

.row-img img { width: 100%; height: 100%; object-fit: cover; }
.editor-list-row small { display: block; color: var(--muted); }
.row-actions { display: flex; gap: .6rem; }

.preview-box img {
  max-width: 220px;
  height: 150px;
  object-fit: cover;
  border-radius: 18px;
  margin-top: .8rem;
}

.color-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .8rem;
}

.color-row input { height: 52px; padding: .25rem; }

.toast {
  position: fixed;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy);
  color: #fff;
  padding: .9rem 1.1rem;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: .25s ease;
  z-index: 100;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.site-footer {
  max-width: 1180px;
  margin: auto;
  padding: 2.4rem 1.25rem 4rem;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(320px, 1.6fr);
  gap: 2rem;
  align-items: start;
}

.footer-brand-block {
  display: grid;
  gap: 0.8rem;
}

.footer-brand-block > strong {
  font-size: 1.35rem;
  color: var(--ink);
}

.footer-contact-list {
  display: grid;
  gap: 0.35rem;
  font-size: 0.95rem;
}

.footer-contact-list p,
.footer-brand-block p {
  margin: 0;
  color: var(--muted);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(170px, 1fr));
  gap: 1.5rem;
}

.footer-columns h3 {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 0.55rem 1rem;
}

.footer-category-links {
  grid-template-columns: repeat(2, minmax(135px, 1fr));
}

.site-footer a {
  color: var(--red);
  font-weight: 900;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.floating-whatsapp {
  position: fixed;
  right: 1.3rem;
  bottom: 1.3rem;
  z-index: 25;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(37,211,102,.35);
  animation: pulseButton 2s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@keyframes sweep { 0%{transform:translateX(-140%)} 45%,100%{transform:translateX(140%)} }
@keyframes pulseButton { 0%,100%{transform:scale(1)} 50%{transform:scale(1.06)} }


.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.category-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
  align-items: start;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.category-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,.9);
  border-color: rgba(198,31,53,.28);
}

.category-card h3 {
  margin-bottom: .4rem;
}

.category-card span {
  color: var(--red);
  font-weight: 900;
}

.category-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.45), transparent 40%),
    linear-gradient(135deg, var(--navy), var(--red));
  color: white;
  font-size: 1.65rem;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(7,28,58,.18);
}

.save-modal {
  position: fixed;
  inset: 0;
  background: rgba(7,28,58,.35);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 200;
}

.save-modal.show {
  display: flex;
}

.save-modal-card {
  width: min(420px, 100%);
  border-radius: 30px;
  border: 1px solid rgba(7,28,58,.12);
  background: rgba(255,255,255,.95);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 28px 80px rgba(7,28,58,.22);
}

.save-check {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, #20bf6b, #26de81);
  color: white;
  font-size: 2.4rem;
  font-weight: 900;
}

.save-modal-card h2 {
  font-size: 1.6rem;
  letter-spacing: -.03em;
}

.save-modal-card p {
  margin-bottom: 1.3rem;
}

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    left: 1rem;
    right: 1rem;
    top: 92px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(255,250,242,.96);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .hero, .two-col, .editor-shell, .site-footer { grid-template-columns: 1fr; }
  .product-grid, .feature-grid, .blog-grid, .category-grid { grid-template-columns: repeat(2,1fr); }
  .editor-sidebar { position: relative; top: auto; }
}

@media (max-width: 650px) {
  .section { padding: 4rem 1rem; }
  .product-grid, .feature-grid, .blog-grid, .category-grid, .form-grid, .editor-grid, .color-row { grid-template-columns: 1fr; }
  .footer-columns { grid-template-columns: 1fr; }
  .footer-links, .footer-category-links { grid-template-columns: 1fr; }
  .hero-card { min-height: 460px; }
  .hero-logo { width: 96px; height: 96px; }
  .pack-stage { transform: scale(.85); }
  .brand-mark { width: 60px; height: 60px; }
  .editor-list-row { grid-template-columns: 1fr; }
  .row-actions { flex-wrap: wrap; }
}


/* === Refined homepage and products catalogue structure === */

.section-tight {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.refined-hero {
  min-height: 82vh;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem 1.2rem;
  margin-top: 1.7rem;
  max-width: 660px;
}

.trust-strip span {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 750;
  font-size: .95rem;
  line-height: 1.35;
}

.trust-strip span::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(206, 25, 54, .08);
}

.hero-catalogue-card {
  align-items: end;
  padding: 2rem;
}

.hero-image-card {
  padding: 1rem;
  display: grid;
  align-items: stretch;
}

.hero-showcase-image {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 22px 50px rgba(7,28,58,.14);
}

.hero-image-badges {
  position: absolute;
  left: 1.3rem;
  right: 1.3rem;
  bottom: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  z-index: 2;
}

.hero-image-badges span {
  padding: .7rem .95rem;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(7,28,58,.08);
  box-shadow: 0 10px 30px rgba(7,28,58,.12);
  color: var(--navy);
  font-size: .85rem;
  font-weight: 850;
}

.hero-product-stack {
  width: min(100%, 430px);
  display: grid;
  gap: .9rem;
  position: relative;
  z-index: 2;
}

.hero-product-card {
  border: 1px solid rgba(7,28,58,.10);
  background: rgba(255,255,255,.78);
  border-radius: 24px;
  padding: 1rem;
  box-shadow: 0 18px 42px rgba(7,28,58,.10);
  transform: translateX(14px);
  animation: softFloat 4s ease-in-out infinite;
}

.hero-product-card:nth-child(2) {
  transform: translateX(-10px);
  animation-delay: .5s;
}

.hero-product-card:nth-child(3) {
  transform: translateX(28px);
  animation-delay: 1s;
}

.hero-product-card.active {
  border-color: rgba(198,31,53,.24);
}

.hero-product-card span {
  display: inline-flex;
  padding: .3rem .55rem;
  border-radius: 999px;
  background: rgba(198,31,53,.10);
  color: var(--red);
  font-size: .75rem;
  font-weight: 900;
  margin-bottom: .5rem;
}

.hero-product-card strong {
  display: block;
  color: var(--navy);
  font-size: 1.2rem;
}

.hero-product-card small {
  color: var(--muted);
  font-weight: 700;
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .9rem;
}

.home-category-pill {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: .9rem;
  min-height: 132px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
  overflow: hidden;
  align-items: center;
}

.category-pill-media {
  width: 110px;
  height: 88px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(7,28,58,.08);
  box-shadow: 0 10px 24px rgba(7,28,58,.08);
  background: rgba(255,255,255,.78);
}

.category-pill-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.category-pill-copy {
  display: grid;
  gap: .35rem;
}

.home-category-pill:hover {
  transform: translateY(-6px);
  border-color: rgba(198,31,53,.28);
  background: rgba(255,255,255,.92);
}

.home-category-pill strong {
  color: var(--navy);
  font-size: 1.1rem;
}

.home-category-pill span {
  color: var(--muted);
  font-size: .88rem;
  font-weight: 700;
}

.split-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  border-radius: 34px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 15% 20%, rgba(198,31,53,.10), transparent 18rem),
    rgba(255,255,255,.72);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.split-panel h2 {
  margin-bottom: .5rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.process-card {
  border-radius: 26px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.process-card span {
  display: inline-flex;
  color: var(--red);
  font-weight: 900;
  margin-bottom: .8rem;
}

.products-hero {
  padding-bottom: 2.8rem;
}

.products-hero h1 {
  max-width: 820px;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
}

.products-hero p {
  max-width: 980px;
}


.products-layout {
  padding-top: 1rem;
}

.catalogue-toolbar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.3rem;
}

.catalogue-tabs {
  display: flex;
  gap: .7rem;
  overflow-x: auto;
  padding: .35rem 0 1rem;
  margin-bottom: .4rem;
  scrollbar-width: thin;
}

.catalogue-tab {
  min-width: 142px;
  justify-content: space-between;
  gap: .75rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
  color: var(--navy);
  box-shadow: 0 10px 30px rgba(7,28,58,.06);
}

.catalogue-tab strong {
  white-space: nowrap;
}

.catalogue-tab span {
  min-width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(7,28,58,.07);
  color: var(--muted);
  font-size: .8rem;
}

.catalogue-tab.active {
  background: linear-gradient(135deg, var(--navy), #12345f);
  color: #fff;
}

.catalogue-tab.active span {
  background: rgba(255,255,255,.16);
  color: #fff;
}

.subcategory-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin: .2rem 0 1.4rem;
}

.subcategory-tab {
  padding: .72rem .9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.66);
  color: var(--muted);
  font-weight: 900;
}

.subcategory-tab.active {
  background: rgba(198,31,53,.10);
  color: var(--red);
  border-color: rgba(198,31,53,.24);
}

.catalogue-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  padding: 1rem 1.2rem;
  border-radius: 22px;
  background: rgba(255,255,255,.68);
  border: 1px solid var(--line);
}

.catalogue-status strong {
  display: block;
  color: var(--navy);
}

.catalogue-status span {
  color: var(--muted);
}

.catalogue-status a {
  color: var(--red);
  font-weight: 900;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .7rem;
  margin-bottom: .55rem;
}

.price-pill {
  margin: .2rem 0 .8rem;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
}

.empty-state {
  grid-column: 1 / -1;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
  padding: 2rem;
  box-shadow: var(--shadow);
}

@keyframes softFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

@media (max-width: 960px) {
  .category-strip,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalogue-toolbar {
    grid-template-columns: 1fr;
  }

  .split-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 650px) {
  .category-strip,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .catalogue-status {
    align-items: flex-start;
    flex-direction: column;
  }

  .catalogue-tab {
    min-width: 126px;
  }
}

/* === Product page polish: no awkward subsection scrolling, safer bubbles, calmer motion === */
.catalogue-tabs,
.subcategory-tabs {
  width: 100%;
  min-width: 0;
}

.catalogue-tabs {
  flex-wrap: wrap;
  overflow-x: visible;
  scrollbar-width: none;
  padding: .35rem 0 .65rem;
}

.catalogue-tabs::-webkit-scrollbar {
  display: none;
}

.catalogue-tab,
.subcategory-tab,
.pill,
.price-pill,
.btn,
.mini-wa,
.nav-cta,
.editor-link,
.trust-strip span,
.home-category-pill,
.catalogue-status,
.product-card,
.category-card {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
}

.catalogue-tab {
  flex: 1 1 150px;
  min-height: 58px;
  padding: .82rem .95rem;
  line-height: 1.2;
}

.catalogue-tab strong {
  white-space: normal;
  text-align: left;
}

.catalogue-tab span {
  flex: 0 0 auto;
}

.subcategory-tabs {
  align-items: flex-start;
  max-height: none;
  overflow: visible;
}

.subcategory-tab {
  white-space: normal;
  line-height: 1.22;
  text-align: center;
  max-width: 100%;
}

.subcategory-helper {
  width: 100%;
  border: 1px dashed rgba(7,28,58,.18);
  background: rgba(255,255,255,.58);
  color: var(--muted);
  border-radius: 20px;
  padding: .9rem 1rem;
  font-weight: 800;
  line-height: 1.55;
}

.product-meta {
  flex-wrap: wrap;
  align-items: flex-start;
}

.pill,
.price-pill {
  line-height: 1.25;
  white-space: normal;
}

.product-card h3,
.product-card p,
.category-card h3,
.category-card p,
.home-category-pill strong,
.home-category-pill span,
.catalogue-status strong,
.catalogue-status span {
  overflow-wrap: anywhere;
}

@media (max-width: 650px) {
  .catalogue-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .6rem;
  }

  .catalogue-tab {
    width: 100%;
    flex: unset;
    min-width: 0;
  }

  .subcategory-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .55rem;
  }

  .subcategory-helper {
    grid-column: 1 / -1;
  }

  .subcategory-tab {
    width: 100%;
    padding: .7rem .75rem;
  }

  .hero-product-card,
  .hero-product-card:nth-child(2),
  .hero-product-card:nth-child(3) {
    transform: none;
  }
}

@media (max-width: 430px) {
  .catalogue-tabs,
  .subcategory-tabs {
    grid-template-columns: 1fr;
  }

  .catalogue-toolbar .btn,
  .card-actions a,
  .hero-actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}


/* === Our Team page === */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.team-card {
  border-radius: 30px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,.92);
  border-color: rgba(198,31,53,.28);
}

.team-photo,
.team-photo-placeholder {
  width: 100%;
  height: 310px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.48), transparent 32%),
    linear-gradient(135deg, rgba(111,143,166,.26), rgba(198,31,53,.16));
}

.team-photo {
  object-fit: cover;
}

.team-photo-placeholder span {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.72);
  color: var(--navy);
  font-size: 2.4rem;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(7,28,58,.12);
}

.team-card-body {
  padding: 1.25rem;
}

.team-card-body h3 {
  margin-bottom: .55rem;
}

.team-card-body p:last-child {
  margin-bottom: 0;
}

.team-preview img {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  object-fit: cover;
}

@media (max-width: 960px) {
  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 650px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-photo, .team-photo-placeholder { height: 270px; }
}

/* === Multiple product images and product-detail gallery === */
.field-help {
  display: block;
  margin-top: .45rem;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.45;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
  gap: .75rem;
  max-width: 520px;
  margin-top: .8rem;
}

.preview-box .preview-grid img {
  width: 100%;
  max-width: none;
  height: 96px;
  margin: 0;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(7,28,58,.04);
}

.preview-box small {
  display: block;
  margin-top: .55rem;
  color: var(--muted);
  font-weight: 800;
}

.product-gallery {
  display: grid;
  gap: .9rem;
  width: 100%;
}

.gallery-frame {
  position: relative;
  width: 100%;
  height: 430px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(7,28,58,.05);
}

.gallery-main {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  color: var(--navy);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(7,28,58,.16);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
}

.gallery-nav:hover {
  transform: translateY(-50%);
}

.gallery-prev { left: .9rem; }
.gallery-next { right: .9rem; }

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(74px, 1fr));
  gap: .65rem;
  align-items: center;
}

.gallery-thumb {
  width: 100%;
  height: 72px;
  padding: 0;
  border-radius: 16px;
  border: 2px solid transparent;
  background: rgba(255,255,255,.72);
  overflow: hidden;
  cursor: pointer;
  box-shadow: none;
}

.gallery-thumb:hover {
  transform: none;
}

.gallery-thumb.active {
  border-color: var(--red);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.detail-image {
  overflow: hidden;
}

.detail-image .product-gallery .card-img,
.detail-image .product-gallery .product-art {
  height: 430px;
}

.detail-image + .contact-card .btn,
.contact-card > .btn {
  width: 100%;
  margin-top: .7rem;
}

.page-hero .hero-actions,
.card-actions,
.editor-actions,
.row-actions {
  align-items: center;
}

.card-actions a,
.mini-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
}

@media (max-width: 760px) {
  .gallery-frame {
    height: 340px;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .trust-strip {
    grid-template-columns: 1fr;
  }
}

/* Contact product suggestion field */
.product-combo-field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-combo-field input {
  width: 100%;
}

.inline-suggestions {
  display: none;
  position: absolute;
  top: calc(100% - 18px);
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(12, 33, 64, 0.12);
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(12, 33, 64, 0.14);
  overflow: hidden;
}

.inline-suggestions.show {
  display: block;
}

.suggestion-item {
  width: 100%;
  display: block;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  text-align: left;
  padding: 12px 15px;
  cursor: pointer;
}

.suggestion-item:hover,
.suggestion-item:focus {
  background: rgba(211, 23, 53, 0.08);
  outline: none;
}

.field-help {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}


@media (max-width: 900px) {
  .hero-showcase-image { min-height: 360px; }
  .category-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 650px) {
  .hero-showcase-image { min-height: 300px; }
  .hero-image-badges { position: static; margin-top: .9rem; left: auto; right: auto; bottom: auto; }
  .home-category-pill { grid-template-columns: 1fr; }
  .category-pill-media { width: 100%; height: 150px; }
}


/* === Hero wide-image refinement === */
.refined-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.refined-hero .hero-content {
  max-width: 980px;
}

.hero-wide-visual {
  grid-column: 1 / -1;
}

.hero-wide-visual .hero-image-card {
  min-height: auto;
  padding: 1rem;
}

.hero-wide-visual .hero-showcase-image {
  width: 100%;
  min-height: 540px;
  max-height: 720px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-wide-visual .hero-image-badges {
  left: 1.6rem;
  right: 1.6rem;
  bottom: 1.6rem;
}

@media (max-width: 1100px) {
  .hero-wide-visual .hero-showcase-image {
    min-height: 420px;
  }
}

@media (max-width: 700px) {
  .hero-wide-visual .hero-showcase-image {
    min-height: 280px;
  }
}

/* === Premium dark visual system update === */
:root {
  --bg: #101b2b;
  --bg-2: #17263a;
  --bg-3: #223650;
  --text: #f5efe6;
  --muted: #b7c2cf;
  --red: #a72636;
  --red-2: #cf3548;
  --steel: #5d8094;
  --navy: #f7efe4;
  --ink: #f7efe4;
  --card: rgba(18, 31, 48, .74);
  --line: rgba(245, 239, 230, .12);
  --shadow: 0 26px 80px rgba(0, 0, 0, .36);
  --gold: #d8b56d;
  --glass: rgba(255, 255, 255, .06);
  --glass-strong: rgba(255, 255, 255, .10);
  --premium-ring: 0 0 0 1px rgba(216, 181, 109, .18), 0 20px 60px rgba(0, 0, 0, .32);
}

body {
  color: var(--text);
  background:
    radial-gradient(circle at 8% 6%, rgba(167, 38, 54, .28), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(93, 128, 148, .28), transparent 30rem),
    radial-gradient(circle at 60% 110%, rgba(216, 181, 109, .13), transparent 32rem),
    linear-gradient(135deg, var(--bg), #0b1421 50%, var(--bg-2));
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .52;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.cursor-glow {
  width: 32rem;
  height: 32rem;
  background: radial-gradient(circle, rgba(216,181,109,.12), rgba(167,38,54,.10) 35%, transparent 70%);
  mix-blend-mode: screen;
}

.site-header {
  background: rgba(10, 18, 30, .78);
  border-bottom-color: rgba(245, 239, 230, .10);
  box-shadow: 0 14px 48px rgba(0, 0, 0, .20);
}

.brand-mark {
  border-radius: 22px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(245, 239, 230, .10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 14px 40px rgba(0,0,0,.26);
}

.brand-copy strong,
h1,
h2,
h3,
.home-category-pill strong,
.catalogue-status strong,
.hero-stats strong,
.editor-list-row strong,
.hero-product-card strong,
.footer-brand-block > strong,
.footer-columns h3 {
  color: var(--ink);
}

.brand-copy small,
p,
.hero-copy,
.hero-stats span,
.home-category-pill span,
.catalogue-status span,
.price-pill,
.field-help,
.clean-list p,
pre.spec-box,
.footer-contact-list p,
.footer-brand-block p {
  color: var(--muted);
}

.eyebrow {
  color: var(--gold);
  text-shadow: 0 0 24px rgba(216,181,109,.20);
}

.nav-links { color: rgba(245,239,230,.76); }
.nav-links a {
  position: relative;
  transition: color .2s ease, transform .2s ease;
}
.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.45rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--red-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta,
.btn.primary,
button.primary,
.editor-tab.active {
  background: linear-gradient(135deg, #8f1f30, var(--red-2));
  color: #fff !important;
  box-shadow: 0 16px 42px rgba(167,38,54,.36), inset 0 1px 0 rgba(255,255,255,.16);
}

.nav-cta:hover,
.btn.primary:hover,
button.primary:hover {
  box-shadow: 0 20px 54px rgba(207,53,72,.42), 0 0 0 1px rgba(216,181,109,.20), inset 0 1px 0 rgba(255,255,255,.16);
}

.editor-link,
.btn.ghost,
button.ghost,
.nav-toggle {
  background: rgba(255,255,255,.055);
  color: var(--ink) !important;
  border: 1px solid rgba(245,239,230,.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.hero-card,
.product-card,
.feature-card,
.contact-card,
.gallery-card,
.editor-card,
.editor-panel,
.editor-sidebar,
.detail-image,
.category-card,
.team-card,
.process-card,
.split-panel,
.empty-state,
.hero-product-card,
.home-category-pill,
.catalogue-status,
.clean-list p,
.editor-list-row,
.subcategory-helper {
  background:
    linear-gradient(145deg, rgba(255,255,255,.085), rgba(255,255,255,.035)),
    rgba(11, 20, 33, .74);
  border-color: rgba(245,239,230,.12);
  box-shadow: var(--premium-ring);
  backdrop-filter: blur(16px);
}

.hero-card,
.split-panel {
  background:
    radial-gradient(circle at 20% 15%, rgba(216,181,109,.13), transparent 19rem),
    radial-gradient(circle at 80% 15%, rgba(167,38,54,.16), transparent 22rem),
    linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.035)),
    rgba(11,20,33,.78);
}

.product-card,
.category-card,
.team-card,
.home-category-pill,
.process-card {
  position: relative;
  overflow: hidden;
}

.product-card::before,
.category-card::before,
.team-card::before,
.home-category-pill::before,
.process-card::before,
.editor-panel::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(216,181,109,.22), transparent 13rem);
  transition: opacity .25s ease;
}

.product-card:hover::before,
.category-card:hover::before,
.team-card:hover::before,
.home-category-pill:hover::before,
.process-card:hover::before,
.editor-panel:hover::before,
.contact-card:hover::before { opacity: 1; }

.product-card:hover,
.feature-card:hover,
.category-card:hover,
.team-card:hover,
.home-category-pill:hover,
.process-card:hover {
  transform: translateY(-8px);
  background:
    linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.045)),
    rgba(13, 24, 40, .86);
  border-color: rgba(216,181,109,.30);
}

.product-card h3,
.product-card p,
.product-card .card-actions,
.category-card h3,
.category-card p,
.category-card span,
.team-card-body,
.process-card h3,
.process-card p,
.process-card span,
.home-category-pill > *,
.contact-card > *,
.editor-panel > * { position: relative; z-index: 1; }

.pill {
  background: rgba(167,38,54,.18);
  color: #ffdce1;
  border: 1px solid rgba(207,53,72,.28);
}

.price-pill {
  background: rgba(216,181,109,.12);
  color: #f1dca5;
  border: 1px solid rgba(216,181,109,.20);
  display: inline-flex;
  padding: .35rem .7rem;
  border-radius: 999px;
}

.mini-wa,
.floating-whatsapp {
  background: linear-gradient(135deg, #128c4a, #25d366);
  box-shadow: 0 18px 42px rgba(37,211,102,.28), inset 0 1px 0 rgba(255,255,255,.2);
}

.product-art,
.team-photo,
.team-photo-placeholder,
.category-pill-media,
.gallery-frame,
.card-img,
.preview-box .preview-grid img,
.row-img {
  background:
    radial-gradient(circle at 22% 15%, rgba(216,181,109,.16), transparent 36%),
    linear-gradient(135deg, rgba(93,128,148,.20), rgba(167,38,54,.16));
  border-color: rgba(245,239,230,.10);
}

.card-img,
.hero-showcase-image,
.gallery-main,
.team-photo,
.category-pill-media img {
  filter: saturate(.94) contrast(1.05) brightness(.88);
}

.hero-image-card::after,
.detail-image::after,
.category-pill-media::after,
.product-art::selection {
  content: "";
}

.hero-showcase-image {
  box-shadow: 0 28px 70px rgba(0,0,0,.36);
}

.hero-image-badges span,
.trust-strip span,
.catalogue-tab,
.subcategory-tab,
.gallery-nav,
.gallery-thumb,
.editor-tab,
input,
select,
textarea,
pre.spec-box,
.inline-suggestions,
.suggestion-item {
  background: rgba(255,255,255,.065);
  color: var(--ink);
  border-color: rgba(245,239,230,.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.trust-strip span {
  padding: .75rem .85rem;
  border: 1px solid rgba(245,239,230,.11);
  border-radius: 999px;
  color: rgba(245,239,230,.78);
}

.trust-strip span::before {
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(216,181,109,.10), 0 0 22px rgba(216,181,109,.38);
}

.catalogue-tab.active,
.subcategory-tab.active {
  background: linear-gradient(135deg, rgba(216,181,109,.24), rgba(167,38,54,.30));
  color: #fff;
  border-color: rgba(216,181,109,.34);
}

.catalogue-tab span,
.catalogue-tab.active span {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.88);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(216,181,109,.48);
  box-shadow: 0 0 0 4px rgba(216,181,109,.11), inset 0 1px 0 rgba(255,255,255,.06);
}

input::placeholder,
textarea::placeholder { color: rgba(183,194,207,.72); }
select option { color: #101b2b; }

.site-footer {
  position: relative;
  margin-top: 2rem;
  border-top-color: rgba(216,181,109,.18);
}
.site-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 1.25rem;
  right: 1.25rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216,181,109,.55), rgba(167,38,54,.35), transparent);
}
.site-footer a,
.product-card a,
.catalogue-status a,
.category-card span { color: #f0c77d; }
.site-footer a:hover { color: #fff; text-decoration: none; }

.save-modal {
  background: rgba(5, 10, 18, .70);
  backdrop-filter: blur(14px) saturate(1.1);
}
.save-modal.show .save-modal-card {
  animation: premiumPop .34s cubic-bezier(.2,.9,.2,1) both;
}
.save-modal-card {
  background:
    radial-gradient(circle at 20% 0%, rgba(216,181,109,.18), transparent 16rem),
    linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.045)),
    rgba(13, 24, 40, .94);
  border-color: rgba(216,181,109,.26);
  box-shadow: 0 36px 110px rgba(0,0,0,.52), inset 0 1px 0 rgba(255,255,255,.09);
}
.save-check {
  background: linear-gradient(135deg, #d8b56d, #a72636);
  box-shadow: 0 18px 42px rgba(167,38,54,.32), 0 0 0 8px rgba(216,181,109,.08);
}
.save-modal-card h2 { color: var(--ink); }
.save-modal-card p { color: var(--muted); }
body.modal-open { overflow: hidden; }

.toast {
  background:
    linear-gradient(135deg, rgba(216,181,109,.22), rgba(167,38,54,.28)),
    rgba(10,18,30,.96);
  border: 1px solid rgba(216,181,109,.26);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0,0,0,.42);
}

.premium-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 999;
  background: linear-gradient(90deg, var(--gold), var(--red-2));
  box-shadow: 0 0 18px rgba(216,181,109,.44);
}

.reveal { transform: translateY(28px) scale(.985); }
.reveal.visible { transform: translateY(0) scale(1); }

@keyframes premiumPop {
  0% { opacity: 0; transform: translateY(18px) scale(.94); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes premiumPulse {
  0%, 100% { box-shadow: 0 18px 42px rgba(37,211,102,.28), inset 0 1px 0 rgba(255,255,255,.2); }
  50% { box-shadow: 0 22px 58px rgba(37,211,102,.42), 0 0 0 8px rgba(37,211,102,.10), inset 0 1px 0 rgba(255,255,255,.2); }
}
.floating-whatsapp { animation: premiumPulse 2.4s ease-in-out infinite; }

@media (max-width: 960px) {
  .nav-links {
    background: rgba(10,18,30,.97);
    border-color: rgba(245,239,230,.14);
  }
}


/* Featured products carousel */
.featured-products-mount {
  display: block;
}

.featured-carousel-shell {
  position: relative;
  display: block;
  padding-top: .15rem;
}

.featured-carousel-controls {
  position: absolute;
  top: -4.85rem;
  right: 0;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
}

.featured-carousel-btn {
  position: relative;
  width: 56px;
  height: 56px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(227, 189, 107, .24);
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 255, 255, .14), transparent 38%),
    linear-gradient(145deg, rgba(16, 29, 49, .96), rgba(11, 21, 39, .92));
  color: var(--gold);
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255,255,255,.05);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.featured-carousel-btn svg {
  width: 18px;
  height: 18px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .18s ease;
}

.featured-carousel-btn.is-prev svg {
  transform: rotate(180deg);
}

.featured-carousel-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(227, 189, 107, .58);
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 255, 255, .2), transparent 40%),
    linear-gradient(145deg, rgba(28, 44, 70, .98), rgba(12, 23, 41, .96));
  box-shadow: 0 18px 36px rgba(0, 0, 0, .30), 0 0 0 4px rgba(227, 189, 107, .08);
}

.featured-carousel-btn.is-prev:hover svg {
  transform: rotate(180deg) translateX(2px);
}

.featured-carousel-btn.is-next:hover svg {
  transform: translateX(2px);
}

.featured-carousel-viewport {
  overflow: hidden;
}

.featured-carousel-track {
  display: flex;
  align-items: stretch;
  gap: 18px;
  will-change: transform;
  transition: transform .55s cubic-bezier(.22, 1, .36, 1);
}

.featured-slide {
  flex: 0 0 auto;
}

.featured-slide .product-card {
  margin: 0;
  height: 100%;
}

.featured-carousel-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}

.featured-carousel-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .38rem;
  padding: .32rem .5rem;
  border: 1px solid rgba(245, 239, 230, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .035);
}

.featured-dot {
  width: 1.45rem;
  height: 4px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(245, 239, 230, .18);
  cursor: pointer;
  transition: width .22s ease, background .22s ease, box-shadow .22s ease;
}

.featured-dot.active {
  width: 2.35rem;
  background: linear-gradient(90deg, var(--gold), #fff0ba);
  box-shadow: 0 0 20px rgba(227, 189, 107, .22);
}

@media (max-width: 980px) {
  .featured-carousel-controls {
    position: static;
    display: flex;
    justify-content: flex-end;
    margin: -1rem 0 1rem auto;
    width: max-content;
  }
}

@media (max-width: 620px) {
  .featured-carousel-controls {
    margin-top: -.4rem;
  }

  .featured-carousel-btn {
    width: 48px;
    height: 48px;
  }

  .featured-carousel-dots {
    max-width: 100%;
    overflow-x: auto;
  }
}

/* Hero image badge readability fix */
.hero-image-badges span,
.hero-wide-visual .hero-image-badges span {
  background: linear-gradient(135deg, rgba(7, 18, 35, .88), rgba(33, 44, 68, .78));
  color: #fff4df;
  border: 1px solid rgba(240, 194, 98, .45);
  box-shadow: 0 14px 36px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.12);
  text-shadow: 0 1px 2px rgba(0,0,0,.45);
  backdrop-filter: blur(10px);
}

.hero-image-badges span:hover,
.hero-wide-visual .hero-image-badges span:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 194, 98, .75);
  box-shadow: 0 18px 42px rgba(0,0,0,.38), 0 0 0 5px rgba(240, 194, 98, .12);
}

#businessDetails,
#sendInquiry,
#quoteForm {
  scroll-margin-top: 150px;
}


#sendInquiry:target,
#businessDetails:target {
  border-color: rgba(240, 194, 98, .52);
  box-shadow: 0 22px 60px rgba(0,0,0,.28), 0 0 0 6px rgba(240,194,98,.08);
}

/* === Image placeholders after bundled image removal === */
.hero-placeholder,
.product-art,
.blog-art,
.team-photo-placeholder,
.row-img span {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.06) 0 10px, rgba(255,255,255,.025) 10px 20px);
}
.hero-placeholder::before,
.product-art::before,
.blog-art::before {
  content: "Image placeholder";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.72);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
  text-align: center;
  padding: 1rem;
}
.product-art::after,
.blog-art::after {
  display: none !important;
}

.category-placeholder {
  background:
    linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.03)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.06) 0 8px, rgba(255,255,255,.02) 8px 16px);
}

/* === Premium generated imagery integration === */
.hero-image-card {
  overflow: hidden;
}

.hero-showcase-image {
  display: block;
  background: #07101c;
}

.category-pill-media img,
.card-img,
.gallery-main {
  object-fit: cover;
}

.page-hero,
.products-hero {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(245,239,230,.10);
  background:
    linear-gradient(115deg, rgba(6,12,22,.90) 0%, rgba(10,18,30,.82) 52%, rgba(10,18,30,.52) 100%),
    url("assets/images/hero-premium-packaging.webp") center/cover no-repeat;
  box-shadow: 0 28px 80px rgba(0,0,0,.25);
}

.products-hero {
  background:
    linear-gradient(115deg, rgba(6,12,22,.92) 0%, rgba(10,18,30,.82) 52%, rgba(10,18,30,.45) 100%),
    url("assets/images/bottles-premium.webp") center/cover no-repeat;
}

.page-hero > *,
.products-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero::before,
.products-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 18%, rgba(216,181,109,.14), transparent 34%);
  pointer-events: none;
}

.page-hero h1,
.products-hero h1,
.page-hero p,
.products-hero p {
  color: #f5efe6;
  text-shadow: 0 12px 32px rgba(0,0,0,.45);
}

.page-hero .eyebrow,
.products-hero .eyebrow {
  color: #d8b56d;
}

/* === Balanced lighter premium background adjustment ===
   Keeps the website dark and premium, but lifts the base away from black/navy
   so the black/navy product photography has cleaner separation. */
:root {
  --bg: #1a2638;
  --bg-2: #25364e;
  --bg-3: #304762;
  --text: #f8f1e8;
  --muted: #c9d2dc;
  --steel: #7899ad;
  --card: rgba(30, 44, 65, .76);
  --line: rgba(248, 241, 232, .15);
  --shadow: 0 26px 80px rgba(0, 0, 0, .28);
  --premium-ring: 0 0 0 1px rgba(216, 181, 109, .20), 0 20px 58px rgba(0, 0, 0, .24);
}

body {
  background:
    radial-gradient(circle at 8% 6%, rgba(167, 38, 54, .20), transparent 27rem),
    radial-gradient(circle at 88% 12%, rgba(120, 153, 173, .30), transparent 31rem),
    radial-gradient(circle at 58% 108%, rgba(216, 181, 109, .16), transparent 34rem),
    linear-gradient(135deg, #1a2638 0%, #202f45 46%, #293b54 100%);
}

body::before {
  opacity: .38;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.024) 1px, transparent 1px);
}

.site-header {
  background: rgba(22, 33, 49, .82);
  box-shadow: 0 14px 44px rgba(0, 0, 0, .16);
}

.brand-mark {
  background: rgba(255, 255, 255, .065);
  border-color: rgba(245, 239, 230, .14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 14px 34px rgba(0,0,0,.18);
}

.hero-card,
.product-card,
.feature-card,
.contact-card,
.gallery-card,
.editor-card,
.editor-panel,
.editor-sidebar,
.detail-image,
.category-card,
.team-card,
.process-card,
.split-panel,
.empty-state,
.hero-product-card,
.home-category-pill,
.catalogue-status,
.clean-list p,
.editor-list-row,
.subcategory-helper {
  background:
    linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.045)),
    rgba(30, 44, 65, .78);
  border-color: rgba(245,239,230,.145);
  box-shadow: var(--premium-ring);
}

.hero-card,
.split-panel {
  background:
    radial-gradient(circle at 20% 15%, rgba(216,181,109,.15), transparent 19rem),
    radial-gradient(circle at 80% 15%, rgba(167,38,54,.13), transparent 22rem),
    linear-gradient(145deg, rgba(255,255,255,.115), rgba(255,255,255,.048)),
    rgba(31, 46, 68, .82);
}

.product-card:hover,
.feature-card:hover,
.category-card:hover,
.team-card:hover,
.home-category-pill:hover,
.process-card:hover {
  background:
    linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.055)),
    rgba(36, 53, 77, .9);
  border-color: rgba(216,181,109,.34);
  box-shadow: 0 0 0 1px rgba(216,181,109,.25), 0 24px 62px rgba(0,0,0,.24);
}

.editor-link,
.btn.ghost,
button.ghost,
.nav-toggle,
.hero-image-badges span,
.trust-strip span,
.catalogue-tab,
.subcategory-tab,
.gallery-nav,
.gallery-thumb,
.editor-tab,
input,
select,
textarea,
pre.spec-box,
.inline-suggestions,
.suggestion-item {
  background: rgba(255,255,255,.085);
  border-color: rgba(245,239,230,.16);
}

.featured-carousel-btn {
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 255, 255, .16), transparent 38%),
    linear-gradient(145deg, rgba(33, 49, 72, .98), rgba(25, 38, 58, .95));
  box-shadow: 0 14px 30px rgba(0, 0, 0, .20), inset 0 1px 0 rgba(255,255,255,.06);
}

.featured-carousel-btn:hover {
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 255, 255, .21), transparent 40%),
    linear-gradient(145deg, rgba(43, 62, 89, .98), rgba(30, 45, 67, .96));
  box-shadow: 0 18px 36px rgba(0, 0, 0, .24), 0 0 0 4px rgba(227, 189, 107, .08);
}

.card-img,
.hero-showcase-image,
.gallery-main,
.team-photo,
.category-pill-media img {
  filter: saturate(.98) contrast(1.04) brightness(.96);
}

.hero-showcase-image {
  box-shadow: 0 28px 68px rgba(0,0,0,.28), 0 0 0 1px rgba(245,239,230,.10);
}

.hero-image-badges span,
.hero-wide-visual .hero-image-badges span {
  background: linear-gradient(135deg, rgba(30, 43, 63, .90), rgba(46, 61, 84, .82));
  box-shadow: 0 14px 32px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.13);
}

@media (max-width: 960px) {
  .nav-links {
    background: rgba(24, 36, 54, .98);
  }
}


/* === Readability + font refinement update ===
   Slightly brighter text, cleaner typography, and higher contrast while
   preserving the premium dark aesthetic. */
:root {
  --text: #fbf7f1;
  --muted: #d6dee8;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: .003em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
.brand-copy strong,
.nav-links,
.btn,
button,
.footer-brand-block > strong,
.footer-columns h3,
.hero-image-badges span,
.trust-strip span {
  font-family: Montserrat, Inter, system-ui, sans-serif;
}

h1,
h2 {
  letter-spacing: -.045em;
}

h3,
.brand-copy strong,
.nav-links a,
.btn,
button {
  letter-spacing: -.01em;
}

p,
li,
label,
input,
select,
textarea,
.brand-copy small,
.footer-contact-list p,
.footer-brand-block p,
.hero-stats span,
.editor-list-row small,
.product-meta,
.product-card p,
.feature-card p,
.process-card p,
.team-card p,
.clean-list p {
  color: var(--muted);
}

p {
  line-height: 1.8;
}

.site-header .brand-copy small,
.brand-copy small {
  color: #dfe7f0;
}

.nav-links {
  color: rgba(251, 247, 241, .90);
}

.nav-links a {
  text-shadow: 0 1px 0 rgba(0,0,0,.08);
}

.section-head p,
.hero-copy,
.page-hero p,
.products-hero p {
  color: #e2e8ef;
}

.hero-copy,
.section-head p,
.product-card p,
.feature-card p,
.process-card p,
.team-card p,
.contact-card p,
.gallery-card p,
.editor-card p,
.editor-panel p,
.editor-sidebar p,
.split-panel p,
.blog-grid p,
.blog-card p,
.product-detail-copy p {
  font-size: 1.02rem;
}

input,
select,
textarea,
pre.spec-box,
.inline-suggestions,
.suggestion-item,
.editor-link,
.btn.ghost,
button.ghost,
.nav-toggle,
.hero-image-badges span,
.trust-strip span,
.catalogue-tab,
.subcategory-tab,
.gallery-nav,
.gallery-thumb,
.editor-tab {
  color: #f3efe8;
}

input::placeholder,
textarea::placeholder {
  color: rgba(224, 232, 240, .72);
}

.site-footer,
.site-footer p,
.site-footer li,
.site-footer .footer-contact-list p,
.site-footer .footer-brand-block p {
  color: #d9e1ea;
}

.site-footer a {
  color: #f3ca81;
}

.site-footer a:hover {
  color: #fff8ed;
}

.product-card h3,
.feature-card h3,
.process-card h3,
.team-card h3,
.category-card h3,
.contact-card h3,
.editor-card h3,
.editor-panel h3,
.editor-sidebar h3,
.hero-stats strong,
.section h2,
.section h3 {
  color: #fff7ef;
}

.eyebrow {
  color: #efc678;
}

@media (max-width: 768px) {
  .hero-copy,
  .section-head p,
  .product-card p,
  .feature-card p,
  .process-card p,
  .team-card p,
  .contact-card p,
  .split-panel p {
    font-size: 1rem;
  }
}


/* === Global text brightness + bubble opacity refinement ===
   Makes text brighter and improves contrast, while giving pill/bubble elements
   a darker, more opaque glass treatment. */
:root {
  --text: #fffaf4;
  --muted: #e4ebf3;
}

body,
p,
li,
label,
input,
select,
textarea,
.footer-contact-list p,
.footer-brand-block p,
.hero-stats span,
.editor-list-row small,
.product-meta,
.product-card p,
.feature-card p,
.process-card p,
.team-card p,
.contact-card p,
.gallery-card p,
.editor-card p,
.editor-panel p,
.editor-sidebar p,
.split-panel p,
.blog-grid p,
.blog-card p,
.clean-list p,
.category-card p,
.home-category-pill span,
.catalogue-status span,
.subcategory-helper,
.page-hero p,
.products-hero p,
.section-head p,
.hero-copy {
  color: #e6edf5;
}

h1,
h2,
h3,
.product-card h3,
.feature-card h3,
.process-card h3,
.team-card h3,
.category-card h3,
.contact-card h3,
.editor-card h3,
.editor-panel h3,
.editor-sidebar h3,
.split-panel h2,
.catalogue-status strong,
.home-category-pill strong,
.brand-copy strong,
.footer-brand-block > strong,
.footer-columns h3 {
  color: #fffaf2;
}

.nav-links,
.nav-links a,
.site-header .brand-copy small,
.brand-copy small {
  color: rgba(248, 243, 236, .95);
}

input,
select,
textarea,
pre.spec-box,
.inline-suggestions,
.suggestion-item {
  color: #fff6ec;
}

input::placeholder,
textarea::placeholder {
  color: rgba(230, 237, 245, .78);
}

/* darker, more opaque bubbles/chips */
.pill,
.price-pill,
.hero-image-badges span,
.hero-wide-visual .hero-image-badges span,
.trust-strip span,
.catalogue-tab span,
.subcategory-tab,
.editor-link,
.btn.ghost,
button.ghost,
.nav-toggle,
.gallery-nav,
.gallery-thumb,
.editor-tab,
.catalogue-tab,
.featured-carousel-dots {
  backdrop-filter: blur(12px);
}

.pill {
  background: linear-gradient(135deg, rgba(98, 55, 83, .88), rgba(67, 82, 114, .84));
  color: #fff5ea;
  border: 1px solid rgba(255, 208, 123, .22);
  box-shadow: 0 10px 24px rgba(0,0,0,.20), inset 0 1px 0 rgba(255,255,255,.10);
}

.price-pill {
  background: linear-gradient(135deg, rgba(88, 72, 34, .84), rgba(69, 55, 28, .80));
  color: #ffebb8;
  border: 1px solid rgba(240, 194, 98, .28);
  box-shadow: 0 10px 24px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.08);
}

.hero-image-badges span,
.hero-wide-visual .hero-image-badges span,
.trust-strip span,
.catalogue-tab,
.subcategory-tab,
.editor-link,
.btn.ghost,
button.ghost,
.nav-toggle,
.gallery-nav,
.gallery-thumb,
.editor-tab,
input,
select,
textarea,
pre.spec-box,
.inline-suggestions,
.suggestion-item {
  background: rgba(17, 28, 43, .66);
  border-color: rgba(255, 245, 232, .18);
  box-shadow: 0 12px 28px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.06);
}

.catalogue-tab span {
  background: rgba(255,255,255,.12);
  color: #f7efe5;
}

.catalogue-tab.active {
  background: linear-gradient(135deg, rgba(18, 34, 58, .98), rgba(38, 56, 87, .96));
  color: #fffaf1;
}

.subcategory-tab.active,
.site-footer a,
.product-card a,
.catalogue-status a {
  color: #ffd78b;
}

.site-footer,
.site-footer p,
.site-footer li,
.site-footer .footer-contact-list p,
.site-footer .footer-brand-block p {
  color: #e1e8f0;
}

.site-footer a:hover,
.product-card a:hover,
.catalogue-status a:hover {
  color: #fff5df;
}

/* === Final premium-light brand correction ===
   Lighter website background, true navy header/footer, and red/navy bubbles with white text. */
:root {
  --bg: #f4efe7;
  --bg-2: #faf7f1;
  --bg-3: #eef2f6;
  --text: #071c3a;
  --muted: #47586e;
  --navy: #071c3a;
  --ink: #071c3a;
  --red: #b91f32;
  --red-2: #d73348;
  --steel: #6d879d;
  --card: rgba(255,255,255,.86);
  --line: rgba(7,28,58,.13);
  --shadow: 0 22px 58px rgba(7,28,58,.12);
  --gold: #c79a45;
  --premium-ring: 0 0 0 1px rgba(7,28,58,.08), 0 18px 46px rgba(7,28,58,.10);
}

body {
  color: #071c3a;
  background:
    radial-gradient(circle at 10% 4%, rgba(185,31,50,.09), transparent 26rem),
    radial-gradient(circle at 88% 10%, rgba(7,28,58,.10), transparent 28rem),
    radial-gradient(circle at 48% 110%, rgba(199,154,69,.12), transparent 32rem),
    linear-gradient(135deg, #f1ebdf 0%, #fbf7ef 48%, #e9eff5 100%);
}

body::before {
  opacity: .32;
  background-image:
    linear-gradient(rgba(7,28,58,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,28,58,.028) 1px, transparent 1px);
}

.site-header {
  background: rgba(7, 28, 58, .96) !important;
  border-bottom: 1px solid rgba(255,255,255,.12) !important;
  box-shadow: 0 16px 42px rgba(7,28,58,.20) !important;
}

.site-header .brand-copy strong,
.site-header .brand-copy small,
.site-header .nav-links,
.site-header .nav-links a,
.nav-toggle {
  color: #fff !important;
}

.site-header .brand-mark {
  background: rgba(255,255,255,.08) !important;
  border-color: rgba(255,255,255,.16) !important;
}

.nav-links a:not(.nav-cta)::after {
  background: linear-gradient(90deg, #fff, var(--red-2));
}

.hero-card,
.product-card,
.feature-card,
.contact-card,
.gallery-card,
.editor-card,
.editor-panel,
.editor-sidebar,
.detail-image,
.category-card,
.team-card,
.process-card,
.split-panel,
.empty-state,
.hero-product-card,
.home-category-pill,
.catalogue-status,
.clean-list p,
.editor-list-row,
.subcategory-helper,
.save-modal-card {
  background: rgba(255,255,255,.88) !important;
  border-color: rgba(7,28,58,.12) !important;
  box-shadow: var(--premium-ring) !important;
  color: #071c3a !important;
}

.hero-card,
.split-panel {
  background:
    radial-gradient(circle at 16% 8%, rgba(185,31,50,.08), transparent 18rem),
    radial-gradient(circle at 86% 12%, rgba(7,28,58,.09), transparent 20rem),
    rgba(255,255,255,.90) !important;
}

.product-card:hover,
.feature-card:hover,
.category-card:hover,
.team-card:hover,
.home-category-pill:hover,
.process-card:hover {
  background: #fff !important;
  border-color: rgba(185,31,50,.26) !important;
  box-shadow: 0 24px 58px rgba(7,28,58,.16) !important;
}

h1,
h2,
h3,
.product-card h3,
.feature-card h3,
.process-card h3,
.team-card h3,
.category-card h3,
.contact-card h3,
.editor-card h3,
.editor-panel h3,
.editor-sidebar h3,
.split-panel h2,
.catalogue-status strong,
.home-category-pill strong,
.brand-copy strong,
.footer-brand-block > strong,
.footer-columns h3,
.hero-stats strong,
.hero-product-card strong,
.section h2,
.section h3 {
  color: #071c3a !important;
}

p,
li,
label,
.product-card p,
.feature-card p,
.process-card p,
.team-card p,
.contact-card p,
.gallery-card p,
.editor-card p,
.editor-panel p,
.editor-sidebar p,
.split-panel p,
.blog-grid p,
.clean-list p,
.category-card p,
.home-category-pill span,
.catalogue-status span,
.subcategory-helper,
.hero-copy,
.section-head p,
.hero-stats span,
.editor-list-row small,
.product-meta,
.field-help {
  color: #47586e !important;
}

.eyebrow {
  color: var(--red) !important;
  text-shadow: none !important;
}

/* All pill/bubble-style UI: only red or navy, always white text. */
.pill,
.price-pill,
.hero-image-badges span,
.hero-wide-visual .hero-image-badges span,
.trust-strip span,
.catalogue-tab,
.catalogue-tab span,
.subcategory-tab,
.editor-link,
.btn.ghost,
button.ghost,
.nav-toggle,
.gallery-nav,
.gallery-thumb,
.editor-tab,
.featured-carousel-dots,
.featured-dot,
.mini-wa,
.floating-whatsapp,
.category-icon,
.save-check,
.toast {
  color: #fff !important;
  text-shadow: none !important;
  border-color: rgba(255,255,255,.16) !important;
  box-shadow: 0 12px 28px rgba(7,28,58,.18), inset 0 1px 0 rgba(255,255,255,.12) !important;
}

.pill,
.subcategory-tab.active,
.btn.primary,
button.primary,
.nav-cta,
.editor-tab.active,
.save-check,
.toast,
.featured-dot.active {
  background: linear-gradient(135deg, var(--red), var(--red-2)) !important;
}

.price-pill,
.hero-image-badges span,
.hero-wide-visual .hero-image-badges span,
.trust-strip span,
.catalogue-tab,
.catalogue-tab span,
.subcategory-tab,
.editor-link,
.btn.ghost,
button.ghost,
.nav-toggle,
.gallery-nav,
.gallery-thumb,
.editor-tab,
.featured-carousel-dots,
.featured-dot,
.mini-wa,
.floating-whatsapp,
.category-icon {
  background: linear-gradient(135deg, #071c3a, #12345f) !important;
}

.catalogue-tab.active,
.gallery-thumb.active {
  background: linear-gradient(135deg, var(--red), var(--red-2)) !important;
  color: #fff !important;
}

.trust-strip span::before {
  background: #fff !important;
  box-shadow: 0 0 0 5px rgba(255,255,255,.18) !important;
}

.site-footer {
  max-width: none !important;
  width: 100% !important;
  margin-top: 2.5rem !important;
  padding: 3rem max(1.25rem, calc((100vw - 1180px) / 2)) 4rem !important;
  background:
    radial-gradient(circle at 15% 0%, rgba(215,51,72,.18), transparent 26rem),
    linear-gradient(135deg, #071c3a, #0b2447) !important;
  border-top: 0 !important;
  color: #fff !important;
  box-shadow: 0 -18px 50px rgba(7,28,58,.16) !important;
}

.site-footer::before { display: none !important; }
.site-footer strong,
.site-footer h3,
.site-footer p,
.site-footer li,
.site-footer .footer-contact-list p,
.site-footer .footer-brand-block p {
  color: rgba(255,255,255,.88) !important;
}
.site-footer a {
  color: #fff !important;
}
.site-footer a:hover {
  color: #ffd6dc !important;
  text-decoration: none !important;
}

input,
select,
textarea,
pre.spec-box,
.inline-suggestions,
.suggestion-item {
  background: rgba(255,255,255,.94) !important;
  color: #071c3a !important;
  border-color: rgba(7,28,58,.15) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4) !important;
}
input::placeholder,
textarea::placeholder { color: rgba(71,88,110,.72) !important; }

.page-hero,
.products-hero {
  border-color: rgba(7,28,58,.10) !important;
  box-shadow: 0 24px 60px rgba(7,28,58,.14) !important;
}
.page-hero h1,
.products-hero h1,
.page-hero p,
.products-hero p {
  color: #fff !important;
}
.page-hero .eyebrow,
.products-hero .eyebrow {
  color: #ffd6dc !important;
}

.card-img,
.hero-showcase-image,
.gallery-main,
.team-photo,
.category-pill-media img {
  filter: saturate(1.02) contrast(1.03) brightness(1.02) !important;
}

.product-art,
.team-photo,
.team-photo-placeholder,
.category-pill-media,
.gallery-frame,
.card-img,
.preview-box .preview-grid img,
.row-img {
  background:
    radial-gradient(circle at 22% 15%, rgba(185,31,50,.10), transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,.90), rgba(230,237,245,.78)) !important;
  border-color: rgba(7,28,58,.10) !important;
}

/* Smooth premium cursor animation without changing the real clickable cursor. */
.cursor-glow {
  width: 28rem !important;
  height: 28rem !important;
  background: radial-gradient(circle, rgba(185,31,50,.12), rgba(7,28,58,.07) 38%, transparent 70%) !important;
  mix-blend-mode: normal !important;
  opacity: .85;
  transition: opacity .18s ease;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity .22s ease, width .22s ease, height .22s ease, border-color .22s ease, background .22s ease;
}
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  box-shadow: 0 0 18px rgba(185,31,50,.44);
}
.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(7,28,58,.42);
  box-shadow: 0 0 0 6px rgba(185,31,50,.045);
}
body.cursor-ready .cursor-dot,
body.cursor-ready .cursor-ring { opacity: 1; }
body.cursor-over-link .cursor-ring {
  width: 54px;
  height: 54px;
  border-color: rgba(185,31,50,.62);
  background: rgba(185,31,50,.055);
}
body.cursor-over-link .cursor-dot {
  background: #071c3a;
  box-shadow: 0 0 18px rgba(7,28,58,.36);
}

@media (pointer: coarse), (max-width: 760px) {
  .cursor-glow,
  .cursor-dot,
  .cursor-ring { display: none !important; }
}

@media (max-width: 960px) {
  .nav-links {
    background: rgba(7,28,58,.98) !important;
    border-color: rgba(255,255,255,.14) !important;
  }
}


/* === Follow-up refinement: red blog/date pills + stronger behind-cursor aura === */
.pill,
.product-card .pill,
.blog-card .pill,
article .pill {
  background: linear-gradient(135deg, var(--red), var(--red-2)) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  text-shadow: none !important;
}

.cursor-glow {
  width: 34rem !important;
  height: 34rem !important;
  opacity: .98 !important;
  filter: blur(10px);
  background: radial-gradient(circle, rgba(185,31,50,.20) 0%, rgba(185,31,50,.11) 22%, rgba(7,28,58,.10) 42%, rgba(7,28,58,.04) 58%, transparent 74%) !important;
  box-shadow: 0 0 140px rgba(185,31,50,.14), 0 0 220px rgba(7,28,58,.10);
}

.cursor-aura {
  position: fixed;
  left: 0;
  top: 0;
  width: 120px;
  height: 120px;
  pointer-events: none;
  z-index: 9997;
  border-radius: 50%;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  background: radial-gradient(circle, rgba(255,255,255,.16) 0%, rgba(185,31,50,.10) 28%, rgba(7,28,58,.08) 52%, transparent 72%);
  filter: blur(5px);
  transition: opacity .22s ease, width .22s ease, height .22s ease;
}

body.cursor-ready .cursor-aura { opacity: 1; }
body.cursor-over-link .cursor-aura {
  width: 150px;
  height: 150px;
  opacity: 1;
}

@media (pointer: coarse), (max-width: 760px) {
  .cursor-aura { display: none !important; }
}


/* === Final fix: visible premium cursor aura + bubble-style View Details === */
.cursor-glow {
  position: fixed !important;
  left: 50%;
  top: 50%;
  width: 32rem !important;
  height: 32rem !important;
  z-index: 9995 !important;
  pointer-events: none !important;
  border-radius: 50% !important;
  opacity: 0 !important;
  transform: translate(-50%, -50%) !important;
  background:
    radial-gradient(circle, rgba(198,31,53,.22) 0%, rgba(198,31,53,.13) 22%, rgba(7,28,58,.13) 44%, rgba(7,28,58,.06) 60%, transparent 76%) !important;
  filter: blur(12px) !important;
  mix-blend-mode: multiply !important;
  transition: opacity .22s ease !important;
}
body.cursor-ready .cursor-glow { opacity: .92 !important; }

.cursor-aura {
  position: fixed !important;
  left: 0 !important;
  top: 0 !important;
  width: 138px !important;
  height: 138px !important;
  z-index: 9996 !important;
  pointer-events: none !important;
  border-radius: 50% !important;
  opacity: 0 !important;
  background:
    radial-gradient(circle, rgba(255,255,255,.30) 0%, rgba(198,31,53,.18) 27%, rgba(7,28,58,.13) 52%, transparent 74%) !important;
  filter: blur(7px) !important;
  mix-blend-mode: multiply !important;
  transition: opacity .2s ease, width .22s ease, height .22s ease !important;
}
body.cursor-ready .cursor-aura { opacity: 1 !important; }
body.cursor-over-link .cursor-aura {
  width: 170px !important;
  height: 170px !important;
  opacity: 1 !important;
}

.cursor-ring { z-index: 9998 !important; }
.cursor-dot { z-index: 9999 !important; }

.card-actions {
  display: flex !important;
  align-items: center !important;
  gap: .65rem !important;
  flex-wrap: wrap !important;
}

.product-card .card-actions a.detail-bubble,
a.detail-bubble {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 44px !important;
  padding: .66rem 1rem !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--red), var(--red-2)) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  box-shadow: 0 14px 32px rgba(198,31,53,.26), inset 0 1px 0 rgba(255,255,255,.18) !important;
  text-shadow: none !important;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease !important;
}

.product-card .card-actions a.detail-bubble:hover,
a.detail-bubble:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 18px 42px rgba(198,31,53,.34), inset 0 1px 0 rgba(255,255,255,.22) !important;
}

.product-card .card-actions a.mini-wa,
a.mini-wa {
  color: #ffffff !important;
  border-radius: 999px !important;
}

@media (pointer: coarse), (max-width: 760px) {
  .cursor-glow,
  .cursor-aura,
  .cursor-dot,
  .cursor-ring { display: none !important; }
}

/* === Premium behind-cursor aura restoration === */
.cursor-glow,
.cursor-aura,
.cursor-ring,
.cursor-dot,
.cursor-trail-wrap,
.cursor-trail-particle {
  pointer-events: none !important;
}

.cursor-glow {
  position: fixed !important;
  left: 0 !important;
  top: 0 !important;
  width: 35rem !important;
  height: 35rem !important;
  border-radius: 999px !important;
  z-index: 9991 !important;
  opacity: 0 !important;
  transform: translate3d(-50%, -50%, 0) !important;
  background:
    radial-gradient(circle at 44% 42%, rgba(255, 255, 255, .24) 0%, rgba(255, 255, 255, .11) 11%, transparent 23%),
    radial-gradient(circle, rgba(198, 31, 53, .28) 0%, rgba(198, 31, 53, .18) 23%, rgba(7, 28, 58, .15) 45%, rgba(212, 175, 55, .07) 61%, transparent 76%) !important;
  filter: blur(16px) saturate(1.22) !important;
  mix-blend-mode: multiply !important;
  transition: opacity .22s ease, width .25s ease, height .25s ease !important;
  will-change: transform, opacity !important;
}

.cursor-aura {
  position: fixed !important;
  left: 0 !important;
  top: 0 !important;
  width: 142px !important;
  height: 142px !important;
  border-radius: 999px !important;
  z-index: 9992 !important;
  opacity: 0 !important;
  transform: translate3d(-50%, -50%, 0) !important;
  background:
    radial-gradient(circle, rgba(255, 255, 255, .38) 0%, rgba(198, 31, 53, .22) 30%, rgba(7, 28, 58, .16) 56%, transparent 76%) !important;
  filter: blur(7px) saturate(1.15) !important;
  mix-blend-mode: multiply !important;
  transition: opacity .18s ease, width .2s ease, height .2s ease !important;
  will-change: transform, opacity, width, height !important;
}

.cursor-ring,
.cursor-dot {
  position: fixed !important;
  left: 0 !important;
  top: 0 !important;
  border-radius: 999px !important;
  opacity: 0 !important;
  transform: translate3d(-50%, -50%, 0) !important;
  will-change: transform, opacity !important;
}

.cursor-ring {
  width: 42px !important;
  height: 42px !important;
  z-index: 9994 !important;
  border: 1px solid rgba(198, 31, 53, .72) !important;
  box-shadow:
    0 0 0 7px rgba(198, 31, 53, .055),
    0 0 34px rgba(198, 31, 53, .18),
    inset 0 0 14px rgba(255, 255, 255, .18) !important;
  background: rgba(255, 255, 255, .035) !important;
  transition: opacity .16s ease, width .2s ease, height .2s ease, border-color .2s ease, background .2s ease !important;
}

.cursor-dot {
  width: 8px !important;
  height: 8px !important;
  z-index: 9995 !important;
  background: #b91f32 !important;
  box-shadow: 0 0 20px rgba(185, 31, 50, .58), 0 0 38px rgba(7, 28, 58, .20) !important;
  transition: opacity .16s ease, transform .08s linear, background .18s ease !important;
}

.cursor-trail-wrap {
  position: fixed !important;
  inset: 0 !important;
  z-index: 9990 !important;
  overflow: hidden !important;
}

.cursor-trail-particle {
  position: fixed !important;
  width: 18px !important;
  height: 18px !important;
  margin-left: -9px !important;
  margin-top: -9px !important;
  border-radius: 999px !important;
  background: radial-gradient(circle, rgba(198, 31, 53, .30), rgba(7, 28, 58, .16) 52%, transparent 74%) !important;
  filter: blur(2px) !important;
  animation: cursorTrailFade .82s ease-out forwards !important;
}

body.cursor-ready .cursor-glow { opacity: .98 !important; }
body.cursor-ready .cursor-aura { opacity: 1 !important; }
body.cursor-ready .cursor-ring { opacity: .95 !important; }
body.cursor-ready .cursor-dot { opacity: 1 !important; }

body.cursor-over-link .cursor-glow {
  width: 39rem !important;
  height: 39rem !important;
  opacity: 1 !important;
}
body.cursor-over-link .cursor-aura {
  width: 176px !important;
  height: 176px !important;
}
body.cursor-over-link .cursor-ring {
  width: 58px !important;
  height: 58px !important;
  border-color: rgba(7, 28, 58, .78) !important;
  background: rgba(198, 31, 53, .07) !important;
}
body.cursor-over-link .cursor-dot {
  background: #071c3a !important;
}
body.cursor-clicking .cursor-ring {
  width: 32px !important;
  height: 32px !important;
}

@keyframes cursorTrailFade {
  0% { opacity: .72; transform: scale(.76); }
  100% { opacity: 0; transform: scale(2.45); }
}

@media (pointer: coarse), (max-width: 760px), (prefers-reduced-motion: reduce) {
  .cursor-glow,
  .cursor-aura,
  .cursor-ring,
  .cursor-dot,
  .cursor-trail-wrap,
  .cursor-trail-particle {
    display: none !important;
  }
}


/* === Distinct hero images for section pages === */
.page-hero-about {
  background:
    linear-gradient(115deg, rgba(6,12,22,.86) 0%, rgba(10,18,30,.78) 52%, rgba(10,18,30,.46) 100%),
    url("assets/images/about-hero-premium.png") center/cover no-repeat !important;
}

.page-hero-team {
  background:
    linear-gradient(115deg, rgba(6,12,22,.82) 0%, rgba(10,18,30,.72) 52%, rgba(10,18,30,.40) 100%),
    url("assets/images/team-hero-premium.png") center/cover no-repeat !important;
}

.page-hero-blog {
  background:
    linear-gradient(115deg, rgba(6,12,22,.84) 0%, rgba(10,18,30,.75) 52%, rgba(10,18,30,.40) 100%),
    url("assets/images/blog-hero-premium.png") center/cover no-repeat !important;
}

.page-hero-contact {
  background:
    linear-gradient(115deg, rgba(6,12,22,.84) 0%, rgba(10,18,30,.74) 52%, rgba(10,18,30,.40) 100%),
    url("assets/images/contact-hero-premium.png") center/cover no-repeat !important;
}

.products-hero.products-hero-custom {
  background:
    linear-gradient(115deg, rgba(6,12,22,.86) 0%, rgba(10,18,30,.78) 52%, rgba(10,18,30,.42) 100%),
    url("assets/images/products-hero-premium.png") center/cover no-repeat !important;
}

.about-body-copy p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.8;
}

.about-body-copy p:last-child {
  margin-bottom: 0;
}

/* Hero service highlights are informational, not clickable actions. Keep them as clean text rows instead of button-like bubbles. */
.hero .trust-strip {
  gap: .65rem 1.6rem !important;
  margin-top: 1.45rem !important;
}

.hero .trust-strip span {
  display: flex !important;
  align-items: center !important;
  gap: .55rem !important;
  width: auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #31445f !important;
  text-shadow: none !important;
  font-weight: 750 !important;
  letter-spacing: -.01em !important;
}

.hero .trust-strip span::before {
  content: "" !important;
  width: 8px !important;
  height: 8px !important;
  flex: 0 0 8px !important;
  border-radius: 50% !important;
  background: var(--red) !important;
  box-shadow: 0 0 0 5px rgba(206, 25, 54, .10) !important;
}

/* === Premium site-wide motion system: inspired by the 3D carousel arrows === */
:root {
  --motion-ease: cubic-bezier(.18, .9, .24, 1);
  --premium-shadow: 0 18px 42px rgba(7, 28, 58, .16), inset 0 1px 0 rgba(255,255,255,.18);
  --premium-shadow-deep: 0 28px 70px rgba(7, 28, 58, .24), 0 0 0 1px rgba(227,189,107,.12), inset 0 1px 0 rgba(255,255,255,.18);
}

body {
  overflow-x: hidden;
}

.site-header,
.site-footer,
.hero-image-card,
.hero-card,
.product-card,
.category-card,
.home-category-pill,
.process-card,
.team-card,
.contact-card,
.split-panel,
.editor-card,
.preview-box,
.blog-grid article,
.gallery-main,
.hero-showcase-image {
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.site-header::after,
.site-footer::before,
.hero-card::after,
.hero-image-card::after,
.product-card::after,
.home-category-pill::after,
.category-card::after,
.process-card::after,
.team-card::after,
.contact-card::after,
.split-panel::after,
.editor-card::after,
.preview-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.18) 18%, rgba(227,189,107,.16) 29%, transparent 43%);
  transform: translateX(-120%) skewX(-18deg);
  opacity: 0;
  transition: opacity .25s ease;
}

.site-header::after,
.site-footer::before {
  border-radius: 0;
}

.hero-card,
.hero-image-card,
.product-card,
.category-card,
.home-category-pill,
.process-card,
.team-card,
.contact-card,
.split-panel,
.editor-card,
.preview-box {
  position: relative;
  isolation: isolate;
  transition:
    transform .32s var(--motion-ease),
    box-shadow .32s var(--motion-ease),
    border-color .32s ease,
    background .32s ease,
    filter .32s ease;
}

.product-card:hover,
.category-card:hover,
.home-category-pill:hover,
.process-card:hover,
.team-card:hover,
.contact-card:hover,
.split-panel:hover,
.editor-card:hover,
.preview-box:hover {
  transform: translateY(-8px) rotateX(1.4deg) rotateY(-1.2deg);
  box-shadow: var(--premium-shadow-deep) !important;
  border-color: rgba(227, 189, 107, .38) !important;
}

.product-card:hover::after,
.category-card:hover::after,
.home-category-pill:hover::after,
.process-card:hover::after,
.team-card:hover::after,
.contact-card:hover::after,
.split-panel:hover::after,
.editor-card:hover::after,
.preview-box:hover::after,
.hero-card:hover::after,
.hero-image-card:hover::after {
  opacity: 1;
  animation: premiumLightSweep 1.05s ease forwards;
}

.hero-image-card:hover,
.hero-card:hover {
  transform: translateY(-5px) rotateX(.8deg) rotateY(.8deg);
  box-shadow: 0 30px 80px rgba(7, 28, 58, .22), inset 0 1px 0 rgba(255,255,255,.20) !important;
}

.card-img,
.category-pill-media img,
.team-photo,
.hero-showcase-image,
.gallery-main img {
  transition: transform .55s var(--motion-ease), filter .45s ease;
  will-change: transform;
}

.product-card:hover .card-img,
.home-category-pill:hover .category-pill-media img,
.team-card:hover .team-photo,
.hero-image-card:hover .hero-showcase-image,
.gallery-main:hover img {
  transform: translateZ(16px) scale(1.045);
  filter: saturate(1.05) contrast(1.08) brightness(1.02);
}

.btn,
button,
.detail-bubble,
.mini-wa,
.editor-link,
.nav-cta,
.catalogue-tab,
.subcategory-tab,
.gallery-nav,
.gallery-thumb,
.editor-tab,
.featured-dot,
.floating-whatsapp {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transform-style: preserve-3d;
  transition:
    transform .24s var(--motion-ease),
    box-shadow .24s var(--motion-ease),
    border-color .24s ease,
    background .24s ease,
    color .24s ease;
}

.btn::after,
button::after,
.detail-bubble::after,
.mini-wa::after,
.editor-link::after,
.nav-cta::after,
.catalogue-tab::after,
.subcategory-tab::after,
.gallery-nav::after,
.gallery-thumb::after,
.editor-tab::after,
.featured-dot::after,
.floating-whatsapp::after {
  content: "";
  position: absolute;
  inset: -2px;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.35) 17%, rgba(227,189,107,.28) 28%, transparent 43%);
  transform: translateX(-130%) skewX(-20deg);
  opacity: 0;
  z-index: -1;
}

.btn:hover,
button:hover,
.detail-bubble:hover,
.mini-wa:hover,
.editor-link:hover,
.nav-cta:hover,
.catalogue-tab:hover,
.subcategory-tab:hover,
.gallery-nav:hover,
.editor-tab:hover,
.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.018);
  box-shadow: 0 18px 42px rgba(7,28,58,.20), 0 0 0 4px rgba(227,189,107,.08), inset 0 1px 0 rgba(255,255,255,.18) !important;
}

.btn:hover::after,
button:hover::after,
.detail-bubble:hover::after,
.mini-wa:hover::after,
.editor-link:hover::after,
.nav-cta:hover::after,
.catalogue-tab:hover::after,
.subcategory-tab:hover::after,
.gallery-nav:hover::after,
.gallery-thumb:hover::after,
.editor-tab:hover::after,
.featured-dot:hover::after,
.floating-whatsapp:hover::after {
  opacity: 1;
  animation: premiumLightSweep .82s ease forwards;
}

.btn.primary,
button.primary,
.detail-bubble,
.mini-wa,
.nav-cta,
.floating-whatsapp {
  background:
    radial-gradient(circle at 34% 18%, rgba(255,255,255,.20), transparent 34%),
    linear-gradient(145deg, var(--red), var(--red-2)) !important;
  border: 1px solid rgba(255,255,255,.16) !important;
  box-shadow: 0 16px 36px rgba(198,31,53,.25), inset 0 1px 0 rgba(255,255,255,.18) !important;
}

.btn.ghost,
button.ghost,
.editor-link,
.catalogue-tab,
.subcategory-tab,
.editor-tab,
.gallery-nav {
  background:
    radial-gradient(circle at 34% 18%, rgba(255,255,255,.16), transparent 36%),
    linear-gradient(145deg, rgba(255,255,255,.88), rgba(255,255,255,.58)) !important;
  color: var(--navy) !important;
  border: 1px solid rgba(7,28,58,.12) !important;
  box-shadow: 0 12px 28px rgba(7,28,58,.08), inset 0 1px 0 rgba(255,255,255,.42) !important;
}

.catalogue-tab.active,
.subcategory-tab.active,
.editor-tab.active {
  background:
    radial-gradient(circle at 34% 18%, rgba(255,255,255,.20), transparent 34%),
    linear-gradient(145deg, var(--navy), #10284b) !important;
  color: #fff !important;
  border-color: rgba(227,189,107,.32) !important;
}

.nav-links a:not(.nav-cta) {
  position: relative;
  transition: color .24s ease, transform .24s var(--motion-ease), text-shadow .24s ease;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -.42rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  box-shadow: 0 0 16px rgba(227,189,107,.34);
  transform: translateX(-50%);
  transition: width .26s var(--motion-ease);
}

.nav-links a:not(.nav-cta):hover {
  transform: translateY(-2px);
  color: #ffffff;
  text-shadow: 0 8px 22px rgba(227,189,107,.22);
}

.nav-links a:not(.nav-cta):hover::after {
  width: 72%;
}

.section-head h2,
.hero-copy h1,
.page-hero h1,
.products-hero h1 {
  position: relative;
}

.section-head h2::after,
.hero-copy h1::after,
.page-hero h1::after,
.products-hero h1::after {
  content: "";
  display: block;
  width: clamp(62px, 9vw, 112px);
  height: 4px;
  margin-top: .75rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--gold), transparent);
  transform-origin: left;
  animation: premiumUnderlineGlow 3.2s ease-in-out infinite;
}

.trust-strip span,
.hero-image-badges span,
.pill,
.product-meta .pill,
.blog-card .pill {
  animation: premiumSoftFloat 4.4s ease-in-out infinite;
}

.trust-strip span:nth-child(2),
.hero-image-badges span:nth-child(2),
.pill:nth-of-type(2) { animation-delay: .42s; }
.trust-strip span:nth-child(3),
.hero-image-badges span:nth-child(3),
.pill:nth-of-type(3) { animation-delay: .84s; }
.trust-strip span:nth-child(4),
.hero-image-badges span:nth-child(4),
.pill:nth-of-type(4) { animation-delay: 1.26s; }

input:focus,
select:focus,
textarea:focus {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(7,28,58,.14), 0 0 0 4px rgba(198,31,53,.10) !important;
  border-color: rgba(198,31,53,.45) !important;
}

.premium-tilt-active {
  transition: transform .08s linear, box-shadow .22s ease !important;
}

.premium-tilt-reset {
  transition: transform .42s var(--motion-ease), box-shadow .32s ease !important;
}

.reveal {
  opacity: 0;
  transform: translateY(26px) scale(.985);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity .72s ease, transform .72s var(--motion-ease);
}

.product-grid .reveal:nth-child(2n),
.blog-grid .reveal:nth-child(2n),
.team-grid .reveal:nth-child(2n),
.process-grid .reveal:nth-child(2n) { transition-delay: .06s; }
.product-grid .reveal:nth-child(3n),
.blog-grid .reveal:nth-child(3n),
.team-grid .reveal:nth-child(3n),
.process-grid .reveal:nth-child(3n) { transition-delay: .12s; }
.product-grid .reveal:nth-child(4n),
.blog-grid .reveal:nth-child(4n),
.team-grid .reveal:nth-child(4n),
.process-grid .reveal:nth-child(4n) { transition-delay: .18s; }

.featured-carousel-btn,
.gallery-nav {
  animation: premiumArrowBreath 3.2s ease-in-out infinite;
}

.featured-carousel-btn:nth-child(2),
.gallery-nav:nth-child(2) {
  animation-delay: .35s;
}

.featured-carousel-btn:active,
.gallery-nav:active,
.btn:active,
button:active,
.detail-bubble:active,
.mini-wa:active,
.nav-cta:active {
  transform: translateY(0) scale(.97);
}

@keyframes premiumLightSweep {
  0% { transform: translateX(-130%) skewX(-20deg); opacity: 0; }
  18% { opacity: .82; }
  100% { transform: translateX(130%) skewX(-20deg); opacity: 0; }
}

@keyframes premiumUnderlineGlow {
  0%, 100% { transform: scaleX(.82); opacity: .72; filter: drop-shadow(0 0 0 rgba(227,189,107,0)); }
  50% { transform: scaleX(1); opacity: 1; filter: drop-shadow(0 0 12px rgba(227,189,107,.28)); }
}

@keyframes premiumSoftFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes premiumArrowBreath {
  0%, 100% { box-shadow: 0 14px 32px rgba(0,0,0,.20), inset 0 1px 0 rgba(255,255,255,.08); }
  50% { box-shadow: 0 18px 42px rgba(0,0,0,.25), 0 0 0 5px rgba(227,189,107,.07), inset 0 1px 0 rgba(255,255,255,.14); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  .reveal,
  .reveal.visible {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 760px) {
  .product-card:hover,
  .category-card:hover,
  .home-category-pill:hover,
  .process-card:hover,
  .team-card:hover,
  .contact-card:hover,
  .split-panel:hover,
  .editor-card:hover,
  .preview-box:hover,
  .hero-image-card:hover,
  .hero-card:hover {
    transform: translateY(-4px);
  }
}

.premium-ripple {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255,255,255,.62), rgba(227,189,107,.22) 42%, transparent 72%);
  transform: translate(-50%, -50%) scale(.4);
  animation: premiumRipple .72s ease-out forwards;
  z-index: 3;
}

@keyframes premiumRipple {
  0% { opacity: .9; transform: translate(-50%, -50%) scale(.35); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(9); }
}

/* === Irritating hover-shine removal ===
   The oblique swipe was too active when repeated across the whole site.
   Keep the premium 3D depth, lift, glow, ripple, and arrow breathing, but remove
   the sweeping shine from cards/buttons on ordinary hover. */
.site-header::after,
.site-footer::before,
.hero-card::after,
.hero-image-card::after,
.product-card::after,
.home-category-pill::after,
.category-card::after,
.process-card::after,
.team-card::after,
.contact-card::after,
.split-panel::after,
.editor-card::after,
.preview-box::after,
.btn::after,
button::after,
.detail-bubble::after,
.mini-wa::after,
.editor-link::after,
.nav-cta::after,
.catalogue-tab::after,
.subcategory-tab::after,
.gallery-nav::after,
.gallery-thumb::after,
.editor-tab::after,
.featured-dot::after,
.floating-whatsapp::after {
  display: none !important;
  opacity: 0 !important;
  animation: none !important;
  background: none !important;
  transform: none !important;
}

.product-card:hover,
.category-card:hover,
.home-category-pill:hover,
.process-card:hover,
.team-card:hover,
.contact-card:hover,
.split-panel:hover,
.editor-card:hover,
.preview-box:hover {
  box-shadow: 0 24px 58px rgba(7, 28, 58, .20), 0 0 0 1px rgba(227, 189, 107, .18), inset 0 1px 0 rgba(255,255,255,.16) !important;
}

.btn:hover,
button:hover,
.detail-bubble:hover,
.mini-wa:hover,
.editor-link:hover,
.nav-cta:hover,
.catalogue-tab:hover,
.subcategory-tab:hover,
.gallery-nav:hover,
.editor-tab:hover,
.floating-whatsapp:hover {
  box-shadow: 0 16px 34px rgba(7,28,58,.18), 0 0 0 3px rgba(227,189,107,.08), inset 0 1px 0 rgba(255,255,255,.18) !important;
}

.light-sweep {
  display: none !important;
  animation: none !important;
}


/* === Header hover refix + always-on cursor aura ===
   Restores the previous site base, then stabilizes only the header/cursor conflict. */
.site-header,
.site-header * {
  cursor: auto;
}

.site-header a,
.site-header button,
.site-header .nav-toggle,
.site-header .brand {
  cursor: pointer;
}

.site-header .nav-links a:not(.nav-cta) {
  transform: none !important;
  will-change: color;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

.site-header .nav-links a:not(.nav-cta):hover,
.site-header .nav-links a:not(.nav-cta):focus-visible,
.site-header .nav-links a:not(.nav-cta).active {
  transform: none !important;
}

.site-header .nav-links a:not(.nav-cta)::after {
  pointer-events: none !important;
  transform-origin: left center !important;
  transition: transform .22s ease, opacity .22s ease !important;
  will-change: transform, opacity;
}

.site-header .nav-cta {
  transform: translateZ(0) !important;
  will-change: transform, box-shadow;
}

.site-header .nav-cta:hover,
.site-header .nav-cta:focus-visible {
  transform: translateY(-1px) translateZ(0) !important;
}

/* Keep the aura visible everywhere, but keep header hover calm and non-jittery. */
.cursor-glow,
.cursor-aura,
.cursor-ring,
.cursor-dot,
.cursor-trail-wrap,
.cursor-trail-particle {
  pointer-events: none !important;
}

.cursor-glow {
  position: fixed !important;
  left: 0 !important;
  top: 0 !important;
  width: 34rem !important;
  height: 34rem !important;
  border-radius: 999px !important;
  z-index: 20 !important;
  opacity: 0 !important;
  background:
    radial-gradient(circle at 43% 42%, rgba(255,255,255,.24) 0%, rgba(255,255,255,.10) 12%, transparent 24%),
    radial-gradient(circle, rgba(198,31,53,.24) 0%, rgba(198,31,53,.15) 25%, rgba(7,28,58,.13) 48%, rgba(227,189,107,.06) 62%, transparent 76%) !important;
  filter: blur(15px) saturate(1.16) !important;
  mix-blend-mode: multiply !important;
  transition: opacity .18s ease, width .2s ease, height .2s ease !important;
  will-change: transform, opacity !important;
}

.cursor-aura {
  position: fixed !important;
  left: 0 !important;
  top: 0 !important;
  width: 132px !important;
  height: 132px !important;
  border-radius: 999px !important;
  z-index: 21 !important;
  opacity: 0 !important;
  background: radial-gradient(circle, rgba(255,255,255,.34) 0%, rgba(198,31,53,.20) 31%, rgba(7,28,58,.14) 56%, transparent 76%) !important;
  filter: blur(7px) saturate(1.12) !important;
  mix-blend-mode: multiply !important;
  transition: opacity .16s ease, width .2s ease, height .2s ease !important;
  will-change: transform, opacity !important;
}

.cursor-ring {
  z-index: 22 !important;
  width: 38px !important;
  height: 38px !important;
  border: 1px solid rgba(198,31,53,.62) !important;
  background: rgba(255,255,255,.025) !important;
  box-shadow: 0 0 0 6px rgba(198,31,53,.045), 0 0 28px rgba(198,31,53,.15) !important;
  transition: opacity .15s ease, width .18s ease, height .18s ease, border-color .18s ease, background .18s ease !important;
}

.cursor-dot {
  z-index: 23 !important;
  width: 8px !important;
  height: 8px !important;
  background: #b91f32 !important;
  box-shadow: 0 0 18px rgba(185,31,50,.48) !important;
}

body.cursor-ready .cursor-glow { opacity: .96 !important; }
body.cursor-ready .cursor-aura { opacity: 1 !important; }
body.cursor-ready .cursor-ring { opacity: .92 !important; }
body.cursor-ready .cursor-dot { opacity: 1 !important; }

body.cursor-over-link .cursor-glow {
  width: 37rem !important;
  height: 37rem !important;
  opacity: 1 !important;
}
body.cursor-over-link .cursor-aura {
  width: 160px !important;
  height: 160px !important;
}
body.cursor-over-link .cursor-ring {
  width: 50px !important;
  height: 50px !important;
  border-color: rgba(7,28,58,.72) !important;
  background: rgba(198,31,53,.055) !important;
}
body.cursor-over-link .cursor-dot {
  background: #071c3a !important;
}

/* Header links: aura remains present, but it does not grow/shrink while moving across letters. */
body.cursor-over-header-nav .cursor-glow {
  width: 34rem !important;
  height: 34rem !important;
  opacity: .94 !important;
}
body.cursor-over-header-nav .cursor-aura {
  width: 132px !important;
  height: 132px !important;
  opacity: .96 !important;
}
body.cursor-over-header-nav .cursor-ring {
  width: 34px !important;
  height: 34px !important;
  border-color: rgba(255,255,255,.56) !important;
  background: rgba(255,255,255,.04) !important;
}
body.cursor-over-header-nav .cursor-dot {
  background: #ffffff !important;
  box-shadow: 0 0 18px rgba(255,255,255,.42) !important;
}

body.cursor-clicking .cursor-ring {
  width: 30px !important;
  height: 30px !important;
}

@media (pointer: coarse), (max-width: 760px), (prefers-reduced-motion: reduce) {
  .cursor-glow,
  .cursor-aura,
  .cursor-ring,
  .cursor-dot,
  .cursor-trail-wrap,
  .cursor-trail-particle {
    display: none !important;
  }
}

/* Category editor controls */
.category-edit-card {
  margin-top: 1rem;
}

.editor-note {
  color: var(--muted);
  font-size: .95rem;
  margin-top: -.35rem;
}

.category-editor-row {
  align-items: start;
}

.category-row-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 360px;
}

.category-row-actions button,
.category-row-actions .btn {
  min-height: 40px;
  padding: .72rem .9rem;
}

.category-row-actions button:disabled {
  opacity: .45;
  cursor: not-allowed;
  transform: none;
}

.category-subline {
  color: var(--muted);
  font-size: .95rem;
}

@media (max-width: 760px) {
  .category-row-actions {
    justify-content: flex-start;
    max-width: none;
  }
}


/* === Social link update === */
.footer-social-links,
.contact-social-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .6rem;
}

.footer-social-links {
  margin-top: .55rem;
}

.footer-social-links a,
.social-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.45rem;
  border-radius: 999px;
  border: 1px solid rgba(245,239,230,.16);
  background: linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
  color: #fff !important;
  font-weight: 900;
  letter-spacing: .02em;
  text-decoration: none !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 12px 26px rgba(0,0,0,.16);
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.footer-social-links a {
  gap: .5rem;
  padding: .72rem 1rem .72rem .82rem;
}

.footer-social-links .social-icon {
  display: inline-grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
}

.footer-social-links .social-icon svg {
  width: .92rem;
  height: .92rem;
  fill: currentColor;
}

.social-action {
  padding: .72rem 1rem;
}

.footer-social-links a:hover,
.social-action:hover {
  transform: translateY(-2px);
  border-color: rgba(216,181,109,.45);
  background: linear-gradient(135deg, rgba(198,31,53,.88), rgba(216,181,109,.24));
  box-shadow: 0 16px 34px rgba(0,0,0,.22), 0 0 0 1px rgba(216,181,109,.12), inset 0 1px 0 rgba(255,255,255,.16);
}

.contact-social-grid {
  margin-top: 1rem;
}

.social-action.whatsapp {
  background: linear-gradient(135deg, rgba(37,211,102,.95), rgba(13,132,70,.92));
}

.social-action.instagram,
.footer-social-links a[data-social-link="instagram"] {
  background: linear-gradient(135deg, rgba(198,31,53,.96), rgba(120,18,31,.96));
  border-color: rgba(198,31,53,.34);
  color: #fff !important;
}

.social-action.instagram:hover,
.footer-social-links a[data-social-link="instagram"]:hover {
  background: linear-gradient(135deg, rgba(216,47,70,.98), rgba(120,18,31,.98));
  border-color: rgba(216,181,109,.34);
}

.social-action.youtube {
  background: linear-gradient(135deg, rgba(198,31,53,.95), rgba(120,18,31,.95));
}

.social-link-disabled {
  opacity: .58;
}

/* === Product grid bubble size refinement === */
.product-card .product-meta {
  margin-bottom: .35rem;
}

.product-card .pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .42rem .88rem !important;
  border-radius: 999px !important;
  font-size: .78rem !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: .01em;
  box-shadow: 0 8px 18px rgba(198,31,53,.16), inset 0 1px 0 rgba(255,255,255,.18) !important;
}

.product-card h3 {
  font-size: clamp(1.05rem, 1.25vw, 1.35rem) !important;
  line-height: 1.28 !important;
  margin: .25rem 0 0.95rem !important;
}

.product-card .card-actions {
  gap: .55rem !important;
  margin-top: .15rem !important;
}

.product-card .card-actions a.detail-bubble,
.product-card .card-actions a.mini-wa {
  min-height: 36px !important;
  padding: .52rem .9rem !important;
  font-size: .9rem !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  box-shadow: 0 10px 22px rgba(198,31,53,.18), inset 0 1px 0 rgba(255,255,255,.16) !important;
}

.product-card .card-actions a.detail-bubble:hover,
.product-card .card-actions a.mini-wa:hover {
  box-shadow: 0 12px 26px rgba(198,31,53,.24), inset 0 1px 0 rgba(255,255,255,.18) !important;
}

@media (max-width: 640px) {
  .product-card .card-actions a.detail-bubble,
  .product-card .card-actions a.mini-wa {
    font-size: .86rem !important;
    padding: .5rem .82rem !important;
  }
}


/* === Product grid: quieter, less highlighted bubbles === */
.product-card .product-meta {
  margin-bottom: .25rem !important;
}

.product-card .pill {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: .34rem .72rem !important;
  min-height: 0 !important;
  border-radius: 999px !important;
  font-size: .72rem !important;
  line-height: 1 !important;
  font-weight: 750 !important;
  letter-spacing: 0 !important;
  background: rgba(185,31,50,.90) !important;
  color: #ffffff !important;
  border: 0 !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

.product-card h3 {
  position: relative !important;
  z-index: 2 !important;
  color: var(--navy) !important;
  font-size: clamp(1.12rem, 1.35vw, 1.45rem) !important;
  line-height: 1.25 !important;
  margin: .38rem 0 1rem !important;
  font-weight: 900 !important;
}

.product-card .card-actions {
  gap: .5rem !important;
  margin-top: 0 !important;
}

.product-card .card-actions a.detail-bubble,
.product-card .card-actions a.mini-wa {
  min-height: 32px !important;
  padding: .44rem .72rem !important;
  border-radius: 999px !important;
  font-size: .78rem !important;
  font-weight: 760 !important;
  line-height: 1 !important;
  background: rgba(185,31,50,.90) !important;
  color: #ffffff !important;
  border: 0 !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

.product-card .card-actions a.detail-bubble::after,
.product-card .card-actions a.mini-wa::after {
  display: none !important;
}

.product-card .card-actions a.detail-bubble:hover,
.product-card .card-actions a.mini-wa:hover {
  transform: translateY(-1px) !important;
  background: rgba(150,24,42,.95) !important;
  box-shadow: none !important;
}

.product-card .card-actions a.detail-bubble:active,
.product-card .card-actions a.mini-wa:active {
  transform: translateY(0) !important;
}

@media (max-width: 640px) {
  .product-card .pill {
    font-size: .7rem !important;
    padding: .32rem .65rem !important;
  }

  .product-card .card-actions a.detail-bubble,
  .product-card .card-actions a.mini-wa {
    font-size: .76rem !important;
    padding: .42rem .68rem !important;
  }
}

/* === Targeted photo brightness refinement ===
   Main hero, blog, and product visuals now stay premium/darkish without looking underexposed. */
.hero-showcase-image,
.card-img,
.gallery-main,
.gallery-main img {
  filter: saturate(1.04) contrast(1.02) brightness(1.04) !important;
}

.page-hero-blog {
  background:
    linear-gradient(115deg, rgba(6,12,22,.72) 0%, rgba(10,18,30,.64) 52%, rgba(10,18,30,.34) 100%),
    url("assets/images/blog-hero-premium.png") center/cover no-repeat !important;
}

.products-hero.products-hero-custom {
  background:
    linear-gradient(115deg, rgba(6,12,22,.74) 0%, rgba(10,18,30,.66) 52%, rgba(10,18,30,.34) 100%),
    url("assets/images/products-hero-premium.png") center/cover no-repeat !important;
}

/* === Cleaner premium category thumbnails === */
.home-category-pill {
  grid-template-columns: 138px 1fr !important;
  gap: 1.15rem !important;
}

.category-pill-media {
  width: 138px !important;
  height: 108px !important;
  border-radius: 18px !important;
  background: #0b1421 !important;
  border: 1px solid rgba(7,28,58,.10) !important;
  box-shadow: 0 16px 34px rgba(7,28,58,.13) !important;
}

.home-category-pill .category-pill-media img {
  object-fit: cover !important;
  filter: saturate(1.06) contrast(1.06) brightness(1.08) !important;
}

.home-category-pill:hover .category-pill-media img {
  filter: saturate(1.12) contrast(1.08) brightness(1.12) !important;
}

@media (max-width: 720px) {
  .home-category-pill {
    grid-template-columns: 1fr !important;
  }

  .category-pill-media {
    width: 100% !important;
    height: 150px !important;
  }
}


/* === Clean category section cards: image + section name only === */
.home-category-pill.category-pill-clean {
  grid-template-columns: 138px minmax(0, 1fr) !important;
  align-items: center !important;
  min-height: 132px !important;
}

.home-category-pill.category-pill-clean .category-pill-copy {
  display: flex !important;
  align-items: center !important;
  min-width: 0 !important;
}

.home-category-pill.category-pill-clean strong {
  display: block !important;
  font-size: 1.15rem !important;
  line-height: 1.18 !important;
  letter-spacing: -.02em !important;
  overflow-wrap: anywhere !important;
}

.home-category-pill.category-pill-clean span {
  display: none !important;
}

@media (max-width: 720px) {
  .home-category-pill.category-pill-clean {
    grid-template-columns: 1fr !important;
  }

  .home-category-pill.category-pill-clean .category-pill-copy {
    justify-content: center !important;
    text-align: center !important;
  }
}


.live-admin-box {
  border: 1px solid rgba(167, 38, 54, 0.45);
  background: rgba(16, 27, 43, 0.92);
  color: #f5efe6;
  border-radius: 22px;
  padding: 22px;
  margin: 0 0 24px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.22);
}

.live-admin-box h2 {
  margin: 0 0 8px;
  color: #ffffff;
}

.live-admin-box p {
  color: rgba(245, 239, 230, 0.82);
}

.live-admin-box input[readonly] {
  opacity: 0.92;
  font-weight: 700;
}


.editor-live-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(16, 27, 43, 0.88);
  border: 1px solid rgba(245, 239, 230, 0.16);
  color: #f5efe6;
}

.editor-live-bar > div {
  flex: 1 1 260px;
}

.editor-live-bar strong {
  display: block;
  color: #ffffff;
}

.editor-live-bar small {
  display: block;
  color: rgba(245, 239, 230, 0.72);
  margin-top: 2px;
}

.editor-live-bar input {
  min-width: 180px;
  max-width: 240px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(245, 239, 230, 0.22);
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.editor-live-bar span {
  font-size: 0.86rem;
  color: rgba(245, 239, 230, 0.82);
}
