/* XtremeTech Professional Website Styles - Based on xtremetech.biz */
:root {
  --primary-color: #ff6b35;
  --primary-dark: #e55a2b;
  --secondary-color: #004e89;
  --accent-color: #ffd23f;
  --dark-bg: #1a1a1a;
  --light-bg: #f8f9fa;
  --text-dark: #333333;
  --text-light: #ffffff;
  --text-muted: #666666;
  --border-color: #e0e0e0;
  --shadow: 0 2px 10px rgba(0,0,0,0.1);
  --shadow-hover: 0 8px 25px rgba(0,0,0,0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Additional Text Visibility Fixes */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark) !important;
}

p {
  color: var(--text-muted) !important;
}

/* Shimmer Divider */
.shimmer-divider {
  position: relative;
  width: 100%;
  height: 2px;
  margin: 60px 0;
  overflow: hidden;
}

.shimmer-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

a {
  color: var(--primary-color) !important;
}

a:hover {
  color: var(--primary-dark) !important;
}

/* Dark background text fixes - Keep white for dark sections */
.hero,
.hero-content,
.hero-title,
.hero-subtitle,
.privacy-hero,
.privacy-content,
.privacy-title,
.privacy-subtitle,
.terms-hero,
.terms-content,
.terms-title,
.terms-subtitle,
.returns-hero,
.returns-content,
.returns-title,
.returns-subtitle,
.shipping-hero,
.shipping-content,
.shipping-title,
.shipping-subtitle,
.warranty-hero,
.warranty-content,
.warranty-title,
.warranty-subtitle,
.sitemap-hero,
.sitemap-content,
.sitemap-title,
.sitemap-subtitle {
  color: white !important;
}

.hero h1,
.hero h2,
.hero h3,
.hero p,
.privacy-hero h1,
.privacy-hero h2,
.privacy-hero p,
.terms-hero h1,
.terms-hero h2,
.terms-hero p,
.returns-hero h1,
.returns-hero h2,
.returns-hero p,
.shipping-hero h1,
.shipping-hero h2,
.shipping-hero p,
.warranty-hero h1,
.warranty-hero h2,
.warranty-hero p,
.sitemap-hero h1,
.sitemap-hero h2,
.sitemap-hero p {
  color: white !important;
}

/* Light background text fixes - Use dark colors */
.card-title,
.card-text,
.product-title,
.product-price,
.feature-card h3,
.feature-card p,
.category-card h3,
.category-card p,
.info-card h3,
.info-card p,
.guideline-item h3,
.guideline-item p,
.eligible-card h3,
.eligible-card p,
.process-step h3,
.process-step p,
.support-card h3,
.support-card p,
.contact-method h4,
.contact-method p {
  color: var(--text-dark) !important;
}

/* Button text fixes */
.btn,
.btn-primary,
.add-to-cart-btn,
.view-btn {
  color: white !important;
}

.btn-secondary {
  color: var(--primary-color) !important;
}

.btn-secondary:hover {
  color: white !important;
}

/* Form elements */
.form-control,
input,
textarea,
select {
  color: var(--text-dark) !important;
}

/* Footer and navigation text */
.footer,
.footer-widget h3,
.footer-widget a,
.navbar-nav a {
  color: var(--text-light) !important;
}

/* Navigation button fixes */
.cart-link,
.account-link {
  color: white !important;
  text-decoration: none !important;
  font-weight: 600 !important;
}

.cart-link:hover,
.account-link:hover {
  color: white !important;
  text-decoration: none !important;
}

.cart-link span[data-cart-count],
.account-link span[data-auth-name] {
  color: white !important;
}

/* Section headers - XtremeTech Theme */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h1,
.section-header h2,
.section-header h3,
.section-header h4,
.section-header h5,
.section-header h6 {
  color: var(--primary-color) !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  background-clip: unset !important;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 0;
}

