/* ==============================
   Icon System
   ============================== */
.ui-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  max-width: 20px;
  flex: 0 0 20px;
}

.icon-sm {
  width: 16px;
  height: 16px;
  min-width: 16px;
  max-width: 16px;
  flex: 0 0 16px;
}

.icon-md {
  width: 24px;
  height: 24px;
  min-width: 24px;
  max-width: 24px;
  flex: 0 0 24px;
}

.icon-lg {
  width: 32px;
  height: 32px;
  min-width: 32px;
  max-width: 32px;
  flex: 0 0 32px;
}

.icon-xl {
  width: 40px;
  height: 40px;
  min-width: 40px;
  max-width: 40px;
  flex: 0 0 40px;
}

.icon-button {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
  cursor: pointer;
  border: none;
  background: none;
  color: var(--color-text-soft);
}

.icon-button:hover {
  background: var(--color-surface);
  color: var(--color-text);
}

.icon-button svg {
  width: 22px;
  height: 22px;
  max-width: 22px;
  max-height: 22px;
}

.responsive-illustration {
  width: 100%;
  max-width: 600px;
  height: auto;
}

/* ==============================
   Buttons
   ============================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-2);
  font-weight: 600;
  font-size: var(--text-sm);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.5rem;
  transition: all var(--transition-base);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid transparent;
  line-height: 1.4;
  font-family: var(--font-sans);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--color-brand);
  color: white;
  border-color: var(--color-brand);
}

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

.btn-secondary {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary-light);
  border-color: var(--color-primary-light);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-brand);
  border-color: var(--color-brand);
}

.btn-outline:hover {
  background: var(--color-brand);
  color: white;
  border-color: var(--color-brand);
}

.btn-outline-light {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
  background: white;
  color: var(--color-primary);
  border-color: white;
}

.btn-ghost {
  background: transparent;
  color: var(--color-text-soft);
  border-color: transparent;
}

.btn-ghost:hover {
  background: var(--color-surface);
  color: var(--color-text);
  border-color: transparent;
  transform: none;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: var(--text-xs);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: var(--text-base);
}

.btn-accent {
  background: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-accent);
}

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

.btn-block {
  display: flex;
  width: 100%;
  justify-content: center;
}

.btn-icon {
  padding: 0.5rem;
  width: 40px;
  height: 40px;
  justify-content: center;
}

.btn-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.7;
}

.btn-loading::after {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-left: var(--spacing-2);
}

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

.btn-group {
  display: flex;
  gap: var(--spacing-2);
}

/* ==============================
   Badges
   ============================== */
.badge {
  display: inline-flex;
  align-items: center;
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  line-height: 1.4;
  white-space: nowrap;
}

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

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

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

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

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

.badge-outline {
  background: transparent;
  color: var(--color-text-soft);
  border: 1px solid var(--color-border);
}

.badge-light {
  background: var(--color-surface);
  color: var(--color-text-soft);
}

.badge-sm {
  font-size: 10px;
  padding: 0.1rem 0.4rem;
}

/* ==============================
   Cards
   ============================== */
.card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: var(--spacing-5);
}

.card-title {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--spacing-2);
  color: var(--color-text);
}

.card-text {
  font-size: var(--text-sm);
  color: var(--color-text-soft);
  line-height: 1.6;
}

.card-footer {
  padding: var(--spacing-4) var(--spacing-5);
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ==============================
   Product Card
   ============================== */
.product-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card-image {
  height: 220px;
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-card-badges {
  position: absolute;
  top: var(--spacing-2);
  left: var(--spacing-2);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-card-wishlist {
  position: absolute;
  top: var(--spacing-2);
  right: var(--spacing-2);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--color-text-muted);
}

.product-card-wishlist:hover {
  background: var(--color-error-light);
  color: var(--color-error);
  border-color: transparent;
}

.product-card-wishlist svg {
  width: 16px;
  height: 16px;
}

.product-card-body {
  padding: var(--spacing-4);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-category {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--spacing-1);
}

.product-card-title {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--spacing-1);
  line-height: 1.3;
}

.product-card-desc {
  font-size: var(--text-sm);
  color: var(--color-text-soft);
  margin-bottom: var(--spacing-3);
  line-height: 1.5;
  flex: 1;
}

.product-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--spacing-3);
  font-size: var(--text-sm);
}

.product-card-actions {
  display: flex;
  gap: var(--spacing-2);
  margin-top: auto;
}

.product-card-actions .btn {
  flex: 1;
}

