:root {
  --primary: #0ea5e9;
  --dark: #0f172a;
  --light: #f8fafc;
  --primary-color: #6366f1;
  --primary-hover: #4f46e5;
  --secondary-color: #0ea5e9;
  --accent-color: #f59e0b;
  --darker-accent: #946008;
  --success-color: #10b981;
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --border-color: #e2e8f0;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --bone: #e2e2e2;
  --new-bone: #f0ede3;
  --navy: #1a365d;
  --navy-light: #2d4a6b;
  --sky: #0ea5e9;
  --emerald: #10b981;
  --coral: #f97316;
  --rose: #e11d48;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  /* warm bone */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  /* Adjust opacity */
  z-index: -1;
  pointer-events: none;
  /* Allows interaction with page elements */
}

body {
  font-family: "Inter", sans-serif;
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* Creates a parallax effect */
  background-repeat: no-repeat;
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
}

.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -2;
  pointer-events: none;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  background: rgba(0, 0, 0, 0.212);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: var(--dark);
  padding: 0.5rem 1rem;
  background-color: var(--accent-color);
  border: 1px solid transparent;
  font-family: "Inter", sans-serif;
  border-radius: 25px;
  font-weight: 600;
  transition: 0.2s ease;
}

nav a:hover {
  color: var(--bg-primary);
  background: var(--dark);
}

.logo {
  font-size: 1.75rem;
  font-weight: 800;
  font-family: "Inter", sans-serif;
  letter-spacing: -0.025em;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  font-family: "Oswald", sans-serif;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  padding: 1rem;
  animation: fadeSlideIn 1s ease forwards;
  opacity: 0;
}

.typewriter {
  font-size: clamp(3rem, 6vw, 4.4rem);
  font-weight: bolder;
  font-family: "Oswald", sans-serif;
  color: var(--light);
  border-radius: 10px;
  padding: 1rem;
}

.typewriter-fixed {
  display: none;
  font-size: clamp(3rem, 6vw, 4.4rem);
  font-weight: bolder;
  font-family: "Oswald", sans-serif;
  color: var(--light);
  border-radius: 10px;
  padding: 1rem;
}

@keyframes fadeSlideIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.track-section {
  padding: 6rem 2rem;
  color: white;
  text-align: center;
  font-family: "Inter", sans-serif;
  position: relative;
  z-index: 1;
}

.track-section::before {
  content: "";
  position: absolute;
  inset: 0;
  /* same as top: 0; left: 0; bottom: 0; right: 0 */
  background: rgba(0, 0, 0, 0.219);
  /* semi-transparent dark overlay */
  z-index: 0;
}

.track-section>* {
  position: relative;
  z-index: 1;
}

.track-section p {
  font-size: 1.25rem;
  color: var(--bg-secondary);
  margin: 1rem auto;
}

