/* Elysian Multi-concept - Apollo Noni Styles */
/* Color Scheme: Green (#2E7D32), Gold (#FFD700), White (#FFFFFF) */

:root {
  --apollo-primary: #2E7D32;
  --elysian-gold: #FFD700;
  --white: #FFFFFF;
  --text-dark: #1F2937;
  --text-muted: #6B7280;
  --background: #F9FAFB;
  --border: #E5E7EB;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--background);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.hero {
  background: linear-gradient(135deg, var(--apollo-primary), #4CAF50);
  color: var(--white);
  padding: 100px 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  padding: 16px 32px;
  background: var(--elysian-gold);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.button.secondary {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.button.secondary:hover {
  background: var(--white);
  color: var(--apollo-primary);
}

.button.ghost {
  background: transparent;
  border: 2px solid var(--elysian-gold);
  color: var(--elysian-gold);
}

.button.ghost:hover {
  background: var(--elysian-gold);
  color: var(--text-dark);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.card {
  background: var(--white);
  border-radius: 16px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card h2, .card h3 {
  color: var(--apollo-primary);
  margin-bottom: 20px;
}

.card p {
  margin-bottom: 20px;
}

.image {
  text-align: center;
}

.image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.badge {
  display: inline-block;
  background: var(--elysian-gold);
  color: var(--text-dark);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.pill {
  display: inline-block;
  background: var(--apollo-primary);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 10px;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial {
  background: var(--white);
  border-radius: 16px;
  padding: 30px;
  box-shadow: var(--shadow);
  text-align: center;
}

.stars {
  color: #F59E0B;
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.pricing-card {
  background: var(--white);
  border-radius: 16px;
  padding: 30px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.pricing-card.featured {
  border-color: var(--elysian-gold);
  transform: scale(1.05);
}

.pricing-card h3 {
  color: var(--apollo-primary);
  margin-bottom: 10px;
}

.pricing-card .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--apollo-primary);
  margin: 20px 0;
}

.pricing-card .original-price {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.pricing-card ul {
  list-style: none;
  margin: 20px 0;
  text-align: left;
}

.pricing-card li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.pricing-card li:last-child {
  border-bottom: none;
}

.guarantee {
  background: linear-gradient(135deg, var(--apollo-primary), #4CAF50);
  color: var(--white);
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  margin: 40px 0;
}

.guarantee h3 {
  margin-bottom: 20px;
}

.faq {
  margin: 40px 0;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--background);
}

.faq-answer {
  padding: 0 20px 20px;
  display: none;
}

.final-cta {
  background: linear-gradient(135deg, var(--apollo-primary), #4CAF50);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.final-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.final-cta p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.brand img {
  width: 50px;
  height: 50px;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: var(--apollo-primary);
}

/* Mobile Navigation */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  transition: 0.3s;
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 50px;
    gap: 30px;
    transition: left 0.3s ease;
    box-shadow: var(--shadow-lg);
    z-index: 99;
  }

  .nav.active {
    left: 0;
  }

  .nav a {
    font-size: 1.2rem;
    padding: 10px 20px;
    width: 200px;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .nav a:hover {
    background: var(--apollo-primary);
    color: var(--white);
  }
}

.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 40px 0;
  text-align: center;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer a {
  color: var(--elysian-gold);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .cta {
    flex-direction: column;
    align-items: center;
  }

  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }

  .card {
    padding: 20px;
  }

  .header .container {
    flex-direction: column;
    gap: 20px;
  }

  .nav {
    gap: 20px;
  }

  .footer .container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 60px 0;
  }

  .button {
    width: 100%;
    text-align: center;
  }

  .cta {
    width: 100%;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section {
  animation: fadeInUp 0.6s ease-out;
}

/* Icons */
.icon {
  width: 60px;
  height: 60px;
  background: var(--apollo-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  margin: 0 auto 20px;
}

/* Progress Bar */
.progress-bar {
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: var(--shadow);
}

.progress-bar .progress-fill {
  height: 8px;
  background: linear-gradient(90deg, var(--apollo-primary), var(--elysian-gold));
  border-radius: 4px;
  transition: width 0.3s ease;
}

/* Form Styles for Checkout */
.form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-dark);
}

.input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.input:focus {
  outline: none;
  border-color: var(--apollo-primary);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.note {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 10px;
}

.help {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 20px;
}

/* Checkout specific styles */
.checkout-hero {
  background: linear-gradient(135deg, var(--apollo-primary), #4CAF50);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.checkout-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.checkout-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.order-summary {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}

.order-summary h2 {
  color: var(--apollo-primary);
  margin-bottom: 20px;
}

.product-list {
  list-style: none;
  margin-bottom: 20px;
}

.product-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}

.product-list li:last-child {
  border-bottom: none;
}

.product-list img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}

.pricing {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.total {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--apollo-primary);
}

.payment-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.payment-option {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.payment-option:hover {
  border-color: var(--apollo-primary);
  box-shadow: var(--shadow);
}

.payment-option.selected {
  border-color: var(--apollo-primary);
  background: #F0F7F0;
}

.upsell {
  background: #FFF8E1;
  border: 2px solid var(--elysian-gold);
  border-radius: 12px;
  padding: 20px;
  margin: 30px 0;
  text-align: center;
}

.upsell h3 {
  color: var(--text-dark);
  margin-bottom: 15px;
}

.upsell p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.checkbox {
  margin-right: 10px;
}

.mini-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.mini-testimonial {
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--shadow);
  text-align: center;
}

.mini-testimonial .stars {
  margin-bottom: 10px;
}

.mini-testimonial p {
  font-size: 0.875rem;
  margin-bottom: 15px;
}

.mini-testimonial .author {
  justify-content: center;
  font-size: 0.875rem;
}

.checkout-footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 40px 0;
  text-align: center;
}

.checkout-footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: left;
}

.checkout-footer h4 {
  color: var(--elysian-gold);
  margin-bottom: 15px;
}

.checkout-footer ul {
  list-style: none;
}

.checkout-footer li {
  margin-bottom: 8px;
}

.checkout-footer a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.checkout-footer a:hover {
  color: var(--elysian-gold);
}

/* Error check: Ensure no missing closing brackets or syntax errors */
/* Admin Panel Styles */
.admin-layout {
  display: flex;
  min-height: 100vh;
  background: var(--background);
}


.main-content {
  flex: 1;
  margin-left: 0;
  padding: 0;
}

.content-header {
  background: var(--white);
  padding: 20px 30px;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.content-header h1 {
  color: var(--apollo-primary);
  margin: 0;
  font-size: 1.8rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}

.user-info {
  margin-left: auto;
  font-weight: 500;
}

.content-section {
  padding: 30px;
  display: none;
}

.content-section.active {
  display: block;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.stat-card {
  background: var(--white);
  border-radius: 12px;
  padding: 25px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--apollo-primary);
  margin-bottom: 5px;
}

.stat-label {
  color: var(--text-muted);
  font-weight: 500;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 15px;
}

.section-header h2 {
  color: var(--apollo-primary);
  margin: 0;
  font-size: 1.5rem;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input {
  padding: 10px 40px 10px 15px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  width: 300px;
  transition: border-color 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: var(--apollo-primary);
}

.search-icon {
  position: absolute;
  right: 12px;
  color: var(--text-muted);
  font-size: 1.2rem;
  pointer-events: none;
}

.table-container {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.products-table {
  width: 100%;
  border-collapse: collapse;
}

.products-table th {
  background: var(--background);
  padding: 15px;
  text-align: left;
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 2px solid var(--border);
}

.products-table td {
  padding: 15px;
  border-bottom: 1px solid var(--border);
}

.products-table tbody tr:hover {
  background: var(--background);
}

.product-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}

.product-name {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.product-description {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-price {
  font-weight: 600;
  color: var(--apollo-primary);
}

.status-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
}

.status-visible {
  background: #D1F2EB;
  color: #0E6245;
}

.status-hidden {
  background: #FEE2E2;
  color: #DC2626;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--border);
  transition: 0.4s;
  border-radius: 24px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: var(--apollo-primary);
}

input:checked + .toggle-slider:before {
  transform: translateX(26px);
}

.edit-btn, .delete-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.edit-btn:hover {
  opacity: 0.8;
}

.delete-btn:hover {
  opacity: 0.8;
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.empty-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  opacity: 0.5;
}

.empty-state h3 {
  color: var(--text-dark);
  margin-bottom: 10px;
}

.empty-state p {
  color: var(--text-muted);
}

.error {
  background: #FEE2E2;
  color: #DC2626;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #FECACA;
}

.loading {
  text-align: center;
  padding: 40px;
  color: var(--text-muted);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background-color: var(--white);
  margin: 5% auto;
  padding: 0;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  box-shadow: var(--shadow-lg);
  animation: slideIn 0.3s ease;
}

.modal-header {
  padding: 20px 30px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  margin: 0;
  color: var(--apollo-primary);
}

.close {
  color: var(--text-muted);
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover {
  color: var(--apollo-primary);
}

.modal-body {
  padding: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--apollo-primary);
}

.modal-footer {
  padding: 20px 30px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.cancel-btn {
  background: var(--border);
  color: var(--text-dark);
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease;
}

.cancel-btn:hover {
  background: #E5E7EB;
}

.toggle-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 500;
}

.toggle-text {
  color: var(--text-muted);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Analytics Dashboard Styles */
.charts-row {
    margin: 30px 0;
}

.chart-container {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.chart-container h3 {
    color: var(--apollo-primary);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.chart-controls {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.chart-btn {
    padding: 8px 16px;
    border: 2px solid var(--border);
    background: var(--white);
    color: var(--text-dark);
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.chart-btn:hover {
    border-color: var(--apollo-primary);
    color: var(--apollo-primary);
}

.chart-btn.active {
    background: var(--apollo-primary);
    border-color: var(--apollo-primary);
    color: var(--white);
}

#salesChart {
    max-height: 300px;
}

.analytics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.analytics-card {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow);
}

.analytics-card h3 {
    color: var(--apollo-primary);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.analytics-table {
    width: 100%;
    border-collapse: collapse;
}

.analytics-table th {
    background: var(--background);
    padding: 12px;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border);
    font-size: 0.9rem;
}

.analytics-table td {
    padding: 12px;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.analytics-table tbody tr:hover {
    background: var(--background);
}

.export-section {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow);
    margin-top: 30px;
}

.export-section h3 {
    color: var(--apollo-primary);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.export-buttons {
    display: flex;
    gap: 15px;
}

/* Mobile Responsiveness for Admin */
@media (max-width: 1024px) {
  .sidebar {
    width: 250px;
  }

  .main-content {
    margin-left: 250px;
  }
}

@media (max-width: 768px) {
    .admin-layout {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }

    .main-content {
        margin-left: 0;
    }

    .content-header {
        padding: 15px 20px;
    }

    .content-header h1 {
        font-size: 1.5rem;
    }

    .content-section {
        padding: 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        align-items: stretch;
    }

    .search-input {
        width: 100%;
    }

    .products-table {
        font-size: 0.9rem;
    }

    .products-table th,
    .products-table td {
        padding: 10px;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
    }

    /* Analytics responsive */
    .analytics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .chart-container {
        padding: 20px;
    }

    .chart-controls {
        flex-wrap: wrap;
    }

    .chart-btn {
        flex: 1;
        min-width: 80px;
    }

    .export-buttons {
        flex-direction: column;
    }

    .export-buttons .button {
        width: 100%;
    }
}

@media (max-width: 480px) {
  .content-section {
    padding: 15px;
  }

  .stat-card {
    padding: 20px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .button {
    width: 100%;
    margin-bottom: 10px;
  }

  .modal-body {
    padding: 20px;
  }

  .modal-footer {
    flex-direction: column;
  }

  .cancel-btn, .button {
    width: 100%;
  }
}