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

body {
  font-family: 'Noto Sans Khmer', 'Inter', sans-serif;
  background: #f5f5f5;
  min-height: 100vh;
  color: #333;
}

.page-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  background: #fff;
  min-height: 100vh;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.back-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f0f0f0;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  transition: background 0.3s;
}

.back-btn:hover {
  background: #e0e0e0;
}

.logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: none;
  background: #f0f0f0;
  color: #333;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.icon-btn:hover {
  background: #e0e0e0;
}

/* Side Menu */
.side-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100%;
  background: #2a2a3a;
  z-index: 1000;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.side-menu.open {
  right: 0;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.menu-header {
  display: flex;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #3a3a4a;
  gap: 12px;
}

.menu-logo {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.menu-title {
  font-size: 16px;
  font-weight: 700;
  color: #e63946;
  flex: 1;
}

.close-menu {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.menu-nav {
  flex: 1;
  padding: 20px 0;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s;
}

.menu-item:hover,
.menu-item.active {
  background: #3a3a4a;
}

.menu-item i {
  width: 20px;
  text-align: center;
  font-size: 18px;
}

.menu-footer {
  padding: 20px;
  border-top: 1px solid #3a3a4a;
  text-align: center;
}

.menu-footer p {
  font-size: 12px;
  color: #666;
}

/* Banner */
.product-banner {
  position: relative;
  height: 150px;
  overflow: hidden;
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

.banner-title {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Main Content */
.main-content {
  padding: 15px;
}

/* Game Info Card */
.game-info-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  margin-bottom: 20px;
  display: flex;
  gap: 15px;
}

.game-icon-wrapper {
  flex-shrink: 0;
}

.game-icon {
  width: 80px;
  height: 80px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.game-details {
  flex: 1;
  min-width: 0;
}

.game-name {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
}

.game-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #666;
}

.feature-item i {
  font-size: 14px;
  color: #27ae60;
  flex-shrink: 0;
}

.feature-item i.fa-ban {
  color: #e74c3c;
}

/* Game Description */
.game-description {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  margin-bottom: 20px;
}

.game-description p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 10px;
}

.game-description p:last-child {
  margin-bottom: 0;
}

/* Verification Section */
.verification-section {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  margin-bottom: 20px;
}

.section-header-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.step-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.section-header-box h3 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  flex: 1;
}

.info-btn {
  background: none;
  border: none;
  color: #888;
  font-size: 18px;
  cursor: pointer;
  transition: color 0.3s;
}

.info-btn:hover {
  color: #667eea;
}

.form-group {
  margin-bottom: 15px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}

.required {
  color: #e74c3c;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-input:focus {
  outline: none;
  border-color: #667eea;
}

.form-input::placeholder {
  color: #aaa;
}

.check-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.check-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.check-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Verification Result */
.verification-result {
  margin-top: 20px;
  padding: 15px;
  border-radius: 10px;
  background: #f0f9f0;
  border: 1px solid #27ae60;
}

.verification-result.success {
  background: #f0f9f0;
  border-color: #27ae60;
}

.result-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.result-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #27ae60;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.result-icon.success {
  background: #27ae60;
}

.result-info {
  display: flex;
  flex-direction: column;
}

.result-label {
  font-size: 11px;
  color: #888;
}

.result-value {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

/* Error Message */
.error-message {
  margin-top: 15px;
  padding: 12px 15px;
  background: #fff5f5;
  border: 1px solid #e74c3c;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e74c3c;
}

.error-message i {
  font-size: 18px;
  flex-shrink: 0;
}

.error-message span {
  font-size: 13px;
  flex: 1;
}

/* Products Section */
.products-section {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 14px;
  color: #e74c3c;
  margin-bottom: 15px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.product-card {
  background: #f8f9fa;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.3s, transform 0.2s;
}

.product-card:hover {
  border-color: #667eea;
  transform: translateY(-2px);
}

.product-card.placeholder {
  opacity: 0.7;
  cursor: default;
}

.product-card.placeholder:hover {
  border-color: transparent;
  transform: none;
}

.product-card .product-image {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding: 10px;
}

.product-card .product-image img {
  height: 60px;
  object-fit: contain;
  max-width: 100%;
}

.product-info {
  padding: 12px;
  text-align: center;
}

.product-name {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}

.product-price {
  font-size: 14px;
  font-weight: 700;
  color: #e74c3c;
}

.top-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #e74c3c;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
}

/* Footer */
.footer {
  background: #2a2a3a;
  padding: 25px 15px;
}

.footer-top {
  text-align: center;
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.contact-label {
  font-size: 14px;
  color: #fff;
  font-weight: 600;
}

.contact-buttons {
  display: flex;
  gap: 10px;
}

.contact-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  transition: transform 0.2s;
}

.contact-btn:hover {
  transform: scale(1.1);
}

.contact-btn.telegram {
  background: #0088cc;
}

.contact-btn.facebook {
  background: #1877f2;
}

.footer-links {
  margin-bottom: 15px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 13px;
}

.footer-links a:hover {
  color: #e63946;
}

.footer-links .divider {
  margin: 0 12px;
  color: #555;
}

.copyright {
  font-size: 12px;
  color: #888;
  margin-bottom: 15px;
}

.copyright strong {
  color: #e63946;
}

.payment-methods {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.payment-methods span:first-child {
  font-size: 12px;
  color: #888;
}

.payment-badge {
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
}

.payment-badge.khqr {
  background: #e63946;
}

.payment-badge.aba {
  background: #0066b3;
}

.warning-text {
  color: #e74c3c;
  background: #fff5f5;
  padding: 10px;
  border-radius: 8px;
  border-left: 3px solid #e74c3c;
  font-size: 12px;
  margin-top: 10px;
}

.warning-text i {
  margin-right: 8px;
}

.toggle-password {
  position: absolute;
  right: 15px;
  top: 38px;
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
  padding: 5px;
}

.toggle-password:hover {
  color: #667eea;
}

.security-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: #f0f9f0;
  border: 1px solid #27ae60;
  border-radius: 10px;
  margin-top: 15px;
  color: #27ae60;
  font-size: 12px;
}

.security-notice i {
  font-size: 18px;
  flex-shrink: 0;
}

.category-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 20px 0 12px 0;
  padding-left: 5px;
}

.category-title:first-of-type {
  margin-top: 0;
}

.product-card.selected {
  border-color: #667eea;
  background: #f0f4ff;
}

/* Payment Modal */
.payment-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.payment-modal.show {
  display: flex;
}

.payment-modal-content {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 400px;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalSlideIn 0.3s ease;
}

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

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

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

.close-modal {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #f0f0f0;
  color: #666;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  flex-shrink: 0;
}

.close-modal:hover {
  background: #e0e0e0;
}

.modal-body {
  padding: 20px;
}

.order-summary {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 20px;
}

.order-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
  gap: 10px;
}

