:root {
  --primary-color: #1a3626; /* Dark Green */
  --primary-light: #41604b; /* Medium Green */
  --gold-color: #f4d5c5; /* Peach / Pinkish Beige */
  --gold-light: #fae8e0; /* Light Peach */
  --bg-color: #f9f9f8; /* Off-white Body */
  --card-bg: #ffffff;
  --text-main: #18221b; /* Almost Black / Very Dark Green */
  --text-muted: #41604b; /* Text color matching medium green */
  --border-color: #e2e8f0;
  --whatsapp-color: #25d366;
  --whatsapp-dark: #128c7e;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  color: var(--primary-color);
  line-height: 1.2;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
    padding: 0 24px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1100px;
  }
}

.gold-text {
  color: var(--gold-color);
}

.accent-bg {
  background-color: var(--gold-color);
  color: var(--primary-color);
}

/* Header */
.header {
  background-color: var(--card-bg);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-50th {
  height: 32px;
  width: auto;
}

.logo-church {
  height: 38px;
  width: auto;
  border-left: 1px solid var(--border-color);
  padding-left: 12px;
}

@media (min-width: 768px) {
  .logo-group {
    gap: 16px;
  }

  .logo-50th {
    height: 48px;
  }

  .logo-church {
    height: 52px;
    padding-left: 16px;
  }
}

/* Cart Button */
.cart-btn {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  color: var(--primary-color);
  padding: 8px;
  border-radius: 50%;
  transition:
    background-color 0.2s,
    transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-btn:hover {
  background-color: rgba(0, 51, 102, 0.05);
}

.cart-btn:active {
  transform: scale(0.95);
}

#cart-count {
  position: absolute;
  top: 0px;
  right: 0px;
  background-color: var(--gold-color);
  color: var(--primary-color);
  font-weight: bold;
  font-size: 0.7rem;
  height: 18px;
  min-width: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  font-family: "Inter", sans-serif;
}

.cart-shake {
  animation: shake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

@keyframes shake {
  10%,
  90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%,
  80% {
    transform: translate3d(2px, 0, 0);
  }
  30%,
  50%,
  70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%,
  60% {
    transform: translate3d(4px, 0, 0);
  }
}

.hero {
  background-color: var(--primary-color);
  background-image:
    radial-gradient(
      circle at top right,
      var(--primary-light) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at bottom left,
      var(--gold-color) 0%,
      transparent 40%
    );
  color: white;
  padding: 40px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 6px solid var(--gold-color);
}

@media (min-width: 768px) {
  .hero {
    padding: 80px 24px;
    border-bottom-width: 10px;
  }
}

.hero .badge {
  background-color: var(--gold-color);
  color: var(--primary-color);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(244, 213, 197, 0.3);
}

@media (min-width: 768px) {
  .hero .badge {
    font-size: 0.85rem;
    padding: 6px 16px;
    margin-bottom: 24px;
  }
}

.hero h2 {
  font-size: 2rem;
  color: white;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .hero h2 {
    font-size: 3rem;
    margin-bottom: 24px;
  }
}

/* Countdown Timer Styles */
.countdown-container {
  margin: 20px auto 32px;
  max-width: 500px;
  padding: 20px;
  background: rgba(26, 54, 38, 0.6);
  border: 1px solid var(--gold-color);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.countdown-title {
  font-size: 0.9rem;
  color: var(--gold-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.timer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, var(--gold-color), #d4af37);
  color: var(--primary-color);
  min-width: 70px;
  padding: 10px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.timer-item span {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.2;
}

.timer-item small {
  font-size: 0.65rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 2px;
}

@media (max-width: 480px) {
  .countdown-timer {
    gap: 8px;
  }
  .timer-item {
    min-width: 60px;
    padding: 8px;
  }
  .timer-item span {
    font-size: 1.5rem;
  }
}

.hero-content p {
  font-size: 1rem;
  max-width: 650px;
  margin: 0 auto;
  opacity: 0.95;
  line-height: 1.5;
}

.hero-taglines p {
  margin-bottom: 16px;
}

.hero-taglines p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .hero-content p {
    font-size: 1.15rem;
    line-height: 1.6;
  }
}

/* Products Section */
.products-section {
  padding: 60px 0;
  background-color: var(--text-main);
  background-image: url("pattern-background-produtos.png"); /* Pattern with Dark gray topography */
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay; /* Soften the pattern if needed, or remove for full intensity */
}

@media (min-width: 768px) {
  .products-section {
    padding: 80px 0;
  }
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--gold-light); /* Make title stand out on dark pattern */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Improve readability */
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  justify-items: center;
}

.product-card {
  background-color: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 450px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative; /* Crucial for absolute badge positioning */
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.product-card.sold-out {
  opacity: 0.7;
}

.product-card.sold-out .product-image::after {
  content: "ENCERRADAS";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  background-color: rgba(26, 54, 38, 0.9);
  color: var(--gold-color);
  padding: 10px 20px;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 2px;
  border: 2px solid var(--gold-color);
  border-radius: var(--radius-sm);
  z-index: 5;
  pointer-events: none;
}

.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(
    135deg,
    #f4d5c5,
    #d4af37,
    #b8860b
  ); /* Gold Gradient */
  color: var(--primary-color);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 20;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  pointer-events: none; /* Prevent click interference */
}

.product-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
  background-color: #f7f6f2;
}

@media (min-width: 768px) {
  .product-image {
    height: 400px; /* Taller on desktop */
  }
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Prevent cropping details of shirts */
  padding: 20px;
  transition:
    opacity 0.4s ease,
    transform 0.8s ease;
  position: absolute;
  top: 0;
  left: 0;
}

.carousel-images {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-img {
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

.carousel-img.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--card-bg);
  color: var(--primary-color);
  border: 1px solid var(--border-color);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow-sm);
  font-size: 1.5rem;
  line-height: 1;
  padding-bottom: 2px;
  transition: all 0.2s ease;
  opacity: 0.8;
}

.carousel-btn:hover {
  background-color: var(--gold-color);
  color: var(--primary-color);
  opacity: 1;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 10;
}

.carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--border-color);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.carousel-dots .dot.active {
  background-color: var(--primary-color);
}

