@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800;900&display=swap');

:root {
  --pink: #e91e8c;
  --pink-light: #ff6ec7;
  --pink-gradient: linear-gradient(90deg, #e91e8c, #ff6ec7);
  --dark: #1a1a1a;
  --text: #222;
  --muted: #888;
  --bg: #f5f5f5;
  --white: #fff;
  --card-radius: 16px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --transition: all 0.25s ease;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ─── HEADER ─── */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark);
  padding: 0.75rem 4%;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.header-left {
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  font-style: italic;
  letter-spacing: -1px;
}

.logo-cart {
  font-style: normal;
  font-size: 1.1rem;
  margin-left: 4px;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -10px;
  background: var(--pink);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 50px;
  min-width: 20px;
  text-align: center;
}

.search-bar {
  flex: 1;
  display: flex;
  align-items: center;
  background: #2e2e2e;
  border-radius: 50px;
  overflow: hidden;
  padding: 0 0.5rem 0 1rem;
}

.search-bar input {
  flex: 1;
  background: none;
  border: none;
  color: var(--white);
  font-size: 0.9rem;
  padding: 0.6rem 0;
  outline: none;
}

.search-bar input::placeholder { color: #888; }

.search-btn {
  background: none;
  border: none;
  color: #888;
  font-size: 1rem;
  cursor: pointer;
  padding: 0.4rem 0.5rem;
  transition: var(--transition);
}

.search-btn:hover { color: var(--pink-light); }

/* ─── HERO ─── */
.hero {
  background: var(--white);
  padding: 2rem 4%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 100%;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--dark);
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  letter-spacing: -0.5px;
}

.hero-text p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1.4rem;
  font-weight: 500;
}

.hero-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: 2px solid transparent;
  display: inline-block;
}

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

.btn-dark:hover { background: #333; }

.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}

.btn-outline:hover { background: var(--dark); color: var(--white); }

.hero-banner {
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-banner img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 280px;
}

/* ─── FILTER BAR ─── */
.filter-bar {
  background: var(--white);
  padding: 0.75rem 4%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-bottom: 1px solid #eee;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.filter-group label {
  font-size: 0.82rem;
  color: var(--muted);
  white-space: nowrap;
}

.filter-group select {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  padding: 0.4rem 0.75rem;
  border: 1.5px solid #ddd;
  border-radius: 50px;
  background: var(--white);
  cursor: pointer;
  outline: none;
}

/* ─── CONTAINER ─── */
.container {
  padding: 1.5rem 4%;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* ─── CAROUSEL SECTION ─── */

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
}

.section-title {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--dark);
}

.see-all {
  font-size: 0.875rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.see-all:hover { color: var(--pink); }

.carousel-hint {
  font-size: 0.78rem;
  color: var(--pink);
  margin-bottom: 1rem;
  font-weight: 500;
}

.carousel-track {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar { display: none; }

/* ─── PRODUCT CARD ─── */
.product-card {
  flex: 0 0 calc(50% - 0.4rem);
  max-width: 220px;
  background: var(--white);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.product-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }

.card-image-wrap {
  position: relative;
  background: #f0f0f0;
}

.card-image-wrap img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  display: block;
  padding: 0.5rem;
}

.discount-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #e53935;
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 50px;
}

.card-body {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.stock-label {
  font-size: 0.68rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 0.3rem;
}

.card-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 0.5rem;
  min-height: 2.5rem;
}

.card-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 0.6rem;
}

.new-price {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--dark);
}

.old-price {
  font-size: 0.75rem;
  color: var(--muted);
  text-decoration: line-through;
}

/* ─── SIZE SELECT ─── */
.size-select {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--text);
  cursor: pointer;
  margin-bottom: 0.6rem;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%23999'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") no-repeat right 0.6rem center;
  appearance: none;
  outline: none;
  transition: border-color 0.2s;
}

.size-select:focus { border-color: var(--pink); }

@keyframes shake {
  0%,100% { transform: translateX(0); }
  25%      { transform: translateX(-5px); }
  75%      { transform: translateX(5px); }
}

.size-select.shake { border-color: var(--pink); animation: shake 0.4s ease; }

/* ─── ADD BUTTON ─── */
.add-btn {
  background: var(--pink-gradient);
  color: var(--white);
  border: none;
  padding: 0.7rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
  margin-top: auto;
}

.add-btn:hover { opacity: 0.9; transform: scale(1.02); }

/* ─── CART ─── */
.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  z-index: 1500;
}

.backdrop.active { display: block; }

.cart-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 340px;
  height: 100%;
  background: #f8f8f8;
  box-shadow: -5px 0 40px rgba(0,0,0,0.15);
  z-index: 2000;
  transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.cart-overlay.active { right: 0; }

.cart-header {
  padding: 1.25rem 1.5rem;
  background: var(--dark);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h2 { font-size: 1.1rem; font-weight: 800; font-style: italic; }

.close-cart { cursor: pointer; font-size: 1.6rem; color: #ccc; }

.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1rem; }

.cart-empty { text-align: center; color: var(--muted); padding: 3rem 0; font-size: 0.95rem; }

/* ─── NEW CART ITEM CARD ─── */
.cart-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
  padding: 1rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.cart-item img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 8px;
  background: #fdfdfd;
}

