/* styles.css - Teo Confectionary - Fully Responsive + Upgraded Cart */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #fefaf7;
  color: #2c1a0f;
  line-height: 1.5;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

:root {
  --primary: #c0392b;
  --primary-dark: #a82313;
  --golden: #e67e22;
  --sand: #f7ede8;
  --shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
  --radius-card: 28px;
  --transition: all 0.25s ease;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

/* ========== HEADER / NAVBAR (sticky, glass) ========== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  padding: 0.8rem 1.8rem;
  border-radius: 0 0 28px 28px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 100px;
  width: auto;
  border-radius: 28px;
}

.logo-text {
  font-weight: 800;
  font-size: 1.35rem;
  background: linear-gradient(135deg, var(--primary), var(--golden));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

/* Lightbox overlay (hidden by default) */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(5px);
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  animation: zoomIn 0.25s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Close button inside lightbox */
.lightbox .close-lightbox {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
  background: none;
  border: none;
  font-family: monospace;
}

.lightbox .close-lightbox:hover {
  color: #c62828;
  transform: scale(1.1);
}

/* Make product images appear clickable */
.product-icon-circle {
  cursor: pointer;
}

.navbar-tagline {
  font-family: 'Dancing Script', cursive;
  font-size: 1rem;
  color: var(--primary);
  background: rgba(192, 57, 43, 0.08);
  padding: 0.4rem 1.2rem;
  border-radius: 60px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  color: #2c1a0f;
  transition: var(--transition);
  padding: 0.5rem 1rem;
  border-radius: 40px;
  font-size: 0.95rem;
}

.nav-links a:hover {
  background: rgba(192, 57, 43, 0.1);
  color: var(--primary);
}

.cart-icon {
  background: white;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 60px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}

.cart-icon i {
  font-size: 1.5rem;
  color: var(--primary);
}

.cart-icon:hover {
  background: var(--primary);
  transform: scale(1.05);
}

.cart-icon:hover i {
  color: white;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--golden);
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  width: 22px;
  height: 22px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}

/* ========== HERO ========== */
.hero {
  background: linear-gradient(120deg, rgba(192, 57, 43, 0.75), rgba(230, 126, 34, 0.7)), url('teo3.jpeg');
  background-size: cover;
  background-position: center;
  border-radius: 2rem;
  margin: 2rem 0 3rem;
  padding: 4rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 8vw, 3.8rem);
  font-weight: 900;
  color: white;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero h2 span {
  background: linear-gradient(135deg, #fff3e0, #ffd89b);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: none;
}

.hero p {
  font-size: clamp(1rem, 4vw, 1.2rem);
  color: white;
  margin: 1.5rem 0 2rem;
  font-weight: 500;
}

.hero-cta {
  background: white;
  color: var(--primary);
  padding: 0.8rem 2rem;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  font-size: 1rem;
}

.hero-cta:hover {
  background: var(--primary);
  color: white;
  gap: 1rem;
}

/* ========== SECTION TITLES ========== */
.section-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: clamp(1.6rem, 5vw, 2rem);
  font-weight: 800;
  margin: 3rem 0 1.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid rgba(192, 57, 43, 0.2);
}

.section-title i {
  font-size: clamp(1.4rem, 5vw, 2rem);
  color: var(--golden);
}

