/* Pet Tracker Promo Styles */
.pet-tracker-promo {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  color: white;
  position: relative;
  overflow: hidden;
  border: 2px solid #3498db;
}

.pet-tracker-promo::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(52, 152, 219, 0.1) 0%,
    transparent 70%
  );
  transform: rotate(30deg);
  z-index: 1;
}

.pet-tracker-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.pet-tracker-info h2 {
  font-size: 28px;
  margin-bottom: 15px;
  background: linear-gradient(45deg, #3498db, #2ecc71);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.pet-tracker-info p {
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 16px;
  color: #ecf0f1;
}

.pet-tracker-features {
  margin-bottom: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.feature-item i {
  color: #2ecc71;
  margin-right: 10px;
  font-size: 18px;
  width: 24px;
}

.pet-tracker-price {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.original-price {
  text-decoration: line-through;
  color: #bdc3c7;
  margin-right: 15px;
  font-size: 18px;
}

.discounted-price {
  font-size: 28px;
  font-weight: 800;
  color: #e74c3c;
}

.discount-badge {
  background: #e74c3c;
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-left: 15px;
}

.pet-tracker-cta {
  display: flex;
  gap: 15px;
}

.btn-primary-large {
  padding: 12px 25px;
  background: linear-gradient(45deg, #3498db, #2980b9);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-outline {
  padding: 12px 25px;
  background: transparent;
  color: #3498db;
  border: 2px solid #3498db;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  background: rgba(52, 152, 219, 0.1);
}

.pet-tracker-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.pet-tracker-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s ease;
}

.pet-tracker-image:hover img {
  transform: scale(1.05);
}

.floating-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3498db;
  font-size: 18px;
  animation: float 3s infinite ease-in-out;
}

.floating-icon:nth-child(1) {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.floating-icon:nth-child(2) {
  top: 20%;
  right: 15%;
  animation-delay: 1s;
}

.floating-icon:nth-child(3) {
  bottom: 15%;
  left: 15%;
  animation-delay: 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .pet-tracker-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .pet-tracker-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .pet-tracker-promo {
    padding: 20px;
  }

  .pet-tracker-info h2 {
    font-size: 24px;
  }

  .pet-tracker-cta {
    flex-direction: column;
  }

  .discounted-price {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .pet-tracker-promo {
    padding: 15px;
  }

  .pet-tracker-info h2 {
    font-size: 22px;
  }

  .pet-tracker-price {
    flex-wrap: wrap;
    gap: 10px;
  }

  .pet-tracker-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .floating-icon {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}
