
* {
  box-sizing: border-box;
}

.xtq-shop-page {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: #0f172a !important;
  background-color: #0f172a !important;
  min-height: 100vh;
}

.xtq-shop-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px 40px 20px;
}

.xtq-embed-mode .xtq-shop-wrapper {
  padding-top: 24px;
}

.xtq-shop-header {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.xtq-shop-brand h1 {
  margin: 0 0 8px 0;
  font-size: 28px;
  color: #e6edf6;
  font-weight: 700;
}

.xtq-shop-brand p {
  margin: 0;
  color: rgba(230, 237, 246, 0.7);
  font-size: 16px;
}

.xtq-shop-user {
  display: flex;
  align-items: center;
  gap: 16px;
}

.xtq-user-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.xtq-user-info span {
  color: #e6edf6;
  font-weight: 600;
}

.xtq-btn-account {
  padding: 10px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.xtq-btn-account:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
  color: white;
}

.xtq-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.xtq-product-card {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.xtq-product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.xtq-product-card:hover::before {
  opacity: 1;
}

.xtq-product-card:hover {
  border-color: rgba(102, 126, 234, 0.5);
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(102, 126, 234, 0.3);
}

.xtq-product-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.xtq-product-icon {
  font-size: 48px;
  animation: float 3s ease-in-out infinite;
}

.xtq-product-badge {
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.xtq-product-content {
  margin-bottom: 24px;
}

.xtq-product-title {
  margin: 0 0 12px 0;
  font-size: 20px;
  color: #e6edf6;
  font-weight: 700;
}

.xtq-product-description {
  margin: 0 0 20px 0;
  color: rgba(230, 237, 246, 0.7);
  font-size: 14px;
  line-height: 1.6;
}

.xtq-product-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.xtq-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.xtq-feature-icon {
  color: #10b981;
  font-weight: 700;
  font-size: 14px;
}

.xtq-feature-item span:last-child {
  color: rgba(230, 237, 246, 0.8);
  font-size: 14px;
}

.xtq-product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.xtq-product-price {
  display: flex;
  flex-direction: column;
}

.xtq-price-value {
  font-size: 24px;
  font-weight: 700;
  color: #10b981;
}

.xtq-price-period {
  font-size: 14px;
  color: rgba(230, 237, 246, 0.6);
}

.xtq-btn-buy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.xtq-btn-buy:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
  color: white;
}

.xtq-btn-icon {
  font-size: 16px;
}

.xtq-benefits-section {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 100px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.xtq-benefits-section h2 {
  text-align: center;
  margin: 0 0 32px 0;
  font-size: 28px;
  color: #e6edf6;
  font-weight: 700;
}

.xtq-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.xtq-benefit-item {
  text-align: center;
  padding: 24px;
  background: rgba(30, 41, 59, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.xtq-benefit-item:hover {
  transform: translateY(-4px);
  border-color: rgba(102, 126, 234, 0.5);
}

.xtq-benefit-icon {
  font-size: 48px;
  margin-bottom: 16px;
  animation: float 3s ease-in-out infinite;
}

.xtq-benefit-item h3 {
  margin: 0 0 12px 0;
  font-size: 18px;
  color: #e6edf6;
  font-weight: 700;
}

.xtq-benefit-item p {
  margin: 0;
  color: rgba(230, 237, 246, 0.7);
  font-size: 14px;
  line-height: 1.6;
}

.xtq-faq-section {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.xtq-faq-section h2 {
  text-align: center;
  margin: 0 0 32px 0;
  font-size: 28px;
  color: #e6edf6;
  font-weight: 700;
}

.xtq-faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.xtq-faq-item {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.xtq-faq-item:hover {
  border-color: rgba(102, 126, 234, 0.5);
}

.xtq-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.xtq-faq-question:hover {
  background: rgba(102, 126, 234, 0.1);
}

.xtq-faq-question h3 {
  margin: 0;
  font-size: 16px;
  color: #e6edf6;
  font-weight: 600;
}

.xtq-faq-toggle {
  font-size: 20px;
  color: #667eea;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.xtq-faq-item.active .xtq-faq-toggle {
  transform: rotate(45deg);
}

.xtq-faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.xtq-faq-item.active .xtq-faq-answer {
  padding: 0 20px 20px 20px;
  max-height: 200px;
}

.xtq-faq-answer p {
  margin: 0;
  color: rgba(230, 237, 246, 0.7);
  font-size: 14px;
  line-height: 1.6;
}

.xtq-faq-answer p strong {
  color: #a5b4fc;
}

.xtq-faq-item.active .xtq-faq-answer {
  max-height: 500px; }

.xtq-faq-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  margin-top: -20px;
  margin-bottom: 32px;
}

.xtq-faq-category {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(99, 102, 241, 0.05) 100%);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: 12px;
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #a5b4fc;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.xtq-faq-category:first-of-type {
  margin-top: 0;
}

.xtq-faq-category-icon {
  font-size: 20px;
}

.xtq-faq-cta {
  margin-top: 40px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.02) 100%);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 16px;
  text-align: center;
}

.xtq-faq-cta p {
  margin: 0 0 16px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

.xtq-faq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.xtq-faq-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
  .xtq-shop-wrapper {
    padding: 16px;
  }

  .xtq-shop-header {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .xtq-shop-brand h1 {
    font-size: 24px;
  }

  .xtq-products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .xtq-product-card {
    padding: 20px;
  }

  .xtq-module-title {
    font-size: 20px;
  }

  .xtq-module-icon {
    font-size: 40px;
  }

  .xtq-feature-tag {
    font-size: 13px;
  }

  .xtq-plan-pill {
    font-size: 12px;
    padding: 4px 10px;
  }

  .xtq-btn-primary,
  .xtq-btn-secondary {
    padding: 14px 20px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .xtq-product-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .xtq-btn-buy {
    width: 100%;
    justify-content: center;
  }

  .xtq-benefits-grid {
    grid-template-columns: 1fr;
  }

  .xtq-benefits-section,
  .xtq-faq-section {
    padding: 24px;
  }

  .xtq-breadcrumb a {
    display: inline-block;
    padding: 10px 0;
    min-height: 44px;
    line-height: 24px;
  }
}

@media (max-width: 480px) {
  .xtq-product-icon,
  .xtq-module-icon {
    font-size: 36px;
  }

  .xtq-module-title {
    font-size: 18px;
  }

  .xtq-benefit-icon {
    font-size: 36px;
  }

  .xtq-benefits-section h2,
  .xtq-faq-section h2 {
    font-size: 24px;
  }

  .xtq-benefits-section,
  .xtq-faq-section {
    padding: 16px;
  }

  .xtq-product-card {
    padding: 16px;
  }
}

.xtq-single-product .xtq-shop-wrapper {
  max-width: 1000px;
}

.xtq-breadcrumb {
  margin-bottom: 24px;
}

.xtq-breadcrumb a {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.xtq-breadcrumb a:hover {
  color: #a5b4fc;
}

.xtq-product-header {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.xtq-product-main {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}

.xtq-product-icon-large {
  font-size: 80px;
  animation: float 3s ease-in-out infinite;
}

.xtq-product-info h1 {
  margin: 0 0 8px 0;
  font-size: 32px;
  color: #e6edf6;
  font-weight: 700;
}

.xtq-product-subtitle {
  margin: 0;
  color: rgba(230, 237, 246, 0.7);
  font-size: 16px;
}

.xtq-product-price-large {
  text-align: right;
}

.xtq-price-main {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: #10b981;
  margin-bottom: 4px;
}

.xtq-price-note {
  font-size: 14px;
  color: rgba(230, 237, 246, 0.6);
}

.xtq-product-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
}

.xtq-product-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.xtq-section {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.xtq-section h2 {
  margin: 0 0 20px 0;
  font-size: 24px;
  color: #e6edf6;
  font-weight: 700;
}

.xtq-product-description {
  color: rgba(230, 237, 246, 0.8);
  font-size: 16px;
  line-height: 1.7;
}

.xtq-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.xtq-feature-item-large {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}

.xtq-feature-item-large .xtq-feature-icon {
  color: #10b981;
  font-weight: 700;
  font-size: 16px;
}

.xtq-feature-item-large span:last-child {
  color: rgba(230, 237, 246, 0.8);
  font-size: 16px;
}

.xtq-how-it-works {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.xtq-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.xtq-step-number {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.xtq-step-content h3 {
  margin: 0 0 4px 0;
  font-size: 18px;
  color: #e6edf6;
  font-weight: 700;
}

.xtq-step-content p {
  margin: 0;
  color: rgba(230, 237, 246, 0.7);
  font-size: 14px;
  line-height: 1.6;
}

.xtq-product-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.xtq-purchase-card {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  position: sticky;
  top: 20px;
}

.xtq-purchase-header {
  text-align: center;
  margin-bottom: 24px;
}

.xtq-purchase-header h3 {
  margin: 0 0 12px 0;
  font-size: 20px;
  color: #e6edf6;
  font-weight: 700;
}

.xtq-price-display {
  font-size: 28px;
  font-weight: 700;
  color: #10b981;
}

.xtq-purchase-features {
  margin-bottom: 24px;
}

.xtq-purchase-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.xtq-purchase-feature .xtq-check {
  color: #10b981;
  font-weight: 700;
}

.xtq-purchase-feature span:last-child {
  color: rgba(230, 237, 246, 0.8);
  font-size: 14px;
}

.xtq-purchase-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.xtq-btn-purchase {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

.xtq-btn-purchase:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
  color: white;
}

.xtq-purchase-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(230, 237, 246, 0.7);
  font-size: 14px;
}

.xtq-guarantee-icon {
  font-size: 16px;
}

.xtq-support-card {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  text-align: center;
}

.xtq-support-card h3 {
  margin: 0 0 12px 0;
  font-size: 18px;
  color: #e6edf6;
  font-weight: 700;
}

.xtq-support-card p {
  margin: 0 0 16px 0;
  color: rgba(230, 237, 246, 0.7);
  font-size: 14px;
}

.xtq-btn-support {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.xtq-btn-support:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  color: white;
}

@media (max-width: 768px) {
  .xtq-product-header {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .xtq-product-main {
    flex-direction: column;
    text-align: center;
  }

  .xtq-product-icon-large {
    font-size: 60px;
  }

  .xtq-product-info h1 {
    font-size: 24px;
  }

  .xtq-product-content-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .xtq-section {
    padding: 20px;
  }

  .xtq-purchase-card {
    position: static;
  }

  .xtq-how-it-works {
    gap: 16px;
  }
}

.xtq-cart-page .xtq-shop-wrapper {
  max-width: 1000px;
}

.xtq-cart-header {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.xtq-cart-title h1 {
  margin: 0 0 8px 0;
  font-size: 28px;
  color: #e6edf6;
  font-weight: 700;
}

.xtq-cart-title p {
  margin: 0;
  color: rgba(230, 237, 246, 0.7);
  font-size: 16px;
}

.xtq-step-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
}

.xtq-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.xtq-step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(230, 237, 246, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.xtq-step.active .xtq-step-number {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: #667eea;
}

.xtq-step.completed .xtq-step-number {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border-color: #10b981;
}

.xtq-step-label {
  font-size: 12px;
  color: rgba(230, 237, 246, 0.7);
  font-weight: 600;
}

.xtq-step-line {
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
}

.xtq-step-line.completed {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.xtq-empty-cart {
  text-align: center;
  padding: 80px 20px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.xtq-empty-cart-icon {
  font-size: 80px;
  margin-bottom: 24px;
  opacity: 0.6;
}

.xtq-empty-cart h2 {
  margin: 0 0 12px 0;
  font-size: 24px;
  color: #e6edf6;
  font-weight: 700;
}

.xtq-empty-cart p {
  margin: 0 0 32px 0;
  color: rgba(230, 237, 246, 0.7);
  font-size: 16px;
}

.xtq-cart-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
}

.xtq-cart-items {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.xtq-cart-items h2 {
  margin: 0 0 24px 0;
  font-size: 20px;
  color: #e6edf6;
  font-weight: 700;
}

.xtq-cart-item {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.xtq-cart-item:last-child {
  border-bottom: none;
}

.xtq-item-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.xtq-item-icon {
  font-size: 48px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 41, 59, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.xtq-item-details {
  flex: 1;
}

.xtq-item-name {
  margin: 0 0 8px 0;
  font-size: 18px;
  color: #e6edf6;
  font-weight: 700;
}

.xtq-item-description {
  margin: 0 0 8px 0;
  color: rgba(230, 237, 246, 0.7);
  font-size: 14px;
  line-height: 1.5;
}

.xtq-item-price {
  font-size: 16px;
  color: #10b981;
  font-weight: 700;
}

.xtq-item-quantity {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.xtq-item-quantity label {
  font-size: 12px;
  color: rgba(230, 237, 246, 0.7);
  font-weight: 600;
}

.xtq-quantity-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.xtq-qty-btn {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(30, 41, 59, 0.6);
  color: #e6edf6;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.xtq-qty-btn:hover {
  background: rgba(102, 126, 234, 0.2);
  border-color: #667eea;
}

.xtq-qty-input {
  width: 60px;
  height: 32px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(30, 41, 59, 0.6);
  color: #e6edf6;
  border-radius: 6px;
}

.xtq-item-total {
  text-align: right;
}

.xtq-item-subtotal {
  font-size: 18px;
  color: #10b981;
  font-weight: 700;
  margin-bottom: 8px;
}

.xtq-remove-item {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.xtq-remove-item:hover {
  background: rgba(239, 68, 68, 0.3);
}

.xtq-cart-summary {
  position: sticky;
  top: 20px;
}

.xtq-summary-card {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.xtq-summary-card h3 {
  margin: 0 0 20px 0;
  font-size: 20px;
  color: #e6edf6;
  font-weight: 700;
}

.xtq-summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  color: rgba(230, 237, 246, 0.8);
  font-size: 14px;
}

.xtq-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 16px;
  font-size: 18px;
  font-weight: 700;
  color: #e6edf6;
}

.xtq-summary-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.xtq-security-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.xtq-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(230, 237, 246, 0.7);
  font-size: 12px;
}

.xtq-badge-icon {
  font-size: 14px;
}

.xtq-checkout-page .xtq-shop-wrapper {
  max-width: 1200px;
}

.xtq-checkout-header {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.xtq-checkout-title h1 {
  margin: 0 0 8px 0;
  font-size: 28px;
  color: #e6edf6;
  font-weight: 700;
}

.xtq-checkout-title p {
  margin: 0;
  color: rgba(230, 237, 246, 0.7);
  font-size: 16px;
}

.xtq-checkout-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
}

.xtq-checkout-fields {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.xtq-field-section {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.xtq-field-section h2 {
  margin: 0 0 8px 0;
  font-size: 20px;
  color: #e6edf6;
  font-weight: 700;
}

.xtq-field-section > p {
  margin: 0 0 24px 0;
  color: rgba(230, 237, 246, 0.7);
  font-size: 14px;
}

.xtq-field-group {
  margin-bottom: 20px;
}

.xtq-field-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #e6edf6;
  font-weight: 600;
}

.xtq-field-group input,
.xtq-field-group select,
.xtq-field-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(30, 41, 59, 0.6);
  color: #e6edf6;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.xtq-field-group input:focus,
.xtq-field-group select:focus,
.xtq-field-group textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.xtq-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.xtq-payment-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.xtq-payment-option {
  position: relative;
}

.xtq-payment-option input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.xtq-payment-option label {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(30, 41, 59, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
}

.xtq-payment-option input[type="radio"]:checked + label {
  border-color: #667eea;
  background: rgba(102, 126, 234, 0.1);
}

.xtq-payment-icon {
  font-size: 32px;
}

.xtq-payment-info h3 {
  margin: 0 0 4px 0;
  font-size: 16px;
  color: #e6edf6;
  font-weight: 700;
}

.xtq-payment-info p {
  margin: 0;
  font-size: 14px;
  color: rgba(230, 237, 246, 0.7);
}

.xtq-checkbox-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.xtq-checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
}

.xtq-checkbox-group label {
  margin: 0;
  font-size: 14px;
  color: #e6edf6;
  font-weight: 600;
}

.xtq-notes-field {
  margin-top: 16px;
}

.xtq-checkout-summary {
  position: sticky;
  top: 20px;
}

.xtq-order-items {
  margin-bottom: 20px;
}

.xtq-order-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.xtq-order-item:last-child {
  border-bottom: none;
}

.xtq-order-item-icon {
  font-size: 24px;
}

.xtq-order-item-info {
  flex: 1;
}

.xtq-order-item-name {
  font-size: 14px;
  color: #e6edf6;
  font-weight: 600;
  margin-bottom: 2px;
}

.xtq-order-item-qty {
  font-size: 12px;
  color: rgba(230, 237, 246, 0.7);
}

.xtq-order-item-price {
  font-size: 14px;
  color: #10b981;
  font-weight: 700;
}

.xtq-checkout-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.xtq-my-account-page .xtq-shop-wrapper {
  max-width: 1000px;
}

.xtq-account-header {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.xtq-account-welcome {
  display: flex;
  align-items: center;
  gap: 20px;
}

.xtq-user-avatar img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 3px solid #667eea;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.xtq-user-info h1 {
  margin: 0 0 4px 0;
  font-size: 24px;
  color: #e6edf6;
  font-weight: 700;
}

.xtq-user-info p {
  margin: 0 0 8px 0;
  color: rgba(230, 237, 246, 0.7);
  font-size: 14px;
}

.xtq-user-status {
  margin-top: 8px;
}

.xtq-status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.xtq-status-badge.active {
  background: #10b981;
  color: white;
}

.xtq-status-badge.completed {
  background: #10b981;
  color: white;
}

.xtq-status-badge.pending {
  background: #f59e0b;
  color: white;
}

.xtq-status-badge.cancelled {
  background: #ef4444;
  color: white;
}

.xtq-btn-logout {
  padding: 10px 20px;
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.xtq-btn-logout:hover {
  background: rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

.xtq-account-navigation {
  margin-bottom: 32px;
}

.xtq-nav-tabs {
  display: flex;
  gap: 8px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.xtq-nav-tab {
  flex: 1;
  padding: 12px 16px;
  background: transparent;
  color: rgba(230, 237, 246, 0.7);
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.xtq-nav-tab.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.xtq-nav-tab:hover:not(.active) {
  background: rgba(255, 255, 255, 0.1);
  color: #e6edf6;
}

.xtq-account-content {
  min-height: 400px;
}

.xtq-tab-content {
  display: none;
}

.xtq-tab-content.active {
  display: block;
}

.xtq-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.xtq-dashboard-card {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.xtq-dashboard-card h2 {
  margin: 0 0 20px 0;
  font-size: 18px;
  color: #e6edf6;
  font-weight: 700;
}

.xtq-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.xtq-stat-item {
  text-align: center;
  padding: 16px;
  background: rgba(30, 41, 59, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.xtq-stat-number {
  font-size: 24px;
  font-weight: 700;
  color: #10b981;
  margin-bottom: 4px;
}

.xtq-stat-label {
  color: rgba(230, 237, 246, 0.7);
  font-size: 12px;
}

.xtq-orders-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.xtq-order-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(30, 41, 59, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.xtq-order-info {
  flex: 1;
}

.xtq-order-number {
  font-size: 14px;
  color: #e6edf6;
  font-weight: 700;
  margin-bottom: 2px;
}

.xtq-order-date {
  font-size: 12px;
  color: rgba(230, 237, 246, 0.7);
}

.xtq-order-status {
  margin-right: 16px;
}

.xtq-order-total {
  font-size: 14px;
  color: #10b981;
  font-weight: 700;
  margin-right: 16px;
}

.xtq-card-actions {
  margin-top: 20px;
  text-align: center;
}

.xtq-empty-state {
  text-align: center;
  padding: 40px 20px;
}

.xtq-empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.6;
}

.xtq-empty-state h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
  color: #e6edf6;
  font-weight: 700;
}

.xtq-empty-state p {
  margin: 0 0 24px 0;
  color: rgba(230, 237, 246, 0.7);
  font-size: 14px;
}

.xtq-orders-table {
  overflow-x: auto;
}

.xtq-orders-table table {
  width: 100%;
  border-collapse: collapse;
}

.xtq-orders-table th,
.xtq-orders-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.xtq-orders-table th {
  background: rgba(30, 41, 59, 0.6);
  color: #e6edf6;
  font-weight: 700;
  font-size: 14px;
}

.xtq-orders-table td {
  color: rgba(230, 237, 246, 0.8);
  font-size: 14px;
}

.xtq-subscriptions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.xtq-subscription-card {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
}

.xtq-subscription-card:hover {
  border-color: rgba(102, 126, 234, 0.5);
}

.xtq-subscription-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.xtq-subscription-header h3 {
  margin: 0;
  font-size: 16px;
  color: #e6edf6;
  font-weight: 700;
}

.xtq-subscription-body {
  margin-bottom: 16px;
}

.xtq-subscription-items {
  margin-bottom: 12px;
}

.xtq-subscription-item {
  color: #e6edf6;
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 14px;
}

.xtq-subscription-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
}

.xtq-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.xtq-meta-label {
  font-size: 12px;
  color: rgba(230, 237, 246, 0.7);
  text-transform: uppercase;
  font-weight: 600;
}

.xtq-meta-value {
  font-size: 14px;
  color: #e6edf6;
  font-weight: 700;
}

.xtq-subscription-actions {
  text-align: center;
}

.xtq-btn-small {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(102, 126, 234, 0.2);
  color: #667eea;
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.xtq-btn-small:hover {
  background: #667eea;
  color: white;
}

.xtq-addresses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.xtq-address-card {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
}

.xtq-address-card h3 {
  margin: 0 0 16px 0;
  font-size: 16px;
  color: #e6edf6;
  font-weight: 700;
}

.xtq-address-content {
  margin-bottom: 16px;
}

.xtq-address-content p {
  margin: 0;
  color: rgba(230, 237, 246, 0.8);
  font-size: 14px;
  line-height: 1.6;
}

.xtq-address-actions {
  text-align: center;
}

.xtq-account-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.xtq-form-actions {
  text-align: center;
  margin-top: 20px;
}

.xtq-support-section {
  margin-top: 40px;
}

.xtq-support-card {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
}

.xtq-support-card:hover {
  border-color: rgba(37, 211, 102, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.2);
}

.xtq-support-icon {
  font-size: 48px;
  animation: float 3s ease-in-out infinite;
}

.xtq-support-info {
  flex: 1;
}

.xtq-support-info h3 {
  color: #e6edf6;
  font-size: 20px;
  margin: 0 0 8px 0;
  font-weight: 700;
}

.xtq-support-info p {
  color: rgba(230, 237, 246, 0.7);
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

.xtq-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.xtq-btn-whatsapp:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  color: white;
}

.xtq-whatsapp-icon {
  font-size: 18px;
}

.xtq-checkout-inline {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.xtq-checkout-card {
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.xtq-checkout-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.xtq-checkout-header h2 {
  margin: 0;
  font-size: 24px;
  color: #e6edf6;
  font-weight: 700;
}

.xtq-close-checkout {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s ease;
}

.xtq-close-checkout:hover {
  background: rgba(239, 68, 68, 0.3);
}

.xtq-checkout-content {
  padding: 32px;
}

.xtq-selected-product {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 32px;
}

.xtq-product-summary {
  display: flex;
  align-items: center;
  gap: 20px;
}

.xtq-product-icon-large {
  font-size: 64px;
  animation: float 3s ease-in-out infinite;
}

.xtq-product-details h3 {
  margin: 0 0 8px 0;
  font-size: 24px;
  color: #e6edf6;
  font-weight: 700;
}

.xtq-product-details p {
  margin: 0 0 12px 0;
  color: rgba(230, 237, 246, 0.7);
  font-size: 16px;
}

.xtq-product-price-large {
  font-size: 28px;
  font-weight: 700;
  color: #10b981;
}

.xtq-checkout-form-inline {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.xtq-form-section {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
}

.xtq-form-section h3 {
  margin: 0 0 16px 0;
  font-size: 18px;
  color: #e6edf6;
  font-weight: 700;
}

.xtq-field-group {
  margin-bottom: 16px;
}

.xtq-field-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #e6edf6;
  font-weight: 600;
}

.xtq-field-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(15, 23, 42, 0.8);
  color: #e6edf6;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.xtq-field-group input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.xtq-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.xtq-payment-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.xtq-payment-option {
  position: relative;
}

.xtq-payment-option input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.xtq-payment-option label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
}

.xtq-payment-option input[type="radio"]:checked + label {
  border-color: #667eea;
  background: rgba(102, 126, 234, 0.1);
}

.xtq-payment-icon {
  font-size: 24px;
}

.xtq-payment-info h4 {
  margin: 0 0 4px 0;
  font-size: 16px;
  color: #e6edf6;
  font-weight: 700;
}

.xtq-payment-info p {
  margin: 0;
  font-size: 14px;
  color: rgba(230, 237, 246, 0.7);
}

.xtq-checkout-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
}

.xtq-checkout-actions .xtq-btn-secondary {
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.1);
  color: #e6edf6;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.xtq-checkout-actions .xtq-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.xtq-checkout-actions .xtq-btn-primary {
  padding: 12px 24px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.xtq-checkout-actions .xtq-btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

@media (max-width: 768px) {
  .xtq-checkout-inline {
    padding: 10px;
  }
  
  .xtq-checkout-card {
    max-height: 95vh;
  }
  
  .xtq-checkout-header {
    padding: 16px 20px;
  }
  
  .xtq-checkout-content {
    padding: 20px;
  }
  
  .xtq-product-summary {
    flex-direction: column;
    text-align: center;
  }
  
  .xtq-field-row {
    grid-template-columns: 1fr;
  }
  
  .xtq-checkout-actions {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .xtq-cart-page .xtq-shop-wrapper {
    padding: 16px;
  }
  
  .xtq-cart-header {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 20px;
  }
  
  .xtq-cart-title h1 {
    font-size: 24px;
  }
  
  .xtq-step-indicator {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .xtq-step-line {
    display: none;
  }
  
  .xtq-cart-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .xtq-cart-items {
    order: 2;
  }
  
  .xtq-cart-summary {
    order: 1;
    position: static;
  }
  
  .xtq-cart-item {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }
  
  .xtq-item-info {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .xtq-item-details h3 {
    font-size: 16px;
  }
  
  .xtq-item-price {
    font-size: 18px;
  }
  
  .xtq-item-quantity {
    align-items: center;
  }
  
  .xtq-quantity-controls {
    justify-content: center;
  }
  
  .xtq-item-total {
    text-align: center;
  }
  
  .xtq-item-subtotal {
    font-size: 20px;
  }
  
  .xtq-summary-card {
    padding: 20px;
  }
  
  .xtq-summary-card h3 {
    font-size: 18px;
    text-align: center;
  }
  
  .xtq-summary-line {
    font-size: 15px;
  }
  
  .xtq-summary-total {
    font-size: 18px;
  }
  
  .xtq-checkout-btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .xtq-cart-header {
    padding: 20px 16px;
  }
  
  .xtq-cart-title h1 {
    font-size: 20px;
  }
  
  .xtq-cart-title p {
    font-size: 14px;
  }
  
  .xtq-step-number {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
  
  .xtq-step-label {
    font-size: 10px;
  }
  
  .xtq-cart-item {
    padding: 16px;
  }
  
  .xtq-item-details h3 {
    font-size: 14px;
  }
  
  .xtq-item-price {
    font-size: 16px;
  }
  
  .xtq-qty-btn {
    width: 28px;
    height: 28px;
  }
  
  .xtq-qty-input {
    width: 50px;
    height: 28px;
  }
  
  .xtq-item-subtotal {
    font-size: 18px;
  }
  
  .xtq-summary-card {
    padding: 16px;
  }
  
  .xtq-summary-card h3 {
    font-size: 16px;
  }
  
  .xtq-summary-line {
    font-size: 14px;
  }
  
  .xtq-summary-total {
    font-size: 16px;
  }
  
  .xtq-checkout-btn {
    padding: 14px 20px;
    font-size: 15px;
  }
}

.xtq-cart-item {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: all 0.3s ease;
}

.xtq-cart-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.xtq-item-image {
  flex-shrink: 0;
}

.xtq-item-icon {
  font-size: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
  border-radius: 12px;
}

.xtq-item-details {
  flex: 1;
  min-width: 0;
}

.xtq-item-name {
  font-size: 20px;
  font-weight: 700;
  color: #e6edf6;
  margin: 0 0 8px 0;
}

.xtq-item-description {
  font-size: 14px;
  color: rgba(230, 237, 246, 0.7);
  margin: 0 0 12px 0;
  line-height: 1.5;
}

.xtq-item-price-info {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 6px 12px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 6px;
  width: fit-content;
}

.xtq-item-price-label {
  font-size: 12px;
  font-weight: 600;
  color: #e6edf6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.xtq-item-price {
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.xtq-item-actions {
  flex-shrink: 0;
}

.xtq-remove-item {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.xtq-remove-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.xtq-cart-summary {
  position: sticky;
  top: 20px;
}

.xtq-summary-card {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.xtq-summary-card h3 {
  color: #e6edf6;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 20px 0;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.xtq-summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  color: rgba(230, 237, 246, 0.8);
  font-size: 15px;
}

.xtq-summary-line span:first-child {
  font-weight: 500;
}

.xtq-summary-line span:last-child {
  font-weight: 600;
  color: #e6edf6;
}

.xtq-summary-line:nth-child(2) span:last-child {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.xtq-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 24px;
  margin-top: 12px;
  border-top: 2px solid rgba(255, 255, 255, 0.15);
  font-size: 18px;
  font-weight: 700;
}

.xtq-summary-total span:first-child {
  color: rgba(230, 237, 246, 0.9);
}

.xtq-summary-total span:last-child {
  color: #10b981;
  font-size: 24px;
}

.xtq-summary-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.xtq-summary-actions .xtq-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.08);
  color: #e6edf6 !important;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  cursor: pointer;
}

.xtq-summary-actions .xtq-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
  color: #fff !important;
}

.xtq-summary-actions .xtq-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white !important;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
  position: relative;
  overflow: hidden;
}

.xtq-summary-actions .xtq-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.xtq-summary-actions .xtq-btn-primary:hover::before {
  left: 100%;
}

.xtq-summary-actions .xtq-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.5);
  color: white !important;
}

.xtq-summary-actions .xtq-btn-primary .xtq-btn-icon {
  font-size: 20px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.xtq-security-badges {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.xtq-badge {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.2);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(230, 237, 246, 0.9);
}

.xtq-badge-icon {
  font-size: 16px;
}

@media (max-width: 1024px) {
  .xtq-cart-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  .xtq-cart-items,
  .xtq-cart-summary {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .xtq-cart-item {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 16px;
  }
  
  .xtq-item-icon {
    width: 64px;
    height: 64px;
    font-size: 48px;
    margin: 0 auto;
  }
  
  .xtq-item-details {
    width: 100%;
  }
  
  .xtq-item-name {
    font-size: 18px;
  }
  
  .xtq-item-description {
    font-size: 13px;
  }
  
  .xtq-item-price-info {
    justify-content: center;
    margin: 8px auto;
    padding: 6px 12px;
  }
  
  .xtq-item-price-label {
    font-size: 11px;
  }
  
  .xtq-item-price {
    font-size: 16px;
  }
  
  .xtq-item-actions {
    width: 100%;
  }
  
  .xtq-remove-item {
    width: 100%;
    justify-content: center;
    padding: 12px 24px;
  }
  
  .xtq-cart-summary {
    position: static;
  }
  
  .xtq-summary-card {
    padding: 20px;
  }
  
  .xtq-summary-card h3 {
    font-size: 18px;
  }
  
  .xtq-summary-line {
    font-size: 14px;
  }
  
  .xtq-summary-line:nth-child(2) span:last-child {
    font-size: 15px;
  }
  
  .xtq-summary-total {
    font-size: 16px;
  }
  
  .xtq-summary-total span:last-child {
    font-size: 22px;
  }
  
  .xtq-summary-actions .xtq-btn-secondary,
  .xtq-summary-actions .xtq-btn-primary {
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
  }
  
  .xtq-security-badges {
    flex-direction: column;
    gap: 8px;
  }
  
  .xtq-badge {
    width: 100%;
  }
  
  .xtq-support-section {
    padding: 20px 16px;
  }
  
  .xtq-support-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 16px;
  }
  
  .xtq-support-icon {
    font-size: 40px;
  }
  
  .xtq-support-info h3 {
    font-size: 18px;
  }
  
  .xtq-support-info p {
    font-size: 13px;
  }
  
  .xtq-support-actions {
    width: 100%;
  }
  
  .xtq-btn-whatsapp {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .xtq-cart-item {
    padding: 16px;
  }
  
  .xtq-item-icon {
    width: 56px;
    height: 56px;
    font-size: 40px;
  }
  
  .xtq-item-name {
    font-size: 16px;
  }
  
  .xtq-item-description {
    font-size: 12px;
  }
  
  .xtq-item-price-info {
    padding: 5px 10px;
  }
  
  .xtq-item-price-label {
    font-size: 10px;
  }
  
  .xtq-item-price {
    font-size: 15px;
  }
  
  .xtq-remove-item {
    padding: 10px 20px;
    font-size: 13px;
  }
  
  .xtq-summary-card {
    padding: 16px;
  }
  
  .xtq-summary-card h3 {
    font-size: 16px;
  }
  
  .xtq-summary-line {
    font-size: 13px;
    padding: 10px 0;
  }
  
  .xtq-summary-line:nth-child(2) span:last-child {
    font-size: 14px;
  }
  
  .xtq-summary-total {
    font-size: 15px;
    padding: 16px 0 20px;
  }
  
  .xtq-summary-total span:last-child {
    font-size: 20px;
  }
  
  .xtq-summary-actions .xtq-btn-secondary,
  .xtq-summary-actions .xtq-btn-primary {
    padding: 12px 18px;
    font-size: 14px;
  }
  
  .xtq-summary-actions .xtq-btn-primary .xtq-btn-icon {
    font-size: 18px;
  }
  
  .xtq-badge {
    font-size: 12px;
    padding: 8px;
  }
  
  .xtq-badge-icon {
    font-size: 14px;
  }
  
  .xtq-support-section {
    padding: 16px 12px;
  }
  
  .xtq-support-card {
    padding: 16px;
  }
  
  .xtq-support-icon {
    font-size: 36px;
  }
  
  .xtq-support-info h3 {
    font-size: 16px;
  }
  
  .xtq-support-info p {
    font-size: 12px;
  }
  
  .xtq-btn-whatsapp {
    padding: 10px 18px;
    font-size: 13px;
  }
}

.xtq-shop-page.xtq-embed-mode {
  background: transparent !important;
}

.xtq-shop-page.xtq-embed-mode .xtq-shop-wrapper {
  padding: 0;
}

.xtq-shop-page.xtq-embed-mode.xtq-single-product .xtq-shop-wrapper {
  padding-top: 16px;
}

.xtq-shop-page.xtq-embed-mode.xtq-cart-page .xtq-shop-wrapper,
.xtq-shop-page.xtq-embed-mode.xtq-checkout-page .xtq-shop-wrapper,
.xtq-shop-page.xtq-embed-mode.xtq-my-account-page .xtq-shop-wrapper {
  padding-top: 16px;
}

.xtq-shop-page.xtq-embed-mode .xtq-shop-header {
  margin-bottom: 20px;
}

.xtq-shop-page.xtq-embed-mode .xtq-benefits-section,
.xtq-shop-page.xtq-embed-mode .xtq-faq-section {
  margin-bottom: 20px;
}

.xtq-section-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 50px 0 30px;
}

.xtq-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.xtq-divider-text {
  color: #94a3b8;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.xtq-free-header,
.xtq-single-header {
  text-align: center;
  margin-bottom: 30px;
}

.xtq-free-card {
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.1) 0%, rgba(15, 23, 42, 0.95) 100%) !important;
  border-color: rgba(16, 185, 129, 0.3) !important;
}

.xtq-free-card:hover {
  border-color: rgba(16, 185, 129, 0.5) !important;
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15) !important;
}

.xtq-single-card {
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.1) 0%, rgba(15, 23, 42, 0.95) 100%) !important;
  border-color: rgba(99, 102, 241, 0.3) !important;
}

.xtq-single-card:hover {
  border-color: rgba(99, 102, 241, 0.5) !important;
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15) !important;
}

.xtq-module-badge.free {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
  color: white;
}

.xtq-module-badge.single {
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%) !important;
  color: white;
}

.xtq-module-price.free-price .xtq-price-value {
  color: #10b981 !important;
}

.xtq-btn-primary.free-btn {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
}

.xtq-btn-primary.free-btn:hover {
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4) !important;
}

.xtq-free-grid,
.xtq-single-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  max-width: 800px;
  margin: 0 auto;
}

.xtq-module-info-note {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 8px;
  font-size: 13px;
  color: #10b981;
  margin-top: auto;
}

.xtq-module-info-note .xtq-info-icon {
  font-size: 16px;
}

.xtq-module-info-note.single-note {
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: #a78bfa;
}

.xtq-section-spacer {
  height: 60px;
}

@media (max-width: 768px) {
  .xtq-section-divider {
    margin: 40px 0 24px;
  }
  
  .xtq-divider-text {
    font-size: 12px;
  }
  
  .xtq-free-grid,
  .xtq-single-grid {
    grid-template-columns: 1fr;
  }
  
  .xtq-section-spacer {
    height: 40px;
  }
}
