/* ========================================
   XFIRE SINGLE PRODUCT - DARK MODE
   Modern & Clean Design
   ======================================== */

:root {
  --xf-primary: #6366f1;
  --xf-primary-light: #818cf8;
  --xf-secondary: #8b5cf6;
  --xf-success: #10b981;
  --xf-warning: #f59e0b;
  --xf-danger: #ef4444;
  
  --xf-dark-bg: #0f0f23;
  --xf-dark-card: #1a1a2e;
  --xf-dark-border: #2d2d44;
  --xf-dark-hover: #252540;
  
  --xf-text-primary: #ffffff;
  --xf-text-secondary: #a0a0c0;
  --xf-text-muted: #6b6b8f;
  
  --xf-radius: 16px;
  --xf-radius-lg: 24px;
  --xf-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --xf-shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.6);
  --xf-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === WRAPPER === */
.xfire-single-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
  animation: fadeIn 0.6s ease-out;
}

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

/* === BREADCRUMB === */
.xfire-breadcrumb {
  margin-bottom: 2rem;
}

.xfire-breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: var(--xf-dark-card);
  border: 1px solid var(--xf-dark-border);
  border-radius: var(--xf-radius);
  color: var(--xf-text-secondary);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: var(--xf-transition);
}

.xfire-breadcrumb a:hover {
  background: var(--xf-dark-hover);
  border-color: var(--xf-primary);
  color: var(--xf-text-primary);
  transform: translateX(-2px);
}

.xfire-breadcrumb svg {
  width: 16px;
  height: 16px;
}

/* === HERO GRID === */
.xfire-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (max-width: 1024px) {
  .xfire-hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* === MEDIA SECTION === */
.xfire-media-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Video Container */
.xfire-video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--xf-radius-lg);
  overflow: hidden;
  background: var(--xf-dark-card);
  border: 1px solid var(--xf-dark-border);
  box-shadow: var(--xf-shadow);
}

.xfire-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Gallery */
.xfire-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.xfire-gallery-main {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: var(--xf-radius-lg);
  overflow: hidden;
  background: var(--xf-dark-card);
  border: 1px solid var(--xf-dark-border);
  box-shadow: var(--xf-shadow);
}

.xfire-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.xfire-gallery-main:hover .xfire-main-img {
  transform: scale(1.05);
}

.xfire-zoom-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--xf-transition);
  opacity: 0;
}

.xfire-gallery-main:hover .xfire-zoom-btn {
  opacity: 1;
}

.xfire-zoom-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

/* Thumbnails */
.xfire-gallery-thumbs {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding: 0.25rem;
}

.xfire-thumb {
  width: 100px;
  height: 70px;
  border-radius: var(--xf-radius);
  overflow: hidden;
  border: 2px solid var(--xf-dark-border);
  background: var(--xf-dark-card);
  cursor: pointer;
  transition: var(--xf-transition);
  flex-shrink: 0;
  padding: 0;
}

.xfire-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.xfire-thumb:hover,
.xfire-thumb.active {
  border-color: var(--xf-primary);
  transform: translateY(-2px);
}

/* === PRODUCT INFO === */
.xfire-product-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Category Badge */
.xfire-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
}

.xfire-type-copier {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.2));
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.xfire-type-bot {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(124, 58, 237, 0.2));
  color: #a78bfa;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.xfire-type-ea {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(79, 70, 229, 0.2));
  color: #818cf8;
  border: 1px solid rgba(99, 102, 241, 0.3);
}

/* Product Name */
.xfire-product-name {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--xf-text-primary);
  margin: 0;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .xfire-product-name {
    font-size: 2rem;
  }
}

/* Badges */
.xfire-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.xfire-badge-item {
  padding: 0.375rem 0.875rem;
  background: var(--xf-dark-card);
  border: 1px solid var(--xf-dark-border);
  border-radius: 999px;
  color: var(--xf-text-secondary);
  font-size: 0.8125rem;
  font-weight: 600;
  transition: var(--xf-transition);
}

