:root {
  /* CMYK Neon Edition */
  --c: #00e5ff;
  /* Cyan bright */
  --m: #ff007f;
  /* Magenta bright */
  --y: #ffea00;
  /* Yellow bright */
  --k: #08090b;
  /* Deep rich black */

  --bg: var(--k);
  --surface-base: 18, 22, 26;
  --surface: rgba(var(--surface-base), 0.5);
  --surface-hover: rgba(var(--surface-base), 0.8);
  --surface-border: rgba(255, 255, 255, 0.08);
  --surface-border-hover: rgba(255, 255, 255, 0.15);

  --text: #f4f7fa;
  --text-muted: #8b9bb4;

  --font-main: 'Outfit', system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Subte Noise overlay for paper texture */
.site-noise {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.8;
}

/* Minimal Scrollbars CMYK */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--m);
}

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

.narrow {
  max-width: 850px;
}

.position-relative {
  position: relative;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 9, 11, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--surface-border);
  transition: all 0.3s ease;
}

.header-cmyk-bar {
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--c), var(--m), var(--y), var(--c));
  background-size: 200% 100%;
  animation: cmyk-flow 5s linear infinite;
}

@keyframes cmyk-flow {
  0% {
    background-position: 0% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.brand strong {
  font-weight: 800;
}

.brand .logo {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
}

.site-nav {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.2s;
  position: relative;
}

.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

/* CMYK dot indicator on hover */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--c);
  transition: 0.2s;
}

.nav-link:hover::after {
  transform: translateX(-50%) scale(1);
}

.nav-link:nth-child(2):hover::after {
  background: var(--m);
}

.nav-link:nth-child(3):hover::after {
  background: var(--y);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--surface-border);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  cursor: pointer;
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.75rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: #fff;
  color: #000;
}

.btn-primary:hover {
  background: var(--text);
  transform: translateY(-2px);
}

.glass-btn {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid var(--surface-border);
  backdrop-filter: blur(8px);
}

.glass-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: transparent;
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.3);
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.btn-whatsapp:hover {
  background: rgba(37, 211, 102, 0.1);
  border-color: #25D366;
}

/* THE OFFSET MISREGISTRATION EFFECT (WOW FACTOR) */
.offset-hover {
  transition: all 0.2s ease;
}

.offset-hover:hover {
  transform: translate(-2px, -2px);
  box-shadow:
    3px 3px 0 var(--m),
    -3px -3px 0 var(--c),
    6px 6px 15px rgba(0, 0, 0, 0.5);
  color: #000;
}

/* HERO SECTION */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 6rem;
  background: radial-gradient(circle at 70% 30%, rgba(0, 229, 255, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 30% 70%, rgba(255, 0, 127, 0.08) 0%, transparent 40%),
    linear-gradient(rgba(8, 9, 11, 0.8), rgba(8, 9, 11, 1)),
    url('./assets/fondo.webp') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin: 0;
  letter-spacing: -1.5px;
}

/* Roller text animation */
.rotator {
  display: inline-block;
  position: relative;
  height: 1.1em;
  overflow: visible;
  min-width: 5ch;
}

.rotator-word {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(40px) rotateX(-90deg);
  transform-origin: bottom center;
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.rotator-word.is-active {
  opacity: 1;
  transform: translateY(0) rotateX(0deg);
}

.rotator-word:nth-child(1) .dot {
  color: var(--c);
}

.rotator-word:nth-child(2) .dot {
  color: var(--m);
}

.rotator-word:nth-child(3) .dot {
  color: var(--y);
}

.hero .lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-muted);
  max-width: 650px;
  font-weight: 300;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* REGISTRATION MARKS (Imprenta feel) */
.reg-mark {
  position: absolute;
  width: 40px;
  height: 40px;
  pointer-events: none;
  opacity: 0.3;
}

.reg-mark::before,
.reg-mark::after {
  content: '';
  position: absolute;
  background: #fff;
}

