/* Enhanced Reset and Base Styles */
  :root {
    --primary-color: #FFA500; /* Chill orange */
    --primary-dark: #CC8400;  /* Darker shade of chill orange */
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --body-bg: #ffffff;
    --text-color: #333333;
    --border-color: #dee2e6;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --transition-base: all 0.3s ease;
    --spacing-unit: 0.5rem;
  }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--body-bg);
}

/* Enhanced Navigation */
.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: var(--body-bg);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition-base);
  flex-wrap: wrap;
  gap: 1rem;
}

.nav-bar.scrolled {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.logo-link img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-item {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  padding: 0.5rem;
  transition: var(--transition-base);
  white-space: nowrap;
}

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

.nav-item.active {
  color: var(--primary-color);
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-bar {
      padding: 0.75rem;
      justify-content: center;
      text-align: center;
  }

  .nav-links {
      gap: 1rem;
      justify-content: center;
      width: 100%;
  }
}

  .nav-item {
      padding: 0.5rem;
      font-size: 0.9rem;
    }

/* Enhanced Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem;
  justify-items: center; /* Centers items horizontally in grid */
}

/* Enhanced Product Cards */
.product-card {
  background: var(--body-bg);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition-base);
  position: relative;
  width: 100%;
  max-width: 350px; /* Prevents cards from getting too wide */
  text-align: center; /* Centers text content */
}

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

/* Centered Product Image */
.product-image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Centered Product Info */
.product-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.product-name {
  font-size: 1.2rem;
  color: var(--text-color);
  font-weight: 600;
  text-align: center;
  width: 100%;
}

.product-description {
  font-size: 0.9rem;
  color: var(--secondary-color);
  line-height: 1.5;
  text-align: center;
  width: 100%;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
}

/* Centered Quantity Controls */
.quantity-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem auto;
  background: var(--light-color);
  padding: 0.5rem;
  border-radius: 8px;
  width: fit-content;
}

.quantity-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border-color);
  background: var(--body-bg);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
}

.quantity-btn:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.quantity-input {
  width: 50px;
  height: 32px;
  text-align: center;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-weight: 600;
}

/* Centered Add to Cart Button */
.add-to-cart-btn {
  display: block;
  width: 80%;
  margin: 1rem auto;
  padding: 0.75rem 1.5rem;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-base);
  text-align: center;
}

/* Error Message Centering */
.error-message {
  text-align: center;
  padding: 2rem;
  width: 100%;
}

.retry-button {
  display: block;
  margin: 1rem auto;
  padding: 0.75rem 1.5rem;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

/* Enhanced Cart Styles */
.cart {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  height: 100vh;
  background: #1a1a1a;
  color: white;
  padding: 0;
  transform: translateX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.cart-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cart.hidden {
  transform: translateX(100%);
  pointer-events: none;
}

.cart-header {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1a1a1a;
  position: relative;
}

.cart-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  color: white;
}

.close-cart-button {
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 2rem;
  top: 2rem;
  transition: transform 0.3s ease;
}

.close-cart-button::before,
.close-cart-button::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: white;
  transform-origin: center;
}

.close-cart-button::before {
  transform: rotate(45deg);
}

.close-cart-button::after {
  transform: rotate(-45deg);
}

.close-cart-button:hover {
  transform: rotate(90deg);
}

.cart-items-container {
  flex: 1;
  overflow-y: auto;
  padding: 0 2rem;
}

.cart-subtotal,
    .cart-shipping,
    .cart-total {
        display: flex;
        justify-content: space-between;
        padding: 0.5rem 0;
    }

    .cart-total {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 0.5rem;
        padding-top: 0.5rem;
    }

.cart-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
  color: white;
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cart-item:hover {
  box-shadow: var(--shadow-sm);
}

.cart-item-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.cart-item-name {
  font-weight: 500;
  color: var(--text-color);
}

.cart-item-price {
  font-weight: 600;
  color: var(--primary-color);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-color);
}

.cart-quantity-btn {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border-color);
  background: white;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
}

.cart-quantity-btn:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.cart-item-quantity {
  font-weight: 500;
  min-width: 30px;
  text-align: center;
}

.remove-item-btn {
  margin-left: auto;
  padding: 0.25rem 0.5rem;
  background: var(--danger-color);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.875rem;
  transition: var(--transition-base);
}

.remove-item-btn:hover {
  background: #c82333;
}

.cart-footer {
  padding: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #1a1a1a;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  color: white;
  font-size: 1.2rem;
}

.cart-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#clear-cart-button {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#clear-cart-button:hover {
  background: rgba(255, 255, 255, 0.1);
}

#checkout-button {
  display: block;
  width: 100%;
  background: #0066FF;
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  text-align: center;
}

#checkout-button:hover {
  background: #0052cc;
}