/* Bible Section Styles */
.bible-section {
  padding: 80px 0;
  background-color: var(--bg-color);
}

.bible-section .section-title {
  color: var(--primary-color);
  text-shadow: none;
}

.bible-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

@media (min-width: 992px) {
  .bible-container {
    flex-direction: row;
    align-items: flex-start;
  }
}

.bible-gallery {
  flex: 1;
  width: 100%;
  max-width: 600px;
}

.bible-main-img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin-bottom: 16px;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.bible-thumbnails {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.bible-thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}

.bible-thumb.active {
  border-color: var(--primary-color);
}

.bible-info {
  flex: 1;
  background-color: var(--card-bg);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.bible-title {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--primary-color);
}

.bible-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-color);
  margin-bottom: 24px;
}

.bible-desc {
  margin-bottom: 24px;
  color: var(--text-main);
  line-height: 1.6;
}

.bible-features {
  list-style: none;
  margin-bottom: 32px;
}

.bible-features li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.bible-features li::before {
  content: "✓";
  color: var(--gold-color);
  font-weight: bold;
}

.product-info {
  padding: 20px 16px;
}

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

.product-title {
  font-size: 1.25rem;
  margin-bottom: 6px;
}

@media (min-width: 768px) {
  .product-title {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }
}

.product-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.product-price {
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--primary-color);
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .product-price {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
}

.product-options {
  margin-bottom: 24px;
}

.product-options label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.size-select {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  background-color: white;
  color: var(--text-main);
  flex: 1;
  cursor: pointer;
  transition: border-color 0.2s;
}

.btn-size-guide {
  background: none;
  border: none;
  color: var(--primary-color);
  font-size: 0.85rem;
  text-decoration: underline;
  cursor: pointer;
  padding: 4px 0 0 0;
  text-align: left;
  display: inline-block;
  width: 100%;
  margin-top: 4px;
}

.btn-size-guide:hover {
  color: var(--primary-light);
}

