.product-card[data-astro-cid-tjdfhdqb] {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(40, 52, 118, 0.1);
  box-shadow: none;
}
.product-card-link[data-astro-cid-tjdfhdqb] {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
.product-card[data-astro-cid-tjdfhdqb]:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px #00000026;
  border-color: var(--color-primary);
}
.product-image[data-astro-cid-tjdfhdqb] {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-image[data-astro-cid-tjdfhdqb] img[data-astro-cid-tjdfhdqb] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.product-card[data-astro-cid-tjdfhdqb]:hover
  .product-image[data-astro-cid-tjdfhdqb]
  img[data-astro-cid-tjdfhdqb] {
  transform: scale(1.05);
}
.product-badge[data-astro-cid-tjdfhdqb] {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  z-index: 3;
}
.badge-accent[data-astro-cid-tjdfhdqb] {
  background: var(--color-accent);
}
.badge-success[data-astro-cid-tjdfhdqb] {
  background: #10b981;
}
.badge-warning[data-astro-cid-tjdfhdqb] {
  background: #f59e0b;
}
.badge-primary[data-astro-cid-tjdfhdqb] {
  background: var(--color-primary);
}
.product-actions[data-astro-cid-tjdfhdqb] {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-sm);
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s ease;
  z-index: 2;
}
.product-card[data-astro-cid-tjdfhdqb]:hover
  .product-actions[data-astro-cid-tjdfhdqb] {
  opacity: 1;
  transform: translateY(0);
}
.quantity-control[data-astro-cid-tjdfhdqb] {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  background: #fffffff2;
  border-radius: 25px;
  padding: 6px 8px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px #00000026;
}
.qty-btn[data-astro-cid-tjdfhdqb] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  background: #fff;
  color: var(--color-primary);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px #0000001a;
}
.qty-btn[data-astro-cid-tjdfhdqb]:hover {
  background: var(--color-primary);
  color: #fff;
  transform: scale(1.1);
}
.qty-btn[data-astro-cid-tjdfhdqb]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.qty-btn[data-astro-cid-tjdfhdqb]:disabled:hover {
  background: #fff;
  color: var(--color-primary);
}
.qty-value[data-astro-cid-tjdfhdqb] {
  font-weight: 600;
  font-size: 1rem;
  min-width: 24px;
  text-align: center;
  color: var(--color-text);
  padding: 0 4px;
}
.add-to-cart-btn[data-astro-cid-tjdfhdqb] {
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px #2834764d;
}
.add-to-cart-btn[data-astro-cid-tjdfhdqb]:hover {
  background: var(--color-accent);
  transform: scale(1.1);
  box-shadow: 0 6px 20px #ec91b766;
}
.add-to-cart-btn[data-astro-cid-tjdfhdqb]:active {
  transform: scale(0.95);
}
.product-info[data-astro-cid-tjdfhdqb] {
  padding: var(--spacing-md);
  text-align: center;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-name[data-astro-cid-tjdfhdqb] {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
  line-height: 1.3;
}
.product-subtitle[data-astro-cid-tjdfhdqb] {
  font-size: 1rem;
  font-weight: 600 !important;
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-sm);
}
.product-price[data-astro-cid-tjdfhdqb] {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
}
@media (max-width: 768px) {
  .product-image[data-astro-cid-tjdfhdqb] {
    height: 300px;
  }
  .product-info[data-astro-cid-tjdfhdqb] {
    padding: var(--spacing-sm);
  }
  .product-name[data-astro-cid-tjdfhdqb] {
    font-size: 1.1rem;
  }
  .product-price[data-astro-cid-tjdfhdqb] {
    font-size: 1.3rem;
  }
  .add-to-cart-btn[data-astro-cid-tjdfhdqb] {
    width: 44px;
    height: 44px;
  }
  .qty-btn[data-astro-cid-tjdfhdqb] {
    width: 28px;
    height: 28px;
  }
  .quantity-control[data-astro-cid-tjdfhdqb] {
    padding: 4px 6px;
  }
  .product-badge[data-astro-cid-tjdfhdqb] {
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    font-size: 12px;
  }
}

.cart-notification-popup[data-astro-cid-erlqpe5d] {
  position: fixed;
  top: 120px;
  right: 20px;
  width: 380px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px #00000026;
  border: 2px solid rgba(40, 52, 118, 0.1);
  z-index: 1000;
  transform: translate(120%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}

.cart-notification-popup[data-astro-cid-erlqpe5d].show {
  transform: translate(0);
  opacity: 1;
  visibility: visible;
}

.notification-content[data-astro-cid-erlqpe5d] {
  display: flex;
  flex-direction: column;
}

.notification-header[data-astro-cid-erlqpe5d] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) var(--spacing-lg);
  background: var(--color-primary);
  color: #fff;
}