/* ==============================
   Service Card
   ============================== */
.service-card {
  text-align: center;
  padding: var(--spacing-6);
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card-icon {
  width: 56px;
  height: 56px;
  background: var(--color-brand-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-4);
  color: var(--color-brand);
}

.service-card-icon svg {
  width: 28px;
  height: 28px;
}

.service-card-title {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--spacing-2);
}

.service-card-text {
  font-size: var(--text-sm);
  color: var(--color-text-soft);
  line-height: 1.6;
}

/* ==============================
   Category Card
   ============================== */
.category-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.category-card-image {
  height: 160px;
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-card-body {
  padding: var(--spacing-4);
}

.category-card-title {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--spacing-1);
}

.category-card-text {
  font-size: var(--text-sm);
  color: var(--color-text-soft);
  margin-bottom: var(--spacing-2);
}

.category-card-link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-brand);
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-1);
  text-decoration: none;
}

.category-card-link:hover {
  color: var(--color-brand-hover);
  text-decoration: underline;
}

.category-card-link svg {
  width: 16px;
  height: 16px;
}

/* ==============================
   Breadcrumbs
   ============================== */
.breadcrumbs {
  padding: 0.75rem 0;
  background: var(--color-surface);
  font-size: var(--text-sm);
  overflow-x: auto;
}

.breadcrumbs-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.breadcrumbs-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumbs-item a {
  color: var(--color-text-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumbs-item a:hover {
  color: var(--color-brand);
  text-decoration: none;
}

.breadcrumbs-item::after {
  content: '/';
  color: var(--color-text-muted);
  font-size: var(--text-xs);
}

.breadcrumbs-item:last-child::after {
  display: none;
}

.breadcrumbs-item:last-child span {
  color: var(--color-text);
  font-weight: 500;
}

/* ==============================
   Pagination
   ============================== */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin-top: var(--spacing-8);
}

.pagination-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: white;
  color: var(--color-text-soft);
  font-size: var(--text-sm);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.pagination-btn:hover {
  border-color: var(--color-brand);
  color: var(--color-brand);
  background: var(--color-brand-light);
}

.pagination-btn.active {
  background: var(--color-brand);
  border-color: var(--color-brand);
  color: white;
}

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

/* ==============================
   Skeleton / Loading
   ============================== */
.skeleton {
  background: linear-gradient(90deg, var(--color-surface) 25%, var(--color-surface-dark) 50%, var(--color-surface) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-md);
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ==============================
   Filter Chip
   ============================== */
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0.35rem 0.75rem;
  font-size: var(--text-sm);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  cursor: pointer;
  background: white;
  color: var(--color-text-soft);
  transition: all var(--transition-fast);
}

.filter-chip:hover {
  border-color: var(--color-brand);
  color: var(--color-brand);
}

.filter-chip.active {
  background: var(--color-brand-light);
  border-color: var(--color-brand);
  color: var(--color-brand);
}

.filter-chip svg {
  width: 14px;
  height: 14px;
}

/* ==============================
   Tabs
   ============================== */
.tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--spacing-6);
}

.tab-btn {
  padding: 0.75rem 1.25rem;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-soft);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--color-brand);
}

.tab-btn.active {
  color: var(--color-brand);
  border-bottom-color: var(--color-brand);
  font-weight: 600;
}

.tab-panel {
  display: none;
}

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

/* ==============================
   Accordion / FAQ
   ============================== */
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-4);
  font-weight: 500;
  text-align: left;
  background: white;
  transition: background var(--transition-fast);
  border: none;
  cursor: pointer;
  color: var(--color-text);
  font-size: var(--text-base);
}

.faq-trigger:hover {
  background: var(--color-surface);
}

.faq-trigger svg {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-base);
  flex-shrink: 0;
  color: var(--color-text-muted);
}

