@import url('https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css');
@import url('https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Fredoka:wght@400;500;600;700&display=swap');

:root {
  --primary-color: #FF6B9D;
  --secondary-color: #4ECDC4;
  --accent-color: #FFE66D;
  --dark-color: #2D3561;
  --light-color: #FFF8F0;
  --paw-orange: #FF9A56;
  --pet-purple: #C77DFF;
  --pet-green: #95D5B2;
  --text-primary: #2D3561;
  --text-secondary: #5A6B8C;
  --shadow-sm: 0 2px 8px rgba(255, 107, 157, 0.1);
  --shadow-md: 0 4px 16px rgba(255, 107, 157, 0.15);
  --shadow-lg: 0 8px 24px rgba(255, 107, 157, 0.2);
  --shadow-xl: 0 12px 32px rgba(255, 107, 157, 0.25);
  --gradient-primary: linear-gradient(135deg, #FF6B9D 0%, #C77DFF 100%);
  --gradient-secondary: linear-gradient(135deg, #4ECDC4 0%, #95D5B2 100%);
  --gradient-accent: linear-gradient(135deg, #FFE66D 0%, #FF9A56 100%);
  --border-radius-sm: 12px;
  --border-radius-md: 20px;
  --border-radius-lg: 30px;
  --transition-speed: 0.3s;
}

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

body {
  font-family: 'Quicksand', sans-serif;
  color: var(--text-primary);
  background-color: var(--light-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark-color);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-speed) ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 248, 240, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-speed) ease;
}

header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 248, 240, 0.98);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform var(--transition-speed) ease;
}

.logo:hover {
  transform: scale(1.05) rotate(-2deg);
}

.logo i {
  font-size: 2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pawBounce 2s infinite;
}

@keyframes pawBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

nav ul li a {
  font-weight: 600;
  color: var(--text-primary);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-sm);
  position: relative;
  transition: all var(--transition-speed) ease;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 10px;
  transition: width var(--transition-speed) ease;
}

nav ul li a:hover::after {
  width: 80%;
}

nav ul li a:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--primary-color);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-speed) ease;
}

.mobile-menu-toggle:hover {
  background: var(--gradient-primary);
  color: white;
  transform: rotate(90deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: white;
  box-shadow: var(--shadow-xl);
  padding: 2rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 2000;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu ul {
  list-style: none;
  margin-top: 3rem;
}

.mobile-menu ul li {
  margin-bottom: 1.5rem;
}

.mobile-menu ul li a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  color: var(--text-primary);
  transition: all var(--transition-speed) ease;
}

.mobile-menu ul li a:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateX(8px);
}

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary-color);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition-speed) ease;
}

.mobile-menu-close:hover {
  background: var(--gradient-primary);
  color: white;
  transform: rotate(90deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--border-radius-md);
  font-weight: 600;
  font-family: 'Fredoka', sans-serif;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--gradient-secondary);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-accent {
  background: var(--gradient-accent);
  color: var(--dark-color);
  box-shadow: var(--shadow-md);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  position: relative;
}

.btn-outline::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--gradient-primary);
  transition: width var(--transition-speed) ease;
  z-index: -1;
  border-radius: var(--border-radius-md);
}

.btn-outline:hover::after {
  width: 100%;
}

.btn-outline:hover {
  color: white;
  border-color: transparent;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-top: 4px solid var(--primary-color);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.cookie-banner-icon {
  font-size: 2.5rem;
  color: var(--paw-orange);
  animation: cookieRotate 3s infinite;
}

@keyframes cookieRotate {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-10deg); }
  75% { transform: rotate(10deg); }
}

.cookie-banner-text {
  color: var(--text-secondary);
  line-height: 1.5;
}

.cookie-banner-text a {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-banner-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

form {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  max-width: 600px;
  width: 100%;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-primary);
  font-family: 'Fredoka', sans-serif;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid #E8E8E8;
  border-radius: var(--border-radius-sm);
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  color: var(--text-primary);
  transition: all var(--transition-speed) ease;
  background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(255, 107, 157, 0.1);
  transform: translateY(-2px);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #B8B8B8;
}

