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

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  /* Added background image styling */
  position: relative;
  transition: background-color 0.3s, color 0.3s;
}

/* Added dark mode styles */
body.dark-mode {
  background-color: #1a1a1a;
  color: #e0e0e0;
}

body.dark-mode .header {
  background-color: #2d2d2d;
  border-bottom: 1px solid #404040;
}

body.dark-mode .hero {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

body.dark-mode .products {
  background-color: #1a1a1a;
}

body.dark-mode .product-card {
  background-color: #2d2d2d;
  border: 1px solid #404040;
}

body.dark-mode .product-card:hover {
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.1);
}

body.dark-mode .features {
  background-color: #2d2d2d;
}

body.dark-mode .feature-card {
  background-color: #1a1a1a;
  border: 1px solid #404040;
}

body.dark-mode .footer {
  background-color: #2d2d2d;
  border-top: 1px solid #404040;
}

body.dark-mode .modal-content {
  background-color: #2d2d2d;
  color: #e0e0e0;
}

body.dark-mode .cart-sidebar {
  background-color: #2d2d2d;
  color: #e0e0e0;
}

body.dark-mode .apple-price-list,
body.dark-mode .samsung-price-list,
body.dark-mode .honor-price-list,
body.dark-mode .xiaomi-price-list {
  background-color: #2d2d2d;
  border: 2px solid #404040;
}

body.dark-mode .price-table table {
  background-color: #2d2d2d;
}

body.dark-mode .price-table td {
  border-bottom: 1px solid #404040;
}

body.dark-mode .price-table tr:hover {
  background-color: #404040;
}

body.dark-mode .trusted-store {
  background-color: #2d2d2d;
}

body.dark-mode .stat-item {
  background-color: #1a1a1a;
  border: 1px solid #404040;
}

body.dark-mode .visit-store {
  background-color: #1a1a1a;
}

body.dark-mode .premium-accessories {
  background-color: #2d2d2d;
}

body.dark-mode .accessory-item {
  background-color: #1a1a1a;
  border: 1px solid #404040;
}

body.dark-mode .store-hours {
  background-color: #1a1a1a;
  border: 1px solid #404040;
}

/* Dark mode toggle button styling */
.dark-mode-toggle {
  background: none;
  border: none;
  color: #333;
  font-size: 18px;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s;
  margin-right: 10px;
}

.dark-mode-toggle:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

body.dark-mode .dark-mode-toggle {
  color: #e0e0e0;
}

body.dark-mode .dark-mode-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Added background overlay for iPhone 16 Pro Max */
.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.05;
  filter: blur(1px);
}

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

/* Top Bar */
.top-bar {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 8px 0;
  font-size: 14px;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* Added flex-wrap for better mobile responsiveness */
  flex-wrap: wrap;
  gap: 10px;
}

.contact-info {
  /* Added flex display for better alignment */
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.contact-info span {
  margin-right: 0;
}

.contact-info i {
  margin-right: 5px;
}

/* Added styling for clickable contact links */
.contact-info a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
}

.contact-info a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.nepali-datetime span {
  margin-left: 30px;
}

/* Added social media icons styling for top bar */
.social-media {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-media a {
  color: white;
  font-size: 16px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
  text-decoration: none;
}

.social-media a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  color: #333;
}

