@import url('https://fonts.googleapis.com/css?family=Inconsolata');

/* Hide scrollbar for all browsers */
html {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
}

html::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

body {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
}

body::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

* {
  margin: 0;
  padding: 0;
  left: 300px;
  right: 300px;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  background: #0a0a0a;
  font-family: 'Inconsolata', monospace;
  overflow-x: hidden;
  overflow-y: auto;
}

/* Loading Screen Styles */
.wrapper {
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 400px;
  height: 400px;
}

.loader-outer {
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 30px;
  border-radius: 20px;
  border-bottom: 1px solid #0a0a0a;
  background: #111111;
  box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.5);
  overflow: hidden;
  z-index: 1;
}

.loader-inner {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: -100px;
  width: auto;
  height: 61px;
  color: crimson;
  text-align: center;
  text-shadow: 0 0 20px crimson;
  font-size: 60px;
  z-index: 2;
  animation: load 2s infinite linear;
}

.wrapper h1 {
  position: absolute;
  margin: auto;
  top: 100px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 85px;
  height: 40px;
  text-transform: uppercase;
  text-align: left;
  text-shadow: 0 0 20px crimson;
  letter-spacing: 0.1em;
  font-size: 14px;
  font-weight: lighter;
  color: crimson;
  font-family: 'Inconsolata', monospace;
}

.wrapper h1 span {
  display: none;
}

.wrapper h1::after {
  animation: txt 1s infinite;
  content: "";
}

@keyframes load {
  0% {
    left: -100px;
  }
  100% {
    left: 220px;
  }
}

@keyframes txt {
  0% {
    content: "LOADING";
  }
  35% {
    content: "LOADING.";
  }
  65% {
    content: "LOADING..";
  }
  100% {
    content: "LOADING...";
  }
}