.form-group .form-icon {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  font-size: 1.2rem;
  pointer-events: none;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  width: 22px;
  height: 22px;
  cursor: pointer;
  accent-color: var(--primary-color);
}

.card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-speed) ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-speed) ease;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--border-radius-md);
  margin-bottom: 1.5rem;
  transition: all var(--transition-speed) ease;
}

.card:hover .card-image {
  transform: scale(1.05);
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--dark-color);
}

.card-text {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 2px solid #F0F0F0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.accordion {
  background: white;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: all var(--transition-speed) ease;
}

.accordion:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  background: white;
  transition: all var(--transition-speed) ease;
  position: relative;
}

.accordion-header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--gradient-primary);
  transform: scaleY(0);
  transition: transform var(--transition-speed) ease;
}

.accordion-header:hover::before {
  transform: scaleY(1);
}

.accordion-header:hover {
  background: rgba(255, 107, 157, 0.05);
}

.accordion-title {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  color: var(--dark-color);
  font-size: 1.125rem;
}

.accordion-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform var(--transition-speed) ease;
}

.accordion.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.5rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.accordion.active .accordion-content {
  max-height: 500px;
  padding: 1.5rem;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(255, 107, 157, 0.2);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 2rem auto;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.paw-loader {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.paw-loader::before,
.paw-loader::after {
  content: '🐾';
  position: absolute;
  font-size: 2rem;
  animation: pawWalk 1.5s infinite;
}

.paw-loader::before {
  left: 0;
  animation-delay: 0s;
}

.paw-loader::after {
  right: 0;
  animation-delay: 0.75s;
}

@keyframes pawWalk {
  0%, 100% { opacity: 0; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-20px); }
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--light-color);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 10px;
  border: 2px solid var(--light-color);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gradient-secondary);
}

.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-speed) ease;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.hero-section {
  padding: 6rem 2rem;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '🐾';
  position: absolute;
  font-size: 20rem;
  opacity: 0.1;
  top: -5rem;
  right: -5rem;
  animation: floatPaw 6s ease-in-out infinite;
}

@keyframes floatPaw {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-30px, 30px) rotate(15deg); }
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  color: white;
  text-align: center;
}

.hero-title {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 1.5rem;
  animation: slideInDown 0.8s ease;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section {
  padding: 5rem 2rem;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  font-family: 'Fredoka', sans-serif;
}

.badge-primary {
  background: rgba(255, 107, 157, 0.15);
  color: var(--primary-color);
}

.badge-secondary {
  background: rgba(78, 205, 196, 0.15);
  color: var(--secondary-color);
}

.badge-accent {
  background: rgba(255, 230, 109, 0.3);
  color: #CC8400;
}

.product-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: 'Fredoka', sans-serif;
}

.product-price-old {
  font-size: 1.25rem;
  color: var(--text-secondary);
  text-decoration: line-through;
  margin-left: 0.5rem;
}

.rating {
  display: flex;
  gap: 0.25rem;
  color: var(--accent-color);
  font-size: 1.25rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: white;
  color: var(--primary-color);
  font-size: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-speed) ease;
}

.social-icon:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-5px) rotate(360deg);
  box-shadow: var(--shadow-md);
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 3rem 2rem 1rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-speed) ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-section ul li a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(45, 53, 97, 0.8);
  backdrop-filter: blur(5px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-speed) ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-secondary);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition-speed) ease;
}

.modal-close:hover {
  background: var(--gradient-primary);
  color: white;
  transform: rotate(90deg);
}

.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: white;
  padding: 1.25rem 1.5rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 300px;
  transform: translateX(400px);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 10002;
  border-left: 4px solid var(--primary-color);
}

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

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

.toast-content {
  flex: 1;
}

.toast-title {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.25rem;
}

.toast-message {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.image-gallery-item {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.image-gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.image-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-speed) ease;
}

.image-gallery-item:hover img {
  transform: scale(1.1);
}

.image-gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(45, 53, 97, 0.9), transparent);
  color: white;
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform var(--transition-speed) ease;
}

