/* SEO Optimalized Order Page Styles - Flexible Version */

/* Active nav link */
.nav-link.active,
.mobile-nav-link.active {
  color: #000;
  font-weight: 600;
}

.nav-link.active::after,
.mobile-nav-link.active::after {
  width: 100%;
}

/* Order Hero */
.order-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}

.order-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(0, 0, 0, 0.02) 0%, transparent 50%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}

.hero-title-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.hero-title-line:nth-child(1) {
  animation-delay: 0.2s;
}

.hero-title-line:nth-child(2) {
  animation-delay: 0.4s;
}

.hero-title-highlight {
  background: linear-gradient(135deg, #1a1a1a 0%, #666 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: #666;
  margin-bottom: 3rem;
  line-height: 1.6;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.6s forwards;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.8s forwards;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  font-size: 0.9rem;
  color: #1a1a1a;
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.trust-icon {
  color: #1a1a1a;
  font-weight: 600;
}

/* Scroll indicator */
.scroll-indicator {
  margin-top: 3rem;
  text-align: center;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1s forwards;
}

.scroll-arrow {
  display: inline-block;
  cursor: pointer;
  transition: all 0.4s ease;
  font-size: 4rem;
  font-weight: 900;
  font-family: 'Arial Black', sans-serif;
  transform: rotate(90deg);
  background: linear-gradient(90deg, #555, #777, #999, #777, #555, #777, #999, #777, #555);
  background-size: 800% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: chevronBounce 3s ease-in-out infinite, infiniteGradient 20s linear infinite;
  outline: none;
  border: none;
  background-color: transparent;
}

.scroll-arrow:hover {
  transform: rotate(90deg) scale(1.15);
}

@keyframes chevronBounce {
  0%, 100% { transform: rotate(90deg) translateX(0); }
  50% { transform: rotate(90deg) translateX(-1rem); }
}

@keyframes infiniteGradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 800% 50%; }
}

/* Order Form Section */
.order-form-section {
  background: #0a0a0a;
  color: #ffffff;
  padding: 5rem 0;
}

.form-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.form-header {
  text-align: center;
  margin-bottom: 4rem;
}

.form-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-header p {
  font-size: 1.125rem;
  color: #a0a0a0;
  line-height: 1.6;
}

/* Form Sections */
.form-section {
  margin-bottom: 4rem;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  backdrop-filter: blur(10px);
}

.section-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
}

.section-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.section-description {
  color: #a0a0a0;
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Package Selection */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.package-option {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  cursor: pointer;
  transition: all 0.4s ease;
  display: block;
}

.package-option input[type="radio"] {
  display: none;
}

.package-option:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.package-option.active {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.2);
}

.package-option.popular {
  border-color: rgba(16, 185, 129, 0.5);
  background: rgba(16, 185, 129, 0.08);
  transform: scale(1.02);
}

.package-option.popular:hover,
.package-option.popular.active {
  transform: translateY(-5px) scale(1.02);
}

.popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 0 0 1rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
  from { box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3); }
  to { box-shadow: 0 6px 25px rgba(16, 185, 129, 0.5); }
}

/* Package Content */
.package-content {
  text-align: center;
  padding-top: 1rem;
}

.package-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.package-price {
  font-size: 2rem;
  font-weight: 800;
  color: #10b981;
  margin-bottom: 1.5rem;
}

.package-features {
  margin-bottom: 1.5rem;
  text-align: left;
}

.feature {
  color: #a0a0a0;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
  line-height: 1.4;
}

.feature::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 600;
}