.xfire-badge-item:hover {
  background: var(--xf-primary);
  border-color: var(--xf-primary);
  color: white;
  transform: translateY(-2px);
}

/* Short Description */
.xfire-short-desc {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--xf-text-secondary);
  margin: 0;
}

/* === PRICE CARD === */
.xfire-price-card {
  background: linear-gradient(135deg, var(--xf-dark-card), #1e1e38);
  border: 1px solid var(--xf-dark-border);
  border-radius: var(--xf-radius-lg);
  padding: 2rem;
  box-shadow: var(--xf-shadow);
}

.xfire-price-row {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--xf-dark-border);
}

.xfire-price-row:last-child {
  padding-bottom: 0;
  border-bottom: none;
  margin-top: 1.5rem;
}

.xfire-price-value {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.xfire-price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--xf-text-secondary);
}

.xfire-price-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--xf-primary), var(--xf-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.xfire-price-term {
  font-size: 1.125rem;
  color: var(--xf-text-muted);
  font-weight: 600;
}

.xfire-price-detail {
  color: var(--xf-text-secondary);
  font-size: 0.9375rem;
  margin: 0;
}

/* === CTA BUTTONS === */
.xfire-cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.xfire-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1rem 2rem;
  border-radius: var(--xf-radius);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: var(--xf-transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.xfire-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.xfire-cta-btn:hover::before {
  opacity: 1;
}

.xfire-cta-primary {
  background: linear-gradient(135deg, var(--xf-primary), var(--xf-secondary));
  color: white;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.xfire-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.6);
}

.xfire-cta-secondary {
  background: var(--xf-dark-card);
  color: var(--xf-text-primary);
  border-color: var(--xf-dark-border);
}

.xfire-cta-secondary:hover {
  background: var(--xf-dark-hover);
  border-color: var(--xf-primary);
  color: var(--xf-primary);
  transform: translateY(-2px);
}

/* === TRUST BAR === */
.xfire-trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.5rem;
  background: var(--xf-dark-card);
  border: 1px solid var(--xf-dark-border);
  border-radius: var(--xf-radius);
}

.xfire-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--xf-text-secondary);
  font-size: 0.875rem;
  font-weight: 600;
}

.xfire-trust-item svg {
  color: var(--xf-success);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .xfire-trust-bar {
    grid-template-columns: 1fr;
  }
}

/* === CONTENT SECTION === */
.xfire-content-section {
  margin-bottom: 4rem;
}

/* Tabs Navigation */
.xfire-tabs-nav {
  display: flex;
  gap: 0.5rem;
  border-bottom: 2px solid var(--xf-dark-border);
  margin-bottom: 2rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.xfire-tab-btn {
  padding: 1rem 1.5rem;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--xf-text-secondary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--xf-transition);
  white-space: nowrap;
  font-family: inherit;
}

.xfire-tab-btn:hover {
  color: var(--xf-text-primary);
  background: var(--xf-dark-hover);
}

.xfire-tab-btn.active {
  color: var(--xf-primary);
  border-bottom-color: var(--xf-primary);
}

/* Tab Panels */
.xfire-tab-panel {
  display: none;
  animation: fadeInContent 0.4s ease-out;
}

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

.xfire-tab-panel.active {
  display: block;
}

/* Content Box */
.xfire-content-box {
  background: var(--xf-dark-card);
  border: 1px solid var(--xf-dark-border);
  border-radius: var(--xf-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--xf-shadow);
}

.xfire-content-box p {
  color: var(--xf-text-secondary);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.xfire-content-box p:last-child {
  margin-bottom: 0;
}

.xfire-content-box h1,
.xfire-content-box h2,
.xfire-content-box h3,
.xfire-content-box h4 {
  color: var(--xf-text-primary);
  font-weight: 700;
  margin: 2rem 0 1rem;
}

.xfire-content-box h1:first-child,
.xfire-content-box h2:first-child,
.xfire-content-box h3:first-child {
  margin-top: 0;
}

.xfire-content-box ul,
.xfire-content-box ol {
  margin: 1.25rem 0;
  padding-left: 2rem;
}

.xfire-content-box li {
  color: var(--xf-text-secondary);
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.xfire-content-box ul li {
  list-style: none;
  position: relative;
  padding-left: 1.5rem;
}

.xfire-content-box ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--xf-success);
  font-weight: 700;
  font-size: 1.125rem;
}

