/* ============================
   ROOT & BASE
============================ */
:root {
  --green: #16a34a;
  --green-dark: #0f7a35;
  --green-light: #dcfce7;
  --black: #0a0a0a;
  --white: #ffffff;
  --gray-100: #f8fafc;
  --gray-200: #f1f5f9;
  --gray-300: #e2e8f0;
  --gray-500: #64748b;
  --gray-700: #374151;
  --red: #ef4444;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.14);
  --radius: 12px;
  --radius-lg: 18px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui, sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  font-size: 15px;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.hidden {
  display: none !important;
}

/* ============================
   HEADER
============================ */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 80px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  backdrop-filter: blur(10px);
  /* box-shadow: 0 2px 20px rgba(237, 31, 31, 0.3); */
  border-bottom: 2px solid #27cfb8;
  z-index: 1000;
}

.logo {
  font-weight: 800;
  font-size: 36px;
  letter-spacing: 0.5px;
  cursor: pointer;
}

.tagline {
  font-size: 18px;
  color: #000;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.3px;
  display: none;
}

@media (min-width: 600px) {
  .tagline {
    display: block;
  }
}

.nav-btn {
  background: var(--green);
  color: var(--white);
  padding: 9px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition);
  white-space: nowrap;
}
.nav-btn:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

/* ============================
   HERO
============================ */
.hero {
  height: 100vh;
  min-height: 580px;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: var(--white);
  margin-top: 56px;
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
}
.video-skeleton {
  width: 100%;
  height: 100vh;
  background: linear-gradient(90deg, #1a1a1a 25%, #2a2a2a 37%, #1a1a1a 63%);
  background-size: 400% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(22, 163, 74, 0.18) 60%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 680px;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(22, 163, 74, 0.9);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.hero-content h1 {
  font-size: clamp(26px, 5vw, 46px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-content p {
  font-size: clamp(13px, 2vw, 16px);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 28px;
  line-height: 1.7;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-btn {
  background: var(--green);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(22, 163, 74, 0.45);
}
.hero-btn:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(22, 163, 74, 0.55);
}

/* ============================
   BENEFITS SECTION
============================ */
.benefits-section {
  padding: 70px 20px;
  background: var(--gray-100);
}

.benefits-section .container {
  text-align: center;
}

.benefits-section h2,
.section h2,
.product-section .section-title {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
}

.benefits-section .subtext {
  font-size: 14px;
  color: var(--gray-500);
  max-width: 720px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.benefit-card {
  background: var(--white);
  padding: 22px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  font-size: 14pxpx;
  font-weight: 400;
  text-align: left;
  line-height: 1.7;
  border: 1px solid var(--gray-300);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  cursor: pointer;
}
.benefit-card b {
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--black);
}
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}

/* ============================
   WHY TRUST US
============================ */
.section {
  padding: 60px 20px;
  text-align: center;
  background: var(--gray-100);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  margin-top: 28px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.trust-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: left;
  font-size: 13.5px;
  line-height: 1.7;
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow var(--transition),
    transform var(--transition);
  cursor: pointer;
}
.trust-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.trust-card b {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  color: var(--green-dark);
}

/* ============================
   PRODUCT SECTION
============================ */
.product-section {
  padding: 60px 20px;
  background: var(--gray-100);
}

.product-section .section-title {
  text-align: center;
  margin-bottom: 32px;
}

.product-box {
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--gray-300);
}

@media (min-width: 768px) {
  .product-box {
    flex-direction: row;
    align-items: stretch;
  }
}

.product-img-wrap {
  flex: 1;
  min-height: 280px;
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.product-img-wrap:hover img {
  transform: scale(1.03);
}

.product-info {
  flex: 1;
  padding: 28px 24px;
}

.product-info h2 {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  margin-bottom: 10px;
}

.product-desc {
  color: var(--gray-500);
  font-size: 13.5px;
  margin-bottom: 22px;
  line-height: 1.7;
}

/* VARIANT CARDS */
.variant-section,
.qty-section {
  margin-bottom: 20px;
}

.variant-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 10px;
}

.variant-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.variant-card {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 12px 18px;
  cursor: pointer;
  transition: all var(--transition);
  flex: 1;
  min-width: 120px;
}
.variant-card input[type="radio"] {
  accent-color: var(--green);
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.variant-card.active {
  border-color: var(--green);
  background: var(--green-light);
}
.variant-card:hover {
  border-color: var(--green);
}
.variant-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.var-size {
  font-weight: 700;
  font-size: 14px;
}
.var-price {
  font-size: 15px;
  font-weight: 800;
  color: var(--green);
}

/* QUANTITY CONTROLS */
.qty-controls {
  display: flex;
  align-items: center;
  gap: 0;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius);
  overflow: hidden;
  width: fit-content;
}

.qty-btn {
  background: var(--gray-200);
  border: none;
  width: 42px;
  height: 42px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
  color: var(--black);
}
.qty-btn:hover {
  background: var(--gray-300);
}

.qty-display {
  width: 52px;
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  display: inline-block;
}

/* PRICE SUMMARY (PRODUCT CARD) */
.price-summary {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin: 18px 0;
  border: 1px solid var(--gray-300);
}

.price-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--gray-700);
  padding: 4px 0;
}

