:root {
  --primary-color: #6a11cb;
  --secondary-color: #2575fc;
  --accent-color: #ff0099;
  --background-color: #121212;
  --text-color: #ffffff;
  --text-secondary: #cccccc;
  --card-bg: #1e1e1e;
  --header-bg: rgba(18, 18, 18, 0.95);
  --footer-bg: #0a0a0a;
  --success-color: #4CAF50;
  --error-color: #F44336;
  --warning-color: #FF9800;
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Header */
header {
  background-color: var(--header-bg);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

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

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

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

.logo h1 {
  margin-left: 10px;
  font-size: 24px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

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

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: var(--transition);
  position: relative;
}

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

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

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

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

/* Mobile menu */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--text-color);
  border-radius: 3px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(106, 17, 203, 0.8), rgba(37, 117, 252, 0.8)), url('images/1.jpg');
  background-size: cover;
  background-position: center;
  margin-top: 90px;
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}

.hero h2 {
  font-size: 48px;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
}

.btn-3d {
  position: relative;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: var(--border-radius);
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateX(0deg);
  box-shadow: 
    0 6px 0 rgba(0, 0, 0, 0.3),
    0 10px 15px rgba(0, 0, 0, 0.2);
}

.btn-3d:hover {
  transform: perspective(1000px) rotateX(-10deg);
  box-shadow: 
    0 8px 0 rgba(0, 0, 0, 0.3),
    0 15px 20px rgba(0, 0, 0, 0.3);
}

.btn-3d:active {
  transform: perspective(1000px) rotateX(0deg) translateY(4px);
  box-shadow: 
    0 2px 0 rgba(0, 0, 0, 0.3),
    0 5px 10px rgba(0, 0, 0, 0.2);
}

.btn-3d::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.2) 0%, transparent 50%, rgba(0,0,0,0.2) 100%);
  border-radius: var(--border-radius);
  pointer-events: none;
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: rgba(20, 20, 20, 0.8);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  margin-bottom: 20px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  display: inline-block;
}

.section-title p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

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

.feature-box {
  background: linear-gradient(145deg, #1d1d1d, #252525);
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(106, 17, 203, 0.5);
}

.feature-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.feature-box p {
  font-size: 16px;
  color: var(--text-secondary);
}

/* About Section */
.about-product {
  padding: 80px 0;
  background: linear-gradient(45deg, rgba(18, 18, 18, 0.9), rgba(30, 30, 30, 0.9));
}

.about-product-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-product-content h2 {
  font-size: 36px;
  margin-bottom: 25px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

.about-product-content p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.7;
}

.about-product-img {
  position: relative;
}

.about-product-img img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stats-container {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  flex-wrap: wrap;
}

.stat-box {
  text-align: center;
  flex: 1;
  min-width: 120px;
  margin: 10px;
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
}

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

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

.product-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.product-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

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

.product-card:hover .product-img img {
  transform: scale(1.1);
}

.product-details {
  padding: 20px;
}

.product-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  transition: var(--transition);
}

.product-card:hover .product-title {
  color: var(--accent-color);
}

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