.faq-item.active .faq-trigger svg {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq-item.active .faq-content {
  max-height: 400px;
}

.faq-content-inner {
  padding: 0 var(--spacing-4) var(--spacing-4);
  font-size: var(--text-sm);
  color: var(--color-text-soft);
  line-height: 1.7;
}

/* ==============================
   Newsletter
   ============================== */
.newsletter {
  padding: var(--spacing-12) 0;
  background: var(--color-primary);
  color: white;
  text-align: center;
}

.newsletter .section-title {
  color: white;
}

.newsletter .section-text {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form {
  display: flex;
  gap: var(--spacing-3);
  max-width: 480px;
  margin: var(--spacing-6) auto 0;
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  color: var(--color-text);
}

.newsletter-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter .form-note {
  color: rgba(255, 255, 255, 0.5);
  margin-top: var(--spacing-4);
}

@media (max-width: 767px) {
  .newsletter-form {
    flex-direction: column;
  }
}

/* ==============================
   Banner
   ============================== */
.banner {
  padding: var(--spacing-12) 0;
  text-align: center;
  color: white;
}

.banner-title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  color: white;
  margin-bottom: var(--spacing-3);
  font-family: var(--font-heading);
}

.banner-text {
  font-size: var(--text-md);
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
  margin: 0 auto var(--spacing-6);
  line-height: 1.7;
}

.banner-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-3);
}

/* ==============================
   Steps / Process
   ============================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-6);
  margin-top: var(--spacing-6);
}

.step-card {
  text-align: center;
  padding: var(--spacing-6);
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--color-brand-light);
  color: var(--color-brand);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  font-weight: 700;
  margin: 0 auto var(--spacing-3);
}

.step-title {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--spacing-2);
}

.step-text {
  font-size: var(--text-sm);
  color: var(--color-text-soft);
  line-height: 1.6;
}

@media (max-width: 767px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* ==============================
   Why Choose Us / Feature List
   ============================== */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  display: flex;
  gap: var(--spacing-3);
  margin-bottom: var(--spacing-4);
  font-size: var(--text-sm);
  color: var(--color-text-soft);
}

.feature-list li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-brand);
}

/* ==============================
   Modal
   ============================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: var(--z-overlay);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-4);
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: white;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  animation: scaleIn 0.2s ease;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-5) var(--spacing-6);
  border-bottom: 1px solid var(--color-border);
}

.modal-header h3 {
  font-size: var(--text-lg);
  font-weight: 600;
}

.modal-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
  background: none;
}

.modal-close:hover {
  background: var(--color-surface);
  color: var(--color-text);
}

.modal-body {
  padding: var(--spacing-6);
}

.modal-footer {
  padding: var(--spacing-4) var(--spacing-6);
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: flex-end;
  gap: var(--spacing-2);
}

/* ==============================
   Toast
   ============================== */
.toast-container {
  position: fixed;
  top: var(--spacing-4);
  right: var(--spacing-4);
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2);
}

.toast {
  display: flex;
  align-items: center;
  gap: var(--spacing-3);
  padding: var(--spacing-3) var(--spacing-4);
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-size: var(--text-sm);
  min-width: 280px;
  max-width: 420px;
  animation: slideInRight 0.3s ease;
  border-left: 4px solid var(--color-text-muted);
}

.toast-success {
  border-left-color: var(--color-success);
}

.toast-error {
  border-left-color: var(--color-error);
}

.toast-warning {
  border-left-color: var(--color-warning);
}

/* ==============================
   Cookie Banner
   ============================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.9);
  z-index: var(--z-toast);
  padding: var(--spacing-3) 0;
  display: none;
}

.cookie-banner.show,
.cookie-banner.visible {
  display: block;
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-4);
  flex-wrap: wrap;
}

.cookie-banner-text {
  font-size: var(--text-sm);
  line-height: 1.5;
}

.cookie-banner-text a {
  color: var(--color-accent);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: var(--spacing-2);
  flex-shrink: 0;
}

/* ==============================
   Empty State
   ============================== */
.empty-state {
  text-align: center;
  padding: var(--spacing-16) var(--spacing-4);
}

.empty-state-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-4);
  color: var(--color-text-muted);
}

.empty-state-title {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--spacing-2);
}

.empty-state-text {
  font-size: var(--text-sm);
  color: var(--color-text-soft);
  max-width: 400px;
  margin: 0 auto var(--spacing-6);
}

/* ==============================
   Demo Notice
   ============================== */
.demo-notice {
  background: var(--color-brand-light);
  border-left: 4px solid var(--color-brand);
  padding: var(--spacing-4);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: var(--color-text);
}

/* ==============================
   Animations
   ============================== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

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

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

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

.animate-scale-in {
  animation: scaleIn 0.3s ease;
}

/* ==============================
   Advanced Product Card
   ============================== */
.product-card-advanced {
  background: white;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.product-card-advanced:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(11, 31, 58, 0.15), 0 12px 24px -8px rgba(11, 31, 58, 0.08);
  border-color: var(--color-brand-light);
}

.product-card-advanced-image {
  height: 240px;
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-surface-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-card-advanced-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.product-card-advanced-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 31, 58, 0) 0%, rgba(11, 31, 58, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--spacing-3);
}