.cart-item-info { flex: 1; display: flex; flex-direction: column; }

.cart-item-info h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.cart-item-info .item-price {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.cart-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid #ddd;
  background: #f9f9f9;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.qty-btn:hover { background: #eee; }

.item-qty { font-weight: 700; font-size: 0.9rem; min-width: 15px; text-align: center; }

.remove-link {
  margin-left: auto;
  color: #e53935;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

/* ─── CART FOOTER ─── */
.cart-footer {
  padding: 1.5rem;
  background: var(--white);
  border-top: 1px solid #eee;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 1.2rem;
  color: var(--dark);
}

.checkout-btn-v2 {
  display: block;
  width: 100%;
  background: #000;
  color: var(--white);
  text-align: center;
  padding: 1.1rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.checkout-btn-v2:hover { background: #333; transform: scale(1.02); }

.checkout-subtext {
  display: block;
  text-align: center;
  margin-top: 0.6rem;
  font-size: 0.75rem;
  color: var(--muted);
}

/* ─── SOCIAL PROOF NOTIFICATION ─── */
.toast-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 5000;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #20232b;
  color: #fff;
  padding: 10px 16px;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  margin-top: 10px;
  transform: translateX(-150%);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.toast.active { transform: translateX(0); }

.toast img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; border: 2px solid #ed1c8a; }

.toast-text { font-size: 0.78rem; font-weight: 500; }
.toast-text strong { display: block; color: #fff; font-size: 0.82rem; }

/* ─── CHECKOUT SPECIFIC LAYOUT ─── */
.checkout-timer-bar {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  position: sticky;
  top: 0;
  z-index: 2000;
}

.checkout-progress {
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
  background: #efefef;
  gap: 0.5rem;
  position: relative;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 80px;
  position: relative;
  z-index: 2;
}

.step-num {
  width: 28px;
  height: 28px;
  background: #ccc;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
}

.step.active .step-num { background: #20c997; }

.step-label { font-size: 0.68rem; font-weight: 700; color: #888; text-transform: uppercase; }
.step.active .step-label { color: var(--text); }

.progress-line {
  position: absolute;
  top: 46px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 2px;
  background: #ddd;
  z-index: 1;
}

/* ─── ORDER BUMPS ─── */
.order-bump-title { background: #ed1c8a; color: #fff; padding: 12px; font-weight: 900; font-size: 0.85rem; text-align: center; margin-top: 1rem; border-radius: 8px 8px 0 0; }
.order-bump-card { border: 2px dashed #ed1c8a; border-radius: 0 0 8px 8px; padding: 12px; margin-bottom: 2rem; background: #fff; }
.bump-item { 
  display: flex; 
  gap: 15px; 
  padding: 16px; 
  border: 2px dashed #ddd; 
  align-items: center; 
  cursor: pointer; 
  transition: all 0.2s ease;
  border-radius: 12px;
  background: #fff;
  margin-bottom: 12px;
  position: relative;
}
.bump-item:hover {
  border-color: #ed1c8a;
  background: #fffafa;
}
.bump-item:has(.bump-check:checked),
.bump-item.active {
  background: #fff0f7;
  border: 2px solid #ed1c8a;
  box-shadow: 0 4px 12px rgba(237, 28, 138, 0.1);
}

.bump-item img { width: 65px; height: 65px; border-radius: 10px; background: #f9f9f9; object-fit: contain; flex-shrink: 0; }
.bump-info { flex: 1; font-size: 0.82rem; }
.bump-name { font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.bump-price { font-weight: 600; color: #20c997; }
.bump-item img, .bump-item .bump-info, .bump-item .bump-name, .bump-item .bump-price { pointer-events: none; }
.bump-item .size-select, .bump-item .bump-check { pointer-events: auto; }

/* ─── FORM ─── */
.form-card { background: #fff; border-radius: 12px; padding: 1.5rem; box-shadow: var(--shadow); margin-bottom: 1rem; }
.form-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 10px; }
.form-card h3 i { background: #ed1c8a; color: #fff; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; }

.input-label { display: block; font-size: 0.8rem; font-weight: 700; margin-bottom: 6px; color: #555; }
.input-field { width: 100%; padding: 0.9rem 1rem; border: 1.8px solid #eee; border-radius: 10px; font-family: 'Inter', sans-serif; font-size: 0.95rem; margin-bottom: 1.2rem; outline: none; transition: border-color 0.2s; }
.input-field:focus { border-color: #ed1c8a; }

.confirm-btn-checkout {
  background: #ed1c8a;
  color: #fff;
  width: 100%;
  padding: 1.1rem;
  border-radius: 12px;
  border: none;
  font-weight: 900;
  font-size: 1.15rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(237, 28, 138, 0.3);
  transition: var(--transition);
}

.confirm-btn-checkout:hover { transform: translateY(-2px); opacity: 0.95; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .cart-overlay { max-width: 100%; }

  .hero-text h1 {
    font-size: 2.6rem;
    letter-spacing: -0.3px;
  }

  .hero-text p { font-size: 0.95rem; }

  .btn {
    padding: 0.8rem 1.6rem;
    font-size: 0.95rem;
  }

  .product-card {
    flex: 0 0 calc(50% - 0.4rem);
    max-width: none;
  }
}

@media (max-width: 480px) {
  .hero-text h1 { font-size: 2.2rem; }
  .hero-text p  { font-size: 0.9rem; }
}

@media (max-width: 360px) {
  .hero-text h1 { font-size: 1.9rem; }
  .section-title { font-size: 1.2rem; }
  .product-card { flex: 0 0 calc(52% - 0.4rem); }
}

@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .cart-footer { padding-bottom: calc(1.25rem + env(safe-area-inset-bottom)); }
}

/* --- FOOTER --- */
footer {
    background-color: #f8f8f8;
    color: #333;
    padding: 3rem 1.5rem 1rem;
    margin-top: 3rem;
    border-top: 1px solid #eee;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-column h4 {
    color: #000;
    font-weight: 700;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    color: #555;
    cursor: pointer;
}

.footer-column ul li:hover {
    color: #ed1c8a;
}

.footer-contact i {
    width: 20px;
    margin-right: 8px;
    color: #ed1c8a;
}

.newsletter-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-top: 10px;
    outline: none;
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.75rem;
  color: #999;
  border-top: 1px solid #eee;
}

/* ─── UPSELL 1 STYLES ─── */
.upsell-page { background: #fff !important; }

.upsell-header-banner {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.upsell-container {
  max-width: 500px;
  margin: 0 auto;
  padding: 2rem 5%;
  text-align: center;
}

.upsell-headline {
  font-size: 2.2rem;
  font-weight: 950;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.upsell-headline span { color: var(--pink); }

.upsell-subheadline {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
  font-weight: 500;
}

.upsell-product-card {
  background: #f9f9f9;
  border-radius: 24px;
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.02);
}

.upsell-offer-badge {
  position: absolute;
  top: -15px;
  right: -10px;
  background: var(--pink-gradient);
  color: #fff;
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 4px 15px rgba(233, 30, 140, 0.4);
  transform: rotate(5deg);
}

.upsell-img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.1));
}

.upsell-prices {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 0.5rem;
}

.upsell-old-price {
  font-size: 1.1rem;
  color: #aaa;
  text-decoration: line-through;
  font-weight: 600;
}

.upsell-new-price {
  font-size: 2.2rem;
  color: var(--dark);
  font-weight: 900;
}

.upsell-installments {
  font-size: 0.9rem;
  color: #ed1c8a;
  font-weight: 800;
  margin-bottom: 2rem;
}

.upsell-btn {
  display: block;
  width: 100%;
  background: var(--pink-gradient);
  color: #fff;
  padding: 1.25rem;
  border-radius: 16px;
  border: none;
  font-size: 1.2rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(233, 30, 140, 0.4);
  transition: transform 0.2s;
  animation: pulse-pink 2s infinite;
  text-decoration: none;
}

.upsell-btn:hover { transform: scale(1.02); }

@keyframes pulse-pink {
  0% { box-shadow: 0 0 0 0 rgba(233, 30, 140, 0.7); }
  70% { box-shadow: 0 0 0 20px rgba(233, 30, 140, 0); }
  100% { box-shadow: 0 0 0 0 rgba(233, 30, 140, 0); }
}

.upsell-no-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: #999;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s;
}

.upsell-no-link:hover { color: #666; }

.upsell-stock-bar {
  margin-top: 2rem;
  background: #eee;
  height: 6px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.upsell-stock-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 12%;
  background: #e53935;
}

.upsell-stock-text {
  font-size: 0.75rem;
  color: #e53935;
  font-weight: 800;
  margin-top: 8px;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .upsell-headline { font-size: 1.8rem; }
  .upsell-new-price { font-size: 1.9rem; }
}

/* --- SHIPPING OPTION --- */
.shipping-selection {
    background: #fff;
    border: 1.5px solid #20c997;
    border-radius: 10px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 1rem 0;
    cursor: pointer;
}

.shipping-info strong {
    color: #20c997;
    display: block;
    font-size: 0.9rem;
}

.shipping-info span {
    font-size: 0.8rem;
    color: #666;
}

/* --- BLOCKED PAYMENT --- */
.payment-option-blocked {
    display: flex;
    gap: 12px;
    align-items: center;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 12px;
    border: 1.5px solid #eee;
    margin-bottom: 1rem;
    filter: grayscale(0.8);
    opacity: 0.7;
    cursor: not-allowed;
    position: relative;
}

.payment-option-blocked .lock-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.7rem;
    background: #888;
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
}

/* ─── WHATSAPP BUTTON ─── */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff !important;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}
