@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --th-display: 'Inter', var(--store-font);
  --th-radius: 12px;
  --th-radius-sm: 8px;
  --th-radius-lg: 16px;
  --th-radius-xl: 20px;
  --th-shadow: 0 2px 12px color-mix(in srgb, var(--primary-color) 8%, transparent), 0 1px 3px rgba(0, 0, 0, 0.04);
  --th-shadow-lg: 0 12px 36px color-mix(in srgb, var(--primary-color) 12%, transparent), 0 4px 12px rgba(0, 0, 0, 0.06);
  --th-shadow-xl: 0 20px 48px color-mix(in srgb, var(--primary-color) 14%, transparent), 0 8px 20px rgba(0, 0, 0, 0.08);
  --th-transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  --th-transition-slow: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  --th-transition-spring: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

body.theme-general {
  background: var(--store-bg);
  font-family: var(--th-display);
}

.theme-general .store-navbar {
  background: color-mix(in srgb, var(--navbar-bg) 82%, transparent);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid color-mix(in srgb, var(--primary-color) 8%, var(--border-light));
  box-shadow: 0 1px 3px color-mix(in srgb, var(--primary-color) 5%, transparent);
}
.theme-general .nav-col-brand {
  gap: 10px;
}
.theme-general .store-brand {
  gap: 10px;
}
.theme-general .store-brand-name {
  font-family: var(--th-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 17px;
}
.theme-general .store-nav-links {
  gap: 2px;
}
.theme-general .store-nav-link {
  font-family: var(--th-display);
  font-weight: 500;
  font-size: 14px;
  border-radius: var(--th-radius-sm);
  padding: 7px 14px;
  color: var(--text-secondary);
  transition: var(--th-transition);
}
.theme-general .store-nav-link:hover {
  background: color-mix(in srgb, var(--primary-color) 8%, transparent);
  color: var(--primary-color);
}
.theme-general .store-nav-link.active {
  color: var(--primary-color);
  font-weight: 600;
  background: color-mix(in srgb, var(--primary-color) 10%, transparent);
}
.theme-general .nav-more-dropdown {
  border-radius: var(--th-radius);
  border: 1px solid var(--border-light);
  box-shadow: var(--th-shadow-lg);
  overflow: hidden;
}
.theme-general .nav-more-item {
  transition: var(--th-transition);
  border-radius: 0;
}
.theme-general .nav-more-item:hover {
  background: color-mix(in srgb, var(--primary-color) 8%, transparent);
  color: var(--primary-color);
}
.theme-general .cart-trigger,
.theme-general .wishlist-trigger {
  border-radius: var(--th-radius-sm);
  transition: var(--th-transition);
}
.theme-general .cart-trigger:hover,
.theme-general .wishlist-trigger:hover {
  background: color-mix(in srgb, var(--primary-color) 10%, transparent);
  color: var(--primary-color);
}
.theme-general .cart-badge {
  border-radius: 6px;
  font-weight: 700;
  box-shadow: 0 2px 6px color-mix(in srgb, var(--primary-color) 30%, transparent);
}
.theme-general .account-trigger {
  border-radius: var(--th-radius-sm);
  transition: var(--th-transition);
}
.theme-general .account-trigger:hover {
  background: color-mix(in srgb, var(--primary-color) 10%, transparent);
  color: var(--primary-color);
}
.theme-general .lang-btn {
  border-radius: var(--th-radius-sm);
  transition: var(--th-transition);
}
.theme-general .lang-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: color-mix(in srgb, var(--primary-color) 5%, transparent);
}
.theme-general .search-trigger {
  border-radius: var(--th-radius-sm);
  transition: var(--th-transition);
}
.theme-general .search-trigger:hover {
  background: color-mix(in srgb, var(--primary-color) 10%, transparent);
  color: var(--primary-color);
}