/* ========== PRODUCT GRID ========== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.8rem;
  margin-bottom: 3rem;
}

.product-card {
  background: white;
  border-radius: var(--radius-card);
  padding: 1.6rem 1.2rem 1.8rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(192, 57, 43, 0.2);
}

.product-icon-circle {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.2rem;
  background: #faf0ea;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10%;
}

.product-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0.8rem 0 0.4rem;
}

.product-desc {
  color: #7a5a4a;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.price {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 0.8rem 0;
}

.quantity-control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: #fef6f0;
  width: fit-content;
  margin: 1rem auto;
  padding: 0.3rem 1rem;
  border-radius: 60px;
}

.quantity-control button {
  background: white;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--primary);
}

.quantity-control input {
  width: 45px;
  text-align: center;
  font-weight: 600;
  border: none;
  background: transparent;
  font-size: 1rem;
}

.add-btn {
  background: var(--primary);
  border: none;
  color: white;
  padding: 0.7rem 1.2rem;
  border-radius: 40px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  font-size: 0.95rem;
}

.add-btn:hover {
  background: var(--primary-dark);
  gap: 0.8rem;
}

/* ========== ABOUT & CONTACT ========== */
.about-contact-wrapper {
  background: linear-gradient(145deg, #fff9f5, #fff3ec);
  border-radius: 2.5rem;
  padding: 3rem 2rem;
  margin: 3rem 0;
  box-shadow: var(--shadow-md);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.info-card {
  background: white;
  border-radius: 2rem;
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
}

.info-card h3 {
  font-size: clamp(1.4rem, 5vw, 1.8rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--primary-dark);
  flex-wrap: wrap;
}

.brand-story {
  color: #4a2e21;
  line-height: 1.6;
  margin-bottom: 1.8rem;
  font-size: 0.95rem;
}

.values-list {
  list-style: none;
  margin: 1.8rem 0;
}

.values-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.values-list li i {
  width: 24px;
  color: var(--golden);
  font-size: 1rem;
}

.contact-grid-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: #fef7f2;
  padding: 1rem 1.2rem;
  border-radius: 2rem;
  flex-wrap: wrap;
}

.contact-icon-lg {
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.contact-detail h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.contact-detail a,
.contact-detail span {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  word-break: break-word;
}

.social-links-group {
  display: flex;
  gap: 1rem;
  margin: 0.5rem 0;
  flex-wrap: wrap;
}

.social-icon {
  background: #fef0e8;
  width: 42px;
  height: 42px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.whatsapp-direct-btn {
  background: #25D366;
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: fit-content;
  transition: var(--transition);
  font-size: 0.95rem;
}

/* ========== FOOTER ========== */
.footer {
  text-align: center;
  padding: 2.5rem 0 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  color: #a57257;
  font-weight: 500;
  font-size: 0.85rem;
}

/* ========== MODALS (Cart & Payment) ========== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.active {
  display: flex;
}

.modal-container {
  background: white;
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 2rem;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.3s ease;
}

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

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 1.8rem 0.8rem;
  border-bottom: 1px solid #f0e4dc;
  flex-wrap: wrap;
}

.modal-header h3 {
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  gap: 0.5rem;
}

.close-modal {
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  transition: var(--transition);
  color: #aa7a62;
  line-height: 1;
}

.modal-body {
  padding: 1.5rem 1.8rem 2rem;
}

/* ========== UPGRADED CART SESSION ========== */
.cart-items-list {
  max-height: 420px;
  overflow-y: auto;
  padding-right: 6px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fffaf5;
  border-radius: 24px;
  padding: 1rem 1.2rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(198, 40, 40, 0.08);
  transition: all 0.2s ease;
}

.cart-item:hover {
  border-color: rgba(198, 40, 40, 0.25);
  background: #fffefc;
}

.cart-item-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 2;
}

.cart-item-img {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  object-fit: cover;
  background: #f3e9e2;
  border: 2px solid white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.cart-item-info strong {
  font-size: 1.05rem;
  font-weight: 800;
  color: #2c1a0f;
  display: block;
  margin-bottom: 6px;
}

.cart-item-info div {
  font-size: 0.85rem;
  color: #c0392b;
  font-weight: 600;
}

.remove-item {
  background: rgba(198, 40, 40, 0.1);
  border: 1px solid rgba(198, 40, 40, 0.2);
  padding: 8px 16px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.8rem;
  color: #c0392b;
  cursor: pointer;
  transition: all 0.2s ease;
}

.remove-item:hover {
  background: #c62828;
  color: white;
  border-color: #c62828;
  transform: translateY(-1px);
}

.cart-total {
  background: linear-gradient(135deg, rgba(198, 40, 40, 0.05), rgba(230, 126, 34, 0.05));
  border-radius: 28px;
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0 1.8rem;
  border: 1px solid rgba(198, 40, 40, 0.1);
}

.cart-total span:first-child {
  font-weight: 700;
  color: #5a3e2e;
}

.cart-total span:last-child {
  font-size: 1.7rem;
  font-weight: 900;
  color: #c62828;
  letter-spacing: -0.5px;
}

/* RED BUTTONS for Clear cart & Proceed to Payment */
.cart-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cart-actions .btn-outline,
.cart-actions .btn-primary {
  background: #c62828;
  color: white;
  border: none;
  padding: 0.8rem 1.8rem;
  font-weight: 800;
  border-radius: 60px;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.25s ease;
}

.cart-actions .btn-outline:hover,
.cart-actions .btn-primary:hover {
  background: #a51f1f;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(198, 40, 40, 0.3);
}

/* Empty cart message */
.cart-items-list li[style*="text-align:center"] {
  background: #fff9f5;
  border-radius: 28px;
  padding: 2rem !important;
  font-weight: 500;
  color: #a57257;
}

/* Custom scrollbar for cart items */
.cart-items-list::-webkit-scrollbar {
  width: 5px;
}

.cart-items-list::-webkit-scrollbar-track {
  background: #f1e2d8;
  border-radius: 10px;
}

.cart-items-list::-webkit-scrollbar-thumb {
  background: #c62828;
  border-radius: 10px;
}

/* ========== PAYMENT MODAL STYLES ========== */
.payment-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: #f3e9e2;
  border: none;
  padding: 0.6rem 1.3rem;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.85rem;
}

.tab-btn.active {
  background: var(--primary);
  color: white;
}

.tab-pane {
  display: none;
}

.active-pane {
  display: block;
}

.bank-card {
  background: #fef7f2;
  border-radius: 1.5rem;
  padding: 1.2rem;
  margin-bottom: 1.2rem;
}

.account-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 0.7rem 1rem;
  border-radius: 40px;
  margin: 0.7rem 0;
  flex-wrap: wrap;
  gap: 0.5rem;
  word-break: break-word;
}

.copy-bank-btn,
.copy-btn {
  background: #efe2d9;
  border: none;
  padding: 0.3rem 1rem;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.8rem;
}

.bank-whatsapp-btn {
  background: #25D366;
  color: white;
  border: none;
  width: 100%;
  padding: 0.8rem;
  border-radius: 60px;
  font-weight: 700;
  margin-top: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.9rem;
}

.crypto-option {
  background: #faf1ea;
  border-radius: 40px;
  padding: 0.8rem 1.2rem;
  margin-bottom: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.crypto-option.selected {
  background: var(--primary);
  color: white;
}

.address-box {
  background: #f6ede6;
  padding: 0.8rem 1.2rem;
  border-radius: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin: 1rem 0;
  word-break: break-all;
}

.rate-note {
  font-size: 0.75rem;
  color: #7a5a4a;
  margin-top: 1rem;
}

.toast-msg {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #1e1a15;
  color: white;
  padding: 0.7rem 1.8rem;
  border-radius: 60px;
  font-weight: 500;
  z-index: 1100;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
  white-space: nowrap;
  font-size: 0.9rem;
}

/* ========== RESPONSIVE MEDIA QUERIES ========== */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.2rem;
  }
  .navbar {
    padding: 0.8rem 1.2rem;
  }
  .navbar-tagline {
    white-space: normal;
    font-size: 0.9rem;
  }
}