.order-row:last-child {
  margin-bottom: 0;
  padding-top: 10px;
  border-top: 1px solid #ddd;
  font-weight: 600;
}

.order-label {
  color: #666;
  flex-shrink: 0;
}

.order-value {
  color: #333;
  font-weight: 500;
  text-align: right;
  word-break: break-word;
}

.order-value.total {
  color: #e74c3c;
  font-size: 18px;
}

.payment-methods-section {
  margin-bottom: 20px;
}

.payment-methods-section h4 {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.payment-options {
  display: flex;
  gap: 10px;
}

.payment-option {
  flex: 1;
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.3s, background 0.3s;
}

.payment-option:hover,
.payment-option.selected {
  border-color: #667eea;
  background: #f0f4ff;
}

.payment-option img {
  height: 30px;
  margin-bottom: 8px;
}

.payment-option span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #333;
}

.pay-now-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.pay-now-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* QR Modal */
.qr-section {
  text-align: center;
}

.qr-image {
  width: 200px;
  height: 200px;
  margin: 0 auto 15px;
  border-radius: 10px;
  border: 2px solid #e0e0e0;
  max-width: 100%;
}

.timer-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 15px;
  color: #e74c3c;
  font-weight: 600;
  flex-wrap: wrap;
}

.timer-section i {
  font-size: 18px;
}

.checking-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  background: #f0f9f0;
  border-radius: 10px;
  flex-wrap: wrap;
}

.checking-status i {
  animation: spin 1s linear infinite;
}

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

.success-section {
  text-align: center;
  padding: 20px;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #27ae60;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 20px;
}

.success-title {
  font-size: 20px;
  font-weight: 700;
  color: #27ae60;
  margin-bottom: 10px;
}

.success-message {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.close-success-btn {
  padding: 14px 30px;
  background: #27ae60;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.3s;
}

.close-success-btn:hover {
  background: #219a52;
}

/* Mobile (default - up to 480px) */
@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .game-info-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .game-features {
    align-items: center;
  }
  
  .game-icon {
    width: 70px;
    height: 70px;
  }
  
  .banner-title {
    font-size: 20px;
  }
  
  .product-banner {
    height: 120px;
  }
  
  .product-card .product-image {
    height: 70px;
    padding: 8px;
  }
  
  .product-card .product-image img {
    height: 50px;
  }
  
  .product-info {
    padding: 10px;
  }
  
  .product-name {
    font-size: 12px;
  }
  
  .product-price {
    font-size: 13px;
  }
  
  .feature-item {
    font-size: 11px;
  }
  
  .game-description p {
    font-size: 12px;
  }
}