.theme-general .search-form {
  border-radius: var(--th-radius);
  transition: var(--th-transition);
}
.theme-general .search-input {
  font-family: var(--th-display);
}
.theme-general .search-dropdown {
  border-radius: var(--th-radius);
  border: 1px solid var(--border-light);
  box-shadow: var(--th-shadow-xl);
  overflow: hidden;
}
.theme-general .search-result-item {
  transition: var(--th-transition);
  border-radius: 0;
}
.theme-general .search-result-item:hover {
  background: color-mix(in srgb, var(--primary-color) 6%, transparent);
}
.theme-general .mobile-search-overlay {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.theme-general .mobile-search-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border-light);
}
.theme-general .mobile-search-input {
  font-family: var(--th-display);
  font-size: 16px;
}

.theme-general .btn-primary {
  border-radius: var(--th-radius-sm);
  font-family: var(--th-display);
  font-weight: 600;
  transition: var(--th-transition);
  box-shadow: 0 2px 8px color-mix(in srgb, var(--primary-color) 25%, transparent);
}
.theme-general .btn-primary:hover {
  box-shadow: 0 4px 16px color-mix(in srgb, var(--primary-color) 35%, transparent);
  transform: translateY(-1px);
}
.theme-general .btn-dark {
  border-radius: var(--th-radius-sm);
  font-family: var(--th-display);
  font-weight: 600;
  transition: var(--th-transition);
}
.theme-general .btn-dark:hover {
  transform: translateY(-1px);
  box-shadow: var(--th-shadow);
}
.theme-general .btn-secondary {
  border-radius: var(--th-radius-sm);
  font-family: var(--th-display);
  font-weight: 500;
  transition: var(--th-transition);
}
.theme-general .btn-secondary:hover {
  background: color-mix(in srgb, var(--primary-color) 12%, transparent);
  color: var(--primary-color);
}
.theme-general .btn-outline {
  border-radius: var(--th-radius-sm);
  font-family: var(--th-display);
  font-weight: 500;
  transition: var(--th-transition);
}
.theme-general .btn-outline:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: color-mix(in srgb, var(--primary-color) 5%, transparent);
}
.theme-general .btn-white {
  border-radius: var(--th-radius-sm);
  font-family: var(--th-display);
  font-weight: 600;
  transition: var(--th-transition);
  box-shadow: var(--th-shadow);
}
.theme-general .btn-white:hover {
  transform: translateY(-1px);
  box-shadow: var(--th-shadow-lg);
}
.theme-general .btn-link {
  font-family: var(--th-display);
  font-weight: 500;
  transition: var(--th-transition);
}
.theme-general .btn-link:hover {
  color: var(--primary-color);
}
.theme-general .btn-lg {
  border-radius: var(--th-radius);
  padding: 14px 32px;
  font-size: 16px;
}
.theme-general .btn-sm {
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 13px;
}

