/* Global / Common Styles */
:root {
  --primary-color: #764ba2;
  --secondary-color: #667eea;
  --accent-color: #ff9966;
  --text-dark: #1a202c;
  --text-light: #4a5568;
  --input-bg: rgba(243, 244, 246, 0.8);
  --glass-bg: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(255, 255, 255, 0.5);
}

body {
  font-family: "Outfit", sans-serif;
  overflow-x: hidden;
  margin: 0;
  background: #f8f9fa;
  cursor:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='32' height='32'><path d='M226.5 92.9c14.3 42.9-.3 86.2-32.6 96.8s-70.1-15.6-84.4-58.5s.3-86.2 32.6-96.8s70.1 15.6 84.4 58.5zM100.4 198.6c18.9 32.4 14.3 70.1-10.2 84.1s-59.7-.9-78.5-33.3S-2.7 179.3 21.8 165.3s59.7 .9 78.5 33.3zM69.2 401.2C121.6 259.9 214.7 224 256 224s134.4 35.9 186.8 177.2c3.6 9.7 5.2 20.1 5.2 30.5v1.6c0 25.8-20.9 46.7-46.7 46.7c-11.5 0-22.9-1.4-34-4.2l-88-22c-15.3-3.8-31.3-3.8-46.6 0l-88 22c-11.1 2.8-22.5 4.2-34 4.2C84.9 480 64 459.1 64 433.3v-1.6c0-10.4 1.6-20.8 5.2-30.5zM421.8 282.7c-24.5-14-29.1-51.7-10.2-84.1s54-47.3 78.5-33.3s29.1 51.7 10.2 84.1s-54 47.3-78.5 33.3zM310.1 189.7c-32.3-10.6-46.9-53.9-32.6-96.8s52.1-69.1 84.4-58.5s46.9 53.9 32.6 96.8s-52.1 69.1-84.4 58.5z' fill='%23764ba2'/></svg>")
      16 16,
    auto;
}

/* --- VCARD PROFILE STYLES (wizytowka.php) --- */
.vcard-body {
  background: #5c59ba; /* Exact purple shade from mockup */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  margin: 0;
}

/* --- HOMEPAGE STYLES (index.html) --- */
.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 6rem 0;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  font-weight: 300;
}

.btn-cta {
  background-color: white;
  color: var(--primary-color);
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  transition: all 0.3s;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  color: var(--primary-color);
}

.feature-card {
  text-align: center;
  padding: 2rem;
  border-radius: 1rem;
  transition: all 0.3s;
  background: white;
  height: 100%;
}

.feature-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1) 0%,
    rgba(118, 75, 162, 0.1) 100%
  );
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  font-size: 1.8rem;
}

.mockup-container {
  position: relative;
}

.mockup-img {
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  transform: rotate(-3deg);
  border: 5px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.5s;
}

.mockup-img:hover {
  transform: rotate(0deg) scale(1.02);
}

.pricing-card {
  border: 1px solid #eee;
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
  background: white;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pricing-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.pricing-card.featured {
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  color: white;
  border: 3px solid #fdb931;
  z-index: 10;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured::after {
  content: "POLECANE";
  position: absolute;
  top: 15px;
  right: -30px;
  background: #fdb931;
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 5px 40px;
  transform: rotate(45deg);
}

.pricing-card.featured:hover {
  transform: translateY(-20px) scale(1.02);
  box-shadow: 0 35px 70px rgba(253, 185, 49, 0.25);
}

.pricing-price {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 1.5rem 0;
  letter-spacing: -2px;
}

.pricing-period {
  font-size: 1rem;
  opacity: 0.7;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 50%;
  height: 300%;
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(45deg);
  transition: all 0.7s;
  pointer-events: none;
}

.pricing-card:hover::before {
  left: 150%;
}

.btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2) !important;
}

.btn:active {
  transform: translateY(-2px) scale(0.98);
}

.cta-section {
  background: #f7fafc;
  padding: 5rem 0;
  text-align: center;
}