.xfire-content-box strong {
  color: var(--xf-text-primary);
  font-weight: 700;
}

@media (max-width: 768px) {
  .xfire-content-box {
    padding: 1.5rem;
  }
}

/* Empty State */
.xfire-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
}

.xfire-empty-state svg {
  color: var(--xf-text-muted);
  margin-bottom: 1.5rem;
  opacity: 0.5;
}

.xfire-empty-state h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--xf-text-primary);
  margin: 0 0 0.5rem;
}

.xfire-empty-state p {
  font-size: 1rem;
  color: var(--xf-text-muted);
  margin: 0;
}

/* === RELATED SECTION === */
.xfire-related-section {
  margin-bottom: 4rem;
}

.xfire-section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--xf-text-primary);
  margin: 0 0 2rem;
  text-align: center;
}

.xfire-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

@media (max-width: 640px) {
  .xfire-related-grid {
    grid-template-columns: 1fr;
  }
}

.xfire-related-item {
  display: flex;
  flex-direction: column;
  background: var(--xf-dark-card);
  border: 1px solid var(--xf-dark-border);
  border-radius: var(--xf-radius-lg);
  overflow: hidden;
  text-decoration: none;
  transition: var(--xf-transition);
  box-shadow: var(--xf-shadow);
}

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

.xfire-related-img {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1a2e, #252540);
  overflow: hidden;
}

.xfire-related-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.xfire-related-item:hover .xfire-related-img img {
  transform: scale(1.1);
}

.xfire-related-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(10px);
}

.xfire-related-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.xfire-related-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--xf-text-primary);
  margin: 0;
}

.xfire-related-content p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--xf-text-secondary);
  margin: 0;
  flex: 1;
}

.xfire-related-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
}

.xfire-related-price {
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--xf-primary), var(--xf-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.xfire-related-arrow {
  font-size: 1.5rem;
  color: var(--xf-text-muted);
  transition: var(--xf-transition);
}

.xfire-related-item:hover .xfire-related-arrow {
  color: var(--xf-primary);
  transform: translateX(4px);
}

/* === IMAGE MODAL === */
.xfire-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  backdrop-filter: blur(10px);
  animation: fadeIn 0.3s ease-out;
}

.xfire-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.xfire-modal-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 2rem;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--xf-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 10000;
}

.xfire-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.xfire-modal-body {
  max-width: 90vw;
  max-height: 90vh;
  padding: 2rem;
}

.xfire-modal-body img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  display: block;
  border-radius: var(--xf-radius-lg);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .xfire-single-wrapper {
    padding: 1.5rem 1rem 3rem;
  }
  
  .xfire-hero-grid {
    gap: 1.5rem;
  }
  
  .xfire-price-card {
    padding: 1.5rem;
  }
  
  .xfire-price-number {
    font-size: 2.5rem;
  }
}

/* === ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   FLOAT RECOMMENDATION WIDGET
   ============================================ */

.xfire-float-widget {
    position: fixed;
    bottom: -100%;
    right: 20px;
    width: 380px;
    max-width: calc(100vw - 40px);
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    padding: 24px;
    z-index: 9999;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0;
    transform: translateY(100px) scale(0.9);
}

.xfire-float-widget.show {
    bottom: 20px;
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: floatPulse 2s ease-in-out infinite;
}

.xfire-float-widget.dismissed {
    bottom: -100%;
    opacity: 0;
    transform: translateY(100px) scale(0.8);
}

@keyframes floatPulse {
    0%, 100% {
        box-shadow: 0 20px 60px rgba(99, 102, 241, 0.4);
    }
    50% {
        box-shadow: 0 25px 70px rgba(99, 102, 241, 0.6);
    }
}