.notification-icon[data-astro-cid-erlqpe5d] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #fff3;
  border-radius: 50%;
}

.close-notification[data-astro-cid-erlqpe5d] {
  width: 32px;
  height: 32px;
  background: #fff3;
  border: none;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.close-notification[data-astro-cid-erlqpe5d]:hover {
  background: #ffffff4d;
  transform: rotate(90deg);
}

.notification-body[data-astro-cid-erlqpe5d] {
  padding: var(--spacing-lg);
}

.product-info[data-astro-cid-erlqpe5d] {
  margin-bottom: var(--spacing-md);
}

.product-name[data-astro-cid-erlqpe5d] {
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-bottom: var(--spacing-xs);
  font-family: var(--font-heading);
  font-weight: 600;
}

.product-message[data-astro-cid-erlqpe5d] {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  margin: 0;
}

.order-progress[data-astro-cid-erlqpe5d] {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.progress-section[data-astro-cid-erlqpe5d] {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.progress-label[data-astro-cid-erlqpe5d] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
}

.progress-bar[data-astro-cid-erlqpe5d] {
  height: 8px;
  background: #2834761a;
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill[data-astro-cid-erlqpe5d] {
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-accent)
  );
  width: 0%;
  transition: width 0.5s ease;
  border-radius: 4px;
}

.delivery-fill[data-astro-cid-erlqpe5d] {
  background: linear-gradient(135deg, #10b981, #34d399);
}

.progress-info[data-astro-cid-erlqpe5d] {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

.notification-footer[data-astro-cid-erlqpe5d] {
  display: flex;
  gap: var(--spacing-sm);
  padding: var(--spacing-md) var(--spacing-lg);
  background: #28347605;
  border-top: 1px solid rgba(40, 52, 118, 0.1);
}

.btn-view-cart[data-astro-cid-erlqpe5d],
.btn-continue-shopping[data-astro-cid-erlqpe5d] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  flex: 1;
}

.btn-view-cart[data-astro-cid-erlqpe5d] {
  background: var(--color-primary);
  color: #fff;
}

.btn-view-cart[data-astro-cid-erlqpe5d]:hover {
  background: #1e2654;
  transform: translateY(-2px);
}

.btn-continue-shopping[data-astro-cid-erlqpe5d] {
  background: #2834761a;
  color: var(--color-primary);
}

.btn-continue-shopping[data-astro-cid-erlqpe5d]:hover {
  background: #28347633;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cart-notification-popup[data-astro-cid-erlqpe5d] {
    width: calc(100% - 40px);
    right: 20px;
    left: 20px;
    top: 100px;
  }
}

@media (max-width: 480px) {
  .cart-notification-popup[data-astro-cid-erlqpe5d] {
    width: calc(100% - 30px);
    right: 15px;
    left: 15px;
    top: 90px;
  }

  .notification-header[data-astro-cid-erlqpe5d] {
    padding: var(--spacing-sm) var(--spacing-md);
  }

  .notification-body[data-astro-cid-erlqpe5d] {
    padding: var(--spacing-md);
  }

  .notification-footer[data-astro-cid-erlqpe5d] {
    padding: var(--spacing-sm) var(--spacing-md);
    flex-direction: column;
  }

  .notification-icon[data-astro-cid-erlqpe5d] {
    width: 36px;
    height: 36px;
  }

  .close-notification[data-astro-cid-erlqpe5d] {
    width: 28px;
    height: 28px;
  }

  .product-name[data-astro-cid-erlqpe5d] {
    font-size: 1.1rem;
  }

  .product-message[data-astro-cid-erlqpe5d] {
    font-size: 0.9rem;
  }
}

.badge-sezonowe {
  background: #10b981;
}

.badge-premium {
  background: var(--color-accent);
}

.badge-klasyczne {
  background: #f59e0b;
}

.cta-section[data-astro-cid-frbqrhml] {
  position: relative;
  padding: var(--spacing-2xl) 0;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.cta-background[data-astro-cid-frbqrhml] {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #283476e6, #1e2654e6, #ec91b7e6),
    url(https://loodek.pl/wp-content/uploads/2025/06/CB5A9353-scaled.jpeg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}

.cta-content[data-astro-cid-frbqrhml] {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title[data-astro-cid-frbqrhml] {
  font-size: clamp(2rem, 5vw, 3rem);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  line-height: 1.2;
}

.cta-description[data-astro-cid-frbqrhml] {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  line-height: 1.7;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--spacing-xl);
}

.cta-buttons[data-astro-cid-frbqrhml] {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta-background[data-astro-cid-frbqrhml] {
    background-attachment: scroll;
  }

  .cta-buttons[data-astro-cid-frbqrhml] {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
  }

  .cta-buttons[data-astro-cid-frbqrhml] .btn[data-astro-cid-frbqrhml] {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .cta-section[data-astro-cid-frbqrhml] {
    padding: var(--spacing-xl) 0;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .cta-buttons[data-astro-cid-frbqrhml] {
    gap: var(--spacing-md);
  }
}

@media (min-width: 1400px) {
  .cta-content[data-astro-cid-frbqrhml] {
    max-width: 900px;
  }
}

.cart-notification-popup[data-astro-cid-erlqpe5d] {
  position: fixed;
  top: 120px;
  right: 20px;
  width: 380px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px #00000026;
  border: 2px solid rgba(40, 52, 118, 0.1);
  z-index: 1000;
  transform: translate(120%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}

.cart-notification-popup[data-astro-cid-erlqpe5d].show {
  transform: translate(0);
  opacity: 1;
  visibility: visible;
}

.notification-content[data-astro-cid-erlqpe5d] {
  display: flex;
  flex-direction: column;
}

.notification-header[data-astro-cid-erlqpe5d] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) var(--spacing-lg);
  background: var(--color-primary);
  color: #fff;
}

.notification-icon[data-astro-cid-erlqpe5d] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #fff3;
  border-radius: 50%;
}

.close-notification[data-astro-cid-erlqpe5d] {
  width: 32px;
  height: 32px;
  background: #fff3;
  border: none;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.close-notification[data-astro-cid-erlqpe5d]:hover {
  background: #ffffff4d;
  transform: rotate(90deg);
}

.notification-body[data-astro-cid-erlqpe5d] {
  padding: var(--spacing-lg);
}

.product-info[data-astro-cid-erlqpe5d] {
  margin-bottom: var(--spacing-md);
}

.product-name[data-astro-cid-erlqpe5d] {
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-bottom: var(--spacing-xs);
  font-family: var(--font-heading);
  font-weight: 600;
}

.product-message[data-astro-cid-erlqpe5d] {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  margin: 0;
}

.order-progress[data-astro-cid-erlqpe5d] {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.progress-section[data-astro-cid-erlqpe5d] {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.progress-label[data-astro-cid-erlqpe5d] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
}

.progress-bar[data-astro-cid-erlqpe5d] {
  height: 8px;
  background: #2834761a;
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill[data-astro-cid-erlqpe5d] {
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-accent)
  );
  width: 0%;
  transition: width 0.5s ease;
  border-radius: 4px;
}

.delivery-fill[data-astro-cid-erlqpe5d] {
  background: linear-gradient(135deg, #10b981, #34d399);
}

.progress-info[data-astro-cid-erlqpe5d] {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

.notification-footer[data-astro-cid-erlqpe5d] {
  display: flex;
  gap: var(--spacing-sm);
  padding: var(--spacing-md) var(--spacing-lg);
  background: #28347605;
  border-top: 1px solid rgba(40, 52, 118, 0.1);
}

.btn-view-cart[data-astro-cid-erlqpe5d],
.btn-continue-shopping[data-astro-cid-erlqpe5d] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  flex: 1;
}

.btn-view-cart[data-astro-cid-erlqpe5d] {
  background: var(--color-primary);
  color: #fff;
}

.btn-view-cart[data-astro-cid-erlqpe5d]:hover {
  background: #1e2654;
  transform: translateY(-2px);
}

.btn-continue-shopping[data-astro-cid-erlqpe5d] {
  background: #2834761a;
  color: var(--color-primary);
}

.btn-continue-shopping[data-astro-cid-erlqpe5d]:hover {
  background: #28347633;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cart-notification-popup[data-astro-cid-erlqpe5d] {
    width: calc(100% - 40px);
    right: 20px;
    left: 20px;
    top: 100px;
  }
}

@media (max-width: 480px) {
  .cart-notification-popup[data-astro-cid-erlqpe5d] {
    width: calc(100% - 30px);
    right: 15px;
    left: 15px;
    top: 90px;
  }

  .notification-header[data-astro-cid-erlqpe5d] {
    padding: var(--spacing-sm) var(--spacing-md);
  }

  .notification-body[data-astro-cid-erlqpe5d] {
    padding: var(--spacing-md);
  }

  .notification-footer[data-astro-cid-erlqpe5d] {
    padding: var(--spacing-sm) var(--spacing-md);
    flex-direction: column;
  }

  .notification-icon[data-astro-cid-erlqpe5d] {
    width: 36px;
    height: 36px;
  }

  .close-notification[data-astro-cid-erlqpe5d] {
    width: 28px;
    height: 28px;
  }

  .product-name[data-astro-cid-erlqpe5d] {
    font-size: 1.1rem;
  }

  .product-message[data-astro-cid-erlqpe5d] {
    font-size: 0.9rem;
  }
}

.badge-sezonowe {
  background: #10b981;
}

.badge-premium {
  background: var(--color-accent);
}

.badge-klasyczne {
  background: #f59e0b;
}

.product-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* 🎯 ДОБАВЛЯЕМ БОРДЕР КАК У КАРТОЧЕК ОТЗЫВОВ */
  border: 1px solid rgba(40, 52, 118, 0.1);
  /* 🔥 УБИРАЕМ ТЕНЬ ПО УМОЛЧАНИЮ - ТОЛЬКО ПРИ НАВЕДЕНИИ */
  box-shadow: none;
}

/* 🔥 СТИЛИ ДЛЯ ССЫЛКИ */
.product-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  /* 🔥 ТЕНЬ ПОЯВЛЯЕТСЯ ТОЛЬКО ПРИ НАВЕДЕНИИ */
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  /* 🎯 БОРДЕР КАК У FAQ ACTIVE ITEM И КАРТОЧЕК ОТЗЫВОВ */
  border-color: var(--color-primary);
}

.product-image {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  z-index: 3;
}

.badge-accent {
  background: var(--color-accent);
}

.badge-success {
  background: #10b981;
}

.badge-warning {
  background: #f59e0b;
}

.badge-primary {
  background: var(--color-primary);
}

.product-actions {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-sm);
  opacity: 1;
  /* Всегда видимы */
  transform: translateY(0);
  /* Убираем смещение */
  transition: all 0.3s ease;
  z-index: 2;
}

/* Убираем эффект появления при наведении на десктопе */
.product-card:hover .product-actions {
  opacity: 1;
  transform: translateY(0);
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  padding: 6px 8px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  background: white;
  color: var(--color-primary);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.qty-btn:hover {
  background: var(--color-primary);
  color: white;
  transform: scale(1.1);
}

.qty-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.qty-btn:disabled:hover {
  background: white;
  color: var(--color-primary);
}

.qty-value {
  font-weight: 600;
  font-size: 1rem;
  min-width: 24px;
  text-align: center;
  color: var(--color-text);
  padding: 0 4px;
}

.add-to-cart-btn {
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(40, 52, 118, 0.3);
}

.add-to-cart-btn:hover {
  background: var(--color-accent);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(236, 145, 183, 0.4);
}

.add-to-cart-btn:active {
  transform: scale(0.95);
}

.product-info {
  padding: var(--spacing-md);
  text-align: center;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
  line-height: 1.3;
}

.product-subtitle {
  font-size: 1rem;
  font-weight: 600 !important;
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-sm);
}

.product-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .product-image {
    height: 300px;
  }

  .product-info {
    padding: var(--spacing-sm);
  }

  .product-name {
    font-size: 1.1rem;
  }

  .product-price {
    font-size: 1.3rem;
  }

  .add-to-cart-btn {
    width: 44px;
    height: 44px;
  }

  .qty-btn {
    width: 28px;
    height: 28px;
  }

  .quantity-control {
    padding: 4px 6px;
  }

  .product-badge {
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    font-size: 12px;
  }
}

.product-description[data-astro-cid-robgvhpp] p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.badge-sezonowe {
  background: #10b981;
}

.badge-premium {
  background: var(--color-accent);
}

.badge-klasyczne {
  background: #f59e0b;
}

.cta-section[data-astro-cid-frbqrhml] {
  position: relative;
  padding: var(--spacing-2xl) 0;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.cta-background[data-astro-cid-frbqrhml] {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #283476e6, #1e2654e6, #ec91b7e6),
    url(https://loodek.pl/wp-content/uploads/2025/06/CB5A9353-scaled.jpeg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}

.cta-content[data-astro-cid-frbqrhml] {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title[data-astro-cid-frbqrhml] {
  font-size: clamp(2rem, 5vw, 3rem);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  line-height: 1.2;
}

.cta-description[data-astro-cid-frbqrhml] {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  line-height: 1.7;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--spacing-xl);
}

.cta-buttons[data-astro-cid-frbqrhml] {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta-background[data-astro-cid-frbqrhml] {
    background-attachment: scroll;
  }

  .cta-buttons[data-astro-cid-frbqrhml] {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
  }

  .cta-buttons[data-astro-cid-frbqrhml] .btn[data-astro-cid-frbqrhml] {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .cta-section[data-astro-cid-frbqrhml] {
    padding: var(--spacing-xl) 0;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .cta-buttons[data-astro-cid-frbqrhml] {
    gap: var(--spacing-md);
  }
}

@media (min-width: 1400px) {
  .cta-content[data-astro-cid-frbqrhml] {
    max-width: 900px;
  }
}

.cart-notification-popup[data-astro-cid-erlqpe5d] {
  position: fixed;
  top: 120px;
  right: 20px;
  width: 380px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px #00000026;
  border: 2px solid rgba(40, 52, 118, 0.1);
  z-index: 1000;
  transform: translate(120%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}

.cart-notification-popup[data-astro-cid-erlqpe5d].show {
  transform: translate(0);
  opacity: 1;
  visibility: visible;
}

.notification-content[data-astro-cid-erlqpe5d] {
  display: flex;
  flex-direction: column;
}

.notification-header[data-astro-cid-erlqpe5d] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) var(--spacing-lg);
  background: var(--color-primary);
  color: #fff;
}

.notification-icon[data-astro-cid-erlqpe5d] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #fff3;
  border-radius: 50%;
}

.close-notification[data-astro-cid-erlqpe5d] {
  width: 32px;
  height: 32px;
  background: #fff3;
  border: none;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.close-notification[data-astro-cid-erlqpe5d]:hover {
  background: #ffffff4d;
  transform: rotate(90deg);
}

.notification-body[data-astro-cid-erlqpe5d] {
  padding: var(--spacing-lg);
}

.product-info[data-astro-cid-erlqpe5d] {
  margin-bottom: var(--spacing-md);
}

.product-name[data-astro-cid-erlqpe5d] {
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-bottom: var(--spacing-xs);
  font-family: var(--font-heading);
  font-weight: 600;
}

.product-message[data-astro-cid-erlqpe5d] {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  margin: 0;
}

.order-progress[data-astro-cid-erlqpe5d] {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.progress-section[data-astro-cid-erlqpe5d] {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.progress-label[data-astro-cid-erlqpe5d] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
}

.progress-bar[data-astro-cid-erlqpe5d] {
  height: 8px;
  background: #2834761a;
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill[data-astro-cid-erlqpe5d] {
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-accent)
  );
  width: 0%;
  transition: width 0.5s ease;
  border-radius: 4px;
}

.delivery-fill[data-astro-cid-erlqpe5d] {
  background: linear-gradient(135deg, #10b981, #34d399);
}

.progress-info[data-astro-cid-erlqpe5d] {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

.notification-footer[data-astro-cid-erlqpe5d] {
  display: flex;
  gap: var(--spacing-sm);
  padding: var(--spacing-md) var(--spacing-lg);
  background: #28347605;
  border-top: 1px solid rgba(40, 52, 118, 0.1);
}

.btn-view-cart[data-astro-cid-erlqpe5d],
.btn-continue-shopping[data-astro-cid-erlqpe5d] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  flex: 1;
}

.btn-view-cart[data-astro-cid-erlqpe5d] {
  background: var(--color-primary);
  color: #fff;
}

.btn-view-cart[data-astro-cid-erlqpe5d]:hover {
  background: #1e2654;
  transform: translateY(-2px);
}

.btn-continue-shopping[data-astro-cid-erlqpe5d] {
  background: #2834761a;
  color: var(--color-primary);
}

.btn-continue-shopping[data-astro-cid-erlqpe5d]:hover {
  background: #28347633;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cart-notification-popup[data-astro-cid-erlqpe5d] {
    width: calc(100% - 40px);
    right: 20px;
    left: 20px;
    top: 100px;
  }
}

@media (max-width: 480px) {
  .cart-notification-popup[data-astro-cid-erlqpe5d] {
    width: calc(100% - 30px);
    right: 15px;
    left: 15px;
    top: 90px;
  }

  .notification-header[data-astro-cid-erlqpe5d] {
    padding: var(--spacing-sm) var(--spacing-md);
  }

  .notification-body[data-astro-cid-erlqpe5d] {
    padding: var(--spacing-md);
  }

  .notification-footer[data-astro-cid-erlqpe5d] {
    padding: var(--spacing-sm) var(--spacing-md);
    flex-direction: column;
  }

  .notification-icon[data-astro-cid-erlqpe5d] {
    width: 36px;
    height: 36px;
  }

  .close-notification[data-astro-cid-erlqpe5d] {
    width: 28px;
    height: 28px;
  }

  .product-name[data-astro-cid-erlqpe5d] {
    font-size: 1.1rem;
  }

  .product-message[data-astro-cid-erlqpe5d] {
    font-size: 0.9rem;
  }
}

.cookies-page[data-astro-cid-6xh23lug] {
  margin-top: 97px;
}

.cookies-hero[data-astro-cid-6xh23lug] {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1e2654 100%);
  color: white;
  padding: var(--spacing-2xl) 0;
  position: relative;
  overflow: hidden;
}

.cookies-hero[data-astro-cid-6xh23lug]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 25% 25%,
      rgba(255, 255, 255, 0.15) 2px,
      transparent 2px
    ),
    radial-gradient(
      circle at 75% 25%,
      rgba(255, 255, 255, 0.15) 2px,
      transparent 2px
    ),
    radial-gradient(
      circle at 25% 75%,
      rgba(255, 255, 255, 0.15) 2px,
      transparent 2px
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(255, 255, 255, 0.15) 2px,
      transparent 2px
    );
  background-size: 80px 80px;
  background-position: 0 0;
  opacity: 0.4;
  animation: cookies-float 25s ease-in-out infinite;
}

@keyframes cookies-float {
  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }

  25% {
    transform: translateY(-5px) translateX(2px);
  }

  50% {
    transform: translateY(-10px) translateX(0px);
  }

  75% {
    transform: translateY(-5px) translateX(-2px);
  }
}

.hero-content[data-astro-cid-6xh23lug] {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-title[data-astro-cid-6xh23lug] {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  line-height: 1.1;
}

.hero-description[data-astro-cid-6xh23lug] {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  line-height: 1.6;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.cookies-content[data-astro-cid-6xh23lug] {
  background: var(--color-light-bg);
  padding: var(--spacing-2xl) 0;
}

.content-layout[data-astro-cid-6xh23lug] {
  max-width: 900px;
  margin: 0 auto;
}

.content-card[data-astro-cid-6xh23lug] {
  background: white;
  border-radius: 24px;
  padding: var(--spacing-2xl);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  border: 2px solid rgba(40, 52, 118, 0.1);
}

.content-section[data-astro-cid-6xh23lug] {
  margin-bottom: var(--spacing-2xl);
}

.content-section[data-astro-cid-6xh23lug]:last-child {
  margin-bottom: 0;
}

.section-title[data-astro-cid-6xh23lug] {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: 1.5rem;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: var(--spacing-lg);
}

.section-title[data-astro-cid-6xh23lug] svg[data-astro-cid-6xh23lug] {
  color: var(--color-accent);
  flex-shrink: 0;
}

.content-section[data-astro-cid-6xh23lug] p[data-astro-cid-6xh23lug] {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: var(--spacing-md);
}

.content-section[data-astro-cid-6xh23lug]
  p[data-astro-cid-6xh23lug]:last-child {
  margin-bottom: 0;
}

.cookies-types[data-astro-cid-6xh23lug] {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.cookie-type[data-astro-cid-6xh23lug] {
  padding: var(--spacing-lg);
  background: rgba(40, 52, 118, 0.02);
  border-radius: 16px;
  border: 1px solid rgba(40, 52, 118, 0.1);
  transition: all 0.3s ease;
}

.cookie-type[data-astro-cid-6xh23lug]:hover {
  background: rgba(40, 52, 118, 0.05);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.cookie-type[data-astro-cid-6xh23lug] h3[data-astro-cid-6xh23lug] {
  font-size: 1.1rem;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.cookie-type[data-astro-cid-6xh23lug] p[data-astro-cid-6xh23lug] {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.browser-instructions[data-astro-cid-6xh23lug] {
  margin-top: var(--spacing-lg);
  padding: var(--spacing-lg);
  background: rgba(236, 145, 183, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(236, 145, 183, 0.2);
}

.browser-instructions[data-astro-cid-6xh23lug] h3[data-astro-cid-6xh23lug] {
  font-size: 1.1rem;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
}

.browser-instructions[data-astro-cid-6xh23lug] ul[data-astro-cid-6xh23lug] {
  list-style: none;
  padding: 0;
  margin: 0;
}

.browser-instructions[data-astro-cid-6xh23lug] li[data-astro-cid-6xh23lug] {
  padding: var(--spacing-xs) 0;
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.5;
}

.browser-instructions[data-astro-cid-6xh23lug]
  li[data-astro-cid-6xh23lug]
  strong[data-astro-cid-6xh23lug] {
  color: var(--color-primary);
}
.contact-info a,
.contact-item a {
  color: #fff;
}
.contact-info[data-astro-cid-6xh23lug] {
  margin-top: var(--spacing-md);
  padding: var(--spacing-md);
  background: rgba(40, 52, 118, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(40, 52, 118, 0.1);
}

.contact-info[data-astro-cid-6xh23lug] p[data-astro-cid-6xh23lug] {
  margin-bottom: var(--spacing-xs);
  font-size: 0.95rem;
}

.contact-info[data-astro-cid-6xh23lug] p[data-astro-cid-6xh23lug]:last-child {
  margin-bottom: 0;
}

.contact-info[data-astro-cid-6xh23lug] a[data-astro-cid-6xh23lug] {
  color: var(--color-primary);
  text-decoration: none;
}

.contact-info[data-astro-cid-6xh23lug] a[data-astro-cid-6xh23lug]:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.last-updated[data-astro-cid-6xh23lug] {
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-lg);
  border-top: 2px solid rgba(40, 52, 118, 0.1);
  text-align: center;
}

.last-updated[data-astro-cid-6xh23lug] p[data-astro-cid-6xh23lug] {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin: 0;
}

@media (max-width: 768px) {
  .cookies-page[data-astro-cid-6xh23lug] {
    margin-top: 83px;
  }

  .content-card[data-astro-cid-6xh23lug] {
    padding: var(--spacing-xl);
  }

  .cookies-types[data-astro-cid-6xh23lug] {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .cookie-type[data-astro-cid-6xh23lug] {
    padding: var(--spacing-md);
  }

  .browser-instructions[data-astro-cid-6xh23lug] {
    padding: var(--spacing-md);
  }

  .section-title[data-astro-cid-6xh23lug] {
    font-size: 1.3rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-sm);
  }
}

@media (max-width: 480px) {
  .cookies-hero[data-astro-cid-6xh23lug] {
    padding: var(--spacing-xl) 0;
  }

  .hero-title[data-astro-cid-6xh23lug] {
    font-size: 2rem;
  }

  .hero-description[data-astro-cid-6xh23lug] {
    font-size: 1rem;
  }

  .cookies-content[data-astro-cid-6xh23lug] {
    padding: var(--spacing-xl) 0;
  }

  .content-card[data-astro-cid-6xh23lug] {
    padding: var(--spacing-lg);
    border-radius: 16px;
  }

  .section-title[data-astro-cid-6xh23lug] {
    font-size: 1.2rem;
  }

  .cookie-type[data-astro-cid-6xh23lug] {
    padding: var(--spacing-sm);
  }

  .browser-instructions[data-astro-cid-6xh23lug] {
    padding: var(--spacing-sm);
  }

  .contact-info[data-astro-cid-6xh23lug] {
    padding: var(--spacing-sm);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .content-card[data-astro-cid-6xh23lug] {
    padding: var(--spacing-xl);
  }

  .cookies-types[data-astro-cid-6xh23lug] {
    gap: var(--spacing-md);
  }
}

@media (min-width: 1400px) {
  .content-layout[data-astro-cid-6xh23lug] {
    max-width: 1000px;
  }

  .hero-content[data-astro-cid-6xh23lug] {
    max-width: 900px;
  }
}

.cart-notification-popup[data-astro-cid-erlqpe5d] {
  position: fixed;
  top: 120px;
  right: 20px;
  width: 380px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px #00000026;
  border: 2px solid rgba(40, 52, 118, 0.1);
  z-index: 1000;
  transform: translate(120%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}

.cart-notification-popup[data-astro-cid-erlqpe5d].show {
  transform: translate(0);
  opacity: 1;
  visibility: visible;
}

.notification-content[data-astro-cid-erlqpe5d] {
  display: flex;
  flex-direction: column;
}

.notification-header[data-astro-cid-erlqpe5d] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) var(--spacing-lg);
  background: var(--color-primary);
  color: #fff;
}

.notification-icon[data-astro-cid-erlqpe5d] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #fff3;
  border-radius: 50%;
}

.close-notification[data-astro-cid-erlqpe5d] {
  width: 32px;
  height: 32px;
  background: #fff3;
  border: none;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.close-notification[data-astro-cid-erlqpe5d]:hover {
  background: #ffffff4d;
  transform: rotate(90deg);
}

.notification-body[data-astro-cid-erlqpe5d] {
  padding: var(--spacing-lg);
}

.product-info[data-astro-cid-erlqpe5d] {
  margin-bottom: var(--spacing-md);
}

.product-name[data-astro-cid-erlqpe5d] {
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-bottom: var(--spacing-xs);
  font-family: var(--font-heading);
  font-weight: 600;
}

.product-message[data-astro-cid-erlqpe5d] {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  margin: 0;
}

.order-progress[data-astro-cid-erlqpe5d] {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.progress-section[data-astro-cid-erlqpe5d] {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.progress-label[data-astro-cid-erlqpe5d] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
}

.progress-bar[data-astro-cid-erlqpe5d] {
  height: 8px;
  background: #2834761a;
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill[data-astro-cid-erlqpe5d] {
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-accent)
  );
  width: 0%;
  transition: width 0.5s ease;
  border-radius: 4px;
}

.delivery-fill[data-astro-cid-erlqpe5d] {
  background: linear-gradient(135deg, #10b981, #34d399);
}

.progress-info[data-astro-cid-erlqpe5d] {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

.notification-footer[data-astro-cid-erlqpe5d] {
  display: flex;
  gap: var(--spacing-sm);
  padding: var(--spacing-md) var(--spacing-lg);
  background: #28347605;
  border-top: 1px solid rgba(40, 52, 118, 0.1);
}

.btn-view-cart[data-astro-cid-erlqpe5d],
.btn-continue-shopping[data-astro-cid-erlqpe5d] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  flex: 1;
}

.btn-view-cart[data-astro-cid-erlqpe5d] {
  background: var(--color-primary);
  color: #fff;
}

.btn-view-cart[data-astro-cid-erlqpe5d]:hover {
  background: #1e2654;
  transform: translateY(-2px);
}

.btn-continue-shopping[data-astro-cid-erlqpe5d] {
  background: #2834761a;
  color: var(--color-primary);
}

.btn-continue-shopping[data-astro-cid-erlqpe5d]:hover {
  background: #28347633;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cart-notification-popup[data-astro-cid-erlqpe5d] {
    width: calc(100% - 40px);
    right: 20px;
    left: 20px;
    top: 100px;
  }
}

@media (max-width: 480px) {
  .cart-notification-popup[data-astro-cid-erlqpe5d] {
    width: calc(100% - 30px);
    right: 15px;
    left: 15px;
    top: 90px;
  }

  .notification-header[data-astro-cid-erlqpe5d] {
    padding: var(--spacing-sm) var(--spacing-md);
  }

  .notification-body[data-astro-cid-erlqpe5d] {
    padding: var(--spacing-md);
  }

  .notification-footer[data-astro-cid-erlqpe5d] {
    padding: var(--spacing-sm) var(--spacing-md);
    flex-direction: column;
  }

  .notification-icon[data-astro-cid-erlqpe5d] {
    width: 36px;
    height: 36px;
  }

  .close-notification[data-astro-cid-erlqpe5d] {
    width: 28px;
    height: 28px;
  }

  .product-name[data-astro-cid-erlqpe5d] {
    font-size: 1.1rem;
  }

  .product-message[data-astro-cid-erlqpe5d] {
    font-size: 0.9rem;
  }
}

.cta-section[data-astro-cid-frbqrhml] {
  position: relative;
  padding: var(--spacing-2xl) 0;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.cta-background[data-astro-cid-frbqrhml] {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #283476e6, #1e2654e6, #ec91b7e6),
    url(https://loodek.pl/wp-content/uploads/2025/06/CB5A9353-scaled.jpeg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}

.cta-content[data-astro-cid-frbqrhml] {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title[data-astro-cid-frbqrhml] {
  font-size: clamp(2rem, 5vw, 3rem);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  line-height: 1.2;
}

.cta-description[data-astro-cid-frbqrhml] {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  line-height: 1.7;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--spacing-xl);
}

.cta-buttons[data-astro-cid-frbqrhml] {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta-background[data-astro-cid-frbqrhml] {
    background-attachment: scroll;
  }

  .cta-buttons[data-astro-cid-frbqrhml] {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
  }

  .cta-buttons[data-astro-cid-frbqrhml] .btn[data-astro-cid-frbqrhml] {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .cta-section[data-astro-cid-frbqrhml] {
    padding: var(--spacing-xl) 0;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .cta-buttons[data-astro-cid-frbqrhml] {
    gap: var(--spacing-md);
  }
}

@media (min-width: 1400px) {
  .cta-content[data-astro-cid-frbqrhml] {
    max-width: 900px;
  }
}
.input-group p {
  display: flex;
  background: #ffffff1a;

  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.newsletter-input {
  flex: 1;
  padding: 14px 16px;
  background: none;
  border: none;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
}
.newsletter-btn {
  min-width: 95px;
  display: flex;
  justify-content: center;
  padding: 0;
}
.newsletter-btn svg {
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
}
.ingredients-content {
  word-break: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
}