.theme-general .store-hero {
  border-radius: 0;
  overflow: hidden;
}
.theme-general .hero-content {
  padding-top: 80px;
  padding-bottom: 80px;
}
.theme-general .hero-title {
  font-family: var(--th-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.theme-general .hero-subtitle {
  font-family: var(--th-display);
  font-weight: 400;
  line-height: 1.6;
}
.theme-general .hero-actions {
  gap: 12px;
}

.theme-general .product-card {
  border-radius: var(--th-radius);
  border: 1px solid var(--border-light);
  background: var(--surface);
  overflow: hidden;
  transition: var(--th-transition);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}
.theme-general .product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--th-shadow-lg);
  border-color: color-mix(in srgb, var(--primary-color) 25%, var(--border-light));
}
.theme-general .product-card .product-image-wrap {
  border-radius: var(--th-radius) var(--th-radius) 0 0;
  overflow: hidden;
}
.theme-general .product-card .product-image-wrap img {
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.theme-general .product-card:hover .product-image-wrap img {
  transform: scale(1.05);
}
.theme-general .product-badge {
  border-radius: 6px;
  font-family: var(--th-display);
  font-weight: 600;
  font-size: 11px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.theme-general .badge-out {
  border-radius: 6px;
}
.theme-general .product-info {
  padding: 14px 16px 16px;
}
.theme-general .product-name {
  font-family: var(--th-display);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.theme-general .product-price {
  font-family: var(--th-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--primary-color);
}
.theme-general .product-stock-badge {
  font-family: var(--th-display);
  font-size: 12px;
}
.theme-general .product-wishlist-btn {
  border-radius: var(--th-radius-sm);
  transition: var(--th-transition-spring);
}
.theme-general .product-wishlist-btn:hover {
  transform: scale(1.1);
  color: var(--primary-color);
}
.theme-general .quick-add-btn {
  border-radius: var(--th-radius-sm);
  font-family: var(--th-display);
  font-weight: 600;
  font-size: 12px;
  transition: var(--th-transition);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.theme-general .quick-add-btn:hover {
  background: var(--primary-color);
  color: var(--on-primary, #fff);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--primary-color) 30%, transparent);
}

.theme-general .products-grid {
  gap: 20px;
}

.theme-general .category-card {
  border-radius: var(--th-radius);
  border: 1px solid var(--border-light);
  background: var(--surface);
  overflow: hidden;
  transition: var(--th-transition);
}
.theme-general .category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--th-shadow-lg);
  border-color: color-mix(in srgb, var(--primary-color) 20%, var(--border-light));
}
.theme-general .category-card-image {
  overflow: hidden;
}
.theme-general .category-card-image img {
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.theme-general .category-card:hover .category-card-image img {
  transform: scale(1.06);
}
.theme-general .home-category-card {
  border-radius: var(--th-radius);
  background: var(--surface);
  border: 1px solid var(--border-light);
  transition: var(--th-transition);
}
.theme-general .home-category-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--th-shadow);
  border-color: color-mix(in srgb, var(--primary-color) 15%, var(--border-light));
}

.theme-general .cart-panel {
  border-radius: var(--th-radius-xl) 0 0 var(--th-radius-xl);
  box-shadow: var(--th-shadow-xl);
  border-left: 1px solid var(--border-light);
}
[dir="rtl"] .theme-general .cart-panel {
  border-radius: 0 var(--th-radius-xl) var(--th-radius-xl) 0;
  border-left: none;
  border-right: 1px solid var(--border-light);
}
.theme-general .cart-panel-header {
  border-bottom: 1px solid var(--border-light);
}
.theme-general .cart-item {
  border-bottom: 1px solid var(--border-light);
  transition: var(--th-transition);
}
.theme-general .cart-item:last-child {
  border-bottom: none;
}
.theme-general .qty-btn {
  border-radius: 6px;
  transition: var(--th-transition);
}
.theme-general .qty-btn:hover:not(:disabled) {
  background: var(--primary-color);
  color: var(--on-primary, #fff);
  box-shadow: 0 2px 6px color-mix(in srgb, var(--primary-color) 30%, transparent);
}
.theme-general .cart-panel-footer {
  border-top: 1px solid var(--border-light);
  background: color-mix(in srgb, var(--surface) 98%, var(--primary-color));
}
.theme-general .cart-summary-row {
  font-family: var(--th-display);
}
.theme-general .cart-total-row {
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}
.theme-general .cart-empty {
  font-family: var(--th-display);
}

.theme-general .checkout-page {
  font-family: var(--th-display);
}
.theme-general .checkout-card {
  border-radius: var(--th-radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--th-shadow);
}
.theme-general .form-field {
  margin-bottom: 16px;
}
.theme-general .form-label {
  font-family: var(--th-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--text-secondary);
}
.theme-general .form-control {
  border-radius: var(--th-radius-sm);
  font-family: var(--th-display);
  font-size: 14px;
  border: 1.5px solid var(--input-border);
  transition: var(--th-transition);
}
.theme-general .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary-color) 12%, transparent);
}
.theme-general .payment-option {
  transition: var(--th-transition);
}
.theme-general .payment-option-card {
  border-radius: var(--th-radius);
  border: 1.5px solid var(--border-light);
  transition: var(--th-transition);
}
.theme-general .payment-option:has(input:checked) .payment-option-card {
  border-color: var(--primary-color);
  background: color-mix(in srgb, var(--primary-color) 4%, transparent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary-color) 10%, transparent);
}
.theme-general .order-summary-card {
  border-radius: var(--th-radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--th-shadow);
}
.theme-general .checkout-submit-btn {
  border-radius: var(--th-radius-sm);
  font-family: var(--th-display);
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 4px 14px color-mix(in srgb, var(--primary-color) 30%, transparent);
  transition: var(--th-transition);
}
.theme-general .checkout-submit-btn:hover {
  box-shadow: 0 6px 20px color-mix(in srgb, var(--primary-color) 40%, transparent);
  transform: translateY(-1px);
}
.theme-general .checkout-step.active .checkout-step-num,
.theme-general .checkout-step.completed .checkout-step-num {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--on-primary, #fff);
  box-shadow: 0 2px 8px color-mix(in srgb, var(--primary-color) 30%, transparent);
}