/* Close Button */
.xfire-float-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.xfire-float-close:hover {
    background: rgba(239, 68, 68, 0.9);
    transform: rotate(90deg);
}

/* Header */
.xfire-float-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-right: 40px;
}

.xfire-float-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: iconSpin 3s linear infinite;
}

@keyframes iconSpin {
    0%, 90% {
        transform: rotate(0deg);
    }
    95% {
        transform: rotate(15deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.xfire-float-title h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.xfire-float-title p {
    margin: 4px 0 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* Slider */
.xfire-float-slider {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 16px;
}

.xfire-float-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: none;
}

.xfire-float-card.active {
    display: block;
    animation: slideIn 0.5s ease;
}

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

.xfire-float-card-img {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
}

.xfire-float-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.xfire-float-card:hover .xfire-float-card-img img {
    transform: scale(1.1);
}

.xfire-float-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    backdrop-filter: blur(10px);
}

.xfire-float-badge.xfire-type-copier {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.xfire-float-badge.xfire-type-bot {
    background: linear-gradient(135deg, #10b981, #059669);
}

.xfire-float-badge.xfire-type-ea {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.xfire-float-card-body {
    padding: 16px;
}

.xfire-float-card-body h4 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
}

.xfire-float-card-body p {
    margin: 0 0 16px;
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}

.xfire-float-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.xfire-float-price {
    font-size: 18px;
    font-weight: 800;
    color: #6366f1;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.xfire-float-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.xfire-float-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
    color: white;
}

.xfire-float-btn svg {
    transition: transform 0.3s ease;
}

.xfire-float-btn:hover svg {
    transform: translateX(4px);
}

/* Dots Navigation */
.xfire-float-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.xfire-float-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.xfire-float-dot:hover {
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.xfire-float-dot.active {
    background: white;
    border-color: white;
    width: 24px;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .xfire-float-widget {
        right: 10px;
        left: 10px;
        width: auto;
        max-width: none;
        padding: 20px;
        border-radius: 16px;
    }

    .xfire-float-widget.show {
        bottom: 10px;
    }

    .xfire-float-header {
        padding-right: 36px;
    }

    .xfire-float-title h3 {
        font-size: 16px;
    }

    .xfire-float-title p {
        font-size: 12px;
    }

    .xfire-float-icon {
        width: 40px;
        height: 40px;
    }

    .xfire-float-card-img {
        height: 160px;
    }

    .xfire-float-card-body h4 {
        font-size: 15px;
    }

    .xfire-float-price {
        font-size: 16px;
    }

    .xfire-float-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .xfire-float-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .xfire-float-btn {
        width: 100%;
        justify-content: center;
    }

    /* Machine IDs Selector */
.xfire-machine-ids-selector {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.xfire-selector-header {
    margin-bottom: 1rem;
}

.xfire-selector-header label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.xfire-selector-header label svg {
    color: #3b82f6;
}

.xfire-selector-hint {
    display: block;
    font-size: 0.85rem;
    color: #64748b;
}

.xfire-machine-id-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

.xfire-qty-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 2px solid #cbd5e1;
    background: #fff;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.xfire-qty-btn:hover:not(:disabled) {
    border-color: #3b82f6;
    background: #eff6ff;
    color: #3b82f6;
}

.xfire-qty-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.xfire-qty-input {
    width: 80px;
    height: 40px;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 700;
    border: 2px solid #cbd5e1;
    border-radius: 8px;
    background: #fff;
    color: #1e293b;
}

.xfire-qty-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.xfire-addon-summary {
    margin-top: 1.25rem;
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.xfire-addon-line {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: #475569;
}

.xfire-addon-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #cbd5e1, transparent);
    margin: 0.75rem 0;
}

.xfire-addon-total {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 1.05rem;
    color: #1e293b;
}

.xfire-addon-total strong {
    font-size: 1.25rem;
    color: #3b82f6;
}

.xfire-addon-renewal {
    text-align: right;
    margin-top: 0.5rem;
}

.xfire-addon-renewal small {
    color: #64748b;
    font-size: 0.85rem;
}
}