:root {
  --bg: #f7f4ee;
  --bg-elevated: #fffcf7;
  --gold: #9a7214;
  --gold-bright: #b8860b;
  --gold-dim: rgba(154, 114, 20, 0.12);
  --text: #2a2419;
  --text-muted: #5e5648;
  --border-soft: rgba(154, 114, 20, 0.2);
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --font-urdu: "Noto Naskh Arabic", "Geeza Pro", serif;
  --radius: 12px;
  --shadow: 0 16px 48px rgba(42, 36, 25, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% -15%, rgba(184, 134, 11, 0.08), transparent),
    radial-gradient(ellipse 70% 45% at 100% 20%, rgba(154, 114, 20, 0.05), transparent),
    radial-gradient(ellipse 50% 40% at 0% 80%, rgba(201, 162, 39, 0.04), transparent);
  pointer-events: none;
  z-index: -1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #8b6914;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
  padding: 0 1rem;
}

@media (max-width: 640px) {
  .container {
    padding: 0 1rem;
    width: 100%;
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 252, 247, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

@media (max-width: 480px) {
  .header-inner {
    gap: 0.5rem;
  }

  .brand {
    gap: 0.5rem;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(42, 36, 25, 0.12);
  border: 1px solid var(--border-soft);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-urdu {
  font-family: var(--font-urdu);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold-bright);
}

.brand-en {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  margin-right: 10px;
}

.nav-links a:hover {
  color: var(--gold);
}

@media (max-width: 640px) {
  .nav-links {
    gap: 0.35rem 0.75rem;
    font-size: 0.85rem;
  }

  .nav-links a {
    font-size: 0.8rem;
  }

  .brand-text {
    display: none;
  }
}

.nav-whatsapp {
  font-weight: 700 !important;
  color: #128c7e !important;
}

.nav-whatsapp:hover {
  color: #075e54 !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  min-height: 44px;
}

.btn:active {
  transform: scale(0.98);
}

@media (max-width: 480px) {
  .btn {
    min-height: 48px;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
  }
}

.btn-primary {
  background: linear-gradient(145deg, #c9a227, #9a7214);
  color: #fffef9;
  box-shadow: 0 4px 20px rgba(154, 114, 20, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 6px 26px rgba(154, 114, 20, 0.35);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.6);
  color: #7a5a10;
  border: 1px solid var(--border-soft);
}

.btn-ghost:hover {
  background: var(--gold-dim);
}

.btn-block {
  width: 100%;
}

/* Hero */
.hero {
  padding: 3rem 0 4rem;
  text-align: center;
}

@media (max-width: 640px) {
  .hero {
    padding: 2rem 0 2.5rem;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
  }

  .hero .tagline-urdu {
    font-size: 1.25rem;
  }

  .hero p.lead {
    font-size: 0.95rem;
    margin: 0 auto 1.25rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 1.5rem 0 2rem;
  }

  .hero h1 {
    font-size: clamp(1.5rem, 3vw, 2rem);
  }

  .hero .tagline-urdu {
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
  }

  .hero p.lead {
    font-size: 0.9rem;
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 600;
  margin: 0 0 0.5rem;
  background: linear-gradient(100deg, var(--text) 0%, #4a3d28 40%, var(--gold-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .tagline-urdu {
  font-family: var(--font-urdu);
  font-size: 1.5rem;
  color: var(--gold-bright);
  margin: 0 0 0.75rem;
}

.hero p.lead {
  max-width: 36rem;
  margin: 0 auto 1.75rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

@media (max-width: 480px) {
  .hero-actions {
    gap: 0.5rem;
  }

  .hero-actions .btn {
    flex: 1;
    min-width: 140px;
  }
}

/* Sections */
section {
  padding: 3rem 0;
}

@media (max-width: 640px) {
  section {
    padding: 2rem 0;
  }
}

@media (max-width: 480px) {
  section {
    padding: 1.5rem 0;
  }
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  text-align: center;
  margin: 0 0 0.35rem;
  color: var(--text);
}

.section-title-urdu {
  font-family: var(--font-urdu);
  text-align: center;
  font-size: 1.25rem;
  color: var(--gold);
  margin: 0 0 2rem;
}

@media (max-width: 480px) {
  .section-title {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  }

  .section-title-urdu {
    font-size: 1.05rem;
    margin: 0 0 1.5rem;
  }
}

.card-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

@media (max-width: 640px) {
  .card-grid {
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 480px) {
  .card-grid {
    gap: 1rem;
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

@media (max-width: 640px) {
  .card {
    padding: 1.25rem;
  }
}

.card h3 {
  font-family: var(--font-display);
  margin-top: 0;
  color: #8b6914;
}

.card p {
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Product labels */
.label-showcase {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .label-showcase {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

@media (max-width: 480px) {
  .label-showcase {
    gap: 1.5rem;
  }
}

.label-frame {
  background: #fff;
  border-radius: var(--radius);
  padding: 1rem;
  border: 1px solid var(--border-soft);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(42, 36, 25, 0.06);
}

@media (max-width: 480px) {
  .label-frame {
    padding: 0.75rem;
  }
}

/* Multi-product grid */
.products-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .products-grid {
    gap: 1.25rem;
  }
}

.product-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-card h3 {
  font-family: var(--font-display);
  margin: 0;
  font-size: 1.35rem;
  color: #8b6914;
}

@media (max-width: 640px) {
  .product-card {
    padding: 1rem;
    gap: 0.75rem;
  }

  .product-card h3 {
    font-size: 1.15rem;
  }
}

.product-card .product-sub {
  font-family: var(--font-urdu);
  color: var(--gold);
  font-size: 1rem;
  margin: -0.5rem 0 0;
}

.product-card .product-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.product-card .product-price-line {
  margin: 0;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(255, 250, 242, 0.85));
  border: 1px solid rgba(154, 114, 20, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.9vw, 1.28rem);
  font-weight: 600;
  color: #8b6914;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  line-height: 1.35;
  text-align: center;
}

.product-card .product-price-line:empty {
  display: none;
}

.badge-soon {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  background: var(--gold-dim);
  color: #7a5a10;
  border: 1px solid var(--border-soft);
}

.badge-available {
  background: rgba(184, 134, 11, 0.14);
  color: #6b4f0e;
  border-color: rgba(154, 114, 20, 0.35);
}

.product-card--soon .soon-placeholder {
  flex: 1;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px dashed var(--border-soft);
  color: var(--text-muted);
  font-size: 0.95rem;
}

.product-card--soon .soon-placeholder .ur {
  font-family: var(--font-urdu);
  color: var(--gold);
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}

.product-card .label-showcase {
  margin: 0;
}

.label-frame img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  margin-inline: auto;
}

.ingredients {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.ingredients li {
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(42, 36, 25, 0.08);
}

.ingredients li:last-child {
  border-bottom: none;
}

/* Order form */
.order-section {
  background: linear-gradient(180deg, transparent, rgba(184, 134, 11, 0.06));
  border-top: 1px solid var(--border-soft);
}

.order-form {
  max-width: 520px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .order-form {
    padding: 0 1rem;
  }
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form-group label .ur {
  font-family: var(--font-urdu);
  color: var(--gold);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  border: 1px solid var(--border-soft);
  background: #fff;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  min-height: 44px;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

@media (max-width: 480px) {
  .form-group input,
  .form-group select {
    min-height: 48px;
    padding: 0.75rem 0.85rem;
    font-size: 1rem;
  }
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.18);
}

/* Product row — slightly emphasized, still matches the form */
#product-select {
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 2.6vw, 1.12rem);
  font-weight: 600;
  color: var(--text);
  padding-top: 0.68rem;
  padding-bottom: 0.68rem;
  border-color: rgba(154, 114, 20, 0.22);
  background: #fffef9;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1rem;
}

.form-note .ur {
  font-family: var(--font-urdu);
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42, 36, 25, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.modal-overlay.is-open {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.modal {
  background: #fffcf7;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.5rem;
  max-width: 420px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(42, 36, 25, 0.15);
}

@media (max-width: 480px) {
  .modal {
    padding: 1.25rem;
    border-radius: 16px;
    max-width: 100%;
  }
}

.modal h2 {
  font-family: var(--font-display);
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
}

.modal pre {
  background: #f7f4ee;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  white-space: pre-wrap;
  word-break: break-word;
  color: var(--text-muted);
  max-height: 160px;
  overflow-y: auto;
  border: 1px solid var(--border-soft);
}

#order-preview {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
  max-height: 180px;
  font-weight: 400;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.modal-close {
  margin-top: 0.75rem;
  width: 100%;
}

.price-display-wrap {
  text-align: center;
  margin-top: 1.75rem;
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0.85rem 1rem 1rem;
  border-radius: 10px;
  background: linear-gradient(165deg, rgba(255, 253, 248, 0.95), rgba(255, 248, 238, 0.75));
  border: 1px solid rgba(154, 114, 20, 0.14);
  box-shadow: 0 8px 28px rgba(42, 36, 25, 0.05);
}

.price-display-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.22rem, 3.5vw, 1.58rem);
  font-weight: 600;
  color: #8b6914;
  line-height: 1.32;
  letter-spacing: 0.025em;
}

.price-display-line .price-line-part {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.45rem;
}

.price-display-line .price-line-sep {
  color: var(--text-muted);
  font-weight: 500;
  opacity: 0.85;
}

.price-promo-chip {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.58em;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.22rem 0.5rem;
  border-radius: 6px;
  background: rgba(184, 134, 11, 0.14);
  color: #6b4f0e;
  border: 1px solid rgba(154, 114, 20, 0.28);
  vertical-align: middle;
}

.price-mrp {
  text-decoration: line-through;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.72em;
  opacity: 0.92;
}

.price-sale {
  font-weight: 700;
  color: #6b4f0e;
}

.product-card .product-price-line .price-mrp {
  font-size: 0.78em;
}

.product-card .product-price-line .price-promo-chip {
  font-size: 0.65rem;
  padding: 0.2rem 0.45rem;
  letter-spacing: 0.07em;
}

.price-size-note {
  font-family: var(--font-body);
  font-size: 0.52em;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.price-display-stock {
  margin-top: 0.65rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 500;
}

.price-display-stock-line {
  display: block;
}

.price-display-stock-line--ur {
  font-family: var(--font-urdu);
  color: var(--gold);
  margin-top: 0.25rem;
}

.price-display-stock[hidden] {
  display: none;
}

.modal--order {
  position: relative;
}

.order-modal-loader {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(255, 252, 247, 0.94);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.order-modal-loader.hidden {
  display: none;
}

.order-spinner {
  width: 42px;
  height: 42px;
  border: 3px solid var(--border-soft);
  border-top-color: var(--gold-bright);
  border-radius: 50%;
  animation: order-spin 0.75s linear infinite;
}

@keyframes order-spin {
  to {
    transform: rotate(360deg);
  }
}

.order-modal-loader__text {
  margin: 0;
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

.order-modal-success {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-soft);
}

.order-modal-success.hidden {
  display: none;
}

.order-modal-success__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #6b4f0e;
  margin: 0 0 0.5rem;
}

.modal--order.is-success-state #order-modal-intro,
.modal--order.is-success-state #order-preview,
.modal--order.is-success-state #order-modal-actions,
.modal--order.is-success-state #modal-close {
  display: none;
}

.modal--order.is-success-state #order-modal-success {
  display: block;
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

/* Footer */
/* SEO intro & FAQ */
.seo-intro {
  padding: 0.5rem 0 2rem;
  max-width: 46rem;
  margin-inline: auto;
}

.seo-intro__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
  text-align: center;
}

.seo-intro__text strong {
  color: var(--text);
  font-weight: 600;
}

.faq-section {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--border-soft);
}

.faq-list {
  margin: 1.25rem 0 0;
  max-width: 40rem;
  margin-inline: auto;
}

.faq-item {
  margin-bottom: 1.35rem;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item dt {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.35rem;
}

.faq-item dd {
  margin: 0;
  padding: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.site-footer {
  border-top: 1px solid var(--border-soft);
  padding: 2rem 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  background: rgba(255, 252, 247, 0.8);
}

.site-footer .ur {
  font-family: var(--font-urdu);
  display: block;
  margin-top: 0.5rem;
  color: var(--gold);
}

@media (max-width: 640px) {
  .site-footer {
    padding: 1.5rem 0;
    font-size: 0.85rem;
  }
}

/* Panel page */
.panel-body {
  padding: 2rem 0 4rem;
}

@media (max-width: 640px) {
  .panel-body {
    padding: 1.5rem 0 2rem;
  }
}

.panel-login,
.panel-dashboard {
  max-width: 640px;
  margin: 0 auto;
}

.panel-login h1,
.panel-dashboard h1 {
  font-family: var(--font-display);
  color: var(--gold-bright);
}

.pin-input {
  font-size: 1.25rem;
  letter-spacing: 0.3em;
  text-align: center;
}

.order-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.order-list li {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  white-space: pre-wrap;
}

.panel-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

@media (max-width: 480px) {
  .panel-tools {
    gap: 0.5rem;
  }

  .panel-tools .btn {
    flex: 1;
    min-width: 100px;
  }
}

.hidden {
  display: none !important;
}

.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: linear-gradient(145deg, #c9a227, #9a7214);
  color: #fffef9;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  z-index: 300;
  transition: transform 0.3s ease;
  box-shadow: 0 8px 28px rgba(154, 114, 20, 0.3);
}

.toast.is-visible {
  transform: translateX(-50%) translateY(0);
}

/* Floating WhatsApp */
.whatsapp-fab {
  position: fixed;
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  right: max(1.25rem, env(safe-area-inset-right, 0px));
  z-index: 150;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem 0.65rem 0.75rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.whatsapp-fab:hover {
  text-decoration: none;
  color: #fff;
  transform: scale(1.03);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-fab:active {
  transform: scale(0.98);
}

.whatsapp-fab__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.whatsapp-fab__label {
  padding-right: 0.15rem;
}

@media (max-width: 380px) {
  .whatsapp-fab__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .whatsapp-fab {
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
}