.track-section form {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.track-section input {
  padding: 0.8rem 1rem;
  border-radius: 25px;
  border: none;
  margin-right: 1rem;

  min-width: 280px;
  font-size: 1.2rem;
  color: #475569;
  transition: border-color 0.3s ease;
}

.track-section input:focus {
  outline: none;
  border-color: var(--accent-color);
  background: white;
}

.track-section input::placeholder {
  color: var(--text-muted);
}

.track-section button.cta-btn {
  padding: 1rem 2.5rem;
  background-color: var(--accent-color);
  color: var(--dark);
  border-radius: 25px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.track-section button.cta-btn:hover {
  background-color: var(--text-primary);
  color: var(--light);
}

.track-section button.cta-btn-secondary {
  padding: 1rem 2.5rem;
  background-color: transparent;
  color: white;
  border-radius: 12px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.track-section button.cta-btn-secondary::after {
  content: "";
  display: block;
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 0.7rem;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.track-section button.cta-btn-secondary:hover {}

.track-section button.cta-btn-secondary:hover::after {
  transform: scaleX(1);
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

.loading {
  position: relative;
  overflow: hidden;
}

.loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

@media (max-width: 768px) {
  header {
    padding: 1rem;
  }

  .logo {
    font-size: 1.5rem;
  }

  nav {
    gap: 1rem;
  }

  nav a {
    font-size: 0.9rem;
  }

  .track-section {
    padding: 4rem 1rem;
  }

  .track-section form {
    flex-direction: column;
    align-items: center;
  }

  .track-section input,
  .track-section button.cta-btn {
    width: 100%;
    max-width: 400px;
  }

  .typewriter {
    display: none;
  }

  .typewriter-fixed {
    display: block;
    font-size: clamp(3rem, 6vw, 4.4rem);
    font-weight: bolder;
    font-family: "Oswald", sans-serif;
    color: var(--light);
    border-radius: 10px;
    padding: 1rem;
  }
}

.shipping-services {
  display: flex;
  justify-content: center;
  gap: 2rem;
  background-color: #0f172a7e;
  margin: auto;
  padding: 2rem;
  font-family: "Inter", sans-serif;
  flex-wrap: wrap;
}

.section-title {
  width: 100%;
  text-align: center;
  font-size: 2.85rem;
  font-weight: 700;
  font-family: "oswald";
  color: var(--bg-secondary);
  margin-bottom: 2rem;
}

.section-subtitle {
  width: 100%;
  text-align: center;
  font-size: 1.85rem;
  font-weight: 700;
  font-family: "oswald";
  color: var(--bg-secondary);
  margin-bottom: 2rem;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 200px;
  gap: 1rem;
  border-radius: 12px;
  justify-content: space-between;
}

.card-container {
  display: flex;
  gap: 2rem;
  /* This adds space between cards */
  justify-content: center;
  /* Optional: center horizontally */
  flex-wrap: wrap;
  /* Optional: allow wrapping on smaller screens */
}

.card:nth-child(2) {
  color: var(--dark);
}

.card:nth-child(2) .card-icon {
  color: var(--bone);
}

h3 {
  font-size: 2rem;
  font-family: "Inter";
  margin-bottom: 0.75rem;
  color: var(--accent-color);
}

.card:nth-child(2) h3 {
  color: var(--accent-color);
}

.card-description {
  color: var(--bone);
  font-size: 1rem;
  line-height: 1.5;
}

.card:nth-child(2) p {
  color: var(--bone);
}

.track-section input:focus {
  border-color: var(--primary);
  outline: none;
}

.track-section input::placeholder {
  color: var(--text-muted);
}

.your-packs {
  color: var(--bg-primary);
}

.close {
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  color: var(--accent-color);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 9999;
  transition: 0.2s ease;
}

.close:hover {
  transform: scale(1.1);
}

.close:hover {
  color: var(--light);
}

.shipping-result {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: var(--bone);
}








.logo-section {
  overflow: hidden;
  background: rgba(0, 0, 0, 0.342);
  padding: 2rem;
  position: relative;
  width: 100%;
}

.logo-slider {
  display: flex;
  gap: 60px;
  left: 0;
  animation: scrollLeft 20s linear infinite;
  align-items: center;
  white-space: nowrap;
}

.logo-slider img {
  width: 150px;
  height: 150px;
  border-radius: 12px;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
  flex-shrink: 0;
}

.sub-title {
  font-family: "oswald";
  color: var(--bone);
  font-weight: 600;
  font-size: 2rem;
  margin-top: 2rem;
  text-transform: uppercase;
  text-align: left;
  display: none;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.logo-slider:hover {
  animation-play-state: paused;
}

label {
  color: var(--text-muted);
  font-weight: 600;
  text-align: left;
  margin-bottom: 0;
}

.list-text {
  color: #6b7280;
  margin-bottom: 2rem;
}

input[type="text"],
input[type="number"],
input[type="tel"],
input[type="email"],
input[type="date"],
input[type="datetime-local"],
select {
  width: 100%;
  /* 🧠 This was missing */
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 8px;
  margin-top: 0;
  background-color: transparent;
  border: var(--text-primary) 1px solid;
  font-family: "Inter", sans-serif;
  color: var(--text-muted);
  font-size: 1rem;
  transition: border-color 0.3s;
  box-sizing: border-box;
}

input[type="text"]:focus,
input[type="date"]:focus,
input[type="number"]:focus,
input[type="datetime-local"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
select:focus {
  outline: none;
  border-color: var(--accent-color);
  background: var(--dark);
  transform: translateY(-1px);
}

input[type="text"],
input[type="search"],
input[type="tel"],
input[type="email"],
::placeholder {
  color: var(--slate-400);
  font-weight: 400;
}

.input-with-icon {
  position: relative;
  margin-top: 0.3rem;
}

.cta-btn {
  padding: 1rem 2.5rem;
  background-color: var(--accent-color);
  color: var(--dark);
  border-radius: 25px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  margin-top: 1rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: var(--darker-accent);
  color: var(--light);
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Hide spinner buttons on Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.modal.active {
  display: flex;
}

.modal-content {
  display: flex;
  flex-direction: column;
  background-color: var(--dark);
  padding: 2rem;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  text-align: left;
  color: #374151;
  margin: 0;
}

.modal-content h2 {
  color: var(--text-muted);
  font-weight: 600;
  text-align: left;
  margin-bottom: 2rem;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon input {
  padding-right: 2.5rem;
}

.flag-icon {
  position: absolute;
  right: 10px;
  bottom: 50%;
  width: 24px;
  height: 16px;
  background-size: cover;
}

.flag-icon.usa {
  background-image: url("https://flagcdn.com/us.svg");
}

.flag-icon.curacao {
  background-image: url("https://flagcdn.com/cw.svg");
}

.flag-icon.none {
  display: none;
}

.error {
  font-size: 1rem;
  color: #f87171;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
}

.cssbuttons-io-button {
  background: var(--accent-color);
  color: var(--dark);
  font-family: inherit;
  padding: 0.35em;
  padding-left: 1.2em;
  font-size: 17px;
  font-weight: 500;
  border-radius: 25px;
  border: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  box-shadow: inset 0 0 1.6em -0.6em var(--accent-color);
  overflow: hidden;
  position: relative;
  height: 2.8em;
  padding-right: 3.3em;
  cursor: pointer;
}

.cssbuttons-io-button .icon {
  background: var(--dark);
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2em;
  width: 2.2em;
  border-radius: 25px;
  box-shadow: 0.1em 0.1em 0.6em 0.2em var(--accent-color);
  right: 0.3em;
  transition: all 0.3s;
}

.cssbuttons-io-button:hover .icon {
  width: calc(100% - 0.6em);
}

.cssbuttons-io-button .icon svg {
  width: 1.1em;
  transition: transform 0.3s;
  color: var(--accent-color);
}

.cssbuttons-io-button:hover .icon svg {
  transform: translateX(0.1em);
}

.cssbuttons-io-button:active .icon {
  transform: scale(0.95);
}

.footer-logo {
  all: unset;
  /* 🔥 corta herencia visual */
  font-family: "afacad";
  font-size: 2rem !important;
  font-weight: bold;
  letter-spacing: -0.5px;
  color: var(--saas-logo-color);
  cursor: pointer;
}

.modal-title {
  font-size: 2.1rem;
  color: var(--accent-color);
  font-weight: 800;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3000;
}

.newsModalMessage {
  white-space: pre-wrap;
  text-align: justify;
  align-items: justify;
  color: var(--light);
}

.modal-content.fade-in {
  animation: fadeInScale 0.25s ease;
}

.news-modal-content {
  display: flex;
  position: relative;
  flex-direction: column;
  background-color: var(--dark);
  padding: 2rem;
  border-radius: 12px;
  max-width: 450px;
  text-align: left;
  color: #374151;
  margin: 0;
}

.hidden {
  display: none !important;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.yellow-btn {
  padding: 0.85rem 1rem;
  background: var(--accent-color);
  color: var(--dark);
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 2rem;
  width: 100%;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  transition: background 0.3s;
}

.yellow-btn:hover {
  background: var(--darker-accent);
  color: var(--light);
  font-weight: 700;
}

/* News Navigation Styles */
.news-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.nav-btn {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.nav-btn:hover {
  background: var(--accent-color);
  color: var(--dark);
  transform: scale(1.1);
}

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

.news-counter {
  color: var(--light);
  font-weight: 600;
  font-size: 0.95rem;
  min-width: 50px;
  text-align: center;
}




/* =========================
   SHARED LAYOUT
   ========================= */
.layout-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* =========================
   FOOTER
   ========================= */
.site-footer {
  background-color: var(--dark);
  color: var(--bone);
  padding: 4rem 0;
  font-family: "Inter", sans-serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.footer-column h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--bone, #facc15);
}

.footer-column p,
.footer-column a {
  color: var(--text-muted);
  font-size: 1rem;
}

.footer-column p {
  margin-bottom: 1rem;
}

.footer-column a {
  display: block;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--accent-color);
}

.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-socials a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* =========================
   PROMO BANNER
   ========================= */
.promo-banner {
  background-color: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.25rem 0;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.promo-col {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Branding */
.promo-logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "afacad";
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-muted);
}

.promo-text,
.promo-link {
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.promo-link {
  text-decoration: underline;
  font-weight: 500;
}

.promo-link:hover,
.promo-logo:hover {
  color: var(--accent-color);
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 768px) {

  .footer-grid,
  .promo-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .news-modal-content {
    max-width: 90%;
  }

  .promo-col {
    flex-wrap: wrap;
  }
}

/* =========================
   MODAL FULL RESPONSIVE
   ========================= */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 9999;
}



/* Imagen adaptable */
#newsModalImage {
  width: 100%;
  height: auto;
  margin: 1.5rem 0;
  object-fit: cover;
  border-radius: 8px;
}

/* Navegación flexible */
.news-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* =========================
   IMPORT FROM DR RESPONSIVE
   ========================= */

.dominican-expansion {
  padding: 6rem 2rem;
}

.expansion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.expansion-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.lead {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.features {
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.cta-row {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* =========================
   TABLET
   ========================= */

@media (max-width: 1024px) {

  .expansion-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .feature-item {
    justify-content: center;
    text-align: left;
  }

  .cta-row {
    justify-content: center;
  }

  .expansion-visual {
    order: -1;
  }
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 768px) {

  .footer-grid,
  .promo-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .news-modal-content {
    max-width: 100%;
    max-height: 95vh;
    padding: 1.5rem;
    border-radius: 12px;
  }

  .modal-overlay {
    padding: 1rem;
    align-items: flex-end;
  }

  .news-modal-content {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .cta-row {
    flex-direction: column;
    width: 100%;
  }

  .cta-row button {
    width: 100%;
  }

  .feature-item {
    flex-direction: row;
    gap: 0.75rem;
  }

  .expansion-content h2 {
    font-size: 1.6rem;
  }

  .lead {
    font-size: 0.95rem;
  }
}

/* =========================
   SMALL PHONES
   ========================= */

@media (max-width: 480px) {

  .news-modal-content {
    padding: 1.2rem;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .feature-item div {
    text-align: center;
  }

}





/* SERVICES SECTION */
.our-services {
  padding: 6rem 2rem;
  text-align: center;
}

.section-subtitle {
  margin-top: 1rem;
  opacity: 0.8;
}

.services-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 20px;
  color: var(--bone);
  backdrop-filter: blur(10px);
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card i {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
}

/* IMPORT DR SECTION */
.import-dr {
  background-color: var(--accent-color);
  padding: 6rem 2rem;
}

.import-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
  gap: 3rem;
}

.import-text h2 {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
}

.import-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.import-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}


.cssbuttons-io-button-reverse {
  background: var(--dark);
  color: var(--accent-color);
  font-family: inherit;
  padding: 0.35em;
  padding-left: 1.2em;
  font-size: 17px;
  font-weight: 500;
  border-radius: 25px;
  border: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  box-shadow: inset 0 0 1.6em -0.6em var(--dark);
  overflow: hidden;
  position: relative;
  height: 2.8em;
  padding-right: 3.3em;
  cursor: pointer;
}

.cssbuttons-io-button-reverse .icon {
  background: var(--accent-color);
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2em;
  width: 2.2em;
  border-radius: 25px;
  box-shadow: 0.1em 0.1em 0.6em 0.2em var(--dark);
  right: 0.3em;
  transition: all 0.3s;
}

.cssbuttons-io-button-reverse:hover .icon {
  width: calc(100% - 0.6em);
}

.cssbuttons-io-button-reverse .icon svg {
  width: 1.1em;
  transition: transform 0.3s;
  color: var(--dark);
}

.cssbuttons-io-button-reverse:hover .icon svg {
  transform: translateX(0.1em);
}

.cssbuttons-io-button-reverse:active .icon {
  transform: scale(0.95);
}