#checkout-button:active {
  transform: translateY(1px);
}

#checkout-button.disabled {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}

#checkout-button.processing {
  background: #0052cc;
  position: relative;
  color: transparent;
}

#checkout-button.processing::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin: -10px 0 0 -10px;
  border: 2px solid white;
  border-top-color: transparent;
  border-radius: 50%;
  animation: button-loading-spinner 1s linear infinite;
}

@keyframes button-loading-spinner {
  from {
    transform: rotate(0turn);
  }
  to {
    transform: rotate(1turn);
  }
}

.empty-cart {
  text-align: center;
  padding: 2rem;
  color: var(--secondary-color);
}

.empty-cart i {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.empty-cart p {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

/* Cart Animation */
@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.cart:not(.hidden) {
  animation: slideIn 0.3s ease-out;
}

/* Cart Overlay */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Enhanced Buttons */
.add-to-cart-btn, 
.primary-button {
  width: 100%;
  padding: 0.75rem;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.add-to-cart-btn:hover, 
.primary-button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

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

/* Modern Footer Styling */
.footer-container {
  background: #1a1a1a;
  color: #ffffff;
  padding: 5rem 3rem;
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
  border-top: 1px solid #333;
}

/* Logo and Tagline Section */
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.tagline {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #ffffff;
}

/* X (Twitter) Button Styling */
.x-button {
  background: #000000;
  border: 1px solid #333;
  color: #ffffff;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.x-button:hover {
  background: #111;
  border-color: #666;
}

.x-logo {
  font-size: 1.2rem;
}

.instagram-button {
  background: #000000;
  border: 1px solid #333;
  color: #ffffff;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.instagram-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.instagram-button i {
  font-size: 1.2rem;
}


/* FDA Disclaimer */
.fda-disclaimer {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #999;
  border-left: 3px solid #333;
  padding-left: 1rem;
}

/* Site Map Section */
.footer-center h3 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-center h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #ffffff;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  color: #999;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Address Section */
.footer-right h3 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-right h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #ffffff;
}

address {
  font-style: normal;
  line-height: 1.8;
  color: #999;
}

address a {
  color: #999;
  text-decoration: none;
  transition: color 0.3s ease;
}

address a:hover {
  color: #ffffff;
}

/* Payment Icons */
.payment-icons {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.payment-icons i {
  font-size: 2rem;
  color: #666;
  transition: color 0.3s ease;
}

.payment-icons i:hover {
  color: #ffffff;
}

/* Copyright Section */
.footer-bottom {
  background: #000000;
  color: #666;
  text-align: center;
  padding: 1.5rem;
  border-top: 1px solid #333;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
      padding: 3rem 1.5rem;
      gap: 3rem;
  }
  
  .payment-icons {
      justify-content: center;
  }
}

/* Enhanced Form Styles */
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  transition: var(--transition-base);
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

/* Animation Classes */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  .nav-bar {
    padding: 1rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .cart {
    width: 100%;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1rem;
  }
}

/* Print Styles */
@media print {
  .nav-bar,
  .cart,
  .footer-container {
    display: none;
  }

  .product-card {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}

/* Accessibility Enhancements */
:focus {
  outline: 3px solid var(--primary-color);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  :root {
    --body-bg: #1a1a1a;
    --text-color: #ffffff;
    --border-color: #404040;
    --light-color: #2d2d2d;
  }
}

/* Main checkout container styling */
main {
  background: #1a1a1a;
  color: white;
  min-height: 100vh;
  padding: 2rem;
}

.order-summary {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.order-summary h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.cart-summary__table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  color: white;
}

.cart-summary__table th,
.cart-summary__table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-summary__total {
  font-size: 1.2rem;
  font-weight: bold;
}

.payment-section {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.return-to-shop {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.return-to-shop:hover {
  opacity: 1;
}

.checkout-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
  color: white;
}

.checkout-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.continue-shopping {
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: opacity 0.2s ease;
  opacity: 0.8;
}

.continue-shopping:hover {
  opacity: 1;
}

.checkout-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
}

.order-summary {
  text-align: left;
  margin-bottom: 2rem;
}

.order-summary-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.order-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
}

.payment-methods {
  display: flex;
  gap: 1rem;
  justify-content: right;
  margin-top: 2rem;
}

.payment-section {
  /* Create depth effect for button container */
  padding: 2rem;
  display: flex;
  justify-content: center;
}

.pay-button {
  /* Base styles */
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: white;
  border: none;
  padding: 1.2rem 3.5rem;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 114, 255, 0.3),
              0 6px 6px rgba(0, 114, 255, 0.2),
              inset 0 2px 2px rgba(255, 255, 255, 0.2);
}

/* Hover effect */
.pay-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 114, 255, 0.4),
              0 10px 10px rgba(0, 114, 255, 0.2),
              inset 0 2px 2px rgba(255, 255, 255, 0.2);
}