/* Logo Styles */
.logo {
  font-family: 'Inconsolata', monospace;
  font-size: 35px;
  font-weight: 700;
  color: crimson;
  text-shadow: 0 0 15px rgba(220, 10, 10, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Navigation Bar Styles */
.nav-bar {
  position: absolute;
  top: 50px;
  left: 20px;
  right: 20px;
  height: 95px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  z-index: 1000;
  transform: translateY(-200px);
  opacity: 0;
  transition: all 0.8s ease;
  max-width: 1330px;
  margin-left: auto;
  margin-right: auto;
}

.nav-bar.show {
  transform: translateY(0);
  opacity: 1;
}

/* For product pages, show nav bar immediately */
.nav-bar.product-page {
  transform: translateY(0);
  opacity: 1;
}

.nav-left {
  flex: 1;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0;
}

.nav-links a {
    font-family: 'Inconsolata', monospace;
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nav-links a:hover {
  color: crimson;
  text-shadow: 0 0 10px rgba(220, 10, 10, 0.5);
}

.nav-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
}

/* Hero Section */
.hero-section {
  padding: 120px 50px 80px 50px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-container {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 7rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 31px;
  line-height: 0.9;
  text-align: center;
}

.typing-text {
  border-right: 10px solid crimson;
  border-bottom: 10px;
  animation: blink-caret 1s step-end infinite;
  padding-right: 10px;
}

@keyframes blink-caret {
  from, to { border-color: transparent; }
  50% { border-color: crimson; }
}

.hero-highlight {
  color: crimson;
  text-shadow: 0 0 30px crimson;
}

.hero-description {
  font-size: 1.2rem;
  color: #cccccc;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-description.show {
  opacity: 0.7;
}

/* Products Section Styles */
.products-section {
  padding: 120px 50px 80px 50px;
  min-height: 100vh;
}

.products-container {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 100px;
}

.section-title {
  font-family: 'Inconsolata', monospace;
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

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

.product-card {
  
  border-radius: 22px;
  padding: 20px 20px;
  text-align: center;
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-card {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
}

.product-card.show {
  opacity: 1;
  transform: translateY(0);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.product-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  display: block;
}

.product-image {
  margin-bottom: 10px;
  display: block;
}

.product-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.product-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 0 5px;
}

.price-range {
  font-family: 'Inconsolata', monospace;
  font-size: 1.2rem;
  font-weight: 700;
  color: crimson;
  text-shadow: 0 0 10px rgba(220, 10, 10, 0.5);
}

.product-count {
  font-family: 'Inconsolata', monospace;
  font-size: 0.9rem;
  color: #aaaaaa;
  font-weight: 500;
}

.view-details-btn {
  background: transparent;
  border: 1px solid crimson;
  color: crimson;
  padding: 10px 20px;
  border-radius: 8px;
  font-family: 'Inconsolata', monospace;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  width: 100%;
  box-sizing: border-box;
}

.view-details-btn:hover {
  background: rgba(220, 10, 10, 0.1);
  box-shadow: 0 0 15px rgba(220, 10, 10, 0.3);
}

/* Purchase Section Styles */
.purchase-section {
  padding: 200px 50px 80px 50px;
  min-height: 100vh;
}

.purchase-container {
  max-width: 1320px;
  margin: 0 auto;
}

.purchase-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 40px;
}

.product-banner-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.product-image-large {
  text-align: center;
}

.product-image-large img {
  width: 100%;
  border-radius: 20px;
}

.product-info-section {
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.product-info-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  text-align: center;
}

.product-info-section .description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
  text-align: center;
  line-height: 1.6;
}

.product-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.feature-item i {
  color: crimson;
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

.product-stats {
  display: flex;
  justify-content: space-around;
  text-align: center;
  margin-top: 20px;
}

.stat-item {
  color: rgba(255, 255, 255, 0.8);
}

.stat-item .number {
  font-size: 1.5rem;
  font-weight: 700;
  color: crimson;
  display: block;
}

.stat-item .label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Purchase Sidebar Container */
.purchase-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Price Picker Styles */
.price-picker {
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.price-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.selected-price {
  font-size: 2rem;
  font-weight: 700;
  color: crimson;
  text-shadow: 0 0 15px rgba(220, 10, 10, 0.5);
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #00ff88;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-left: 65px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #00ff88;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 255, 136, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 136, 0);
  }
}

.duration-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 25px;
}

.duration-option {
  display: flex;
  align-items: center;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.duration-option:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.duration-option.selected {
  background: rgba(220, 20, 60, 0.2);
  border-color: crimson;
}

.duration-option input[type="radio"] {
  display: none;
}

.duration-option label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  flex: 1;
}

.duration-option .price {
  color: crimson;
  font-weight: 700;
  font-size: 1.1rem;
}

.purchase-btn {
  width: 100%;
  background: crimson;
  color: white;
  border: none;
  padding: 18px 30px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.purchase-btn:hover {
  background: #a70000;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
}

/* Footer Styles */
.footer {
  margin: 0 20px;
  padding: 30px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.footer-left {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  font-family: 'Inconsolata', monospace;
  font-size: 28px;
  font-weight: 700;
  color: crimson;
  text-shadow: 0 0 15px rgba(220, 10, 10, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-us p {
  color: #cccccc;
  font-family: 'Inconsolata', monospace;
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 400px;
}

.social-buttons {
  display: flex;
  gap: 15px;
}

.social-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  font-size: 20px;
}

.social-btn:hover {
  background: rgba(220, 10, 10, 0.2);
  border-color: crimson;
  color: crimson;
  box-shadow: 0 5px 15px rgba(220, 10, 10, 0.3);
}

.footer-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.policies {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.policy-link {
  color: #cccccc;
  text-decoration: none;
  font-family: 'Inconsolata', monospace;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.policy-link:hover {
  color: crimson;
  text-shadow: 0 0 10px rgba(220, 10, 10, 0.5);
}

.product-card h3 {
  font-family: 'Inconsolata', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.product-card p {
  color: #cccccc;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
  font-family: 'Inconsolata', monospace;
}

.product-price {
  font-family: 'Inconsolata', monospace;
  font-size: 1.8rem;
  font-weight: 700;
  color: crimson;
  margin-bottom: 25px;
  text-shadow: 0 0 15px rgba(220, 10, 10, 0.5);
}

.product-btn {
  background: linear-gradient(90deg, #e52d27 0%, #b31217 100%);
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-family: 'Inconsolata', monospace;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(229, 45, 39, 0.3);
}

.product-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 45, 39, 0.4);
}

/* ---- reset ---- */
body {
  margin: 0;
  font: normal 75% Arial, Helvetica, sans-serif;
}

canvas {
  display: block;
}

/* ---- particles.js container ---- */
#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #0a0a0a;
  background-image: url("");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  z-index: -1;
  filter: blur(1.5px);
}



.basket-btn {
  width: 50px;
  height: 50px;
  background: crimson;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(220, 10, 10, 0.3);
}

.basket-btn:hover {
  
  box-shadow: 0 0 20px rgba(220, 10, 10, 0.5);
}

.basket-btn i {
  color: white;
  font-size: 20px;
}

/* Hamburger Menu - Hidden on Desktop */
.hamburger-menu {
  display: none;
}

/* Mobile Navigation - Hidden on Desktop */
.mobile-nav {
  display: none;
}

/* Product Details Layout */
.product-details {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 30px;
}

.detail-section.supports {
    grid-column: 1;
    grid-row: 1;
}

.detail-section.aimbot {
    grid-column: 2;
    grid-row: 1 / 3;
}

.detail-section.visuals {
    grid-column: 1;
    grid-row: 2 / 4;
}

.detail-section.settings {
    grid-column: 2;
    grid-row: 3;
}

.detail-section {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.detail-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.detail-header i {
    color: crimson;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.detail-header h3 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-list li {
    color: #cccccc;
    font-size: 14px;
    padding: 5px;
    padding-left: 32px;
}

.detail-list li::before {
    content: "•";
    color: crimson;
    font-weight: bold;
    position: absolute;
    left: 27px;
}

/* Move product stats under price picker */
.price-picker .product-stats {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Product Page Reviews Section */
.product-reviews-section {
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(5px) saturate(180%);
    -webkit-backdrop-filter: blur(5px) saturate(180%);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.reviews-title {
    color: white;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.review-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-avatar {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.reviewer-name {
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars i {
    color: #ffd700;
    font-size: 14px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.review-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 14px;
    font-style: italic;
}

.review-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    align-self: flex-end;
}

/* Home Page Reviews Section */
.homepage-reviews {
    padding: 120px 50px 80px 50px;
    min-height: 100vh;
}

.homepage-reviews-container {
    max-width: 1300px;
    margin: 0 auto;
}

.homepage-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.review-card {
    border-radius: 22px;
    padding: 25px;
    backdrop-filter: blur(5px) saturate(180%);
    -webkit-backdrop-filter: blur(5px) saturate(180%);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.review-card.show {
    opacity: 1;
    transform: translateY(0);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.review-card .review-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.3);
}

.review-card .review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-card .review-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.review-card .review-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.review-card .reviewer-name {
    color: white;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.review-card .review-stars {
    display: flex;
    gap: 3px;
}

.review-card .review-stars i {
    color: #ffd700;
    font-size: 16px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.review-card .review-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 15px;
    font-style: italic;
    text-align: center;
    max-width: 300px;
}

.review-card .review-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
}

/* Show More Button */
.show-more-btn {
    display: block;
    margin: 40px auto 0 auto;
    padding: 15px 30px;
    background: linear-gradient(135deg, #dc143c, #b30000);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.show-more-btn:hover {
    background: linear-gradient(135deg, #b30000, #8b0000);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

.show-more-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(220, 20, 60, 0.3);
}

/* Contact Section */
.contact-section {
    padding: 120px 50px 80px 50px;
    min-height: 100vh;
}

.contact-container {
    max-width: 1300px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    border-radius: 20px;
    backdrop-filter: blur(5px) saturate(180%);
    -webkit-backdrop-filter: blur(5px) saturate(180%);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc143c, #b30000);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 24px;
    color: white;
}

.contact-details h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: 'Inconsolata', monospace;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.contact-link {
    color: #dc143c;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(220, 20, 60, 0.5);
}

.contact-form {
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(5px) saturate(180%);
    -webkit-backdrop-filter: blur(5px) saturate(180%);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contact-form h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    font-family: 'Inconsolata', monospace;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.95rem;
    font-family: 'Inconsolata', monospace;
    transition: all 0.3s ease;
    resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc143c;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}


.submit-btn {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #dc143c, #b30000);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inconsolata', monospace;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #b30000, #8b0000);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(220, 20, 60, 0.3);
}

/* Responsive Design for Contact Section */
/* Mobile Styles */
@media (max-width: 768px) {
    /* Reset the global left/right margins for mobile */
    * {
        left: 0;
        right: 0;
    }

    /* Navigation Bar Mobile */
    .nav-bar {
        position: absolute;
        top: 20px;
        left: 20px;
        right: 20px;
        height: 70px;
        padding: 0 20px;
        z-index: 1000;
    }

    .nav-right {
        position: relative;
    }

    .nav-links {
        display: none;
    }

    .basket-btn {
        display: none;
    }

    .logo {
        font-size: 18px;
        white-space: nowrap;
    }

    /* Hamburger Menu */
    .hamburger-menu {
        display: block;
        cursor: pointer;
        z-index: 1001;
    }

    .hamburger-icon {
        width: 25px;
        height: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .hamburger-icon span {
        width: 100%;
        height: 3px;
        background-color: #ffffff;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .hamburger-menu.active .hamburger-icon span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger-menu.active .hamburger-icon span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active .hamburger-icon span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Mobile Navigation Menu */
    .mobile-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .mobile-nav.active {
        opacity: 1;
        visibility: visible;
    }

    /* Prevent scrolling when mobile menu is open */
    body.mobile-menu-open {
        overflow: hidden;
    }

    .mobile-nav-links {
        list-style: none;
        text-align: center;
    }

    .mobile-nav-links li {
        margin: 30px 0;
    }

    .mobile-nav-links a {
        color: #ffffff;
        text-decoration: none;
        font-size: 24px;
        font-weight: 600;
        transition: color 0.3s ease;
    }

    .mobile-nav-links a:hover {
        color: #a70000;
    }

    /* Sections - Hero at 100vh, others at 50vh */
    .hero-section {
        min-height: 100vh;
        padding: 60px 20px 40px 20px;
    }

    .products-section,
    .homepage-reviews,
    .contact-section {
        min-height: 50vh;
        padding: 60px 20px 40px 20px;
    }

    /* Hero Section Mobile */
    .hero-container {
        max-width: 100%;
        padding: 0 20px;
    }

    .hero-title {
        font-size: 3.5rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1rem;
        margin-top: 20px;
    }

    /* Products Section Mobile */
    .products-container {
        padding-top: 80px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

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

    .product-card {
        margin: 0 auto;
    }

    .product-image img {
        height: 200px;
    }

    .product-info {
        padding: 15px;
    }

    .price-range {
        font-size: 1.2rem;
    }

    .product-count {
        font-size: 0.9rem;
    }

    .view-details-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    /* Reviews Section Mobile */
    .homepage-reviews {
        padding: 80px 20px 60px 20px;
    }

    .homepage-reviews-container {
        max-width: 100%;
        padding: 0 10px;
    }

    .homepage-reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
        max-width: 100%;
    }

    .review-card {
        padding: 20px;
        margin: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .review-card .review-content {
        margin-left: 0;
        width: 100%;
    }

    .review-card .reviewer-name {
        font-size: 1rem;
    }

    .review-card .review-text {
        font-size: 0.9rem;
        line-height: 1.4;
        max-width: 100%;
    }

    .review-card .review-avatar {
        width: 60px;
        height: 60px;
    }

    /* Contact Section Mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .contact-icon {
        align-self: center;
        margin-bottom: 15px;
    }

    .contact-form {
        padding: 20px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 1rem;
    }

    .submit-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }

    /* Footer Mobile */
    .footer {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        margin: 0 15px;
    }

    .footer-left,
    .footer-right {
        margin-bottom: 20px;
    }

    .footer-logo {
        font-size: 24px;
    }

    .about-us p {
        max-width: 100%;
        font-size: 0.85rem;
    }

    .social-buttons {
        justify-content: center;
        margin-top: 20px;
    }

    .policies {
        display: none;
    }

    /* Product Pages Mobile Optimization */
    .purchase-section {
        padding: 120px 20px 40px 20px;
        min-height: 50vh;
    }

    .purchase-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .product-banner-section {
        order: 1;
    }

    .purchase-sidebar {
        order: 2;
    }

    .product-reviews-section {
        order: 3;
    }

    .product-info-section {
        flex-direction: column;
        gap: 20px;
        padding: 15px;
    }

    .product-image-large {
        width: 100%;
        margin: 0 auto;
    }

    .product-details {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .detail-section {
        margin-bottom: 20px;
    }

    .detail-header h3 {
        font-size: 14px;
    }

    .detail-list {
        font-size: 12px;
    }

    .purchase-form {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .duration-options {
        gap: 10px;
    }

    .duration-option {
        padding: 12px 16px;
        font-size: 14px;
    }

    .duration-option label {
        font-size: 0.9rem;
    }

    .duration-option .price {
        font-size: 0.8rem;
    }

    .purchase-btn {
        width: 100%;
        padding: 15px;
        font-size: 16px;
    }

}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .homepage-reviews {
        padding: 60px 15px 40px 15px;
    }

    .homepage-reviews-container {
        padding: 0 5px;
    }

    .homepage-reviews-grid {
        gap: 15px;
    }

    .review-card {
        padding: 15px;
    }

    .review-card .reviewer-name {
        font-size: 0.9rem;
    }

    .review-card .review-text {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .review-card .review-avatar {
        width: 50px;
        height: 50px;
    }

    .review-card .review-stars i {
        font-size: 14px;
    }
}