.icon-box i {
  transition: all 0.5s ease;
}

.feature-card:hover .icon-box i {
  transform: scale(1.2) rotate(10deg);
  color: var(--accent-color);
}

.feature-card:hover .icon-box {
  background: var(--primary-color);
  color: white;
}

/* --- ORDER FORM STYLES (zamoww.html) --- */
.order-body {
  background: var(
    --primary-gradient,
    linear-gradient(135deg, #667eea 0%, #764ba2 100%)
  );
  min-height: 100vh;
  padding: 2rem 1rem;
}

.form-container {
  max-width: 700px;
  background: var(--glass-bg);
  margin: auto;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.section-title {
  font-size: 1.1rem;
  color: #764ba2;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 0.5rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.form-label {
  font-weight: 500;
  color: #4a5568;
}

.form-control,
.form-select {
  border: 2px solid #cbd5e0; /* Visible border */
  background-color: var(--input-bg);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  transition: all 0.3s;
}

.form-control:focus,
.form-select:focus {
  background-color: #fff;
  border-color: #764ba2;
  box-shadow: 0 0 0 3px rgba(118, 75, 162, 0.1);
}

.payment-option {
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.payment-option:hover {
  border-color: #764ba2;
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(118, 75, 162, 0.15);
}

.payment-option.selected {
  border-color: #764ba2;
  background-color: rgba(118, 75, 162, 0.05);
  box-shadow: 0 10px 25px rgba(118, 75, 162, 0.2);
}

.payment-option.selected::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 10px;
  right: 10px;
  color: #764ba2;
  animation: popIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.payment-option i {
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.payment-option:hover i {
  transform: scale(1.3) rotate(12deg);
  color: #764ba2;
}

.payment-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #4a5568;
}

.btn-submit {
  width: 100%;
  background: var(--primary-gradient);
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 2rem;
  transition: transform 0.2s;
}

.btn-submit:hover {
  transform: scale(1.02);
  box-shadow: 0 5px 15px rgba(118, 75, 162, 0.3);
}

.input-group-text {
  background-color: #e2e8f0;
  border: none;
  border-radius: 12px 0 0 12px;
}

.input-group .form-control {
  border-radius: 0 12px 12px 0;
}

/* --- VCARD PROFILE STYLES (wizytowka.php) --- */
.vcard-body {
  background: #5c59ba; /* Exact purple shade from mockup */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  margin: 0;
}

/* Kursor łapki dla psów i kotów na CAŁEJ STRONIE wizytówki */
.vcard-body.cursor-dog,
.vcard-body.cursor-cat,
.vcard-body.cursor-dog *,
.vcard-body.cursor-cat * {
  cursor:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" width="32" height="32"><path d="M226.5 92.9c14.3 42.9-.3 86.2-32.6 96.8s-70.1-15.6-84.4-58.5s.3-86.2 32.6-96.8s70.1 15.6 84.4 58.5zM100.4 198.6c18.9 32.4 14.3 70.1-10.2 84.1s-59.7-.9-78.5-33.3S-2.7 179.3 21.8 165.3s59.7 .9 78.5 33.3zM69.2 401.2C121.6 259.9 214.7 224 256 224s134.4 35.9 186.8 177.2c3.6 9.7 5.2 20.1 5.2 30.5v1.6c0 25.8-20.9 46.7-46.7 46.7c-11.5 0-22.9-1.4-34-4.2l-88-22c-15.3-3.8-31.3-3.8-46.6 0l-88 22c-11.1 2.8-22.5 4.2-34 4.2C84.9 480 64 459.1 64 433.3v-1.6c0-10.4 1.6-20.8 5.2-30.5zM421.8 282.7c-24.5-14-29.1-51.7-10.2-84.1s54-47.3 78.5-33.3s29.1 51.7 10.2 84.1s-54 47.3-78.5 33.3zM310.1 189.7c-32.3-10.6-46.9-53.9-32.6-96.8s52.1-69.1 84.4-58.5s46.9 53.9 32.6 96.8s-52.1 69.1-84.4 58.5z" fill="%23764ba2"/></svg>'),
    auto !important;
}

.card-container {
  background: #fdfdfd;
  border-radius: 40px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
  width: 100%;
  max-width: 650px; /* Wider for 2 columns */
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.card-male {
  background-color: #f0f7ff !important;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" width="30" height="30" opacity="0.04"><path fill="%233b82f6" d="M226.5 92.9c14.3 42.9-.3 86.2-32.6 96.8s-70.1-15.6-84.4-58.5s.3-86.2 32.6-96.8s70.1 15.6 84.4 58.5zM100.4 198.6c18.9 32.4 14.3 70.1-10.2 84.1s-59.7-.9-78.5-33.3S-2.7 179.3 21.8 165.3s59.7 .9 78.5 33.3zM69.2 401.2C121.6 259.9 214.7 224 256 224s134.4 35.9 186.8 177.2c3.6 9.7 5.2 20.1 5.2 30.5v1.6c0 25.8-20.9 46.7-46.7 46.7c-11.5 0-22.9-1.4-34-4.2l-88-22c-15.3-3.8-31.3-3.8-46.6 0l-88 22c-11.1 2.8-22.5 4.2-34 4.2C84.9 480 64 459.1 64 433.3v-1.6c0-10.4 1.6-20.8 5.2-30.5zM421.8 282.7c-24.5-14-29.1-51.7-10.2-84.1s54-47.3 78.5-33.3s29.1 51.7 10.2 84.1s-54 47.3-78.5 33.3zM310.1 189.7c-32.3-10.6-46.9-53.9-32.6-96.8s52.1-69.1 84.4-58.5s46.9 53.9 32.6 96.8s-52.1 69.1-84.4 58.5z"/></svg>');
  background-size: 60px 60px;
}

.card-female {
  background-color: #fff5f7 !important;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" width="30" height="30" opacity="0.04"><path fill="%23ec4899" d="M226.5 92.9c14.3 42.9-.3 86.2-32.6 96.8s-70.1-15.6-84.4-58.5s.3-86.2 32.6-96.8s70.1 15.6 84.4 58.5zM100.4 198.6c18.9 32.4 14.3 70.1-10.2 84.1s-59.7-.9-78.5-33.3S-2.7 179.3 21.8 165.3s59.7 .9 78.5 33.3zM69.2 401.2C121.6 259.9 214.7 224 256 224s134.4 35.9 186.8 177.2c3.6 9.7 5.2 20.1 5.2 30.5v1.6c0 25.8-20.9 46.7-46.7 46.7c-11.5 0-22.9-1.4-34-4.2l-88-22c-15.3-3.8-31.3-3.8-46.6 0l-88 22c-11.1 2.8-22.5 4.2-34 4.2C84.9 480 64 459.1 64 433.3v-1.6c0-10.4 1.6-20.8 5.2-30.5zM421.8 282.7c-24.5-14-29.1-51.7-10.2-84.1s54-47.3 78.5-33.3s29.1 51.7 10.2 84.1s-54 47.3-78.5 33.3zM310.1 189.7c-32.3-10.6-46.9-53.9-32.6-96.8s52.1-69.1 84.4-58.5s46.9 53.9 32.6 96.8s-52.1 69.1-84.4 58.5z"/></svg>');
  background-size: 60px 60px;
}

.cursor-dog,
.cursor-cat,
.cursor-rabbit,
.cursor-rodent {
  cursor:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" width="32" height="32"><path d="M256 160c-25.5 0-46.3 16.1-50.5 37.6C191.1 228.4 167 256 128 256c-35.3 0-64 28.7-64 64s28.7 64 64 64c20.4 0 38.6-9.6 50.4-24.5 13.9 16.5 35.1 26.5 58.7 26.5 24 0 45.4-10.4 59.4-27.4 11.7 15.6 30.1 25.4 50.8 25.4 35.3 0 64-28.7 64-64s-28.7-64-64-64c-39 0-63.1-27.6-77.5-58.4-4.2-21.5-25-37.6-50.5-37.6z" fill="%23764ba2"/></svg>'),
    auto !important;
}

/* Paw decoration */
.card-container::before {
  content: "\f1b0";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-size: 15rem;
  color: rgba(0, 0, 0, 0.03);
  pointer-events: none;
  transform: rotate(-15deg);
}

.card-header-img {
  height: 110px;
  background: var(--primary-gradient);
  position: relative;
  flex-shrink: 0;
}

.profile-section {
  text-align: center;
  margin-top: -85px;
  position: relative;
  padding: 0 20px;
}

.profile-img {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  object-fit: cover;
  border: 7px solid white;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" width="40" height="40" opacity="0.1"><path d="M256 160c-25.5 0-46.3 16.1-50.5 37.6C191.1 228.4 167 256 128 256c-35.3 0-64 28.7-64 64s28.7 64 64 64c20.4 0 38.6-9.6 50.4-24.5 13.9 16.5 35.1 26.5 58.7 26.5 24 0 45.4-10.4 59.4-27.4 11.7 15.6 30.1 25.4 50.8 25.4 35.3 0 64-28.7 64-64s-28.7-64-64-64c-39 0-63.1-27.6-77.5-58.4-4.2-21.5-25-37.6-50.5-37.6z" fill="%23ccc"/></svg>');
  background-size: 60px 60px;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" width="32" height="32"><path d="M256 160c-25.5 0-46.3 16.1-50.5 37.6C191.1 228.4 167 256 128 256c-35.3 0-64 28.7-64 64s28.7 64 64 64c20.4 0 38.6-9.6 50.4-24.5 13.9 16.5 35.1 26.5 58.7 26.5 24 0 45.4-10.4 59.4-27.4 11.7 15.6 30.1 25.4 50.8 25.4 35.3 0 64-28.7 64-64s-28.7-64-64-64c-39 0-63.1-27.6-77.5-58.4-4.2-21.5-25-37.6-50.5-37.6z" fill="%23764ba2"/></svg>'),
    zoom-in;
}

.profile-img.zoomed {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 90vh;
  z-index: 10001;
  border-radius: 20px;
  cursor: zoom-out;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: none;
}

.zoom-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: none;
  cursor: zoom-out;
}

.zoom-overlay.active {
  display: block;
}

.system-info {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  text-align: center;
  width: 100%;
  max-width: 400px;
}

.system-info b {
  color: white;
}

.pet-name {
  font-size: 2.6rem;
  font-weight: 900;
  color: #1e293b;
  margin: 12px 0 2px;
  text-transform: none;
  letter-spacing: -1px;
}

.pet-breed {
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.info-list {
  padding: 10px 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 20px;
  padding: 0 30px 25px;
}

@media (max-width: 550px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

.info-item {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #1e293b;
}

.info-icon {
  width: 32px;
  height: 32px;
  background: #f1f5f9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6366f1;
  margin-right: 12px;
  font-size: 0.9rem;
}

.info-item b {
  margin-left: 4px;
  color: #0f172a;
}

.age-bubble {
  background: #f1f5f9;
  color: #475569;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
}

.age-bubble.human {
  background: var(--primary-gradient);
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.info-label {
  font-weight: 600;
  min-width: 90px;
  color: #4a5568;
}

.info-value {
  flex: 1;
  color: var(--text-dark);
}

.actions {
  padding: 0 25px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.btn-call,
.btn-wa {
  height: 60px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white !important;
  font-size: 1.6rem;
  border: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-call {
  background: linear-gradient(135deg, #0d9488 0%, #10b981 100%);
}
.btn-wa {
  background: #22c55e;
}

.btn-call:hover,
.btn-wa:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
}

.location-badge {
  text-align: center;
  color: #64748b;
  font-size: 0.85rem;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 600;
}

.map-section {
  width: 100%;
  height: 160px;
  background: #f1f5f9;
  overflow: hidden;
  margin-top: auto;
}

.map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.qr-section {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  margin: 0 30px 30px;
  display: none; /* Hidden on screen */
}

.qr-img {
  max-width: 120px;
  mix-blend-mode: multiply;
}

.tools-menu {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.tool-btn {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.tool-btn:hover {
  background: #fff;
  transform: scale(1.1);
}

.footer-meta {
  font-size: 0.75rem;
  color: #a0aec0;
  text-align: center;
  padding: 10px 20px 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-meta a {
  color: #764ba2;
  text-decoration: none;
}

/* Print styles */
@media print {
  body {
    background: none;
  }
  .card-container {
    box-shadow: none;
    border: 1px solid #ddd;
  }
  .tools-menu,
  .actions {
    display: none;
  }
  .qr-section {
    display: block !important;
  } /* Show only on print */
}

.system-info {
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  text-align: center;
  width: 100%;
  max-width: 500px;
  line-height: 1.2;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.2px;
}

.system-info b {
  color: #fff;
  font-weight: 700;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.pet-list-body {
  background: #f8f9fa;
  padding: 2rem;
}

.pet-card {
  transition: transform 0.2s;
  cursor: pointer;
}
.pet-card:hover {
  transform: translateY(-5px);
}

/* Horizontal scrolling packages for mobile */
@media (max-width: 600px) {
  .packages-scroll {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 5px 5px 15px 5px;
    margin-left: -10px;
    margin-right: -10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hide scrollbar Firefox */
  }
  .packages-scroll::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
  }
  .packages-scroll .col-3 {
    flex: 0 0 160px;
    width: 160px;
  }
}

/* Custom highlight colors for packages */
#pkg-gratis.selected {
  border-color: #6c757d !important;
  background-color: rgba(108, 117, 125, 0.1) !important;
  box-shadow: 0 10px 25px rgba(108, 117, 125, 0.2) !important;
}
#pkg-gratis.selected::after {
  color: #6c757d !important;
}

#pkg-premium_130.selected {
  border-color: #0d6efd !important;
  background-color: rgba(13, 110, 253, 0.1) !important;
  box-shadow: 0 10px 25px rgba(13, 110, 253, 0.2) !important;
}
#pkg-premium_130.selected::after {
  color: #0d6efd !important;
}

#pkg-premium_195.selected {
  border-color: #ffc107 !important;
  background-color: rgba(255, 193, 7, 0.1) !important;
  box-shadow: 0 10px 25px rgba(255, 193, 7, 0.2) !important;
}
#pkg-premium_195.selected::after {
  color: #ffc107 !important;
}

#pkg-platinum_250.selected {
  border-color: #212529 !important;
  background-color: rgba(33, 37, 41, 0.1) !important;
  box-shadow: 0 10px 25px rgba(33, 37, 41, 0.2) !important;
}
#pkg-platinum_250.selected::after {
  color: #212529 !important;
}

/* Fix for mobile hero section clipping mockups */
@media (max-width: 991px) {
  .hero-section {
    padding-bottom: 16rem !important;
    clip-path: polygon(0 0, 100% 0, 100% 98%, 0 100%) !important;
  }
  .mockup-container {
      margin-top: 3rem;
  }
}

/* --- DARK MODE TABLE STYLES --- */
[data-bs-theme="dark"] .table {
    background-color: transparent !important;
}
[data-bs-theme="dark"] .table tbody tr {
    background-color: #0b1334 !important;
    color: #e2e8f0;
    transition: background-color 0.2s;
}
[data-bs-theme="dark"] .table-hover tbody tr:hover {
    background-color: #1a2350 !important;
    color: #fff;
}
[data-bs-theme="dark"] .table thead th { 
    background-color: #020617; 
    color: #94a3b8; 
    border-bottom: 2px solid #3730a3; 
}
