:root {
  --primary: #1a1a2e; /* Dark Navy */
  --secondary: #e94560; /* Blood Red */
  --accent: #f9a828; /* Gold */
  --light: #f8f8f8;
  --dark: #0f0f1a;
  --neon: #00f7ff; /* Neon Blue */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background: var(--dark);
  color: var(--light);
  overflow-x: hidden;
}

/* HEADER */
header {
  background: linear-gradient(135deg, var(--primary), var(--dark));
  padding: 1rem 0;
  border-bottom: 3px solid var(--secondary);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.logo {
  font-size: 2.8rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(to right, var(--accent), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(233, 69, 96, 0.3);
}

.tagline {
  text-align: center;
  font-style: italic;
  color: var(--neon);
  letter-spacing: 1px;
  margin-top: 0.5rem;
}

/* NAV */
nav {
  background: rgba(10, 10, 20, 0.9);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 2rem;
}

nav a {
  color: var(--light);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
}

nav a:hover {
  color: var(--accent);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 80%;
}

/* PRODUCTS SECTION */
.container {
  max-width: 1400px;
  margin: 2rem auto;
  padding: 0 2rem;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--accent);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--secondary), var(--accent));
  border-radius: 3px;
}

.shipping-banner {
  background: var(--secondary);
  color: white;
  text-align: center;
  padding: 0.8rem;
  font-weight: bold;
  margin-bottom: 2rem;
  border-radius: 5px;
}

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

.product-card {
  background: linear-gradient(145deg, #1e1e2e, #252540);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(233, 69, 96, 0.2);
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(233, 69, 96, 0.2);
  border: 1px solid var(--secondary);
}

.product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--secondary);
  color: white;
  padding: 0.3rem 0.6rem;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: bold;
  z-index: 2;
}

.product-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.product-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
}

.product-info {
  padding: 1.5rem;
}

.product-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.product-desc {
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.product-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--neon);
  margin-bottom: 1rem;
}

.product-price span {
  font-size: 0.9rem;
  color: #777;
}

.quantity-control {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.quantity-btn {
  background: var(--secondary);
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s;
}

.quantity-btn:hover {
  background: var(--accent);
}

.quantity-input {
  width: 60px;
  text-align: center;
  margin: 0 0.5rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 5px;
}

.add-to-cart {
  background: linear-gradient(to right, var(--secondary), var(--accent));
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  width: 100%;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.add-to-cart:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
}

/* HOW IT WORKS SECTION */
.how-it-works {
  background: linear-gradient(145deg, #1e1e2e, #252540);
  padding: 2rem;
  border-radius: 10px;
  margin: 3rem 0;
  border: 1px solid rgba(233, 69, 96, 0.3);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(233, 69, 96, 0.2);
}

.step-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.step-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.step-desc {
  color: #aaa;
  font-size: 0.9rem;
}

/* CART SECTION */
.cart-section {
  background: linear-gradient(145deg, #1e1e2e, #252540);
  padding: 2rem;
  border-radius: 10px;
  margin-top: 3rem;
  border: 1px solid rgba(233, 69, 96, 0.3);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.cart-title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
  text-align: center;
  position: relative;
}

.cart-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 3px;
  background: linear-gradient(to right, var(--secondary), var(--accent));
}

.cart-items {
  margin-bottom: 2rem;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-name {
  font-weight: bold;
  color: var(--accent);
}

.cart-item-quantity {
  color: #aaa;
  font-size: 0.9rem;
}

.cart-item-price {
  font-weight: bold;
}

.cart-total {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: right;
  margin-top: 1.5rem;
  color: var(--neon);
}
.cart-item-actions {
  display: flex;
  gap: 0.5rem;
}

.edit-btn {
  background: var(--accent);
  color: var(--dark);
  border: none;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: bold;
}

.remove-btn {
  background: var(--secondary);
  color: white;
  border: none;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: bold;
}

.disclaimer {
  font-size: 0.9rem;
  color: var(--accent);
  margin-top: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  text-align: center;
  font-style: italic;
}
.shipping-note {
  text-align: right;
  color: var(--accent);
  font-style: italic;
  margin-top: 0.5rem;
}

/* ORDER FORM */
.order-form {
  margin-top: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: var(--accent);
}

input, textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  color: white;
  font-size: 1rem;
  transition: all 0.3s;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.15);
}

.submit-btn {
  background: linear-gradient(to right, var(--secondary), var(--accent));
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
  margin-top: 1rem;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, var(--primary), var(--dark));
  padding: 2rem 0;
  text-align: center;
  margin-top: 3rem;
  border-top: 3px solid var(--secondary);
}

.disclaimer {
  font-size: 0.8rem;
  color: #777;
  margin-top: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .steps {
    flex-direction: column;
  }
}