/* Small tablets (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .page-container {
    max-width: 100%;
  }
  
  .header {
    padding: 15px 20px;
  }
  
  .main-content {
    padding: 20px;
  }
  
  .product-banner {
    height: 180px;
  }
  
  .banner-title {
    font-size: 28px;
  }
  
  .banner-overlay {
    padding: 25px;
  }
  
  .game-info-card {
    padding: 25px;
    gap: 20px;
  }
  
  .game-icon {
    width: 90px;
    height: 90px;
  }
  
  .game-name {
    font-size: 20px;
  }
  
  .feature-item {
    font-size: 13px;
  }
  
  .game-description {
    padding: 25px;
  }
  
  .game-description p {
    font-size: 14px;
  }
  
  .verification-section,
  .products-section {
    padding: 25px;
  }
  
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  
  .product-card .product-image {
    height: 90px;
  }
  
  .product-card .product-image img {
    height: 70px;
  }
  
  .product-name {
    font-size: 14px;
  }
  
  .product-price {
    font-size: 15px;
  }
  
  .footer {
    padding: 30px 20px;
  }
  
  .category-title {
    font-size: 18px;
  }
}

/* Tablets and small desktops (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .page-container {
    max-width: 750px;
    margin: 0 auto;
  }
  
  .header {
    padding: 12px 25px;
  }
  
  .logo {
    width: 40px;
    height: 40px;
  }
  
  .main-content {
    padding: 20px;
  }
  
  .product-banner {
    height: 160px;
  }
  
  .banner-title {
    font-size: 26px;
  }
  
  .banner-overlay {
    padding: 20px;
  }
  
  .game-info-card {
    padding: 20px;
    gap: 18px;
  }
  
  .game-icon {
    width: 75px;
    height: 75px;
  }
  
  .game-name {
    font-size: 18px;
  }
  
  .game-features {
    gap: 6px;
  }
  
  .feature-item {
    font-size: 12px;
  }
  
  .game-description {
    padding: 20px;
  }
  
  .game-description p {
    font-size: 13px;
  }
  
  .verification-section,
  .products-section {
    padding: 20px;
  }
  
  .section-header-box h3 {
    font-size: 16px;
  }
  
  .form-input {
    padding: 12px 15px;
    font-size: 14px;
  }
  
  .check-btn {
    padding: 13px;
    font-size: 14px;
  }
  
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  
  .product-card .product-image {
    height: 75px;
  }
  
  .product-card .product-image img {
    height: 55px;
  }
  
  .product-info {
    padding: 10px;
  }
  
  .product-name {
    font-size: 13px;
  }
  
  .product-price {
    font-size: 14px;
  }
  
  .category-title {
    font-size: 16px;
    margin: 18px 0 12px 0;
  }
  
  .footer {
    padding: 25px;
  }
  
  .side-menu {
    width: 280px;
    right: -280px;
  }
}

/* Large desktops (1025px and up) */
@media (min-width: 1025px) {
  .page-container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .header {
    padding: 14px 30px;
  }
  
  .logo {
    width: 42px;
    height: 42px;
  }
  
  .back-btn,
  .icon-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .main-content {
    padding: 25px;
  }
  
  .product-banner {
    height: 180px;
  }
  
  .banner-title {
    font-size: 28px;
  }
  
  .banner-overlay {
    padding: 25px;
  }
  
  .game-info-card {
    padding: 22px;
    gap: 20px;
    border-radius: 15px;
  }
  
  .game-icon {
    width: 85px;
    height: 85px;
    border-radius: 15px;
  }
  
  .game-name {
    font-size: 20px;
    margin-bottom: 12px;
  }
  
  .game-features {
    gap: 8px;
  }
  
  .feature-item {
    font-size: 13px;
    gap: 8px;
  }
  
  .feature-item i {
    font-size: 14px;
  }
  
  .game-description {
    padding: 22px;
    border-radius: 15px;
  }
  
  .game-description p {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .verification-section,
  .products-section {
    padding: 22px;
    border-radius: 15px;
  }
  
  .section-header-box {
    margin-bottom: 18px;
  }
  
  .step-number {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
  
  .section-header-box h3 {
    font-size: 17px;
  }
  
  .form-group label {
    font-size: 14px;
    margin-bottom: 8px;
  }
  
  .form-input {
    padding: 13px 15px;
    font-size: 14px;
    border-radius: 10px;
  }
  
  .check-btn {
    padding: 14px;
    font-size: 15px;
    border-radius: 10px;
  }
  
  .products-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
  }
  
  .product-card {
    border-radius: 12px;
  }
  
  .product-card .product-image {
    height: 80px;
    padding: 10px;
  }
  
  .product-card .product-image img {
    height: 60px;
  }
  
  .product-info {
    padding: 10px;
  }
  
  .product-name {
    font-size: 13px;
    margin-bottom: 4px;
  }
  
  .product-price {
    font-size: 14px;
  }
  
  .category-title {
    font-size: 17px;
    margin: 22px 0 14px 0;
  }
  
  .section-subtitle {
    font-size: 14px;
  }
  
  .footer {
    padding: 30px;
  }
  
  .contact-label {
    font-size: 14px;
  }
  
  .contact-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .footer-links a {
    font-size: 13px;
  }
  
  .copyright {
    font-size: 12px;
  }
  
  .side-menu {
    width: 300px;
    right: -300px;
  }
  
  .payment-modal-content {
    max-width: 420px;
  }
  
  .qr-image {
    width: 220px;
    height: 220px;
  }
}

/* Extra large screens (1440px and up) */
@media (min-width: 1440px) {
  .page-container {
    max-width: 1000px;
  }
  
  .products-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
  }
  
  .product-banner {
    height: 200px;
  }
  
  .banner-title {
    font-size: 32px;
  }
}