.product-card-advanced:hover .product-card-advanced-overlay {
  opacity: 1;
}

.product-card-advanced-actions-top {
  display: flex;
  justify-content: flex-end;
  gap: var(--spacing-2);
  transform: translateY(-10px);
  transition: transform 0.4s ease;
}

.product-card-advanced:hover .product-card-advanced-actions-top {
  transform: translateY(0);
}

.product-card-quick-view,
.product-card-wishlist,
.product-card-compare {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.95);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--color-text-soft);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-card-quick-view:hover,
.product-card-wishlist:hover,
.product-card-compare:hover {
  background: var(--color-brand);
  color: white;
  transform: scale(1.1);
}

.product-card-wishlist:hover {
  background: var(--color-error);
}

.product-card-compare:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}

.product-card-advanced-actions-bottom {
  display: flex;
  gap: var(--spacing-2);
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

.product-card-advanced:hover .product-card-advanced-actions-bottom {
  transform: translateY(0);
}

.product-card-advanced-actions-bottom .btn {
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-text);
  border: none;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-size: var(--text-xs);
  padding: 0.5rem 0.75rem;
}

.product-card-advanced-actions-bottom .btn:hover {
  background: var(--color-brand);
  color: white;
}

.product-card-advanced-actions-bottom .btn-accent:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}

.product-card-advanced-badges {
  position: absolute;
  top: var(--spacing-3);
  left: var(--spacing-3);
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.product-card-advanced-badges .badge {
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-size: 10px;
  padding: 0.25rem 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.product-card-advanced-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-25deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.product-card-advanced:hover .product-card-advanced-shine {
  left: 100%;
}

.product-card-advanced-body {
  padding: var(--spacing-5);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-advanced-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--spacing-2);
}

.product-card-advanced-category {
  font-size: 10px;
  color: var(--color-brand);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  background: var(--color-brand-light);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.product-card-advanced-rating {
  display: flex;
  align-items: center;
  gap: var(--spacing-1);
}

.product-card-advanced-stars {
  display: flex;
  gap: 1px;
  color: var(--color-accent);
}

.product-card-advanced-rating-count {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: 500;
}

.product-card-advanced-title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--spacing-2);
  line-height: 1.4;
  font-family: var(--font-heading);
}

.product-card-advanced-title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.product-card-advanced-title a:hover {
  color: var(--color-brand);
}

.product-card-advanced-desc {
  font-size: var(--text-sm);
  color: var(--color-text-soft);
  margin-bottom: var(--spacing-3);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-advanced-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-3);
  margin-bottom: var(--spacing-3);
}

.product-card-advanced-meta-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-1);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.product-card-advanced-meta-item svg {
  color: var(--color-brand);
}

.product-card-advanced-price {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-1);
  margin-bottom: var(--spacing-4);
  padding: var(--spacing-3);
  background: linear-gradient(135deg, var(--color-brand-light) 0%, rgba(21, 94, 239, 0.05) 100%);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-brand);
}

.product-card-advanced-price-main {
  display: flex;
  align-items: baseline;
  gap: var(--spacing-1);
}

.product-card-advanced-price-currency {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-brand);
}

.product-card-advanced-price-value {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-brand);
  font-family: var(--font-heading);
  line-height: 1;
}

.product-card-advanced-price-unit {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-left: var(--spacing-1);
}

.product-card-advanced-price-original {
  display: flex;
  align-items: center;
  gap: var(--spacing-2);
}

.product-card-advanced-price-original span {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.product-card-advanced-price-save {
  display: flex;
  align-items: center;
  gap: var(--spacing-1);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-success);
  margin-top: var(--spacing-1);
}

.product-card-advanced-price-save svg {
  width: 12px;
  height: 12px;
}

.product-card-advanced-actions {
  display: flex;
  gap: var(--spacing-2);
  margin-top: auto;
}

.product-card-advanced-actions .btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-1);
}

/* Responsive */
@media (max-width: 767px) {
  .product-card-advanced-image {
    height: 200px;
  }
  
  .product-card-advanced-actions-top {
    transform: translateY(0);
  }
  
  .product-card-advanced-actions-bottom {
    transform: translateY(0);
  }
  
  .product-card-advanced-overlay {
    opacity: 1;
  }
  
  .product-card-advanced-actions-bottom .btn {
    font-size: 10px;
    padding: 0.4rem 0.5rem;
  }
}
