:root {
  --primary-color: #6c5ce7;
  --secondary-color: #00cec9;
  --accent-color: #fd79a8;
  --dark-bg: #0a0e27;
  --darker-bg: #050810;
  --text-light: #ffffff;
  --text-gray: #b2bec3;
  --border-color: #2d3436;
  --success-color: #00b894;
  --error-color: #d63031;
  --neon-glow: 0 0 10px rgba(108, 92, 231, 0.5), 0 0 20px rgba(108, 92, 231, 0.3);
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--darker-bg);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.navbar {
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
}

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  color: var(--text-gray);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-color);
  background: rgba(108, 92, 231, 0.1);
}

.cart-link {
  position: relative;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-light);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
  position: relative;
  overflow: hidden;
  margin-top: 70px;
}

.hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  top: -250px;
  right: -250px;
  animation: pulse 4s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 206, 201, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -200px;
  left: -200px;
  animation: pulse 5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
  text-align: center;
  z-index: 1;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease-out;
}

.hero-content p {
  font-size: 1.5rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

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

.btn {
  padding: 1rem 2rem;
  border-radius: 50px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--neon-glow);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

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

.btn-block {
  width: 100%;
  margin-bottom: 1rem;
}

.neon-button {
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.features {
  padding: 5rem 0;
  background: var(--dark-bg);
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: var(--neon-glow);
}

.feature-card i {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

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

.feature-card p {
  color: var(--text-gray);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: rgba(108, 92, 231, 0.1);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-gray);
  font-size: 1rem;
}

.about-products {
  padding: 5rem 0;
  background: var(--darker-bg);
}

.about-products h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-content p {
  margin-bottom: 1.5rem;
  color: var(--text-gray);
  line-height: 1.8;
  text-align: justify;
}

.products {
  padding: 5rem 0;
  background: var(--dark-bg);
}

.products h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: var(--neon-glow);
}

.product-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

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

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

.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.product-info {
  padding: 1.5rem;
}

.product-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.price {
  font-size: 1.5rem;
  color: var(--secondary-color);
  font-weight: bold;
  margin: 0.5rem 0;
}

.description {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.view-details {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--primary-color);
  color: white;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.view-details:hover {
  background: var(--secondary-color);
  transform: translateX(5px);
}

.cta-section {
  padding: 5rem 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(0, 206, 201, 0.1));
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.cta-section p {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

footer {
  background: var(--darker-bg);
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--border-color);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-col p {
  color: var(--text-gray);
  margin-bottom: 1rem;
  line-height: 1.6;
}

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

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: var(--text-gray);
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--primary-color);
}

.contact-info li {
  display: flex;
  align-items: start;
  gap: 10px;
  color: var(--text-gray);
}

.contact-info i {
  color: var(--secondary-color);
  margin-top: 3px;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 2rem 20px;
  border-top: 1px solid var(--border-color);
  color: var(--text-gray);
}

.cookie-consent {
  position: fixed;
  bottom: -300px;
  left: 0;
  right: 0;
  background: rgba(10, 14, 39, 0.98);
  backdrop-filter: blur(10px);
  padding: 2rem;
  z-index: 10000;
  border-top: 2px solid var(--primary-color);
  transition: bottom 0.5s ease;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content p {
  margin-bottom: 1rem;
  color: var(--text-gray);
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cookie-btn.accept-all {
  background: var(--success-color);
  color: white;
}

.cookie-btn.decline {
  background: transparent;
  border: 2px solid var(--text-gray);
  color: var(--text-gray);
}

.cookie-btn:hover {
  transform: translateY(-2px);
}

.product-page {
  padding: 6rem 0 3rem;
  min-height: 100vh;
}

.product-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.product-image-section {
  position: relative;
}

.main-product-image {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.product-info-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffd700;
}

.product-rating span {
  color: var(--text-gray);
  margin-left: 0.5rem;
}

.product-price {
  font-size: 2.5rem;
  color: var(--secondary-color);
  font-weight: bold;
}

.product-description {
  color: var(--text-gray);
  line-height: 1.8;
}

.product-features,
.product-specs {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 10px;
}

.product-features h3,
.product-specs h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.product-features ul {
  list-style: none;
}

.product-features li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: start;
  gap: 10px;
  color: var(--text-gray);
}

.product-features i {
  color: var(--success-color);
  margin-top: 3px;
}

.product-specs table {
  width: 100%;
  color: var(--text-gray);
}

.product-specs tr {
  border-bottom: 1px solid var(--border-color);
}

.product-specs td {
  padding: 0.75rem 0;
}

.product-specs td:first-child {
  font-weight: 600;
  width: 40%;
}

.product-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.notification {
  position: fixed;
  top: 100px;
  right: 20px;
  background: var(--success-color);
  color: white;
  padding: 1rem 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  opacity: 0;
  transform: translateX(400px);
  transition: all 0.3s ease;
}

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

.cart-page {
  padding: 6rem 0 3rem;
  min-height: 100vh;
}

.cart-page h1 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

.cart-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.cart-items {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
}

.empty-cart {
  text-align: center;
  padding: 3rem;
}

.empty-cart i {
  font-size: 5rem;
  color: var(--text-gray);
  margin-bottom: 1rem;
  opacity: 0.5;
}

.empty-cart p {
  color: var(--text-gray);
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  margin-bottom: 1rem;
  align-items: center;
}

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

.cart-item-info h3 {
  margin-bottom: 0.5rem;
}

.cart-item-info p {
  color: var(--text-gray);
  margin-bottom: 0.5rem;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.quantity-btn {
  width: 30px;
  height: 30px;
  border: 1px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.remove-item {
  color: var(--error-color);
  cursor: pointer;
  padding: 0.5rem 1rem;
  border: 1px solid var(--error-color);
  border-radius: 5px;
  transition: all 0.3s ease;
}

.remove-item:hover {
  background: var(--error-color);
  color: white;
}

.cart-summary {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.cart-summary h2 {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-gray);
}

.summary-row.total {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-light);
  border-bottom: none;
  margin-top: 1rem;
}

.checkout-page {
  padding: 6rem 0 3rem;
  min-height: 100vh;
}

.checkout-page h1 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

.checkout-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.checkout-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
}

.checkout-form h2 {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-gray);
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-light);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.order-summary {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.order-summary h2 {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.checkout-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  margin-bottom: 1rem;
}

.checkout-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 5px;
}

.checkout-item-info h4 {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.checkout-item-info p {
  color: var(--text-gray);
  font-size: 0.85rem;
}

.summary-totals {
  margin-top: 1.5rem;
}

.success-page {
  padding: 6rem 0 3rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.success-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  font-size: 5rem;
  color: var(--success-color);
  margin-bottom: 2rem;
}

.success-content h1 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.success-message {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
}

.success-info {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  margin-top: 2rem;
}

.success-info h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.success-info ul {
  list-style: none;
  text-align: left;
}

.success-info li {
  display: flex;
  align-items: start;
  gap: 1rem;
  padding: 1rem;
  color: var(--text-gray);
}

.success-info i {
  color: var(--secondary-color);
  margin-top: 3px;
}

.contact-page {
  padding: 6rem 0 3rem;
  min-height: 100vh;
}

.contact-page h1 {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.page-subtitle {
  text-align: center;
  color: var(--text-gray);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.contact-form-section {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
}

.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
}

.contact-info-card i {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.contact-info-card h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.contact-info-card p,
.contact-info-card a {
  color: var(--text-gray);
  line-height: 1.8;
}

.about-page {
  padding: 6rem 0 3rem;
  min-height: 100vh;
}

.about-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.about-intro h1 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.intro-text {
  font-size: 1.2rem;
  color: var(--text-gray);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.about-story,
.about-values,
.team-section {
  margin-bottom: 4rem;
}

.about-story h2,
.about-values h2,
.team-section h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.story-content {
  max-width: 900px;
  margin: 0 auto;
}

.story-content p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  border: 1px solid var(--primary-color);
}

.value-card i {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.value-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--text-gray);
  line-height: 1.6;
}

.team-intro {
  text-align: center;
  color: var(--text-gray);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.team-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  border: 1px solid var(--primary-color);
}

.team-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--primary-color);
}

.team-card h3 {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.team-card .role {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-card p {
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 0.9rem;
}

.blog-page {
  padding: 6rem 0 3rem;
  min-height: 100vh;
}

.blog-page h1 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

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

.blog-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  border: 1px solid var(--primary-color);
}

.blog-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.blog-content {
  padding: 1.5rem;
}

.blog-content h2 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.blog-content h2 a {
  color: var(--text-light);
  transition: color 0.3s ease;
}

.blog-content h2 a:hover {
  color: var(--primary-color);
}

.blog-meta {
  display: flex;
  gap: 1rem;
  color: var(--text-gray);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.blog-content p {
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.read-more {
  color: var(--secondary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.read-more:hover {
  gap: 1rem;
}

.blog-post {
  padding: 6rem 0 3rem;
  min-height: 100vh;
}

.post-header {
  text-align: center;
  margin-bottom: 2rem;
}

.post-category {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.post-header h1 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.post-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  color: var(--text-gray);
  font-size: 0.9rem;
}

.post-image {
  margin: 2rem 0;
  border-radius: 15px;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.post-content {
  max-width: 800px;
  margin: 0 auto;
}

.post-content .lead {
  font-size: 1.2rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
  border-left: 4px solid var(--primary-color);
  padding-left: 1.5rem;
}

.post-content h2 {
  color: var(--primary-color);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.post-content p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.post-footer {
  max-width: 800px;
  margin: 3rem auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.post-tags {
  margin-bottom: 1.5rem;
}

.post-tags span {
  color: var(--text-gray);
  margin-right: 1rem;
}

.post-tags a {
  display: inline-block;
  background: rgba(108, 92, 231, 0.1);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.post-tags a:hover {
  background: var(--primary-color);
  color: white;
}

.post-share {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.post-share span {
  color: var(--text-gray);
}

.share-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.share-btn:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.related-posts {
  max-width: 1200px;
  margin: 4rem auto;
}

.related-posts h3 {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.related-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card:hover {
  transform: translateY(-5px);
  border: 1px solid var(--primary-color);
}

.related-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.related-card h4 {
  padding: 1.5rem;
}

.related-card h4 a {
  color: var(--text-light);
  transition: color 0.3s ease;
}

.related-card h4 a:hover {
  color: var(--primary-color);
}

.customization-note {
  background: rgba(0, 206, 201, 0.1);
  border-left: 4px solid var(--secondary-color);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 8px;
}

.customization-note p {
  margin: 0;
  color: var(--text-gray);
}

@media (max-width: 968px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: rgba(10, 14, 39, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
    padding: 2rem 0;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
  }
  
  .product-details,
  .cart-content,
  .checkout-content,
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .cart-summary,
  .order-summary {
    position: static;
  }
}

@media (max-width: 768px) {
  .features-grid,
  .products-grid,
  .stats,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .cart-item {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .cart-item img {
    margin: 0 auto;
  }
  
  .success-actions {
    flex-direction: column;
  }
}