.package-delivery {
  text-align: center;
  color: #10b981;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 0.5rem;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Extensions Section */
.extensions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.extension-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.extension-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.extension-item input[type="checkbox"] {
  display: none;
}

.extension-checkmark {
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.375rem;
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.extension-checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.2s ease;
}

.extension-item input[type="checkbox"]:checked + .extension-checkmark {
  background: #10b981;
  border-color: #10b981;
}

.extension-item input[type="checkbox"]:checked + .extension-checkmark::after {
  transform: translate(-50%, -50%) scale(1);
}

.extension-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.extension-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.extension-info strong {
  color: #ffffff;
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}

.extension-info small {
  color: #a0a0a0;
  font-size: 0.85rem;
  line-height: 1.4;
}

/* Form Grid */
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.form-group select {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 3rem;
}

/* Fix pro select options */
.form-group select option {
  background: #1a1a1a !important;
  color: #ffffff !important;
  padding: 0.5rem;
}

.form-group select option:checked {
  background: #10b981 !important;
  color: #ffffff !important;
}

.form-group select option:hover {
  background: #2d2d2d !important;
  color: #ffffff !important;
}

/* Pro Firefox */
@-moz-document url-prefix() {
  .form-group select option {
    background-color: #1a1a1a;
    color: #ffffff;
  }
  
  .form-group select option:checked {
    background-color: #10b981;
  }
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #10b981;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #666;
}

/* Agreement Section */
.agreement-section {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
}

.agreement-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Error styling for agreement */
.agreement-item.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 0.75rem;
  padding: 1rem;
  margin: -0.5rem;
}

.agreement-item.error .agreement-checkmark {
  border-color: #ef4444;
}

.agreement-item.error .agreement-text {
  color: #ffffff;
}

.agreement-item input[type="checkbox"] {
  display: none;
}

.agreement-checkmark {
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.375rem;
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s ease;
  margin-top: 0.125rem;
}

.agreement-checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.2s ease;
}

.agreement-item input[type="checkbox"]:checked + .agreement-checkmark {
  background: #10b981;
  border-color: #10b981;
}

.agreement-item input[type="checkbox"]:checked + .agreement-checkmark::after {
  transform: translate(-50%, -50%) scale(1);
}

.agreement-text {
  color: #a0a0a0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.agreement-text a {
  color: #10b981;
  text-decoration: underline;
}

.agreement-text a:hover {
  color: #ffffff;
}

/* Error Messages */
.error-message {
  color: #ef4444;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 0.5rem;
  animation: errorSlideIn 0.3s ease-out;
}

@keyframes errorSlideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form Submit */
.form-submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.price-summary {
  margin-bottom: 1rem;
}

.summary-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.summary-text span {
  color: #10b981;
}

.extensions-note {
  font-size: 1rem;
  color: #a0a0a0;
  margin-bottom: 0.5rem;
}