.total-row {
  border-top: 1px solid var(--gray-300);
  margin-top: 6px;
  padding-top: 8px;
  font-weight: 800;
  font-size: 15px;
  color: var(--black);
}

.buy-btn {
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(22, 163, 74, 0.35);
  margin-top: 6px;
}
.buy-btn:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(22, 163, 74, 0.45);
}
.buy-btn:active {
  transform: translateY(0);
}

/* ============================
   CART SECTION
============================ */
.cart-section {
  padding: 50px 20px;
  background: var(--white);
}

.cart-section h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 24px;
  text-align: center;
}

.cart-items {
  max-width: 700px;
  margin: 0 auto 20px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: var(--gray-100);
  border-radius: var(--radius);
  margin-bottom: 12px;
  border: 1px solid var(--gray-300);
  flex-wrap: wrap;
  gap: 8px;
}

.cart-item-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cart-item-name {
  font-weight: 700;
  font-size: 14px;
}
.cart-item-detail {
  font-size: 12px;
  color: var(--gray-500);
}

.cart-item-price {
  font-weight: 800;
  font-size: 16px;
  color: var(--green);
}

.cart-remove-btn {
  background: transparent;
  border: 1px solid var(--red);
  color: var(--red);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 12px;
  cursor: pointer;
  transition: all var(--transition);
  width: auto;
  margin-top: 0;
}
.cart-remove-btn:hover {
  background: var(--red);
  color: white;
  transform: none;
  box-shadow: none;
}

.cart-summary {
  max-width: 700px;
  margin: 0 auto 20px;
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 16px 20px;
  border: 1px solid var(--gray-300);
  font-size: 14px;
}

.cart-checkout-btn {
  max-width: 700px;
  display: block;
  margin: 0 auto;
}

/* ============================
   TRUST BAR
============================ */
.trust {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--green);
  padding: 18px 20px;
  color: white;
  font-weight: 600;
  font-size: 14px;
}

/* ============================
   CHECKOUT
============================ */
.checkout {
  padding: 60px 20px;
  background: var(--gray-100);
}

.checkout-container {
  max-width: 600px;
}

.checkout h2 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  margin-bottom: 28px;
  text-align: center;
}

/* ORDER SUMMARY BOX */
.order-summary-box {
  background: var(--white);
  border: 2px solid var(--green-light);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 24px;
}

.summary-title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 10px;
  color: var(--green-dark);
}

.summary-content .summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  padding: 4px 0;
  color: var(--gray-700);
}

.summary-content .summary-total {
  border-top: 1px solid var(--gray-300);
  margin-top: 8px;
  padding-top: 8px;
  font-weight: 800;
  font-size: 15px;
  color: var(--black);
  display: flex;
  justify-content: space-between;
}

.no-cart-msg {
  font-size: 13px;
  color: var(--gray-500);
}

/* FORM */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

input[type="text"],
input[type="tel"],
select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  color: var(--black);
  background: var(--white);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  cursor: text;
  appearance: none;
}

select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748b' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

input[type="text"]:focus,
input[type="tel"]:focus,
select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.12);
}

.error {
  color: var(--red);
  font-size: 12px;
  margin-top: 4px;
  display: block;
  font-weight: 500;
}

.hint {
  font-size: 12px;
  color: var(--green);
  margin-top: 4px;
  display: block;
  font-weight: 500;
}

/* FINAL PRICE BOX */
.final-price-box {
  background: var(--white);
  border: 2px solid var(--green-light);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 20px 0;
}

.fp-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 5px 0;
  color: var(--gray-700);
}

.fp-total {
  border-top: 2px solid var(--green-light);
  margin-top: 8px;
  padding-top: 10px;
  font-weight: 800;
  font-size: 17px;
  color: var(--black);
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--green);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  font-family: "Poppins", sans-serif;
  box-shadow: 0 4px 18px rgba(22, 163, 74, 0.4);
  margin-top: 4px;
}
.submit-btn:hover:not(:disabled) {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(22, 163, 74, 0.5);
}
.submit-btn:disabled {
  background: #86efac;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ============================
   MODAL
============================ */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
}

.modal-box {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  max-width: 380px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  animation: popIn 0.3s ease;
}