.reg-mark::before {
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
}

.reg-mark::after {
  width: 1px;
  height: 100%;
  top: 0;
  left: 50%;
}

.reg-mark::before {
  box-shadow: 0 0 4px var(--c);
}

.reg-mark::after {
  box-shadow: 0 0 4px var(--m);
}

.reg-mark.top-left {
  top: 40px;
  left: 40px;
}

.reg-mark.top-right {
  top: 40px;
  right: 40px;
}

.reg-mark.bottom-left {
  bottom: 40px;
  left: 40px;
}

.reg-mark.bottom-right {
  bottom: 40px;
  right: 40px;
}

/* Adding outer rings to registration marks */
.reg-mark {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  width: 30px;
  height: 30px;
}

.reg-mark::before {
  width: 46px;
  left: -8px;
}

.reg-mark::after {
  height: 46px;
  top: -8px;
}

/* BASE SECTIONS */
.section {
  padding: 6rem 0;
  position: relative;
}

.section.alt {
  background: rgba(255, 255, 255, 0.015);
  border-top: 1px solid var(--surface-border);
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  margin: 0 0 1rem;
  letter-spacing: -1px;
  display: inline-block;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 0 3rem;
}

/* HIGHLIGHT CMY */
.highlight-cmy {
  background: linear-gradient(90deg, #fff 30%, var(--c) 70%, var(--m) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* CARDS GLASSMORPHISM */
.glass-card {
  background: var(--surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.glass-card:hover {
  background: var(--surface-hover);
  border-color: var(--surface-border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

/* SERVICES */
.grid {
  display: grid;
  gap: 1.5rem;
}

.cards {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card .card-img-wrapper {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover img {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  color: #000;
  letter-spacing: 1px;
}

.c-overlay {
  background: rgba(0, 229, 255, 0.8);
}

.m-overlay {
  background: rgba(255, 0, 127, 0.8);
}

.y-overlay {
  background: rgba(255, 234, 0, 0.8);
}

.k-overlay {
  background: rgba(255, 255, 255, 0.8);
}

.card-content {
  padding: 1.5rem;
}

.card-content h3 {
  font-size: 1.3rem;
  margin: 0 0 0.5rem;
  font-weight: 700;
}

.card-content p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  white-space: pre-line;
}

/* CATEGORY TABS */
.category-tabs {
  display: flex;
  gap: 0.75rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.category-tabs::-webkit-scrollbar {
  height: 4px;
}

.tab {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  border: 1px solid var(--surface-border);
  padding: 0.6rem 1.25rem;
  border-radius: 100px;
  font-weight: 600;
  font-family: inherit;
  font-size: 0.95rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.tab:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.tab.active {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.category-pane {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.category-pane.active {
  display: block;
}

.product-grid {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  display: grid;
  gap: 1.5rem;
}

.product-card {
  @extend .glass-card;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--surface-border);
  transition: all 0.3s;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--surface-border-hover);
  background: var(--surface-hover);
}

.product-card .img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover img {
  transform: scale(1.08);
}

.product-info {
  padding: 1.25rem 1.25rem 0.5rem;
  flex: 1;
}

.product-info h4 {
  font-size: 1.2rem;
  margin: 0;
  font-weight: 700;
}

.product-info .desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card .actions {
  padding: 1rem 1.25rem 1.25rem;
}

.btn-sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  width: 100%;
  border-radius: 8px;
}

/* HISTORY */
.history-content {
  padding: 2.5rem;
}

.history-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.history-content p:last-child {
  margin-bottom: 0;
}

.history-content strong {
  color: #fff;
  font-weight: 600;
}

/* CONTACT */
.contact-wrap {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
}

.contact-form {
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c), var(--m));
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

.input-group.full {
  grid-column: 1 / -1;
}

.input-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--surface-border);
  color: #fff;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.2s;
  outline: none;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.5);
}

/* Cool focus highlight */
.input-highlight {
  position: absolute;
  bottom: 0;
  left: 10px;
  width: 0;
  height: 2px;
  background: var(--c);
  transition: 0.3s;
}

.input-group input:focus~.input-highlight,
.input-group textarea:focus~.input-highlight {
  width: calc(100% - 20px);
}

.contact-form .actions {
  grid-column: 1 / -1;
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.info-card {
  padding: 2.5rem;
  height: 100%;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-icon {
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--surface-border);
}

.contact-info strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.contact-info a,
.contact-info span {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.2s;
}

.contact-info a:hover {
  color: var(--c);
}

/* FOOTER */
.site-footer {
  background: #040506;
  border-top: 1px solid var(--surface-border);
  padding: 3rem 0;
  font-size: 0.9rem;
  position: relative;
}

.footer-cmyk-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--c), var(--m), var(--y));
  opacity: 0.3;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: #fff;
}

.copyright,
.credits {
  color: var(--text-muted);
}

.ms-credit {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: 0.2s;
}

.ms-credit:hover {
  color: var(--c);
  border-color: var(--c);
}

/* MODAL */
.modal[aria-hidden="true"][hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
}

.glass-modal {
  position: relative;
  background: var(--surface-hover);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  max-width: min(900px, 92vw);
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--surface-border);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
  z-index: 10;
}

.modal-close:hover {
  background: var(--m);
  border-color: var(--m);
  transform: rotate(90deg);
}

.modal-body {
  display: grid;
  grid-template-columns: 350px 1fr;
  overflow-y: auto;
  max-height: 100%;
}

.modal-media {
  position: relative;
  background: #000;
  overflow: hidden;
}

.modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.9;
}

