:root {
  --primary-color: #ff4500;
  --secondary-color: #2b2d42;
  --accent-color: #5762d5;
  --background-color: #1a1a2e;
  --text-color: #edf2f4;
  --card-bg: #252540;
  --hover-color: #ff6a3d;
  --footer-bg: #131325;
  --success-color: #4caf50;
  --error-color: #f44336;
  --border-radius: 8px;
  --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  --transition: all 0.3s ease;
}

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

body {
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--text-color);
  transition: var(--transition);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.text-center {
  text-align: center;
}

/* Header Styles */
header {
  background-color: var(--secondary-color);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  margin-right: 10px;
  border-radius: 50%;
  object-fit: cover;
}

.logo h1 {
  font-size: 1.8rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 25px;
}

nav ul li a {
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
}

nav ul li a:hover {
  color: var(--primary-color);
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

nav ul li a:hover::after {
  width: 100%;
}

.cart-icon {
  position: relative;
  cursor: pointer;
}

.cart-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--text-color);
  transition: var(--transition);
}

.cart-icon:hover svg {
  fill: var(--primary-color);
}

.cart-count {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: var(--primary-color);
  color: white;
  font-size: 12px;
  font-weight: bold;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/logo.jpg');
  background-size: cover;
  background-position: center;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeInDown 1s ease;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease;
}

.hero-btn {
  background-color: var(--primary-color);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  animation: fadeIn 1.5s ease;
}