.product-description {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.product-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.add-to-cart {
  flex: 1;
  padding: 10px;
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

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

.buy-now {
  flex: 1;
  padding: 10px;
  border: none;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.buy-now:hover {
  background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
}

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

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

.product-detail-img {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.product-detail-content h1 {
  font-size: 36px;
  margin-bottom: 20px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

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

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

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

.product-features h3 {
  margin-bottom: 15px;
  font-size: 22px;
}

.product-features ul {
  margin-left: 20px;
}

.product-features li {
  margin-bottom: 10px;
  position: relative;
}

.product-features li::before {
  content: "•";
  color: var(--accent-color);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

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

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

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

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

.quantity-btn {
  width: 40px;
  height: 40px;
  background: var(--card-bg);
  border: 1px solid #333;
  color: var(--text-color);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

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

.quantity-number {
  width: 60px;
  height: 40px;
  background: var(--card-bg);
  border: 1px solid #333;
  border-left: none;
  border-right: none;
  color: var(--text-color);
  text-align: center;
  font-size: 18px;
}

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

.cart-empty {
  text-align: center;
  padding: 50px 0;
}

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

.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}

.cart-table th {
  padding: 15px;
  text-align: left;
  background-color: var(--card-bg);
  color: var(--text-color);
  font-weight: 600;
}

.cart-table td {
  padding: 15px;
  border-bottom: 1px solid #333;
}

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

.cart-product-img {
  width: 100px;
  height: 100px;
  margin-right: 15px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

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

.cart-product-info h3 {
  margin-bottom: 5px;
  font-size: 18px;
}

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

.cart-quantity-btn {
  width: 30px;
  height: 30px;
  background: var(--card-bg);
  border: 1px solid #333;
  color: var(--text-color);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

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

.cart-quantity-number {
  width: 40px;
  height: 30px;
  background: var(--card-bg);
  border: 1px solid #333;
  border-left: none;
  border-right: none;
  color: var(--text-color);
  text-align: center;
  font-size: 16px;
}

.cart-remove {
  color: var(--error-color);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.cart-remove:hover {
  color: var(--accent-color);
}

.cart-summary {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 30px;
  margin-top: 30px;
}

.cart-summary h2 {
  margin-bottom: 20px;
  font-size: 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.summary-row.total {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-weight: 700;
  font-size: 20px;
}

.checkout-btn {
  width: 100%;
  padding: 15px;
  margin-top: 20px;
}

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

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

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

.checkout-form h2 {
  margin-bottom: 30px;
  font-size: 28px;
}

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

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

.form-input {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #333;
  border-radius: var(--border-radius);
  color: var(--text-color);
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(106, 17, 203, 0.3);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group.inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.order-summary {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 30px;
  position: sticky;
  top: 120px;
}

.order-summary h2 {
  margin-bottom: 20px;
  font-size: 24px;
}

.order-items {
  margin-bottom: 20px;
}

.order-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #333;
}

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

.order-item-price {
  text-align: right;
}

.place-order-btn {
  width: 100%;
  padding: 15px;
  margin-top: 20px;
}

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

.success-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 50px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.success-icon {
  font-size: 80px;
  color: var(--success-color);
  margin-bottom: 20px;
}

.success-title {
  font-size: 32px;
  margin-bottom: 20px;
}

.success-message {
  margin-bottom: 30px;
}

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

.about-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.about-intro h2 {
  font-size: 36px;
  margin-bottom: 20px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

.about-story {
  margin-bottom: 80px;
}

.about-story-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-story-content h2 {
  font-size: 32px;
  margin-bottom: 25px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

.about-story-img {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-story-img img {
  width: 100%;
  height: auto;
}

.team-section h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 50px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

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

.team-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.team-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

.team-card:hover .team-img img {
  transform: scale(1.1);
}

.team-info {
  padding: 20px;
}

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

.team-info p:first-of-type {
  font-size: 14px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.team-info p:last-of-type {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 15px;
}

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

.social-icons a {
  color: var(--text-color);
  transition: var(--transition);
}

.social-icons a:hover {
  color: var(--accent-color);
}

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

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

.contact-info {
  padding-right: 30px;
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 30px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

.contact-info p {
  margin-bottom: 30px;
  line-height: 1.7;
}

.contact-details {
  margin-bottom: 30px;
}

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

.contact-icon {
  min-width: 50px;
  height: 50px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  box-shadow: 0 0 15px rgba(106, 17, 203, 0.3);
}

.contact-text h3 {
  margin-bottom: 5px;
  font-size: 18px;
}

.contact-text p {
  margin-bottom: 0;
  color: var(--text-secondary);
}

.contact-form {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-form h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

.contact-form .form-group:last-of-type {
  margin-bottom: 0;
}

.form-textarea {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #333;
  border-radius: var(--border-radius);
  color: var(--text-color);
  transition: var(--transition);
  min-height: 150px;
  resize: vertical;
}

.form-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(106, 17, 203, 0.3);
}

.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

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

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

.footer-logo {
  display: flex;
  flex-direction: column;
}

.footer-logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.footer-logo h3 {
  font-size: 20px;
  margin-bottom: 15px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

.footer-logo p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

.footer-links h3 {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
}

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

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

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
  font-size: 14px;
}

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

.footer-newsletter h3 {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-newsletter h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
}

.footer-newsletter p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
}

.newsletter-input {
  flex: 1;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #333;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  color: var(--text-color);
}

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

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

.newsletter-btn:hover {
  background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: var(--text-secondary);
  font-size: 14px;
}

.footer-bottom a {
  color: var(--accent-color);
  text-decoration: none;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background: var(--card-bg);
  color: var(--text-color);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: bottom 0.5s ease;
}

.cookie-consent.active {
  bottom: 0;
}

.cookie-text {
  max-width: 70%;
}

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

.cookie-text p {
  font-size: 14px;
  color: var(--text-secondary);
}

.cookie-text a {
  color: var(--accent-color);
  text-decoration: none;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 8px 15px;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.cookie-btn.accept {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
}

.cookie-btn.accept:hover {
  background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
}

.cookie-btn.customize, .cookie-btn.decline {
  background: transparent;
  color: var(--text-color);
  border: 1px solid #333;
}

.cookie-btn.customize:hover, .cookie-btn.decline:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* Toast Notification */
.toast {
  position: fixed;
  top: 90px;
  right: 20px;
  padding: 15px 25px;
  border-radius: var(--border-radius);
  background: var(--success-color);
  color: white;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transform: translateX(150%);
  transition: transform 0.3s ease;
  z-index: 9999;
  display: flex;
  align-items: center;
}

.toast.active {
  transform: translateX(0);
}

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

.toast-icon {
  margin-right: 10px;
  font-size: 18px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }
  
  .hero h2 {
    font-size: 40px;
  }
  
  .product-detail-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .checkout-container {
    grid-template-columns: 1fr;
  }
  
  .order-summary {
    position: static;
  }
  
  .about-story-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-info {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 15px;
  }
  
  .hamburger {
    display: flex;
  }
  
  nav {
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    background-color: var(--header-bg);
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.4s ease;
    z-index: 1000;
  }
  
  nav.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  
  nav ul {
    flex-direction: column;
    align-items: center;
  }
  
  nav ul li {
    margin: 15px 0;
  }
  
  .hero {
    height: 70vh;
    margin-top: 80px;
  }
  
  .hero h2 {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .section-title h2 {
    font-size: 28px;
  }
  
  .cart-product {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cart-product-img {
    margin-bottom: 10px;
  }
  
  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .cookie-consent {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-text {
    max-width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 20px;
  }
  
  .logo h1 {
    font-size: 20px;
  }
  
  .hero {
    height: 60vh;
    margin-top: 70px;
  }
  
  .hero h2 {
    font-size: 28px;
  }
  
  .features-container, .product-grid {
    grid-template-columns: 1fr;
  }
  
  .cart-table, .cart-table tbody, .cart-table th, .cart-table td, .cart-table tr {
    display: block;
  }
  
  .cart-table thead {
    display: none;
  }
  
  .cart-table tr {
    margin-bottom: 20px;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 10px;
  }
  
  .cart-table td {
    border: none;
    border-bottom: 1px solid #333;
    position: relative;
    padding-left: 50%;
    text-align: right;
  }
  
  .cart-table td:before {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    font-weight: 600;
  }
  
  .cart-table td:nth-of-type(1):before {
    content: "Product";
  }
  
  .cart-table td:nth-of-type(2):before {
    content: "Price";
  }
  
  .cart-table td:nth-of-type(3):before {
    content: "Quantity";
  }
  
  .cart-table td:nth-of-type(4):before {
    content: "Total";
  }
  
  .cart-table td:nth-of-type(5):before {
    content: "Action";
  }
  
  .form-group.inline {
    grid-template-columns: 1fr;
  }
}