.logo i {
  font-size: 30px;
  margin-right: 10px;
  color: #000000; /* Made Apple logo black */
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav a:hover {
  color: #667eea;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cart-btn {
  background: #667eea;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 25px;
  cursor: pointer;
  position: relative;
  transition: background 0.3s;
}

.cart-btn:hover {
  background: #000000;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #e53e3e;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-slide {
  display: none;
}

.hero-slide.active {
  display: block;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.btn-primary {
  background: white;
  color: #667eea;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-image {
  text-align: center;
}

.floating-phone {
  max-width: 400px;
  width: 100%;
  animation: float 3s ease-in-out infinite;
}

.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: white;
}

/* Products Section */
.products {
  padding: 80px 0;
  background: #f8f9fa;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #333;
}

.product-categories {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.category-btn {
  background: white;
  border: 2px solid #667eea;
  color: #667eea;
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
}

.category-btn.active,
.category-btn:hover {
  background: #667eea;
  color: white;
}

/* Added brand tabs styling */
.brand-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.brand-tab {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.brand-tab:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.brand-tab.active {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(118, 75, 162, 0.4);
}

.brand-categories {
  margin-bottom: 30px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.product-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.product-card img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
}

.product-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.product-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 15px;
}

.product-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.btn-secondary {
  background: #f8f9fa;
  color: #333;
  border: 1px solid #ddd;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 14px;
}

.btn-secondary:hover {
  background: #667eea;
  color: white;
  border-color: #667eea;
}

/* Features Section */
.features {
  padding: 80px 0;
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.feature-card {
  text-align: center;
  padding: 30px;
}

.feature-card i {
  font-size: 48px;
  color: #667eea;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}

/* Payment Methods */
.payment-methods {
  padding: 80px 0;
  background: #f8f9fa;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.payment-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.payment-card:hover {
  transform: translateY(-5px);
}

.payment-card img {
  width: 50px; /* Reduced payment icon size from 80px to 50px */
  height: 50px; /* Reduced payment icon size from 80px to 50px */
  object-fit: contain;
  margin-bottom: 15px;
}

.payment-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

/* Footer */
.footer {
  background: #333;
  color: white;
  padding: 50px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-section h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #667eea;
}

.footer-section p,
.footer-section a {
  color: #ccc;
  text-decoration: none;
  margin-bottom: 10px;
  display: block;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #667eea;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: #667eea;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  /* Added color and text decoration for footer social links */
  color: white;
  text-decoration: none;
}

.social-links a:hover {
  background: #5a67d8;
}

/* Cart Sidebar */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: white;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  transition: right 0.3s;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.cart-sidebar.open {
  right: 0;
}

.cart-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-cart {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
}

.cart-items {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
}

.cart-item {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.cart-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.cart-item-info {
  flex: 1;
}

.cart-item-info h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}

.cart-item-info .price {
  color: #667eea;
  font-weight: 600;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.quantity-btn {
  background: #f8f9fa;
  border: 1px solid #ddd;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-footer {
  padding: 20px;
  border-top: 1px solid #eee;
}

.cart-total {
  font-size: 18px;
  margin-bottom: 15px;
  text-align: center;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 20px;
  border-radius: 15px;
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.close {
  position: absolute;
  right: 20px;
  top: 15px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #333;
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.product-detail img {
  width: 100%;
  max-width: 400px;
  object-fit: contain;
}

.product-info h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}

.product-info .price {
  font-size: 32px;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 20px;
}

.product-info .description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.product-specs {
  margin-bottom: 25px;
}

.product-specs h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.product-specs ul {
  list-style: none;
  padding: 0;
}

.product-specs li {
  padding: 5px 0;
  color: #666;
  border-bottom: 1px solid #eee;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.quantity-selector label {
  font-weight: 600;
  color: #333;
}

.quantity-input {
  width: 60px;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-align: center;
}

/* Checkout Form */
.checkout-content {
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
}

.form-group textarea {
  height: 80px;
  resize: vertical;
}

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

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

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .top-bar-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .header-content {
    flex-direction: column;
    gap: 20px;
  }

  .nav {
    gap: 20px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .product-detail {
    grid-template-columns: 1fr;
  }

  .cart-sidebar {
    width: 100%;
    right: -100%;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .payment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Added responsive styling for brand tabs */
  .brand-tabs {
    gap: 10px;
  }

  .brand-tab {
    padding: 10px 20px;
    font-size: 13px;
  }

  /* Added mobile responsive styling for social media */
  .social-media {
    order: 3;
    justify-content: center;
  }

  .contact-info {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 50px 0;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .section-title {
    font-size: 28px;
  }

  .product-categories {
    flex-wrap: wrap;
    gap: 10px;
  }

  .category-btn {
    padding: 8px 16px;
    font-size: 14px;
  }
}

/* Apple Price List Styling */
.apple-price-list {
  background: white;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid #f0f0f0;
}

.apple-price-list h3 {
  text-align: center;
  color: #333;
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: 600;
}

.price-table {
  overflow-x: auto;
}

.price-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.price-table th {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 15px;
  text-align: left;
  font-weight: 600;
  font-size: 16px;
}

.price-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
}

.price-table tr:hover {
  background-color: #f8f9ff;
}

.price-table tr:last-child td {
  border-bottom: none;
}

.original-price {
  text-decoration: line-through;
  color: #999;
  margin-right: 10px;
  font-size: 12px;
}

.new-badge {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 600;
  margin-left: 8px;
  animation: pulse 2s infinite;
}

/* Special Gift Section */
.special-gift {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.gift-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.gift-text h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.gift-text p {
  font-size: 16px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.gift-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 15px;
}

/* Premium Accessories Section */
.premium-accessories {
  padding: 80px 0;
  background: white;
}

.accessories-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.accessories-text h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.accessories-text p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #666;
}

.accessories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.accessory-item {
  text-align: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 15px;
  transition: transform 0.3s;
}

.accessory-item:hover {
  transform: translateY(-5px);
}

.accessory-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 10px;
}

.accessory-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

/* Trusted Store Section */
.trusted-store {
  padding: 80px 0;
  background: #f8f9fa;
}

.store-content {
  text-align: center;
}

.store-text {
  max-width: 800px;
  margin: 0 auto 50px;
}

.store-text p {
  font-size: 18px;
  color: #666;
  line-height: 1.8;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.stat-item {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-item h3 {
  font-size: 36px;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 10px;
}

.stat-item p {
  font-size: 16px;
  color: #666;
  font-weight: 500;
}

/* Visit Store Section */
.visit-store {
  padding: 80px 0;
  background: white;
}

.store-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.store-details h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.store-details p {
  font-size: 16px;
  margin-bottom: 10px;
  color: #666;
}

.store-details p i {
  color: #667eea;
  margin-right: 10px;
  width: 20px;
}

.store-details a {
  color: #667eea;
  text-decoration: none;
}

.store-details a:hover {
  text-decoration: underline;
}

.store-hours {
  margin-top: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
}

.store-hours h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.store-hours p {
  margin-bottom: 5px;
}

.store-map {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.store-map iframe {
  border-radius: 15px;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
  .gift-content,
  .accessories-content,
  .store-info {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .accessories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .brand-tabs {
    gap: 10px;
  }

  .brand-tab {
    padding: 10px 20px;
    font-size: 13px;
  }

  .apple-price-list {
    padding: 20px;
  }

  .price-table th,
  .price-table td {
    padding: 10px 8px;
    font-size: 14px;
  }
}

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

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .brand-tabs {
    flex-direction: column;
    align-items: center;
  }

  .price-table th,
  .price-table td {
    padding: 8px 5px;
    font-size: 12px;
  }
}