/* Slider titles */
.slider-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Category card headings */
.category-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Feature card headings */
.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Category header styling */
.category-header {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.category-info h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.category-info p {
  font-size: 1.1rem;
  color: #7f8c8d;
  margin-bottom: 0;
}

/* Filter sidebar headings */
.filters-sidebar h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.filter-label {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

/* Product page headings */
.product-title {
  font-size: 2rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-description h3,
.product-specs h3,
.product-highlights h3,
.quantity-selector h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* About page headings */
.about-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 15px;
}

.gradient-text {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Contact page headings */
.contact-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Account page headings */
.account-title {
  font-size: 2rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.account-section h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Login/Register page headings */
.auth-title {
  font-size: 2rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Checkout page headings */
.checkout-title {
  font-size: 2rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Success/Error page headings */
.page-message h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* General page headings */
.page-heading {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { 
  font-size: 2.5rem; 
  color: var(--primary-color);
}
h2 { 
  font-size: 2rem; 
  color: var(--primary-color);
}
h3 { 
  font-size: 1.5rem; 
  color: var(--primary-color);
}
h4 { 
  font-size: 1.25rem; 
  color: var(--primary-color);
}
h5 { 
  font-size: 1.125rem; 
  color: var(--primary-color);
}
h6 { 
  font-size: 1rem; 
  color: var(--primary-color);
}

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

/* Professional Buttons - Complete Fix */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  min-height: 44px;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white !important;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  text-decoration: none !important;
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color) !important;
  border: 2px solid var(--primary-color);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  text-decoration: none !important;
}

.btn-large {
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 12px;
}

.btn-full {
  width: 100%;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.btn:disabled:hover {
  transform: none !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

/* Product Cards - Enhanced Professional Design */
.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 107, 53, 0.2);
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    z-index: 2;
}

.product-badge.new {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.3);
}

.product-badge.hot {
    background: linear-gradient(135deg, #e74c3c 0%, #ff6b6b 100%);
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}

.product-badge.popular {
    background: linear-gradient(135deg, #3498db 0%, #5dade2 100%);
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
}

.product-badge.premium {
    background: linear-gradient(135deg, #9b59b6 0%, #af7ac5 100%);
    box-shadow: 0 2px 8px rgba(155, 89, 182, 0.3);
}

.discount-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
    z-index: 2;
}

.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.4;
    height: 44px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.3s ease;
}

.product-card:hover .product-title {
    color: #ff6b35;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.stars {
    color: #f39c12;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.rating-count {
    color: #7f8c8d;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-price {
    margin-bottom: 15px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.current-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ff6b35;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.original-price {
    font-size: 0.9rem;
    color: #95a5a6;
    text-decoration: line-through;
    opacity: 0.7;
}

.product-highlights {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    min-height: 24px;
}

.highlight-item {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
    color: #27ae60;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    border: 1px solid rgba(39, 174, 96, 0.2);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    transform: scale(1.05);
}

.product-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.add-to-cart-btn {
    flex: 1;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: center;
}

.add-to-cart-btn::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;
}

.add-to-cart-btn:hover::before {
    left: 100%;
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #ff8c42 0%, #ffa500 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

.view-btn {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(108, 117, 125, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-btn:hover {
    background: linear-gradient(135deg, #495057 0%, #343a40 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.4);
}

.add-to-cart-btn:hover:not(.disabled) {
    background: #e55a2b;
    transform: translateY(-1px);
}

.add-to-cart-btn.disabled {
    background: #95a5a6;
    cursor: not-allowed;
}

.view-btn {
    flex: 1;
    background: #2c3e50;
    color: white;
    border: none;
    padding: 10px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.view-btn:hover {
    background: #34495e;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.3);
}

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

/* Product Grid - Compact Layout */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 15px;
    }
    
    .product-image-container {
        height: 160px;
    }
    
    .product-info {
        padding: 12px;
    }
    
    .product-title {
        font-size: 0.9rem;
        height: 34px;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 6px;
    }
    
    .add-to-cart-btn {
        padding: 8px 10px;
        font-size: 0.8rem;
    }
    
    .view-btn {
        padding: 8px 10px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 12px;
    }
    
    .product-image-container {
        height: 140px;
    }
    
    .product-info {
        padding: 10px;
    }
    
    .product-title {
        font-size: 0.85rem;
        height: 32px;
    }
}
.navbar {
  background-color: var(--text-light);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.navbar-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.navbar-nav a {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

.navbar-nav a:hover {
  color: var(--primary-color);
}

.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.navbar-nav a:hover::after {
  width: 100%;
}

/* Professional Cards */
.card {
  background-color: var(--text-light);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.card-text {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* Professional Forms */
.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* Product Card Styles */
.card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  border-color: var(--primary-color);
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .card-img {
  transform: scale(1.05);
}

.card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-price {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.current-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
}

.original-price {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.card-rating {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.card-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border-color);
  background: var(--light-bg);
}

.badge {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 6px;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-hot {
  background: linear-gradient(45deg, #ff4444, #cc0000);
  color: white;
  box-shadow: 0 2px 8px rgba(255, 68, 68, 0.3);
}

.badge-new {
  background: linear-gradient(45deg, #00aa00, #008800);
  color: white;
  box-shadow: 0 2px 8px rgba(0, 170, 0, 0.3);
}

.badge-popular {
  background: linear-gradient(45deg, #2196f3, #1976d2);
  color: white;
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
}

.badge-premium {
  background: linear-gradient(45deg, #6b46c1, #4a3493);
  color: white;
  box-shadow: 0 2px 8px rgba(107, 70, 193, 0.3);
}

.badge-discount {
  background: linear-gradient(45deg, #ff8800, #cc6600);
  color: white;
  box-shadow: 0 2px 8px rgba(255, 136, 0, 0.3);
}


/* Product Grid Enhancements */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  padding: 1rem 0;
}

.no-products {
  text-align: center;
  padding: 4rem 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.no-products h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.no-products p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Loading State */
.loading-state {
  text-align: center;
  padding: 4rem 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--border-color);
  border-top: 4px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1.5rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Professional Footer */
.footer {
  background-color: var(--dark-bg);
  color: var(--text-light);
  padding: 3rem 0 1rem;
}

.footer-widget {
  margin-bottom: 2rem;
}

.footer-widget h3 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.footer-widget ul {
  list-style: none;
  padding: 0;
}

.footer-widget ul li {
  margin-bottom: 0.5rem;
}

.footer-widget ul li a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-widget ul li a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 1rem;
  text-align: center;
  color: var(--text-muted);
}

/* Professional Footer */
.footer {
  background-color: var(--dark-bg);
  color: var(--text-light);
  padding: 3rem 0 1rem;
}

.footer-widget {
  margin-bottom: 2rem;
}

.footer-widget h3 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.footer-widget ul {
  list-style: none;
  padding: 0;
}

.footer-widget ul li {
  margin-bottom: 0.5rem;
}

.footer-widget ul li a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-widget ul li a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 1rem;
  text-align: center;
  color: var(--text-muted);
}

/* Glass Morphism Effects */
.glass {
  background: rgba(30, 41, 59, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
}

.glass-card {
  background: rgba(51, 65, 85, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Gradients */
.gradient-text {
  background: var(--gradient-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.gradient-bg {
  background: var(--gradient);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


/* Form Elements */
.soft-ring {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--text);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.soft-ring:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
  background: rgba(30, 41, 59, 0.8);
}

.soft-ring::placeholder {
  color: var(--text-muted);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.7) 100%);
  z-index: -1;
}

/* Category Hero Section */
.category-hero {
  background: url('../assets/images/img1.png') center/cover no-repeat;
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Product Cards */
.product-card {
  background: white;
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  border-color: var(--primary);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

/* Navigation */
.nav-header {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-link {
  color: var(--text);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.nav-link:hover {
  background: rgba(51, 65, 85, 0.6);
  color: var(--primary);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* Toast Notifications */
.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: white;
  color: var(--text-dark);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
  min-width: 250px;
  max-width: 400px;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  font-size: 1.2rem;
  margin-right: 0.5rem;
}

.toast-message {
  font-weight: 500;
}

.toast.success {
  border-left: 4px solid var(--secondary);
}

.toast.error {
  border-left: 4px solid #ef4444;
}

/* Responsive Design */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  .glass {
    border-radius: 12px;
  }
  
  .btn-primary, .btn-secondary {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .btn-large {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
  
  .hero-features {
    gap: 1rem;
  }
  
  .feature-icon {
    font-size: 1.2rem;
  }
}

/* Loading Animation */
.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top: 3px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Enhanced Product Page Styles */
.product-details-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.product-details-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff6b35, #ff8c42, #ff6b35);
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
}

.product-details-grid {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  border: 1px solid rgba(255, 107, 53, 0.1);
  position: relative;
  overflow: hidden;
}

.product-details-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff6b35, #ff8c42, #ffd23f, #ff6b35);
  background-size: 300% 100%;
  animation: gradientShift 4s ease infinite;
}

.main-image {
  background: linear-gradient(45deg, #ffffff 0%, #f8f9fa 100%);
  border: 2px solid rgba(255, 107, 53, 0.1);
  transition: all 0.3s ease;
}

.main-image:hover {
  border-color: rgba(255, 107, 53, 0.3);
  transform: scale(1.02);
}

.thumbnail {
  background: white;
  border: 2px solid #e9ecef;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.thumbnail:hover {
  border-color: #ff6b35;
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.thumbnail.active {
  border-color: #ff6b35;
  background: linear-gradient(45deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 140, 66, 0.05) 100%);
  transform: scale(1.05);
}

.product-title {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.product-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ff6b35, #ff8c42);
  border-radius: 2px;
}

.current-price {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.current-price::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff6b35, #ff8c42);
  opacity: 0.3;
}

.purchase-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  border: 2px solid rgba(255, 107, 53, 0.1);
  position: relative;
  overflow: hidden;
}

.purchase-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff6b35, #ff8c42, #ffd23f);
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
}

.quantity-btn {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 2px solid #ff6b35;
  color: #ff6b35;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.quantity-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
  transition: left 0.5s;
}

.quantity-btn:hover::before {
  left: 100%;
}

.quantity-btn:hover {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.quantity-input {
  border: 2px solid #e9ecef;
  background: white;
  transition: all 0.3s ease;
}

.quantity-input:focus {
  border-color: #ff6b35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.price-summary {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid rgba(255, 107, 53, 0.1);
  position: relative;
}

.price-summary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
}

.total-price {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.savings-amount {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trust-item {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 140, 66, 0.05) 100%);
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 107, 53, 0.1);
  transition: all 0.3s ease;
}

.trust-item:hover {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 140, 66, 0.1) 100%);
  transform: translateY(-2px);
  border-color: rgba(255, 107, 53, 0.2);
}

.related-products {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
}

.section-title {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #ff8c42, #ffd23f);
  border-radius: 2px;
  animation: gradientShift 3s ease infinite;
}

/* Enhanced Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-details-grid {
  animation: slideInUp 0.8s ease-out;
}

.product-images {
  animation: slideInUp 0.8s ease-out 0.2s both;
}

.product-info {
  animation: slideInUp 0.8s ease-out 0.4s both;
}

.purchase-section {
  animation: slideInUp 0.8s ease-out 0.6s both;
}

/* Enhanced Button Styles */
.btn-large {
  padding: 18px 40px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-large::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;
}

.btn-large:hover::before {
  left: 100%;
}

.btn-primary.btn-large {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.btn-primary.btn-large:hover {
  background: linear-gradient(135deg, #ff8c42 0%, #ffa500 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.btn-secondary.btn-large {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3);
}

.btn-secondary.btn-large:hover {
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(44, 62, 80, 0.4);
}

/* Stock Status Enhancements */
.in-stock {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
  position: relative;
  overflow: hidden;
}

.in-stock::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;
}

.in-stock:hover::before {
  left: 100%;
}

.out-of-stock {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

/* Badge Enhancements */
.badge {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.badge:hover::before {
  left: 100%;
}

.badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Hero Section with 3D Video */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.8) 0%, 
        rgba(0, 78, 137, 0.8) 50%, 
        rgba(0, 0, 0, 0.9) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #00ff00;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(45deg, #ff6b35, #ffd23f, #ff6b35);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary.btn-large {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border: none;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-secondary.btn-large {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-secondary.btn-large:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.hero-features {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
}

.feature-icon {
    font-size: 1.5rem;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Highlight Tags */
.highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.highlight-tag {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rating-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-left: 0.5rem;
}

/* Newsletter Section */
.newsletter {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white !important;
}

.newsletter-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white !important;
}

.newsletter p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  color: white !important;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
}

.newsletter-form .btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
}

.newsletter-form .btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  text-decoration: none;
}

.newsletter-form .btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Enhanced Product Grid for Better Spacing */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  padding: 1rem 0;
}

/* Button Hover Effects */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::after {
  width: 300px;
  height: 300px;
}

/* Additional Button Fixes for Text Visibility */
.btn * {
  pointer-events: none;
}

.btn:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Specific fixes for different button contexts */
.hero-buttons .btn,
.cta-buttons .btn,
.newsletter-form .btn {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* Cart and Category page buttons */
.cart-summary .btn,
.filters .btn,
.no-results .btn {
  min-height: 44px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.2px;
}

/* Product card buttons */
.add-to-cart-btn,
.view-btn {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Form buttons */
form .btn {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
  letter-spacing: 0.2px;
}

/* Card Animations */
.card {
  animation: fadeInUp 0.6s ease-out;
}

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

/* Responsive Improvements */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
  .card {
    margin-bottom: 1rem;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .card-footer {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .btn-full {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0.5rem 0;
  }
  
  .card-title {
    font-size: 1.1rem;
  }
  
  .current-price {
    font-size: 1.3rem;
  }
  
  .highlights {
    gap: 0.25rem;
  }
  
  .highlight-tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
  }
}

/* ========================================
   COMPREHENSIVE RESPONSIVE DESIGN
   ======================================== */

/* Desktop First - Large Screens */
@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
    padding: 0 30px;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }
}

/* Desktop - Standard */
@media (max-width: 1200px) {
  .container {
    max-width: 1200px;
    padding: 0 20px;
  }
  
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
}

/* Tablet - Large */
@media (max-width: 1024px) {
  .container {
    padding: 0 15px;
  }
  
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .nav-menu {
    gap: 1.5rem;
  }
  
  .btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}

/* Tablet - Standard */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 15px 0;
  }
  
  .product-image-container {
    height: 160px;
  }
  
  .product-info {
    padding: 12px;
  }
  
  .product-title {
    font-size: 0.9rem;
    height: 34px;
  }
  
  .product-actions {
    flex-direction: column;
    gap: 6px;
  }
  
  .add-to-cart-btn,
  .view-btn {
    padding: 8px 10px;
    font-size: 0.8rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .btn-large {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  
  .glass {
    border-radius: 12px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  /* Navigation */
  .nav-menu {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .nav-link {
    padding: 8px 12px;
  }
  
  /* Cart Layout */
  .cart-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .cart-item {
    grid-template-columns: 80px 1fr auto;
    gap: 15px;
    padding: 15px;
  }
  
  .item-image {
    width: 80px;
    height: 80px;
  }
  
  /* Checkout Layout */
  .checkout-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .checkout-item {
    grid-template-columns: 60px 1fr auto;
    gap: 15px;
    padding: 15px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Mobile - Large */
@media (max-width: 600px) {
  .container {
    padding: 0 12px;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 12px 0;
  }
  
  .product-image-container {
    height: 140px;
  }
  
  .product-title {
    font-size: 0.85rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  /* Cart */
  .cart-item {
    grid-template-columns: 60px 1fr auto;
    gap: 12px;
    padding: 12px;
  }
  
  .item-image {
    width: 60px;
    height: 60px;
  }
  
  .item-actions {
    flex-direction: column;
    gap: 6px;
  }
  
  .btn-small {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

/* Mobile - Standard */
@media (max-width: 480px) {
  html {
    font-size: 13px;
  }
  
  .container {
    padding: 0 10px;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px 0;
  }
  
  .product-image-container {
    height: 120px;
  }
  
  .product-info {
    padding: 10px;
  }
  
  .product-title {
    font-size: 0.8rem;
    height: auto;
  }
  
  .product-price {
    font-size: 1rem;
  }
  
  .product-actions {
    gap: 5px;
  }
  
  .add-to-cart-btn,
  .view-btn {
    padding: 6px 8px;
    font-size: 0.75rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .btn-large {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
  
  /* Cart */
  .cart-item {
    grid-template-columns: 50px 1fr auto;
    gap: 10px;
    padding: 10px;
  }
  
  .item-image {
    width: 50px;
    height: 50px;
  }
  
  .item-name {
    font-size: 0.9rem;
  }
  
  .current-price {
    font-size: 1rem;
  }
  
  /* Checkout */
  .checkout-item {
    grid-template-columns: 50px 1fr auto;
    gap: 10px;
    padding: 10px;
  }
  
  .form-input {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
  
  .btn-small {
    font-size: 0.75rem;
    padding: 5px 10px;
  }
  
  /* Navigation */
  .nav-header {
    padding: 10px 0;
  }
  
  .nav-link {
    padding: 6px 10px;
    font-size: 0.9rem;
  }
  
  /* Footer */
  .footer-section h3 {
    font-size: 1rem;
  }
  
  .footer-links {
    gap: 0.5rem;
  }
  
  .footer-link {
    font-size: 0.85rem;
    padding: 4px 8px;
  }
}

/* Mobile - Small */
@media (max-width: 360px) {
  .container {
    padding: 0 8px;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 0.85rem;
  }
  
  .section-title {
    font-size: 1.4rem;
  }
  
  .product-title {
    font-size: 0.75rem;
  }
  
  .product-price {
    font-size: 0.9rem;
  }
  
  .btn {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
  
  .cart-item {
    padding: 8px;
    gap: 8px;
  }
  
  .item-image {
    width: 40px;
    height: 40px;
  }
  
  .form-input {
    padding: 8px 10px;
    font-size: 0.85rem;
  }
}

/* Landscape Orientation Fixes */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

@media (max-width: 480px) and (orientation: landscape) {
  .hero-title {
    font-size: 1.6rem;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .product-image {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
  
  .cart-item-image,
  .checkout-item-image {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Touch Devices */
@media (hover: none) and (pointer: coarse) {
  .btn,
  .add-to-cart-btn,
  .view-btn {
    min-height: 44px;
    min-width: 44px;
  }
  
  .nav-link {
    padding: 10px 15px;
  }
  
  .product-card {
    margin: 5px 0;
  }
  
  .cart-item,
  .checkout-item {
    margin: 5px 0;
  }
}

/* Print Styles */
@media print {
  .nav-header,
  .hero-section,
  .footer-section,
  .btn,
  .product-actions {
    display: none !important;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .product-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }
  
  .cart-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   WIRELESS EARBUDS PAGE (Theme Based)
   ========================================= */

.earbuds-page .earbuds-hero{
  min-height: 92vh;
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;

  /* HERO BG IMAGE SETUP (yahan sirf image change karni hoti hai) */
  background-image:
    
    url('../images/img1.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.earbuds-page .earbuds-hero .hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 25% 25%, rgba(255,210,63,.14), transparent 50%),
    radial-gradient(circle at 80% 55%, rgba(0,78,137,.28), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.20), rgba(0,0,0,.55));
  z-index:1;
}

.earbuds-page .earbuds-hero .container{ position:relative; z-index:2; }

.earbuds-page .hero-content{
  max-width: 860px;
  animation: epFadeUp .9s ease-out;
}
@keyframes epFadeUp{ from{opacity:0; transform:translateY(24px);} to{opacity:1; transform:translateY(0);} }

.earbuds-page .hero-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  font-weight:900;
  letter-spacing:.6px;
  font-size:12px;
  color:#fff;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 14px 30px rgba(0,0,0,.25);
  margin-bottom: 18px;
}

.earbuds-page .pulse-dot{
  width:10px; height:10px; border-radius:50%;
  background: var(--accent-color);
  box-shadow: 0 0 0 0 rgba(255,210,63,.45);
  animation: epPulse 1.6s infinite;
}
@keyframes epPulse{
  0%{ box-shadow:0 0 0 0 rgba(255,210,63,.45); }
  70%{ box-shadow:0 0 0 12px rgba(255,210,63,0); }
  100%{ box-shadow:0 0 0 0 rgba(255,210,63,0); }
}

.earbuds-page .hero-title{
  font-size: 56px;
  line-height:1.05;
  margin:0 0 14px;
  font-weight:950;
  color:#fff;
  text-shadow: 0 10px 28px rgba(0,0,0,.35);
}

.earbuds-page .gradient-text{
  background: linear-gradient(45deg, var(--accent-color), var(--primary-color), #ffffff, var(--secondary-color));
  background-size: 220% 220%;
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  animation: epGrad 3s ease infinite;
}
@keyframes epGrad{ 0%,100%{background-position:0% 50%;} 50%{background-position:100% 50%;} }

.earbuds-page .hero-subtitle{
  font-size: 18px;
  line-height:1.75;
  margin:0 0 18px;
  color: rgba(255,255,255,.92);
  max-width: 720px;
}

.earbuds-page .hero-features{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
  margin: 22px 0;
}

.earbuds-page .hero-feature{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
  color:#fff;
  font-weight: 800;
  transition: .25s ease;
}
.earbuds-page .hero-feature:hover{
  transform: translateY(-3px);
  background: rgba(255,255,255,.14);
  border-color: rgba(255,210,63,.30);
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
}

.earbuds-page .btn-large{ padding: 14px 18px; border-radius: 14px; }

/* FEATURES */
.earbuds-page .features-section{
  padding: 70px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.earbuds-page .features-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.earbuds-page .feature-card{
  background:#fff;
  border-radius: 18px;
  padding: 22px;
  text-align:center;
  border: 1px solid rgba(0,78,137,.10);
  box-shadow: var(--shadow);
  transition: .25s ease;
  position:relative;
  overflow:hidden;
}
.earbuds-page .feature-card::before{
  content:'';
  position:absolute; left:0; top:0; right:0; height:4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transition: transform .25s ease;
}
.earbuds-page .feature-card:hover::before{ transform: scaleX(1); }
.earbuds-page .feature-card:hover{
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.earbuds-page .feature-icon-large{ font-size: 40px; margin-bottom: 12px; display:block; }
.earbuds-page .feature-card h3{ margin:0 0 8px; font-weight: 900; color: var(--secondary-color); }
.earbuds-page .feature-card p{ margin:0; color: var(--text-muted); line-height:1.7; }

/* PRODUCTS + FILTERS (same look as speaker page) */
.earbuds-page .products-section{
  padding: 70px 0;
  background: var(--light-bg);
}

.earbuds-page .products-filters{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 26px 0 24px;
}

.earbuds-page .filter-tabs{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
  background:#fff;
  padding: 8px;
  border-radius: 999px;
  border: 1px solid rgba(0,78,137,.14);
  box-shadow: var(--shadow);
}

.earbuds-page .filter-tab{
  border:none;
  cursor:pointer;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
  color:#6b7280;
  background:transparent;
  transition: .2s ease;
}
.earbuds-page .filter-tab:hover{
  color: var(--secondary-color);
  background: rgba(0,78,137,.08);
}
.earbuds-page .filter-tab.active{
  color:#fff;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 14px 26px rgba(0,78,137,.18);
}

/* SLIDER */
.earbuds-page .slider-section{ position:relative; overflow:hidden; margin: 0 -10px; padding: 0 10px; }
.earbuds-page .slider-wrapper{ overflow:hidden; border-radius: 14px; }
.earbuds-page .slider-track{
  display:flex;
  gap: 20px;
  padding: 10px 2px;
  transition: transform .55s ease;
  will-change: transform;
}
.earbuds-page .slider-track .product-card{ flex: 0 0 320px; min-width: 320px; }

.earbuds-page .slider-prev,
.earbuds-page .slider-next{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border:none;
  cursor:pointer;
  z-index: 5;
  color:#fff;
  background: var(--primary-color);
  box-shadow: 0 16px 30px rgba(255,107,53,.22);
  transition: .2s ease;
}
.earbuds-page .slider-prev{ left: -10px; }
.earbuds-page .slider-next{ right: -10px; }
.earbuds-page .slider-prev:hover,
.earbuds-page .slider-next:hover{
  background: var(--primary-dark);
  transform: translateY(-50%) scale(1.06);
}

/* TECH SPECS */
.earbuds-page .tech-specs-section{
  padding: 70px 0;
  background: #fff;
}

.earbuds-page .specs-comparison{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.earbuds-page .spec-card{
  border-radius: 18px;
  padding: 22px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid rgba(0,78,137,.12);
  box-shadow: var(--shadow);
  transition: .25s ease;
}
.earbuds-page .spec-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0,78,137,.20);
}
.earbuds-page .spec-card h3{
  text-align:center;
  margin: 0 0 14px;
  font-weight: 950;
  color: var(--secondary-color);
}
.earbuds-page .spec-item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 10px 12px;
  background:#fff;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.06);
  margin-top: 10px;
}
.earbuds-page .spec-label{ color: var(--text-muted); font-weight: 700; }
.earbuds-page .spec-value{ color: var(--text-dark); font-weight: 900; }

/* Loading / No results */
.earbuds-page .loading-state,
.earbuds-page .no-results{
  background:#fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  padding: 28px;
  text-align:center;
  box-shadow: var(--shadow);
  margin-top: 18px;
}

/* Responsive */
@media (max-width: 768px){
  .earbuds-page .hero-title{ font-size: 40px; }
  .earbuds-page .hero-features{ grid-template-columns: repeat(2, 1fr); }
  .earbuds-page .products-filters{ flex-direction: column; align-items: stretch; }
  .earbuds-page .slider-track .product-card{ flex: 0 0 280px; min-width: 280px; }
}
@media (max-width: 480px){
  .earbuds-page .hero-features{ grid-template-columns: 1fr; }
}