@media (max-width: 900px) {
  .navbar {
    flex-direction: column;
    text-align: center;
    border-radius: 0 0 20px 20px;
  }
  .nav-links {
    justify-content: center;
    width: 100%;
  }
  .cart-wrapper {
    position: absolute;
    top: 1rem;
    right: 1rem;
  }
  .hero {
    padding: 2.5rem 1.5rem;
    margin: 1rem 0 2rem;
  }
  .info-grid {
    gap: 1.5rem;
  }
  .product-grid {
    gap: 1.2rem;
  }
  .product-card {
    padding: 1.2rem;
  }
  .product-icon-circle {
    width: 100px;
    height: 100px;
  }
  .price {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 0.95rem;
  }
  .hero-cta {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
  .section-title {
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
  }
  .about-contact-wrapper {
    padding: 2rem 1.2rem;
  }
  .info-card {
    padding: 1.5rem;
  }
  .modal-container {
    width: 95%;
    max-height: 85vh;
  }
  .modal-body {
    padding: 1rem 1.2rem 1.5rem;
  }
  .cart-item-left {
    min-width: 100%;
  }
}

@media (max-width: 600px) {
  :root {
    --radius-card: 20px;
  }
  .container {
    padding: 0 1rem;
  }
  .logo-text {
    font-size: 1.1rem;
  }
  .logo img {
    height: 100px;
  }
  .navbar-tagline {
    font-size: 0.8rem;
    padding: 0.3rem 1rem;
  }
  .nav-links a {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }
  .cart-icon {
    width: 42px;
    height: 42px;
  }
  .cart-icon i {
    font-size: 1.3rem;
  }
  .hero {
    border-radius: 1.5rem;
    padding: 2rem 1rem;
  }
  .hero h2 {
    font-size: 1.8rem;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-card {
    max-width: 100%;
  }
  .quantity-control {
    gap: 0.5rem;
    padding: 0.2rem 0.8rem;
  }
  .quantity-control button {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }
  .add-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  .contact-method {
    flex-direction: column;
    text-align: center;
  }
  .whatsapp-direct-btn {
    width: 100%;
    justify-content: center;
  }
  .toast-msg {
    white-space: normal;
    width: 90%;
    text-align: center;
    font-size: 0.8rem;
  }
  .payment-tabs {
    flex-direction: column;
  }
  .tab-btn {
    text-align: center;
  }
  /* Cart on mobile */
  .cart-item {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .cart-item-left {
    flex-wrap: wrap;
  }
  .cart-actions {
    flex-direction: column;
  }
  .cart-actions .btn-outline,
  .cart-actions .btn-primary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .cart-total span:last-child {
    font-size: 1.4rem;
  }
}

@media (max-width: 400px) {
  .hero h2 {
    font-size: 1.6rem;
  }
  .hero p {
    font-size: 0.9rem;
  }
  .product-title {
    font-size: 1.1rem;
  }
  .price {
    font-size: 1.3rem;
  }
  .modal-header h3 {
    font-size: 1.2rem;
  }
  .cart-total {
    font-size: 1.1rem;
  }
}

/* Ensure images don't overflow */
img {
  max-width: 100%;
  height: auto;
}

/* Touch-friendly buttons (larger hit area on mobile) */
@media (pointer: coarse) {
  button,
  .add-btn,
  .qty-minus,
  .qty-plus,
  .remove-item,
  .copy-bank-btn,
  .close-modal,
  .cart-icon,
  .nav-links a,
  .hero-cta,
  .whatsapp-direct-btn,
  .social-icon {
    cursor: pointer;
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .nav-links a {
    min-height: 40px;
  }
  .social-icon {
    min-height: 44px;
    min-width: 44px;
  }
}