/* CSS Variables for consistent theming */
:root {
  --primary-color: #ff6b35;
  --secondary-color: #f7931e;
  --accent-color: #ffd23f;
  --bg-dark: #1a1a1a;
  --bg-darker: #0f0f0f;
  --bg-card: #2a2a2a;
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-muted: #888888;
  --border-color: #333333;
  --success-color: #4caf50;
  --error-color: #f44336;
  --warning-color: #ff9800;
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1rem;
  font-weight: 600;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
}

.page-header {
  padding-top: 4rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 8px 16px;
}

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.btn-full {
  width: 100%;
}

/* Header */
.header {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 2rem;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 3px;
}

.logo-img {
  width: 40px;
  height: 40px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
  background: rgba(255, 107, 53, 0.1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-icon {
  position: relative;
  font-size: 1.5rem;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.cart-icon:hover {
  color: var(--primary-color);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 4rem 0;
  background: linear-gradient(
    135deg,
    var(--bg-darker) 0%,
    var(--bg-dark) 50%,
    var(--bg-darker) 100%
  );
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(255, 107, 53, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  padding-inline: 10rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.highlight {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-color);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-image {
  text-align: center;
  position: relative;
}

.hero-img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.hero-img:hover {
  transform: scale(1.05);
}

.hero-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.badge-text {
  display: block;
  font-size: 0.9rem;
}

.badge-discount {
  display: block;
  font-size: 1.1rem;
}

/* Trust Indicators */
.trust-indicators {
  padding: 3rem 0;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.trust-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-dark);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-4px);
  border-color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

.trust-icon > span {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.trust-item h3 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.trust-item p {
  color: var(--text-muted);
  margin: 0;
}

/* Categories Section */
.categories {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.section-title > span {
  font-size: 3rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.category-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.category-card:hover::before {
  opacity: 0.1;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
  border-color: var(--primary-color);
}

.category-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 1rem;
  object-fit: cover;
  border: 3px solid var(--primary-color);
}

.category-card h3 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.category-card p {
  color: var(--text-muted);
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
}

.category-count {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

/* Products Section */
.featured-products,
.products-section {
  padding: 4rem 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.product-card {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--primary-color);
}

.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image {
  transform: scale(1.1);
}

.product-info {
  padding: 1.5rem;
}

.product-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.product-description {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.product-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.product-actions {
  display: flex;
  gap: 0.5rem;
}

.btn-add-cart {
  flex: 1;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.btn-add-cart::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn-add-cart:hover::before {
  left: 100%;
}

.btn-add-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-add-cart:active {
  transform: translateY(0);
}

/* Hot Deals Section */
.hot-deals {
  padding: 4rem 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.deals-header {
  text-align: center;
  margin-bottom: 3rem;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.time-unit {
  text-align: center;
  background: var(--bg-dark);
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid var(--primary-color);
  min-width: 80px;
}

.time-number {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-color);
  line-height: 1;
}

.time-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.deal-card {
  background: var(--bg-dark);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  position: relative;
  transition: all 0.3s ease;
}

.deal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
  border-color: var(--primary-color);
}

.featured-deal {
  border: 2px solid var(--primary-color);
  box-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}

.deal-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--error-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
  z-index: 2;
}

.deal-image {
  width: 100%;
  height: 200px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.deal-card:hover .deal-image {
  transform: scale(1.1);
}

.deal-info {
  padding: 1.5rem;
}

.deal-info h3 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.deal-info p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.deal-prices {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.original-price {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 1.1rem;
}

.deal-price {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: bold;
}

/* Why Choose Us */
.why-choose-us {
  padding: 4rem 0;
}

.why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-icon > span {
  font-size: 2rem;
  flex-shrink: 0;
  color: var(--primary-color);
}

.feature-content h4 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: var(--text-secondary);
  margin: 0;
}

.why-image {
  position: relative;
}

.why-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.achievement-badges {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.badge {
  background: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(10px);
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid var(--primary-color);
  text-align: center;
  min-width: 120px;
}

.badge-number {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
}

.badge-text {
  display: block;
  color: var(--accent-color);
  font-size: 0.9rem;
}

.badge-label {
  display: block;
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Testimonials */
.testimonials {
  padding: 4rem 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-dark);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.stars {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-content p {
  color: var(--text-secondary);
  font-style: italic;
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-color);
}

.author-info h4 {
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.author-info span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Latest Blog */
.latest-blog {
  padding: 4rem 0;
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.blog-preview-card {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.blog-preview-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
  border-color: var(--primary-color);
}

.blog-preview-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-preview-card:hover .blog-preview-image {
  transform: scale(1.1);
}

.blog-preview-content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

/* Responsive Design */
/* Mobile First - Base styles are already mobile-first */
.products-page {
  padding: 1rem;
}

.product-filters {
  flex-direction: column;
  align-items: stretch;
}

.filter-buttons {
  justify-content: center;
}

.sort-controls {
  justify-content: center;
}

/* .products-grid {
  grid-template-columns: 1fr;
} */

#cart-content {
  grid-template-columns: 1fr;
}

.cart-item {
  grid-template-columns: 80px 1fr;
  gap: 0.5rem;
  padding: 0.5rem;
}

.cart-item .quantity-controls {
  grid-column: 2;
  justify-content: flex-start;
}

.cart-item .remove-btn {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  nav {
    flex-wrap: nowrap;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .features {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .cart-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }

  .product-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Print styles */
@media print {
  .cookie-popup,
  .cta,
  .cta-btn,
  nav {
    display: none !important;
  }

  body {
    background-color: white;
    color: black;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

.blog-date {
  color: var(--text-muted);
}

.blog-category {
  color: var(--primary-color);
  font-weight: 600;
}

.blog-preview-content h3 {
  margin-bottom: 1rem;
}

.blog-preview-content h3 a {
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.blog-preview-content h3 a:hover {
  color: var(--primary-color);
}

.blog-preview-content p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.read-more {
  color: var(--primary-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: var(--secondary-color);
  transform: translateX(4px);
}

/* Community Stats */
.community-stats {
  padding: 4rem 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: var(--bg-dark);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

.stat-icon > span {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: bold;
  color: white;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Newsletter */
.newsletter {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  padding: 4rem 0;
  text-align: center;
}

.newsletter-content h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.newsletter-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto 2rem auto;
  gap: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--bg-dark);
}

.newsletter-form input::placeholder {
  color: var(--text-muted);
}

.newsletter-form button {
  background: var(--bg-dark);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--bg-darker);
  transform: translateY(-2px);
}

.newsletter-benefits {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.benefit {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background: var(--bg-darker);
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section li {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  padding: 8px 16px;
  background: var(--bg-card);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.trust-badge {
  color: var(--success-color);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  z-index: 10000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  margin: 0 auto;
}

.cookie-content p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

/* Notifications */
.notification {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  background: var(--success-color);
  color: white;
  padding: 1rem 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  min-width: 300px;
  max-width: 90vw;
  text-align: center;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.notification.show {
  transform: translateX(-50%) translateY(0);
}

.notification.error {
  background: linear-gradient(135deg, var(--error-color), #d32f2f);
}

.notification.warning {
  background: linear-gradient(135deg, var(--warning-color), #f57c00);
}

.notification.success {
  background: linear-gradient(135deg, var(--success-color), #388e3c);
}

/* Loading States */
.loading {
  text-align: center;
  padding: 2rem;
  color: var(--text-muted);
}

.loading::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-color);
  border-top: 2px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 10px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.mt-4 {
  margin-top: 2rem;
}

.hidden {
  display: none;
}
.visible {
  display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding-inline: 2rem;
  }

  .why-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .countdown-timer {
    gap: 1rem;
  }

  .time-unit {
    min-width: 60px;
    padding: 0.75rem;
  }

  .time-number {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0 0 12px 12px;
    flex-direction: column;
    padding: 1rem;
    gap: 0.5rem;
  }

  .nav-menu.active {
    display: flex;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-stats {
    justify-content: center;
    gap: 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .trust-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .category-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .deals-grid {
    grid-template-columns: 1fr;
  }

  .features-list {
    gap: 1.5rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .blog-preview-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .newsletter-form {
    flex-direction: column;
    max-width: 400px;
  }

  .newsletter-benefits {
    flex-direction: column;
    gap: 0.5rem;
  }

  .notification {
    top: 10px;
    left: 10px;
    right: 10px;
    transform: translateY(-100%);
    min-width: auto;
    max-width: none;
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }

  .notification.show {
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .countdown-timer {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .time-unit {
    min-width: 50px;
    padding: 0.5rem;
  }

  .time-number {
    font-size: 1.2rem;
  }

  .achievement-badges {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 1rem;
  }

  .badge {
    min-width: 100px;
    padding: 0.75rem;
  }

  .badge-number {
    font-size: 1.2rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-number {
    font-size: 2rem;
  }

  .notification {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    border-radius: 8px;
  }
}

/* Filters */
.filters {
  padding: 2rem 0;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
}

.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.category-filters {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.sort-options select {
  background: var(--bg-dark);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
}

/* Contact Page */
.contact-section {
  padding: 3rem 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-form {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

.contact-form h2 {
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: var(--bg-dark);
  color: var(--text-primary);
  font-family: inherit;
  resize: vertical;
}

.contact-info h2 {
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.contact-icon > span {
  font-size: 2rem;
  flex-shrink: 0;
  color: var(--primary-color);
}

.contact-details h3 {
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.contact-details p {
  margin-bottom: 0.25rem;
  color: var(--primary-color);
  font-weight: 600;
}

.contact-details small {
  color: var(--text-muted);
}

.faq-section {
  margin-top: 2rem;
}

.faq-section h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.faq-item {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--bg-darker);
  border-radius: 8px;
}

.faq-item h4 {
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-size: 1rem;
}

.faq-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Blog Styles */
.blog-section {
  padding: 3rem 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
}

.blog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.blog-card:hover::before {
  opacity: 0.05;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
  border-color: var(--primary-color);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image {
  transform: scale(1.1);
}

.blog-content {
  padding: 1.5rem;
  position: relative;
  z-index: 2;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.blog-author::before {
  content: "👤 ";
  margin-right: 4px;
}

.blog-content h2 {
  margin-bottom: 1rem;
}

.blog-content h2 a {
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.blog-content h2 a:hover {
  color: var(--primary-color);
}

.blog-content p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.read-more {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: var(--secondary-color);
  transform: translateX(4px);
}

/* Individual Blog Post */
.blog-post {
  padding: 2rem 0;
}

.blog-header {
  margin-bottom: 3rem;
}

.breadcrumb {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--primary-color);
}

.blog-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.blog-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.featured-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 2rem;
}

.blog-content {
  display: block;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.blog-text {
  color: var(--text-secondary);
  line-height: 1.8;
}

.blog-text .lead {
  font-size: 1.2rem;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 2rem;
  padding: 1rem;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.1),
    rgba(247, 147, 30, 0.1)
  );
  border-left: 4px solid var(--primary-color);
  border-radius: 0 8px 8px 0;
}

.blog-text h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin: 2rem 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-color);
  position: relative;
}

.blog-text h2::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--accent-color);
}

.blog-text h3 {
  color: var(--secondary-color);
  font-size: 1.4rem;
  margin: 1.5rem 0 1rem 0;
}

.blog-text h4 {
  color: var(--text-primary);
  font-size: 1.2rem;
  margin: 1rem 0 0.5rem 0;
}

.blog-text ul,
.blog-text ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.blog-text li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.blog-text strong {
  color: var(--text-primary);
}

.weapon-stats {
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.1),
    rgba(247, 147, 30, 0.1)
  );
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
  border: 1px solid var(--primary-color);
}

.weapon-stats p {
  color: var(--text-primary);
  font-weight: 600;
  margin: 0;
}

.blog-cta {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-dark));
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  margin: 3rem 0;
  border: 1px solid var(--primary-color);
}

.blog-cta h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.blog-cta p {
  margin-bottom: 1.5rem;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: var(--bg-dark);
  color: var(--text-primary);
  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(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group small {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  display: block;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

/* Cart and Checkout */
.cart-section,
.checkout-section {
  padding: 3rem 0;
}

.cart-content,
.checkout-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-item {
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-item-info {
  flex: 1;
}

.cart-item-title {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cart-item-price {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quantity-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.quantity-input {
  width: 50px;
  text-align: center;
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 5px;
  border-radius: 4px;
}

.remove-btn {
  background: var(--error-color);
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
}

.cart-summary,
.order-summary {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.summary-card h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-align: center;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-row.total {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--primary-color);
  border-top: 2px solid var(--primary-color);
  margin-top: 1rem;
  padding-top: 1rem;
}

.empty-cart {
  text-align: center;
  padding: 4rem 2rem;
}

.empty-cart-content h2 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  width: 100%;
}

.empty-cart-content p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.summary-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Checkout specific */
.checkout-form {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

.form-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.form-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.form-section h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--bg-dark);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.payment-option:hover {
  background: var(--bg-darker);
}

.payment-option input[type="radio"] {
  margin: 0;
}

.payment-label {
  color: var(--text-primary);
  font-weight: 500;
}

.payment-details {
  background: var(--bg-dark);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1rem;
}

/* Auth Pages */
.auth-section {
  padding: 4rem 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.auth-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.auth-form {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h1 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.form-header p {
  color: var(--text-secondary);
}

.auth-footer {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.auth-footer p {
  color: var(--text-secondary);
}

.auth-footer a {
  color: var(--primary-color);
  font-weight: 600;
}

.auth-benefits {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

.auth-benefits h3 {
  color: var(--primary-color);
  margin-bottom: 2rem;
  text-align: center;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-dark);
  border-radius: 8px;
  transition: all 0.3s ease;
  padding-inline: 1rem;

}

.benefit-item:hover {
  background: var(--bg-darker);
  transform: translateX(4px);
}

.benefit-item > span {
  font-size: 2rem;
  flex-shrink: 0;
  color: var(--primary-color);
}

.benefit-item h4 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.benefit-item p {
  color: var(--text-secondary);
  margin: 0;
}

/* CSS Variables for consistent theming */
:root {
  --primary-color: #ff6b35;
  --secondary-color: #f7931e;
  --accent-color: #ffd23f;
  --bg-dark: #1a1a1a;
  --bg-darker: #0f0f0f;
  --bg-card: #2a2a2a;
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-muted: #888888;
  --border-color: #333333;
  --success-color: #4caf50;
  --error-color: #f44336;
  --warning-color: #ff9800;
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1rem;
  font-weight: 600;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 8px 16px;
}

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.btn-full {
  width: 100%;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-darker));
  padding: 3rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* Filters */
.filters {
  padding: 2rem 0;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
}

.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.category-filters {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.sort-options select {
  background: var(--bg-dark);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
}

/* Newsletter */
.newsletter {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  padding: 4rem 0;
  text-align: center;
}

.newsletter-content h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.newsletter-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  max-width: 400px;
  margin: 0 auto;
  gap: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--bg-dark);
}

.newsletter-form input::placeholder {
  color: var(--text-muted);
}

.newsletter-form button {
  background: var(--bg-dark);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--bg-darker);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: var(--bg-darker);
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section li {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  padding: 8px 16px;
  background: var(--bg-card);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
}

/* Blog Styles */
.blog-section {
  padding: 3rem 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
}

.blog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.blog-card:hover::before {
  opacity: 0.05;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
  border-color: var(--primary-color);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image {
  transform: scale(1.1);
}

.blog-content {
  padding: 1.5rem;
  position: relative;
  z-index: 2;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.blog-author::before {
  content: "👤 ";
  margin-right: 4px;
}

.blog-content h2 {
  margin-bottom: 1rem;
}

.blog-content h2 a {
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.blog-content h2 a:hover {
  color: var(--primary-color);
}

.blog-content p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.read-more {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: var(--secondary-color);
  transform: translateX(4px);
}

/* Individual Blog Post */
.blog-post {
  padding: 2rem 0;
}

.blog-header {
  margin-bottom: 3rem;
}

.breadcrumb {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--primary-color);
}

.blog-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.blog-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.featured-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 2rem;
}

.blog-content {
  display: block;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.blog-text {
  color: var(--text-secondary);
  line-height: 1.8;
}

.blog-text .lead {
  font-size: 1.2rem;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 2rem;
  padding: 1rem;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.1),
    rgba(247, 147, 30, 0.1)
  );
  border-left: 4px solid var(--primary-color);
  border-radius: 0 8px 8px 0;
}

.blog-text h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin: 2rem 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-color);
  position: relative;
}

.blog-text h2::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--accent-color);
}

.blog-text h3 {
  color: var(--secondary-color);
  font-size: 1.4rem;
  margin: 1.5rem 0 1rem 0;
}

.blog-text h4 {
  color: var(--text-primary);
  font-size: 1.2rem;
  margin: 1rem 0 0.5rem 0;
}

.blog-text ul,
.blog-text ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.blog-text li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.blog-text strong {
  color: var(--text-primary);
}

.weapon-stats {
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.1),
    rgba(247, 147, 30, 0.1)
  );
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
  border: 1px solid var(--primary-color);
}

.weapon-stats p {
  color: var(--text-primary);
  font-weight: 600;
  margin: 0;
}

.blog-cta {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-dark));
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  margin: 3rem 0;
  border: 1px solid var(--primary-color);
}

.blog-cta h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.blog-cta p {
  margin-bottom: 1.5rem;
}

/* Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.related-posts,
.newsletter-sidebar,
.market-stats,
.weapon-quick-ref,
.building-checklist,
.trading-tips {
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

.related-posts h3,
.newsletter-sidebar h3,
.market-stats h3,
.weapon-quick-ref h3,
.building-checklist h3,
.trading-tips h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.related-post {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: var(--bg-dark);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.related-post:hover {
  background: var(--bg-darker);
  transform: translateX(4px);
}

.related-post img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.related-post h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.related-post h4 a {
  color: var(--text-primary);
}

.related-post h4 a:hover {
  color: var(--primary-color);
}

.related-post span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.newsletter-sidebar form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter-sidebar input {
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: var(--bg-dark);
  color: var(--text-primary);
}

.newsletter-sidebar input::placeholder {
  color: var(--text-muted);
}

.stat-item,
.ref-item,
.checklist-item,
.tip-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.stat-item:last-child,
.ref-item:last-child,
.checklist-item:last-child,
.tip-item:last-child {
  border-bottom: none;
}

.stat-value {
  color: var(--primary-color);
  font-weight: bold;
}

.checklist-item input[type="checkbox"] {
  margin-right: 0.5rem;
}

.tip-item {
  flex-direction: column;
  align-items: flex-start;
  padding: 1rem 0;
}

.tip-item strong {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: var(--bg-dark);
  color: var(--text-primary);
  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(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group small {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  display: block;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
}

/* Auth Pages */
.auth-section {
  padding: 4rem 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.auth-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.auth-form {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h1 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.form-header p {
  color: var(--text-secondary);
}

.auth-footer {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.auth-footer p {
  color: var(--text-secondary);
}

.auth-footer a {
  color: var(--primary-color);
  font-weight: 600;
}

.auth-benefits {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

.auth-benefits h3 {
  color: var(--primary-color);
  margin-bottom: 2rem;
  text-align: center;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}


/* Cart and Checkout */
.cart-section,
.checkout-section {
  padding: 3rem 0;
}

.cart-content,
.checkout-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-item {
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-item-info {
  flex: 1;
}

.cart-item-title {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cart-item-price {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quantity-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.quantity-input {
  width: 50px;
  text-align: center;
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 5px;
  border-radius: 4px;
}

.remove-btn {
  background: var(--error-color);
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
}

.cart-summary,
.order-summary {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.summary-card h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-align: center;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-row.total {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--primary-color);
  border-top: 2px solid var(--primary-color);
  margin-top: 1rem;
  padding-top: 1rem;
}

.empty-cart {
  text-align: center;
  padding: 4rem 2rem;
}

.empty-cart-content h2 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.empty-cart-content p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* Checkout specific */
.checkout-form {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

.form-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.form-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.form-section h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--bg-dark);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.payment-option:hover {
  background: var(--bg-darker);
}

.payment-option input[type="radio"] {
  margin: 0;
}

.payment-label {
  color: var(--text-primary);
  font-weight: 500;
}

.payment-details {
  background: var(--bg-dark);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1rem;
}

/* Contact Page */
.contact-section {
  padding: 3rem 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-form {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

.contact-form h2 {
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: var(--bg-dark);
  color: var(--text-primary);
  font-family: inherit;
  resize: vertical;
}

.contact-info h2 {
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.contact-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.contact-details h3 {
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.contact-details p {
  margin-bottom: 0.25rem;
  color: var(--primary-color);
  font-weight: 600;
}

.contact-details small {
  color: var(--text-muted);
}

.faq-section {
  margin-top: 2rem;
}

.faq-section h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.faq-item {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--bg-darker);
  border-radius: 8px;
}

.faq-item h4 {
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-size: 1rem;
}

.faq-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  z-index: 10000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  margin: 0 auto;
}

.cookie-content p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

/* Notifications */
.notification {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  background: var(--success-color);
  color: white;
  padding: 1rem 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  min-width: 300px;
  max-width: 90vw;
  text-align: center;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: auto !important;
}

.notification.show {
  transform: translateX(-50%) translateY(0);
}

.notification.error {
  background: linear-gradient(135deg, var(--error-color), #d32f2f);
}

.notification.warning {
  background: linear-gradient(135deg, var(--warning-color), #f57c00);
}

.notification.success {
  background: linear-gradient(135deg, var(--success-color), #388e3c);
}

/* Responsive notifications */
@media (max-width: 768px) {
  .notification {
    top: 10px;
    left: 10px;
    right: 10px;
    transform: translateY(-100%);
    min-width: auto;
    max-width: none;
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }

  .notification.show {
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .notification {
    padding: 10px;
    font-size: 0.85rem;
    border-radius: 8px;
  }
}

/* Loading States */
.loading {
  text-align: center;
  padding: 2rem;
  color: var(--text-muted);
}

.loading::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-color);
  border-top: 2px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 10px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.mt-4 {
  margin-top: 2rem;
}

.hidden {
  display: none;
}
.visible {
  display: block;
}

/* Responsive Design */
@media (max-width: 1440px) {
  .hero-content,
  .auth-content,
  .contact-content,
  .checkout-content,
  .cart-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .blog-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0 0 12px 12px;
    flex-direction: column;
    padding: 1rem;
    gap: 0.5rem;
  }

  .nav-menu.active {
    display: flex;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .category-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .category-filters {
    justify-content: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cart-item {
    flex-direction: column;
    text-align: center;
  }

  .cart-item-actions {
    justify-content: center;
  }

  .cookie-popup {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .cookie-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .blog-header h1 {
    font-size: 2rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .newsletter,
  .cookie-popup,
  .notification {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .blog-post {
    max-width: none;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --bg-dark: #000000;
    --bg-darker: #000000;
    --bg-card: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #ffffff;
    --border-color: #ffffff;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus Styles for Accessibility */
*:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

button:focus,
.btn:focus {
  outline: 2px solid var(--accent-color);
}

/* Screen Reader Only */
.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;
}

/* Enhanced Blog Styles */
.blog-section {
  padding: 4rem 0;
  position: relative;
}

.blog-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(255, 107, 53, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(247, 147, 30, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.blog-card {
  background: var(--bg-card);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid var(--border-color);
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.blog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.blog-card:hover::before {
  opacity: 0.05;
}

.blog-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
  border-color: var(--primary-color);
}

.blog-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
  position: relative;
  z-index: 2;
}

.blog-card:hover .blog-image {
  transform: scale(1.1);
}

.blog-content {
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.blog-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.blog-date,
.blog-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
}

.blog-date:hover,
.blog-author:hover {
  background: rgba(255, 107, 53, 0.2);
  transform: translateY(-2px);
}


.blog-author::before {
  content: "👤";
  font-size: 1rem;
}

.blog-content h2 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  line-height: 1.3;
  color: var(--text-primary);
}

.blog-content h2 a {
  color: var(--text-primary);
  transition: all 0.3s ease;
  text-decoration: none;
}

.blog-content h2 a:hover {
  color: var(--primary-color);
}

.blog-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 1rem;
}

.read-more {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid var(--primary-color);
  border-radius: 25px;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.read-more::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.read-more:hover::before {
  left: 100%;
}

.read-more:hover {
  background: var(--primary-color);
  color: white;
  transform: translateX(8px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Individual Blog Post Enhancements */
.blog-post {
  padding: 3rem 0;
  position: relative;
}

.blog-post::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(255, 107, 53, 0.02) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(247, 147, 30, 0.02) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.blog-header {
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 107, 53, 0.05);
  border-radius: 25px;
  border: 1px solid rgba(255, 107, 53, 0.1);
  display: inline-block;
}

.breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--secondary-color);
}

.blog-header h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--text-primary);
}

.blog-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  color: var(--text-muted);
  font-size: 1rem;
  flex-wrap: wrap;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 25px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
}

.blog-meta span:hover {
  background: rgba(255, 107, 53, 0.2);
  transform: translateY(-2px);
}

.featured-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.featured-image:hover {
  transform: scale(1.02);
}

.blog-content {
  display: block;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.blog-text {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.1rem;
}

.blog-text .lead {
  font-size: 1.3rem;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 3rem;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.1),
    rgba(247, 147, 30, 0.05)
  );
  border-left: 5px solid var(--primary-color);
  border-radius: 0 15px 15px 0;
  position: relative;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.1);
}

.blog-text h2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin: 3rem 0 1.5rem 0;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--primary-color);
  position: relative;
}

.blog-text h2::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 80px;
  height: 2px;
  background: var(--accent-color);
  border-radius: 2px;
}

.blog-text h3 {
  color: var(--secondary-color);
  font-size: 1.5rem;
  margin: 2rem 0 1rem 0;
  position: relative;
  padding-left: 1rem;
}

.blog-text h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60%;
  background: var(--secondary-color);
  border-radius: 2px;
}

.blog-text h4 {
  color: var(--text-primary);
  font-size: 1.3rem;
  margin: 1.5rem 0 0.75rem 0;
  padding: 0.5rem 1rem;
  background: rgba(255, 107, 53, 0.05);
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
}

.blog-text ul,
.blog-text ol {
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.blog-text li {
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
  position: relative;
  padding-left: 0.5rem;
}

.blog-text ul li::before {
  content: "▶";
  color: var(--primary-color);
  position: absolute;
  left: -1.5rem;
  font-size: 0.8rem;
}

.blog-text ol li {
  counter-increment: list-counter;
}

.blog-text ol {
  counter-reset: list-counter;
}

.blog-text ol li::before {
  content: counter(list-counter);
  color: white;
  font-weight: bold;
  position: absolute;
  left: -2rem;
  background: var(--primary-color);
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.blog-text strong {
  color: var(--text-primary);
  background: rgba(255, 107, 53, 0.1);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
}

.weapon-stats {
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.1),
    rgba(247, 147, 30, 0.1)
  );
  padding: 1.5rem;
  border-radius: 12px;
  margin: 2rem 0;
  border: 2px solid var(--primary-color);
  position: relative;
  overflow: hidden;
}

.weapon-stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.05) 50%,
    transparent 70%
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.weapon-stats p {
  color: var(--text-primary);
  font-weight: 600;
  margin: 0;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.blog-cta {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  margin: 4rem 0;
  border: 2px solid var(--primary-color);
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.blog-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 107, 53, 0.05) 50%,
    transparent 70%
  );
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.blog-cta h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.8rem;
  position: relative;
  z-index: 1;
}

.blog-cta p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.blog-cta .btn {
  position: relative;
  z-index: 1;
}

/* Enhanced Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.related-posts,
.newsletter-sidebar,
.market-stats,
.weapon-quick-ref,
.building-checklist,
.trading-tips {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.related-posts:hover,
.newsletter-sidebar:hover,
.market-stats:hover,
.weapon-quick-ref:hover,
.building-checklist:hover,
.trading-tips:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.15);
  border-color: var(--primary-color);
}

.related-posts h3,
.newsletter-sidebar h3,
.market-stats h3,
.weapon-quick-ref h3,
.building-checklist h3,
.trading-tips h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  text-align: center;
  position: relative;
  padding-bottom: 0.5rem;
}

.related-posts h3::after,
.newsletter-sidebar h3::after,
.market-stats h3::after,
.weapon-quick-ref h3::after,
.building-checklist h3::after,
.trading-tips h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: var(--primary-color);
  border-radius: 1px;
}

.related-post {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--bg-dark);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.related-post:hover {
  background: var(--bg-darker);
  transform: translateX(8px);
  border-color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
}

.related-post img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.related-post:hover img {
  transform: scale(1.1);
}

.related-post h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.related-post h4 a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-post h4 a:hover {
  color: var(--primary-color);
}

.related-post span {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.related-post span::before {
  content: "📅";
  font-size: 0.8rem;
}

/* Newsletter Sidebar Enhancement */
.newsletter-sidebar form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.newsletter-sidebar input {
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: var(--bg-dark);
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.newsletter-sidebar input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.newsletter-sidebar input::placeholder {
  color: var(--text-muted);
}

/* Stats and Reference Items */
.stat-item,
.ref-item,
.checklist-item,
.tip-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.stat-item:hover,
.ref-item:hover,
.checklist-item:hover {
  background: rgba(255, 107, 53, 0.05);
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 8px;
  border-bottom-color: var(--primary-color);
}

.stat-item:last-child,
.ref-item:last-child,
.checklist-item:last-child,
.tip-item:last-child {
  border-bottom: none;
}

.stat-value {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.1rem;
}

.tip-item {
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem 0;
  background: rgba(255, 107, 53, 0.05);
  margin-bottom: 1rem;
  border-radius: 8px;
  padding-left: 1rem;
  padding-right: 1rem;
}

.tip-item strong {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

/* Responsive Enhancements */
@media (max-width: 1024px) {
  .blog-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .blog-header h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .blog-header h1 {
    font-size: 2rem;
  }

  .blog-meta {
    flex-direction: column;
    gap: 1rem;
  }

  .featured-image {
    height: 300px;
  }

  .blog-text .lead {
    padding: 1.5rem;
    font-size: 1.1rem;
  }

  .blog-cta {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .blog-card {
    margin: 0 1rem;
  }

  .blog-content {
    padding: 1.5rem;
  }

  .blog-text h2 {
    font-size: 1.5rem;
  }

  .blog-text h3 {
    font-size: 1.3rem;
  }
}

/* Product Buttons */
.add-to-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(45deg, var(--primary-color), #00cc6a);
  color: var(--bg-dark);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  gap: 0.5rem;
}

.add-to-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 255, 136, 0.3);
}

.add-to-cart-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 255, 136, 0.2);
}

.add-to-cart-btn:disabled {
  background: var(--text-muted);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Notification Styles */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  width: 300px;
  animation: slideIn 0.3s ease-out;
}

@media (max-width: 768px) {
  .notification {
    top: auto;
    left: 20px;
    right: 20px;
    width: auto;
    margin: 0 auto;
  }
}

.btn-add-cart {
  flex: 1;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.btn-add-cart::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn-add-cart:hover::before {
  left: 100%;
}

.btn-add-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-add-cart:active {
  transform: translateY(0);
}

/* Legal Pages Styles */
.legal-section {
  padding: 3rem 0;
  min-height: 70vh;
}

.legal-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.legal-main {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.legal-intro {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.legal-intro h2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.legal-intro .lead {
  font-size: 1.2rem;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.6;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.1),
    rgba(247, 147, 30, 0.05)
  );
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

.legal-section-block {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.legal-section-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-section-block h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.legal-section-block h3 {
  color: var(--secondary-color);
  font-size: 1.4rem;
  margin: 2rem 0 1rem 0;
}

.legal-section-block h4 {
  color: var(--text-primary);
  font-size: 1.2rem;
  margin: 1.5rem 0 0.5rem 0;
}

.legal-section-block p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-section-block ul {
  color: var(--text-secondary);
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

.legal-section-block li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* Cookie Categories */
.cookie-category {
  background: var(--bg-dark);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.cookie-category:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
}

.cookie-category h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.cookie-info p {
  margin-bottom: 0.75rem;
}

.cookie-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.cookie-status.essential {
  background: rgba(76, 175, 80, 0.1);
  color: var(--success-color);
  border: 1px solid var(--success-color);
}

.cookie-status.optional {
  background: rgba(255, 152, 0, 0.1);
  color: var(--warning-color);
  border: 1px solid var(--warning-color);
}

.status-indicator {
  font-size: 1.2rem;
}

/* Gaming Cookies */
.gaming-cookies {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.gaming-cookie-item {
  background: var(--bg-dark);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.gaming-cookie-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

.gaming-cookie-item h4 {
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.gaming-cookie-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0;
}

/* Cookie Management */
.cookie-management {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}

.management-option {
  background: var(--bg-dark);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.management-option h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.management-option ul {
  margin-top: 1rem;
}

.cookie-controls {
  margin-top: 1.5rem;
}

/* Third Party Cookies */
.third-party-cookies {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.third-party-item {
  background: var(--bg-dark);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.third-party-item:hover {
  border-color: var(--primary-color);
  transform: translateX(4px);
}

.third-party-item h4 {
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.third-party-item p {
  margin-bottom: 0.75rem;
}

.third-party-item a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: underline;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-dark);
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

/* Legal Footer */
.legal-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--primary-color);
  text-align: center;
}

.legal-footer p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

/* Legal Sidebar */
.legal-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-widget {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.sidebar-widget:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
  border-color: var(--primary-color);
}

.sidebar-widget h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  text-align: center;
  position: relative;
  padding-bottom: 0.5rem;
}

.sidebar-widget h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--primary-color);
  border-radius: 1px;
}

/* Legal Navigation */
.legal-nav {
  list-style: none;
  padding: 0;
}

.legal-nav li {
  margin-bottom: 0.75rem;
}

.legal-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  display: block;
  transition: all 0.3s ease;
}

.legal-nav a:hover {
  background: rgba(255, 107, 53, 0.1);
  color: var(--primary-color);
  transform: translateX(4px);
}

/* Related Links */
.related-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-dark);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-link:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
}

.link-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.related-link h4 {
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.related-link p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

/* Cookie Summary */
.cookie-summary {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: var(--bg-dark);
  border-radius: 6px;
  border: 1px solid var(--border-color);
}

.summary-label {
  color: var(--text-secondary);
  font-weight: 500;
}

.summary-value {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Cookie Preference Modal */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10001;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.cookie-modal-content {
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2rem 1rem 2rem;
  border-bottom: 1px solid var(--border-color);
}

.cookie-modal-header h2 {
  color: var(--primary-color);
  margin: 0;
  font-size: 1.5rem;
}

.cookie-modal-close {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 2rem;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: var(--bg-dark);
  color: var(--primary-color);
}

.cookie-modal-body {
  padding: 2rem;
}

.cookie-modal-body > p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cookie-preference-item {
  background: var(--bg-dark);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  margin-bottom: 1.5rem;
}

.preference-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.preference-header h4 {
  color: var(--text-primary);
  margin: 0;
  font-size: 1.1rem;
}

.preference-toggle {
  position: relative;
}

.preference-toggle input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-label {
  display: inline-block;
  width: 50px;
  height: 24px;
  background: var(--border-color);
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-label::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.preference-toggle input[type="checkbox"]:checked + .toggle-label {
  background: var(--primary-color);
}

.preference-toggle input[type="checkbox"]:checked + .toggle-label::after {
  transform: translateX(26px);
}

.preference-toggle input[type="checkbox"]:disabled + .toggle-label {
  background: var(--success-color);
  cursor: not-allowed;
}

.preference-toggle input[type="checkbox"]:disabled + .toggle-label::after {
  background: white;
}

.cookie-preference-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

.cookie-modal-footer {
  display: flex;
  gap: 0.75rem;
  padding: 1rem 2rem 2rem 2rem;
  border-top: 1px solid var(--border-color);
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cookie-modal-footer .btn {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Responsive Design for Legal Pages */
@media (max-width: 1024px) {
  .legal-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .legal-main {
    padding: 2rem;
  }

  .cookie-management {
    grid-template-columns: 1fr;
  }

  .gaming-cookies {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .legal-main {
    padding: 1.5rem;
  }

  .legal-intro .lead {
    padding: 1rem;
    font-size: 1.1rem;
  }

  .cookie-category {
    padding: 1.5rem;
  }

  .management-option {
    padding: 1.5rem;
  }

  .cookie-modal {
    padding: 1rem;
  }

  .cookie-modal-content {
    max-height: 95vh;
  }

  .cookie-modal-header,
  .cookie-modal-body {
    padding: 1.5rem;
  }

  .cookie-modal-footer {
    padding: 1rem 1.5rem 1.5rem 1.5rem;
    flex-direction: column;
  }

  .cookie-modal-footer .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .legal-section {
    padding: 2rem 0;
  }

  .legal-main {
    padding: 1rem;
  }

  .legal-intro h2 {
    font-size: 1.5rem;
  }

  .legal-section-block h2 {
    font-size: 1.4rem;
  }

  .cookie-preference-item {
    padding: 1rem;
  }

  .preference-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

.summary-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