.payment-note {
  font-size: 0.9rem;
  color: #a0a0a0;
  background: rgba(16, 185, 129, 0.1);
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.submit-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 3rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  border: none;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.submit-btn:hover {
  transform: translateY(-3px) scale(1.02);
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-arrow {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.submit-btn:hover .btn-arrow {
  transform: translateX(5px);
}

.submit-note {
  font-size: 0.9rem;
  color: #a0a0a0;
}

/* Success Section */
.success-section {
  background: #0a0a0a;
  color: #ffffff;
  padding: 6rem 0;
  text-align: center;
}

.success-content {
  max-width: 800px;
  margin: 0 auto;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 2rem;
}

.success-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.success-content p {
  font-size: 1.25rem;
  color: #a0a0a0;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.order-summary {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  margin-bottom: 3rem;
  text-align: left;
}

.order-summary h3 {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-item:last-child {
  border-bottom: none;
  font-weight: 600;
  color: #10b981;
  font-size: 1.125rem;
}

.summary-label {
  color: #a0a0a0;
}

.summary-value {
  color: #ffffff;
  font-weight: 500;
}

.success-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .package-option,
  .extension-item {
    border-width: 2px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .hero-title-line,
  .hero-subtitle,
  .trust-indicators,
  .scroll-indicator {
    animation: none;
    opacity: 1;
    transform: none;
  }
  
  .scroll-arrow {
    animation: none;
  }
  
  .popular-badge {
    animation: none;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .order-hero {
    padding-top: 6rem; /* Zvětšeno z 3rem na 6rem */
    min-height: 100vh;
  }

  .trust-indicators {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .trust-item {
    min-width: 250px;
    justify-content: center;
  }

  .order-form-section {
    padding: 3rem 0;
  }

  .form-header h2 {
    font-size: 2rem;
  }

  .form-section {
    padding: 2rem;
    margin-bottom: 3rem;
  }

  .section-title {
    font-size: 1.5rem;
    gap: 0.75rem;
  }

  .section-number {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .package-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .package-option.popular {
    transform: none;
  }

  .package-option.popular:hover,
  .package-option.popular.active {
    transform: translateY(-5px);
  }

  .extensions-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .extension-item {
    padding: 1.25rem;
  }

  .form-submit {
    padding: 2rem;
  }

  .submit-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }

  .success-section {
    padding: 3rem 0;
  }

  .success-content h2 {
    font-size: 2rem;
  }

  .success-actions {
    flex-direction: column;
    align-items: center;
  }

  .order-summary {
    padding: 1.5rem;
  }

  .scroll-arrow {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .order-hero {
    padding-top: 7rem; /* Zvětšeno z 2rem na 7rem */
    min-height: 100vh;
  }

  .hero-content {
    padding: 0 1rem; /* Přidán padding pro lepší spacing na stranách */
  }

  .form-header h2 {
    font-size: 1.75rem;
  }

  .form-header p {
    font-size: 1rem;
  }

  .form-section {
    padding: 1.5rem;
  }

  .section-title {
    font-size: 1.25rem;
  }

  .package-option {
    padding: 1.5rem;
  }

  .package-content h4 {
    font-size: 1.25rem;
  }

  .package-price {
    font-size: 1.75rem;
  }

  .extension-item {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .extension-content {
    flex-direction: column;
    gap: 0.5rem;
  }

  .extension-icon {
    font-size: 2rem;
  }

  .success-content h2 {
    font-size: 1.75rem;
  }

  .success-icon {
    font-size: 3rem;
  }

  .agreement-item.error {
    margin: -0.25rem;
    padding: 0.75rem;
  }

  .summary-text {
    font-size: 1.25rem;
  }

  .price-summary {
    margin-bottom: 1.5rem;
  }

  .trust-indicators {
    margin-bottom: 2rem;
  }
  
  .trust-item {
    min-width: 220px;
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
  }

  .scroll-indicator {
    margin-top: 2rem;
  }

  .scroll-arrow {
    font-size: 2.5rem;
  }

  .hero-title {
    margin-bottom: 1.5rem;
  }

  .hero-subtitle {
    margin-bottom: 2rem;
    padding: 0;
  }
}

/* Animation delays for staggered effects */
.package-option:nth-child(1) { animation-delay: 0.1s; }
.package-option:nth-child(2) { animation-delay: 0.2s; }
.package-option:nth-child(3) { animation-delay: 0.3s; }
.package-option:nth-child(4) { animation-delay: 0.4s; }
.package-option:nth-child(5) { animation-delay: 0.5s; }

.extension-item:nth-child(1) { animation-delay: 0.1s; }
.extension-item:nth-child(2) { animation-delay: 0.15s; }
.extension-item:nth-child(3) { animation-delay: 0.2s; }
.extension-item:nth-child(4) { animation-delay: 0.25s; }
.extension-item:nth-child(5) { animation-delay: 0.3s; }
.extension-item:nth-child(6) { animation-delay: 0.35s; }
.extension-item:nth-child(7) { animation-delay: 0.4s; }
.extension-item:nth-child(8) { animation-delay: 0.45s; }
.extension-item:nth-child(9) { animation-delay: 0.5s; }
.extension-item:nth-child(10) { animation-delay: 0.55s; }

/* Print styles */
@media print {
  .order-hero,
  .success-section {
    background: #fff !important;
    color: #000 !important;
  }
  
  .package-option,
  .extension-item {
    border: 1px solid #000 !important;
    break-inside: avoid;
  }
  
  .scroll-indicator {
    display: none;
  }
}