.scanline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: linear-gradient(to bottom, transparent, rgba(0, 229, 255, 0.3), transparent);
  animation: scan 3s linear infinite;
  pointer-events: none;
}

@keyframes scan {
  0% {
    top: -20px;
  }

  100% {
    top: 100%;
  }
}

.modal-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.cmyk-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 0.3rem 0.6rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  margin-bottom: 1rem;
  align-self: flex-start;
}

.modal-product-title {
  font-size: 2rem;
  margin: 0 0 1rem;
  font-weight: 800;
  line-height: 1.1;
}

.desc-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin: 0 0 0.5rem;
}

#pmDesc {
  margin: 0 0 1.5rem;
  color: #ddd;
  font-size: 1.05rem;
  white-space: pre-line;
}

.modal-actions {
  margin-top: auto;
  padding-top: 2rem;
  display: flex;
  gap: 1rem;
}

/* FEATURES LIST */
.features-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin: 0 0 0.8rem;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.feature-item {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.95rem;
  color: #ddd;
}

.feature-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--c);
  font-weight: 800;
}

/* ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

[data-animate] {
  opacity: 0;
  visibility: hidden;
}

[data-animate="fade-up"] {
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-animate="slide-up"] {
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.is-visible {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .modal-body {
    grid-template-columns: 1fr;
  }

  .modal-media {
    aspect-ratio: 16/9;
    width: 100%;
    min-height: 200px;
  }

  .modal-content {
    padding: 1.5rem;
  }

  .modal-product-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .section {
    padding: 4rem 0;
  }

  .site-nav {
    position: fixed;
    top: 73px;
    left: 0;
    width: 100%;
    background: #08090b;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-100%);
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    border-bottom: 1px solid var(--surface-border);
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-toggle {
    display: flex;
  }

  .hamburger {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    position: relative;
    transition: 0.3s;
  }

  .hamburger::before,
  .hamburger::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
    left: 0;
  }

  .hamburger::before {
    top: -6px;
  }

  .hamburger::after {
    bottom: -6px;
  }

  .nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
  }

  .nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
  }

  .nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
  }
}

/* Carousel Buttons Hover */
.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.8) !important;
  transform: scale(1.1);
}

.carousel-btn:active {
  transform: scale(0.95);
}