.image-gallery-item:hover .image-gallery-overlay {
  transform: translateY(0);
}

.testimonial {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all var(--transition-speed) ease;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 6rem;
  color: var(--primary-color);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testimonial-text {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
}

.testimonial-author-info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.testimonial-author-info p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.tabs {
  display: flex;
  gap: 1rem;
  border-bottom: 2px solid #E8E8E8;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab {
  padding: 1rem 1.5rem;
  background: none;
  border: none;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  position: relative;
  transition: all var(--transition-speed) ease;
  border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
}

.tab::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-speed) ease;
}

.tab:hover {
  color: var(--primary-color);
  background: rgba(255, 107, 157, 0.05);
}

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

.tab.active::after {
  transform: scaleX(1);
}

.tab-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity var(--transition-speed) ease;
}

.tab-content.active {
  opacity: 1;
  max-height: none;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #E8E8E8;
  border-radius: 50px;
  overflow: hidden;
  margin: 1rem 0;
}

.progress-bar-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 50px;
  transition: width 0.6s ease;
  position: relative;
}

.progress-bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.alert {
  padding: 1.25rem 1.5rem;
  border-radius: var(--border-radius-md);
  margin: 1rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: slideInRight 0.4s ease;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.alert-success {
  background: rgba(149, 213, 178, 0.2);
  color: var(--pet-green);
  border-left: 4px solid var(--pet-green);
}

.alert-warning {
  background: rgba(255, 230, 109, 0.3);
  color: #CC8400;
  border-left: 4px solid var(--accent-color);
}

.alert-error {
  background: rgba(255, 107, 157, 0.15);
  color: var(--primary-color);
  border-left: 4px solid var(--primary-color);
}

.alert-info {
  background: rgba(78, 205, 196, 0.15);
  color: var(--secondary-color);
  border-left: 4px solid var(--secondary-color);
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0.75rem 1.25rem;
  background: white;
  border: 2px solid #E8E8E8;
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-speed) ease;
  font-weight: 600;
}

.dropdown-toggle:hover {
  border-color: var(--primary-color);
  background: rgba(255, 107, 157, 0.05);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: white;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-speed) ease;
  z-index: 1000;
}

.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border-radius: var(--border-radius-sm);
  color: var(--text-primary);
  transition: all var(--transition-speed) ease;
  cursor: pointer;
}

.dropdown-item:hover {
  background: var(--gradient-primary);
  color: white;
}

.price-table {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all var(--transition-speed) ease;
  border: 2px solid transparent;
}

.price-table:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-xl);
}

.price-table.featured {
  background: var(--gradient-primary);
  color: white;
  transform: scale(1.05);
}

.price-table.featured .price-table-title,
.price-table.featured .price-table-price {
  color: white;
}

.price-table-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.price-table-price {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: 'Fredoka', sans-serif;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price-table.featured .price-table-price {
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price-table-period {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.price-table.featured .price-table-period {
  color: rgba(255, 255, 255, 0.8);
}

.price-table-features {
  list-style: none;
  margin-bottom: 2rem;
}

.price-table-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #E8E8E8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.price-table.featured .price-table-features li {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .header-container {
    padding: 1rem;
  }
  
  nav ul {
    display: none;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .card-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner-actions {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-banner-actions .btn {
    width: 100%;
    justify-content: center;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .tabs {
    overflow-x: auto;
    scrollbar-width: thin;
  }
  
  .price-table.featured {
    transform: scale(1);
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.4rem;
  }
  
  .hero-section {
    padding: 4rem 1rem;
  }
  
  .section {
    padding: 3rem 1rem;
  }
  
  form {
    padding: 1.5rem;
  }
  
  .modal {
    padding: 1.5rem;
    width: 95%;
  }
  
  .toast {
    min-width: auto;
    max-width: 90%;
    right: 5%;
  }
}

.shine-effect {
  position: relative;
  overflow: hidden;
}

.shine-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.shine-effect:hover::after {
  left: 100%;
}

.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.fade-in {
  animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.slide-up {
  animation: slideUp 0.6s ease;
}

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