.theme-general .input-error {
  border-color: #EF4444 !important;
  background: color-mix(in srgb, #EF4444 4%, var(--surface)) !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08);
}
.theme-general .input-error:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}
.theme-general .input-success {
  border-color: #10B981 !important;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.08);
}
.theme-general .input-success:focus {
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.theme-general .store-footer {
  background: color-mix(in srgb, var(--text-primary) 96%, var(--store-bg));
  border-top: none;
}
.theme-general .footer-grid {
  gap: 40px;
}
.theme-general .footer-brand {
  font-family: var(--th-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.theme-general .footer-links-title {
  font-family: var(--th-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.theme-general .footer-social-link {
  border-radius: var(--th-radius-sm);
  transition: var(--th-transition);
}
.theme-general .footer-social-link:hover {
  background: color-mix(in srgb, var(--primary-color) 20%, transparent);
  color: var(--primary-color);
  transform: translateY(-2px);
}
.theme-general .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.theme-general .store-footer a {
  transition: color 0.2s;
}
.theme-general .store-footer a:hover {
  color: var(--primary-color);
}

.theme-general .auth-page {
  font-family: var(--th-display);
}
.theme-general .auth-card {
  border-radius: var(--th-radius-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--th-shadow-lg);
}
.theme-general .auth-header {
  margin-bottom: 28px;
}
.theme-general .auth-title {
  font-family: var(--th-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.theme-general .auth-form {
  gap: 16px;
}
.theme-general .auth-submit-btn {
  border-radius: var(--th-radius-sm);
  font-family: var(--th-display);
  font-weight: 700;
  box-shadow: 0 4px 14px color-mix(in srgb, var(--primary-color) 25%, transparent);
  transition: var(--th-transition);
}
.theme-general .auth-submit-btn:hover {
  box-shadow: 0 6px 20px color-mix(in srgb, var(--primary-color) 35%, transparent);
  transform: translateY(-1px);
}
.theme-general .auth-footer {
  font-family: var(--th-display);
}
.theme-general .auth-link {
  color: var(--primary-color);
  font-weight: 600;
  transition: var(--th-transition);
}
.theme-general .auth-link:hover {
  opacity: 0.8;
}

.theme-general .account-page {
  font-family: var(--th-display);
}
.theme-general .account-sidebar {
  border-radius: var(--th-radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--th-shadow);
}
.theme-general .account-nav a {
  border-radius: var(--th-radius-sm);
  transition: var(--th-transition);
}
.theme-general .account-nav a:hover,
.theme-general .account-nav a.active {
  background: color-mix(in srgb, var(--primary-color) 10%, transparent);
  color: var(--primary-color);
}
.theme-general .account-avatar {
  border-radius: var(--th-radius);
  box-shadow: 0 2px 8px color-mix(in srgb, var(--primary-color) 15%, transparent);
}
.theme-general .order-card {
  border-radius: var(--th-radius);
  border: 1px solid var(--border-light);
  transition: var(--th-transition);
}
.theme-general .order-card:hover {
  border-color: color-mix(in srgb, var(--primary-color) 30%, var(--border-light));
  box-shadow: var(--th-shadow);
}
.theme-general .order-status-badge {
  border-radius: 6px;
  font-family: var(--th-display);
  font-weight: 600;
  font-size: 12px;
}

.theme-general .store-toast {
  border-radius: var(--th-radius);
  font-family: var(--th-display);
  font-weight: 600;
  box-shadow: var(--th-shadow-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.theme-general .store-toast-success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}
.theme-general .store-toast-error {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}
.theme-general .store-toast-warning {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}
.theme-general .store-toast-info {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.theme-general .filter-sidebar {
  border-radius: 0 var(--th-radius-lg) var(--th-radius-lg) 0;
  border: 1px solid var(--border-light);
  border-left: none;
  box-shadow: var(--th-shadow);
}
[dir="rtl"] .theme-general .filter-sidebar {
  border-radius: var(--th-radius-lg) 0 0 var(--th-radius-lg);
  border-left: 1px solid var(--border-light);
  border-right: none;
}
.theme-general .filter-section {
  border-color: var(--border-light);
}
.theme-general .filter-section-label {
  font-family: var(--th-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.theme-general .filter-opt {
  border-radius: 6px;
  transition: var(--th-transition);
}
.theme-general .filter-opt:hover {
  background: color-mix(in srgb, var(--primary-color) 6%, transparent);
}
.theme-general .filter-price-input {
  border-radius: var(--th-radius-sm);
  font-family: var(--th-display);
  transition: var(--th-transition);
}
.theme-general .filter-price-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary-color) 12%, transparent);
}
.theme-general .filter-active-badge {
  border-radius: 6px;
  background: var(--primary-color);
  color: var(--on-primary, #fff);
  box-shadow: 0 2px 6px color-mix(in srgb, var(--primary-color) 30%, transparent);
}

.theme-general .pagination {
  gap: 6px;
}
.theme-general .pagination-link {
  border-radius: var(--th-radius-sm);
  font-family: var(--th-display);
  font-weight: 500;
  transition: var(--th-transition);
}
.theme-general .pagination-link:hover {
  background: var(--primary-color);
  color: var(--on-primary, #fff);
  border-color: var(--primary-color);
  box-shadow: 0 2px 8px color-mix(in srgb, var(--primary-color) 25%, transparent);
  transform: translateY(-1px);
}
.theme-general .pagination-current {
  border-radius: var(--th-radius-sm);
  font-family: var(--th-display);
  font-weight: 600;
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--on-primary, #fff);
  box-shadow: 0 2px 8px color-mix(in srgb, var(--primary-color) 30%, transparent);
}

.theme-general .success-modal-overlay {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: color-mix(in srgb, var(--text-primary) 50%, transparent);
}
.theme-general .success-modal {
  border-radius: var(--th-radius-xl);
  box-shadow: var(--th-shadow-xl);
  border: 1px solid var(--border-light);
}
.theme-general .success-icon {
  border-radius: 50%;
  background: color-mix(in srgb, var(--primary-color) 10%, transparent);
  box-shadow: 0 4px 16px color-mix(in srgb, var(--primary-color) 20%, transparent);
}

.theme-general .skeleton {
  border-radius: var(--th-radius-sm);
}
.theme-general .skeleton-product-card {
  border-radius: var(--th-radius);
  border: 1px solid var(--border-light);
}

.theme-general .announcement-bar {
  font-family: var(--th-display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.theme-general .sticky-add-to-cart {
  background: color-mix(in srgb, var(--surface) 95%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
}
.theme-general .sticky-add-to-cart .sticky-add-btn {
  border-radius: var(--th-radius-sm);
  box-shadow: 0 2px 8px color-mix(in srgb, var(--primary-color) 25%, transparent);
}
.theme-general .scroll-to-top {
  border-radius: var(--th-radius);
  background: var(--surface);
  border: 1px solid var(--border-light);
  box-shadow: var(--th-shadow);
  transition: var(--th-transition);
}
.theme-general .scroll-to-top:hover {
  background: var(--primary-color);
  color: var(--on-primary, #fff);
  border-color: var(--primary-color);
  box-shadow: 0 4px 16px color-mix(in srgb, var(--primary-color) 30%, transparent);
  transform: translateY(-2px);
}
.theme-general .empty-state,
.theme-general .store-empty {
  font-family: var(--th-display);
}
.theme-general .empty-state-icon,
.theme-general .store-empty-icon {
  border-radius: var(--th-radius-lg);
  background: color-mix(in srgb, var(--primary-color) 8%, var(--store-bg));
}
.theme-general .network-banner {
  font-family: var(--th-display);
}
.theme-general .network-banner-content {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.theme-general .pd-container {
  font-family: var(--th-display);
}
.theme-general .pd-add-btn {
  border-radius: var(--th-radius-sm);
  font-family: var(--th-display);
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 4px 14px color-mix(in srgb, var(--primary-color) 25%, transparent);
  transition: var(--th-transition);
}
.theme-general .pd-add-btn:hover {
  box-shadow: 0 6px 20px color-mix(in srgb, var(--primary-color) 35%, transparent);
  transform: translateY(-1px);
}
.theme-general .pd-tabs-nav {
  gap: 4px;
}
.theme-general .pd-tab-btn {
  font-family: var(--th-display);
  font-weight: 500;
  border-radius: var(--th-radius-sm) var(--th-radius-sm) 0 0;
  transition: var(--th-transition);
}
.theme-general .pd-tab-btn.pd-tab-active {
  border-bottom-color: var(--primary-color);
  color: var(--primary-color);
  font-weight: 600;
}
.theme-general .pd-trust-badges {
  border-radius: var(--th-radius);
  border: 1px solid var(--border-light);
  background: color-mix(in srgb, var(--primary-color) 3%, var(--surface));
}
.theme-general .pd-trust-item {
  font-family: var(--th-display);
}
.theme-general .pd-trust-item svg {
  color: var(--primary-color);
}
.theme-general .pd-title {
  font-family: var(--th-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.theme-general h1,
.theme-general h2,
.theme-general h3 {
  font-family: var(--th-display);
  letter-spacing: -0.02em;
}

.theme-general .section-heading,
.theme-general .section-title {
  font-family: var(--th-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.theme-general .section-heading::after,
.theme-general .section-title::after {
  border-radius: 3px;
  background: linear-gradient(90deg, var(--primary-color), color-mix(in srgb, var(--primary-color) 60%, var(--secondary-color)));
}

@media (max-width: 768px) {
  .theme-general .products-grid {
    gap: 12px;
  }
  .theme-general .product-card {
    border-radius: var(--th-radius-sm);
  }
  .theme-general .product-card .product-info {
    padding: 10px 12px 12px;
  }
  .theme-general .product-card .product-name {
    font-size: 13px;
  }
  .theme-general .auth-card {
    border-radius: var(--th-radius-lg);
    padding: 28px 20px;
  }
  .theme-general .checkout-card {
    border-radius: var(--th-radius);
  }
  .theme-general .filter-sidebar {
    border-radius: var(--th-radius-xl) var(--th-radius-xl) 0 0;
    border: none;
    border-top: 1px solid var(--border-light);
  }
  .theme-general .cart-panel {
    border-radius: 0;
  }
  .theme-general .success-modal {
    border-radius: var(--th-radius-lg);
    margin: 16px;
  }
}