.btn-size-guide:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
  border-radius: 2px;
}

.size-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}

/* Buttons */
.btn-primary,
.btn-add-cart,
.btn-whatsapp {
  width: 100%;
  padding: 14px 20px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: var(--gold-color);
  color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-add-cart {
  background-color: var(--primary-color);
  color: white;
}

.btn-add-cart:hover {
  background-color: var(--primary-light);
}

.btn-whatsapp {
  background-color: var(--whatsapp-color);
  color: white;
}

.btn-whatsapp:hover:not(:disabled) {
  background-color: var(--whatsapp-dark);
}

.btn-whatsapp:disabled {
  background-color: #a0aec0;
  cursor: not-allowed;
  opacity: 0.7;
}

/* Footer */
.footer {
  background-color: var(--primary-color);
  color: var(--gold-light);
  padding: 32px 0;
  text-align: center;
}

.footer-slogan {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold-color);
  margin-bottom: 8px;
}

.footer-copy {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Modal / Overlay Cart */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}

.modal.active {
  display: block;
  opacity: 1;
}

.modal-content {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background-color: var(--card-bg);
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal.active .modal-content {
  transform: translateX(0);
}

.modal-content-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  height: auto;
  max-height: 90vh;
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal.active .modal-content-center {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  font-size: 0.95rem;
}

.size-table th,
.size-table td {
  border: 1px solid var(--border-color);
  padding: 10px;
  text-align: center;
}

.size-table th {
  background-color: #f1f1f1;
  font-weight: 600;
}

.size-table tbody tr:nth-child(even) {
  background-color: #faf9f6;
}

.table-responsive {
  overflow-x: auto;
}

.size-note {
  font-size: 0.8rem;
  color: #666;
  margin-top: 12px;
  font-style: italic;
}

.modal-header {
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  font-size: 1.5rem;
}

.close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 8px;
  border-radius: 50%;
  transition: background-color 0.2s;
  display: flex;
}

.close-btn:hover {
  background-color: var(--bg-color);
  color: var(--text-main);
}

.modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.empty-cart {
  text-align: center;
  color: var(--text-muted);
  margin-top: 40px;
}

.empty-cart.hidden {
  display: none;
}

.cart-items-list {
  list-style: none;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
  gap: 12px;
}

.cart-item-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background-color: var(--bg-color);
  border-radius: var(--radius-sm);
  padding: 4px;
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.cart-item-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.cart-item-price {
  font-weight: 600;
  color: var(--primary-color);
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.qty-btn {
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  color: var(--text-main);
  transition: all 0.2s;
}

.qty-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.item-qty {
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.modal-footer {
  padding: 20px;
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-color);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.cart-total strong {
  color: var(--primary-color);
  font-size: 1.4rem;
}

.user-details {
  margin-bottom: 16px;
}

.user-details input {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
}

.user-details input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}

.whatsapp-notice {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  text-align: center;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background-color: var(--primary-color);
  color: var(--gold-color);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 10000;
  white-space: nowrap;
  border: 1px solid var(--gold-color);
}

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

/* Focus states for accessibility */
*:focus-visible {
  outline: 2px dashed var(--gold-color);
  outline-offset: 4px;
}

/* ============================================
   Cookie Consent Banner
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-color);
  color: var(--gold-light);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  border-top: 3px solid var(--gold-color);
  flex-wrap: wrap;
  transform: translateY(0);
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner.slide-out {
  transform: translateY(100%);
  opacity: 0;
}

.cookie-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  min-width: 200px;
}

.cookie-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1.4;
}

.cookie-content p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--gold-light);
  opacity: 0.95;
}

.cookie-content strong {
  color: var(--gold-color);
}

.cookie-actions {
  flex-shrink: 0;
}

.btn-cookie-accept {
  background-color: var(--gold-color);
  color: var(--primary-color);
  border: none;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
  white-space: nowrap;
}

.btn-cookie-accept:hover {
  background-color: var(--gold-light);
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
  }
  .cookie-actions {
    width: 100%;
  }
  .btn-cookie-accept {
    width: 100%;
    text-align: center;
  }
}