.hero-btn:hover {
  background-color: var(--hover-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: #212140;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 50px;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
}

.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.feature-card p {
  color: #b8b8b8;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 60px;
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.stat-item {
  text-align: center;
  margin: 15px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.stat-text {
  font-size: 1rem;
  color: #b8b8b8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-container {
  text-align: center;
  margin-top: 60px;
}

.cta-btn {
  background-color: var(--primary-color);
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-btn:hover {
  background-color: var(--hover-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* About Products Section */
.about-products {
  padding: 80px 0;
  background-color: var(--background-color);
}

.about-products-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.about-products p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-products h3 {
  margin: 30px 0 15px;
  color: var(--primary-color);
}

.quality-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.quality-badge {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background-color: rgba(255, 69, 0, 0.1);
  border: 1px solid var(--primary-color);
  border-radius: 30px;
}

.quality-badge svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-color);
  margin-right: 10px;
}

/* Products Section */
.products {
  padding: 80px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}

.product-info {
  padding: 20px;
}

.product-name {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: white;
}

.product-price {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.product-description {
  color: #b8b8b8;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-actions {
  display: flex;
  gap: 10px;
}

.add-to-cart, .buy-now {
  padding: 10px 15px;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  flex: 1;
}

.add-to-cart {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.add-to-cart:hover {
  background-color: var(--primary-color);
  color: white;
}

.buy-now {
  background-color: var(--primary-color);
  color: white;
}

.buy-now:hover {
  background-color: var(--hover-color);
}

/* Single Product Page */
.product-details {
  padding: 80px 0;
}

.product-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.product-gallery {
  height: 100%;
}

.product-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-content {
  padding: 40px;
}

.product-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.product-detail-price {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: bold;
}

.product-detail-description {
  margin-bottom: 30px;
  line-height: 1.8;
}

.product-meta {
  margin-bottom: 30px;
}

.meta-item {
  display: flex;
  margin-bottom: 10px;
}

.meta-label {
  font-weight: 600;
  width: 120px;
  color: var(--primary-color);
}

.quantity-selector {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.quantity-selector label {
  margin-right: 15px;
  font-weight: 600;
}

.quantity-input {
  display: flex;
  align-items: center;
}

.quantity-btn {
  width: 40px;
  height: 40px;
  background-color: var(--card-bg);
  border: 1px solid #555;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

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

.quantity-value {
  width: 60px;
  height: 40px;
  text-align: center;
  background-color: var(--card-bg);
  border: 1px solid #555;
  border-left: none;
  border-right: none;
  color: white;
  font-size: 1.1rem;
}

.product-detail-actions {
  display: flex;
  gap: 15px;
}

.add-to-cart-detail, .buy-now-detail {
  padding: 15px 25px;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  flex: 1;
}

.add-to-cart-detail {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.add-to-cart-detail:hover {
  background-color: var(--primary-color);
  color: white;
}

.buy-now-detail {
  background-color: var(--primary-color);
  color: white;
}

.buy-now-detail:hover {
  background-color: var(--hover-color);
}

/* Cart Page */
.cart-page {
  padding: 80px 0;
}

.cart-empty {
  text-align: center;
  padding: 50px;
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.cart-empty svg {
  width: 80px;
  height: 80px;
  fill: var(--primary-color);
  margin-bottom: 20px;
}

.cart-empty h2 {
  margin-bottom: 20px;
}

.cart-empty p {
  margin-bottom: 30px;
  color: #b8b8b8;
}

.cart-items {
  margin-bottom: 30px;
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto auto;
  gap: 20px;
  align-items: center;
  background-color: var(--card-bg);
  padding: 20px;
  border-radius: var(--border-radius);
  margin-bottom: 15px;
  box-shadow: var(--box-shadow);
}

.cart-item-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.cart-item-details h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

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

.cart-item-quantity {
  display: flex;
  align-items: center;
}

.cart-quantity-btn {
  width: 30px;
  height: 30px;
  background-color: transparent;
  border: 1px solid #555;
  color: white;
  cursor: pointer;
  transition: var(--transition);
}

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

.cart-quantity-value {
  width: 40px;
  height: 30px;
  text-align: center;
  background-color: transparent;
  border: 1px solid #555;
  border-left: none;
  border-right: none;
  color: white;
}

.cart-item-remove {
  background-color: transparent;
  border: none;
  color: #f44336;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition);
}

.cart-item-remove:hover {
  color: #d32f2f;
}

.cart-summary {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  font-size: 1.2rem;
}

.cart-total-price {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.5rem;
}

.checkout-btn {
  background-color: var(--primary-color);
  color: white;
  padding: 15px;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  text-transform: uppercase;
}

.checkout-btn:hover {
  background-color: var(--hover-color);
}

.continue-shopping {
  display: block;
  text-align: center;
  margin-top: 20px;
  color: var(--text-color);
  text-decoration: underline;
  transition: var(--transition);
}

.continue-shopping:hover {
  color: var(--primary-color);
}

/* Checkout Page */
.checkout-page {
  padding: 80px 0;
}

.checkout-container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 30px;
}

.checkout-form {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

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

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

.form-control {
  width: 100%;
  padding: 12px 15px;
  background-color: #333355;
  border: 1px solid #555;
  border-radius: var(--border-radius);
  color: white;
  font-size: 1rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  outline: none;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row .form-group {
  flex: 1;
}

.checkout-summary {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  align-self: start;
}

.checkout-items {
  margin-bottom: 25px;
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #444;
}

.checkout-item-name {
  flex: 1;
}

.checkout-item-quantity {
  color: #999;
  margin: 0 15px;
}

.checkout-item-price {
  font-weight: 600;
}

.checkout-subtotal, .checkout-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.checkout-total {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid #444;
}

.checkout-total-price {
  color: var(--primary-color);
}

.place-order-btn {
  background-color: var(--primary-color);
  color: white;
  padding: 15px;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  text-transform: uppercase;
  margin-top: 20px;
}

.place-order-btn:hover {
  background-color: var(--hover-color);
}

/* Success Page */
.success-page {
  padding: 100px 0;
  text-align: center;
}

.success-container {
  max-width: 700px;
  margin: 0 auto;
  background-color: var(--card-bg);
  padding: 50px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.success-icon {
  width: 100px;
  height: 100px;
  background-color: var(--success-color);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 30px;
}

.success-icon svg {
  width: 50px;
  height: 50px;
  fill: white;
}

.success-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--success-color);
}

.success-message {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.success-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.success-btn {
  padding: 12px 25px;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.success-home-btn {
  background-color: var(--primary-color);
  color: white;
}

.success-home-btn:hover {
  background-color: var(--hover-color);
}

/* Contact Page */
.contact-page {
  padding: 80px 0;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  background-color: var(--card-bg);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.contact-info-title {
  font-size: 2rem;
  margin-bottom: 30px;
  position: relative;
}

.contact-info-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-info-icon {
  margin-right: 15px;
  width: 24px;
  height: 24px;
  fill: var(--primary-color);
}

.contact-info-content h3 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.contact-info-content p, .contact-info-content a {
  color: #b8b8b8;
  transition: var(--transition);
}

.contact-info-content a:hover {
  color: var(--primary-color);
}

.contact-form {
  background-color: var(--card-bg);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.contact-form-title {
  font-size: 2rem;
  margin-bottom: 30px;
  position: relative;
}

.contact-form-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

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

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

.contact-form .form-control {
  width: 100%;
  padding: 12px 15px;
  background-color: #333355;
  border: 1px solid #555;
  border-radius: var(--border-radius);
  color: white;
  font-size: 1rem;
  resize: vertical;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  outline: none;
}

.contact-form-btn {
  background-color: var(--primary-color);
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}

.contact-form-btn:hover {
  background-color: var(--hover-color);
}

.contact-map {
  height: 400px;
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-top: 50px;
  box-shadow: var(--box-shadow);
}

/* About Page */
.about-page {
  padding: 80px 0;
}

.about-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-subtitle {
  font-size: 1.2rem;
  color: #b8b8b8;
  max-width: 700px;
  margin: 0 auto;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 80px;
}

.about-image {
  height: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

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

.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  position: relative;
}

.about-text h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-values {
  background-color: var(--card-bg);
  padding: 80px 0;
  margin-bottom: 80px;
}

.values-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  position: relative;
}

.values-title::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
}

.values-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.value-card {
  background-color: var(--background-color);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-10px);
}

.value-icon {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.team-section {
  padding-bottom: 80px;
}

.team-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  position: relative;
}

.team-title::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
}

.team-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-image {
  height: 300px;
  width: 100%;
  object-fit: cover;
}

.team-info {
  padding: 20px;
  text-align: center;
}

.team-info h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.team-info p {
  color: #b8b8b8;
  margin-bottom: 15px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.social-link {
  width: 35px;
  height: 35px;
  background-color: rgba(255, 69, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--primary-color);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: var(--text-color);
}

.social-link:hover svg {
  fill: white;
}

/* Footer */
footer {
  background-color: var(--footer-bg);
  padding: 80px 0 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-column h3 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links li a {
  color: #b8b8b8;
  transition: var(--transition);
}

.footer-links li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-newsletter p {
  margin-bottom: 20px;
  color: #b8b8b8;
}

.newsletter-form {
  display: flex;
}

.newsletter-input {
  flex: 1;
  padding: 12px 15px;
  background-color: #2a2a40;
  border: 1px solid #444;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  color: white;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.newsletter-btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0 20px;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-btn:hover {
  background-color: var(--hover-color);
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  background-color: #2a2a40;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social-link:hover {
  background-color: var(--primary-color);
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
  fill: var(--text-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #333;
}

.footer-bottom p {
  color: #888;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--primary-color);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: var(--card-bg);
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-text {
  flex: 1;
}

.cookie-text h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.cookie-text p {
  color: #b8b8b8;
  font-size: 0.9rem;
}

.cookie-text a {
  color: var(--primary-color);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-left: 20px;
}

.cookie-btn {
  padding: 8px 15px;
  border: none;
  border-radius: var(--border-radius);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.accept-cookies {
  background-color: var(--primary-color);
  color: white;
}

.accept-cookies:hover {
  background-color: var(--hover-color);
}

.customize-cookies {
  background-color: transparent;
  border: 1px solid #888;
  color: #888;
}

.customize-cookies:hover {
  border-color: white;
  color: white;
}

.decline-cookies {
  background-color: transparent;
  border: 1px solid #666;
  color: #666;
}

.decline-cookies:hover {
  border-color: #888;
  color: #888;
}

/* Notification */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: var(--success-color);
  color: white;
  padding: 15px 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  z-index: 1000;
  transform: translateX(150%);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
}

.notification.show {
  transform: translateX(0);
}

.notification svg {
  width: 20px;
  height: 20px;
  fill: white;
  margin-right: 10px;
}

.notification-error {
  background-color: var(--error-color);
}

/* Media Queries */
@media (max-width: 1024px) {
  .header-content {
    padding: 0 20px;
  }
  
  .product-container {
    grid-template-columns: 1fr;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .checkout-container {
    grid-template-columns: 1fr;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .logo h1 {
    font-size: 1.5rem;
  }
  
  nav ul {
    display: none;
  }
  
  .features-container {
    grid-template-columns: 1fr;
  }
  
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .cart-item {
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto;
  }
  
  .cart-item-quantity, .cart-item-remove {
    grid-column: 2;
    justify-self: end;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 40px;
  }
  
  .logo h1 {
    font-size: 1.2rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .cookie-consent {
    flex-direction: column;
  }
  
  .cookie-actions {
    margin-left: 0;
    margin-top: 20px;
    justify-content: center;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