/* Click effect */
.pay-button:active {
  transform: translateY(2px);
  box-shadow: 0 5px 10px rgba(0, 114, 255, 0.3),
              0 3px 3px rgba(0, 114, 255, 0.2);
}

/* Shine effect */
.pay-button::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
  animation: shine 3s infinite;
  pointer-events: none;
}

/* Animation for shine effect */
@keyframes shine {
  0% {
    transform: translateX(-50%) rotate(45deg);
  }
  80% {
    transform: translateX(150%) rotate(45deg);
  }
  100% {
    transform: translateX(150%) rotate(45deg);
  }
}

/* Pulsing effect */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 114, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 114, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 114, 255, 0);
  }
}

/* Payment Button Enhanced Styles */
.payment-section {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.pay-button {
  background: linear-gradient(135deg, #00a6ff, #0055ff);
  min-width: 200px;
  padding: 1.2rem 3rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 86, 255, 0.2);
}

/* Loading State */
.pay-button.loading {
  background: linear-gradient(135deg, #0055ff, #003399);
  pointer-events: none;
}

.pay-button.loading .spinner {
  margin-right: 10px;
  animation: spin 1s linear infinite;
}

/* Success State */
.pay-button.success {
  background: linear-gradient(135deg, #00c853, #009624);
}

/* Error State */
.pay-button.error {
  background: linear-gradient(135deg, #ff1744, #d50000);
}

/* Interactive Effects */
.pay-button:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 86, 255, 0.3);
}

.pay-button:not(:disabled):active {
  transform: translateY(1px);
}

/* Disabled State */
.pay-button:disabled {
  background: #cccccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Loading Animation */
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Status Message Styles */
.payment-status {
  text-align: center;
  padding: 1rem;
  border-radius: 6px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.payment-status.show {
  opacity: 1;
  transform: translateY(0);
}

.payment-status.error {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ffcdd2;
}

.payment-status.info {
  background: #e3f2fd;
  color: #1565c0;
  border: 1px solid #bbdefb;
}

/* Contact Form Styles */
.contact-form {
    max-width: 600px;
    margin: 0 auto 40px;
    padding: 20px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #333;
    border-radius: 4px;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a4a4a;
}

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

.submit-button {
    width: 100%;
    padding: 14px;
    background-color: #0000ff;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #0000cc;
}

.submit-button:disabled {
    background-color: #666;
    cursor: not-allowed;
}

/* FAQ Styles */
/* Main Heading Styles */
h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin: 3rem 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
  position: relative;
  padding-bottom: 1rem;
}

h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #0066FF, #00C6FF);
  border-radius: 2px;
}

@media (max-width: 768px) {
  h1 {
      font-size: 2.5rem;
      margin: 2rem 0;
  }
}

/* Modern FAQ Section Styles */
.faq-section {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.faq-title {
  font-size: 4rem;
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.faq-title::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #0066FF;
  border-radius: 2px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  width: 100%;
  text-align: left;
  border: none;
  background: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.faq-question:hover .faq-question-text {
  color: #0066FF;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: #0066FF;
  border-radius: 2px;
}

.faq-toggle::before {
  width: 100%;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
}

.faq-toggle::after {
  width: 2px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle::after {
  transform: translateX(-50%) scaleY(0);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.6;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 1.5rem;
  opacity: 0;
  transform: translateY(-10px);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
  padding: 0 1.5rem 1.5rem 1.5rem;
}

/* Link Styles within FAQ */
.faq-answer a {
  color: #0066FF;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.faq-answer a:hover {
  color: #4d94ff;
  text-decoration: underline;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .faq-section {
      padding: 0 1rem;
      margin: 3rem auto;
  }

  .faq-title {
      font-size: 2.5rem;
      margin-bottom: 3rem;
  }

  .faq-question-text {
      font-size: 1rem;
      padding-right: 1rem;
  }

  .faq-toggle {
      width: 20px;
      height: 20px;
  }
}

/* Animation for FAQ Items */
@keyframes slideDown {
  from {
      opacity: 0;
      transform: translateY(-10px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.faq-item {
  animation: slideDown 0.5s ease-out forwards;
  animation-delay: calc(var(--item-index) * 0.1s);
  opacity: 0;
}
/* Add these styles to styles.css */

.coupon-section {
  margin: 2rem 0;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.coupon-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

#coupon-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid #333;
  border-radius: 4px;
  background: #1a1a1a;
  color: white;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

#coupon-input:focus {
  outline: none;
  border-color: #0066FF;
}

#coupon-input::placeholder {
  color: #666;
}

.coupon-submit-btn {
  padding: 0.75rem 1.5rem;
  background: #0066FF;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  min-width: 100px;
}

.coupon-submit-btn:hover {
  background: #0052cc;
  transform: translateY(-1px);
}

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

.coupon-message {
  margin-top: 0.75rem;
  padding: 0.5rem;
  border-radius: 4px;
  font-size: 0.9rem;
}

.coupon-message.success {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.2);
}

.coupon-message.error {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.2);
}

/* Blog Styles */
.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.blog-container h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #ffffff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  padding: 1rem;
}

.blog-post {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-5px);
}

.blog-post-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-post:hover .blog-post-image img {
  transform: scale(1.05);
}

.blog-post-content {
  padding: 1.5rem;
}

.blog-post-title {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.blog-post-meta {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}

.blog-post-excerpt {
  color: #999;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.blog-post-read-more {
  background: #0066FF;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.blog-post-read-more:hover {
  background: #0052cc;
}

.blog-post-full-content {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #333;
  color: #ffffff;
}

.blog-post-full-content.hidden {
  display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .blog-grid {
      grid-template-columns: 1fr;
  }
  
  .blog-container {
      padding: 1rem;
  }
  
  .blog-post-title {
      font-size: 1.25rem;
  }
}

/* Loading state */
.loading-spinner {
  text-align: center;
  padding: 2rem;
  color: #666;
}
/* Blog Styles - Complete */
.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.blog-container h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #ffffff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  padding: 1rem;
}

.blog-post {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-5px);
}

.blog-post-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-post:hover .blog-post-image img {
  transform: scale(1.05);
}

.blog-post-content {
  padding: 1.5rem;
}

.blog-post-title {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.blog-post-meta {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}

.blog-post-excerpt {
  color: #999;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.blog-post-read-more {
  background: #0066FF;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.blog-post-read-more:hover {
  background: #0052cc;
}

/* Article View Styles */
.article-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.back-button {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  transition: opacity 0.3s ease;
}

.back-button:hover {
  opacity: 0.8;
}

.full-article {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  padding: 2rem;
}

.article-header {
  margin-bottom: 2rem;
  text-align: center;
}

.article-header h1 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.article-meta {
  color: #666;
  font-size: 1rem;
}

.article-hero-image {
  width: 100%;
  height: 400px;
  margin-bottom: 2rem;
  border-radius: 8px;
  overflow: hidden;
}

.article-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-content {
  color: #ffffff;
  line-height: 1.8;
  font-size: 1.1rem;
}

.article-content h2 {
  font-size: 1.8rem;
  margin: 2rem 0 1rem;
  color: #ffffff;
}

.article-content p {
  margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
  margin: 1rem 0;
  padding-left: 2rem;
}

.article-content li {
  margin-bottom: 0.5rem;
  color: #cccccc;
}

.article-content strong {
  color: #ffffff;
  font-weight: 600;
}

.article-tags {
  margin: 2rem 0;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  background: #333;
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.9rem;
}

.article-share {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #333;
}

.article-share h3 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.share-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.share-buttons button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  background: #333;
  color: #ffffff;
}

.share-buttons button:hover {
  background: #444;
  transform: translateY(-2px);
}

.share-buttons .fa-twitter {
  color: #1DA1F2;
}

.share-buttons .fa-facebook {
  color: #4267B2;
}

.share-buttons .fa-link {
  color: #00C853;
}

/* Responsive Adjustments */
/* Blog Article Styles - Minimalist Design */
.article-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.article-header {
  text-align: center;
  margin-bottom: 4rem;
}

.article-header h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 500;
}

.article-meta {
  color: #666;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.article-meta::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: #0066FF;
  margin: 2rem auto;
}

.article-content {
  color: #ffffff;
  line-height: 1.8;
  font-size: 1.25rem;
}

.article-content p {
  margin-bottom: 2rem;
}

.article-hero-image {
  width: 100%;
  max-height: 500px;
  margin: 3rem 0;
  border-radius: 4px;
  overflow: hidden;
}

.article-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Back Button */
.back-button {
  position: fixed;
  top: 2rem;
  left: 2rem;
  background: none;
  border: none;
  color: #666;
  font-size: 1rem;
  padding: 0.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.back-button:hover {
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .article-container {
      padding: 2rem 1rem;
  }

  .article-header h1 {
      font-size: 2.5rem;
  }

  .back-button {
      position: static;
      margin-bottom: 2rem;
  }
}

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

.blog-post {
  background: #1a1a1a;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-5px);
}

.blog-post-content {
  padding: 2rem;
}

.blog-post-title {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.blog-post-meta {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.blog-post-excerpt {
  color: #999;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.blog-post-read-more {
  color: #0066FF;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.blog-post-read-more:hover {
  opacity: 0.8;
}