@keyframes popIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.modal-box h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.modal-box p {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.modal-btn {
  background: var(--green);
  color: white;
  border: none;
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
  font-family: "Poppins", sans-serif;
  width: auto;
}
.modal-btn:hover {
  background: var(--green-dark);
}

/* ============================
   CONFIRMATION MODAL
============================ */
.confirm-modal-box {
  max-width: 440px;
  padding: 36px 28px 28px;
  text-align: left;
}

.confirm-modal-box h2 {
  text-align: center;
}

.confirm-modal-box p {
  text-align: center;
}

.confirm-details {
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 20px;
}

.confirm-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  padding: 5px 0;
  border-bottom: 1px solid var(--gray-300);
  color: var(--gray-700);
}

.confirm-row:last-child {
  border-bottom: none;
}

.confirm-label {
  font-weight: 600;
  min-width: 70px;
  color: var(--gray-700);
}

.confirm-value {
  text-align: right;
  word-break: break-word;
}

.confirm-total-row {
  margin-top: 4px;
  padding-top: 8px;
  font-size: 15px;
  font-weight: 800;
  color: var(--black);
  border-top: 2px solid var(--green-light) !important;
  border-bottom: none !important;
}

.confirm-total-val {
  color: var(--green-dark);
  font-weight: 800;
}

.confirm-btn-group {
  display: flex;
  gap: 12px;
}

.confirm-back-btn {
  background: var(--gray-300);
  color: var(--black);
  flex: 1;
}

.confirm-back-btn:hover {
  background: var(--gray-500);
  color: var(--white);
}

.confirm-ok-btn {
  flex: 1;
  background: var(--green);
}

.confirm-ok-btn:hover {
  background: var(--green-dark);
}

.confirm-ok-btn:disabled {
  background: #86efac;
  cursor: not-allowed;
}

/* ============================
   SUCCESS MODAL CLOSE BUTTON
============================ */
.modal-box {
  position: relative;
}

.modal-close-btn {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 18px;
  color: var(--gray-500);
  cursor: pointer;
  line-height: 1;
  padding: 4px 6px;
  border-radius: 50%;
  transition:
    background var(--transition),
    color var(--transition);
}

.modal-close-btn:hover {
  background: var(--gray-200);
  color: var(--black);
}

/* ============================
   SCROLL TO TOP
============================ */
.scroll-top-btn {
  position: fixed;
  bottom: 28px;
  right: 24px;
  background: var(--green);
  color: white;
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(22, 163, 74, 0.4);
  transition: all var(--transition);
  z-index: 999;
  line-height: 1;
}
.scroll-top-btn.visible {
  display: flex;
}
.scroll-top-btn:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 22px rgba(22, 163, 74, 0.5);
}

/* ============================
   FOOTER
============================ */
.footer {
  text-align: center;
  padding: 36px 20px;
  background: #0a0a0a;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13.5px;
  line-height: 2;
}

.footer-logo {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.fb-link {
  display: inline-block;
  color: #60a5fa;
  text-decoration: none;
  font-weight: 600;
  margin: 4px 0;
  transition: color var(--transition);
}
.fb-link:hover {
  color: #93c5fd;
}

.copyright {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

/* ============================
   BUTTON CURSOR GLOBAL
============================ */
button,
a,
label,
select,
input[type="radio"],
input[type="checkbox"],
.variant-card,
.nav-btn {
  cursor: pointer;
}

input[type="text"],
input[type="tel"] {
  cursor: text;
}
/* Ingredients Section */
.ingredients-section {
  padding: 60px 20px;
  background: #fff;
}

.ingredients-section h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #222;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  max-width: 1100px;
  margin: auto;
}

.ingredient-item {
  background: #f8f8f8;
  padding: 15px 18px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  cursor: pointer;
}

.ingredient-item:hover {
  transform: translateY(-3px);
  background: #fff3e0;
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 480px) {
  .header {
    padding: 12px 16px;
  }
  .logo {
    font-size: 17px;
  }
  .nav-btn {
    padding: 8px 12px;
    font-size: 12px;
  }
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .variant-options {
    flex-direction: column;
  }
  .trust {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
}

@media (min-width: 768px) {
  .product-info {
    padding: 36px 32px;
  }
}

/* ============================
   CHECKOUT REVEAL ANIMATION
============================ */
.checkout-hidden {
  display: none;
  opacity: 0;
  transform: translateY(30px);
}

.checkout-hidden.revealing {
  display: block;
}

.checkout.checkout-visible {
  display: block;
  animation: checkoutReveal 0.5s ease forwards;
}

@keyframes checkoutReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ATC button pulse effect */
.atc-btn {
  position: relative;
  overflow: hidden;
}

.atc-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.atc-btn:hover::after {
  transform: scaleX(1);
}

/* ATC clicked feedback */
.atc-btn.clicked {
  background: var(--green-dark);
  transform: scale(0.97);
}
