/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

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

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #000;
  color: #fff;
  padding: 8px 16px;
  z-index: 100000;
  border-radius: 4px;
  font-size: 14px;
}

.skip-link:focus {
  top: 6px;
}

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

/* Header Styles */
.site-header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.top-header {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

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

.site-branding {
  display: flex;
  align-items: center;
  gap: 15px;
}

.site-logo {
  height: 60px;
  width: auto;
}

.site-info {
  display: flex;
  flex-direction: column;
}

.site-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.site-title a {
  color: #2c3e50;
}

.site-title a:hover {
  color: #3498db;
}

.site-description {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Search Box */
.search-form {
  position: relative;
  display: flex;
  align-items: center;
}

.search-field {
  padding: 10px 40px 10px 15px;
  border: 2px solid #ddd;
  border-radius: 25px;
  width: 250px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.search-field:focus {
  outline: none;
  border-color: #3498db;
}

.search-button {
  position: absolute;
  right: 10px;
  padding: 5px;
  color: #666;
  transition: color 0.3s ease;
}

.search-button:hover {
  color: #3498db;
}

/* Cart */
.cart-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cart-link {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 50%;
  background: #f8f9fa;
  transition: background-color 0.3s ease;
}

.cart-link:hover {
  background: #e9ecef;
}

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

.cart-total {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 14px;
}

.total-label {
  color: #666;
}

.total-amount {
  font-weight: bold;
  color: #2c3e50;
}

/* Navigation */
.main-navigation {
  background: #2c3e50;
  color: white;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.mobile-branding {
  display: none;
}

.mobile-logo {
  height: 40px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: white;
  transition: all 0.3s ease;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
}

.menu-item a {
  color: white;
  font-weight: 500;
  padding: 10px 0;
  position: relative;
  transition: color 0.3s ease;
}

.menu-item a:hover,
.current-menu-item a {
  color: #3498db;
}

.menu-item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #3498db;
  transition: width 0.3s ease;
}

.menu-item a:hover::after,
.current-menu-item a::after {
  width: 100%;
}

.mobile-cart {
  display: none;
}

/* Main Content */
.main-content {
  padding: 0;
}

/* Add padding for non-homepage pages */
.main-content:not(.homepage) {
  padding: 40px 0;
  min-height: 60vh;
}

/* Specific padding for product pages */
body:not(.home) .main-content {
  padding: 0px 0;
  min-height: 60vh;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 62, 80, 0.8);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-text {
  color: white;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.stat-item {
  text-align: center;
  color: white;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #3498db;
}

.stat-label {
  font-size: 14px;
  opacity: 0.9;
}

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

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

.feature-card {
  text-align: center;
  padding: 40px 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.feature-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
}

.section-description {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Categories Section */
.categories-section {
  padding: 80px 0;
  background: white;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.category-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

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

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

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.8), rgba(41, 128, 185, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.category-card:hover .category-overlay {
  opacity: 1;
}

.category-icon {
  color: white;
}

.category-info {
  padding: 30px;
}

.category-info h3 {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
}

.category-info p {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
}

.category-count {
  color: #3498db;
  font-weight: 600;
  font-size: 14px;
}

/* Featured Products Section */
.featured-products-section {
  padding: 80px 0;
  background: #f8f9fa;
}

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

.product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

.product-link {
  display: block;
  color: inherit;
}

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

.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);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

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

.quick-view-btn {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2c3e50;
  transition: all 0.3s ease;
}

.quick-view-btn:hover {
  background: #3498db;
  color: white;
  transform: scale(1.1);
}

.product-info {
  padding: 25px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

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

.star {
  color: #ddd;
  font-size: 16px;
}

.star.filled {
  color: #ffc107;
}

.rating-count {
  font-size: 14px;
  color: #666;
}

.product-title {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  margin-bottom: 20px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #e74c3c;
}

.add-to-cart-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
}

.add-to-cart-btn:hover {
  background: linear-gradient(135deg, #2980b9, #1f5f8b);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.section-footer {
  text-align: center;
  margin-top: 60px;
}

/* Newsletter Section */
.newsletter-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: white;
}

.newsletter-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.newsletter-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.newsletter-text p {
  font-size: 18px;
  opacity: 0.9;
  line-height: 1.6;
}

.newsletter-form .form-group {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 16px;
  backdrop-filter: blur(10px);
}

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

.newsletter-form input:focus {
  outline: none;
  border-color: #3498db;
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-privacy {
  font-size: 14px;
  opacity: 0.7;
  margin: 0;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2980b9, #1f5f8b);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

/* Footer Styles */
.site-footer {
  background: #2c3e50;
  color: white;
  padding: 80px 0 30px;
  position: relative;
}

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

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

.footer-section h4 {
  color: #3498db;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

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

.footer-section a {
  color: #bdc3c7;
  transition: color 0.3s ease;
  font-size: 15px;
  line-height: 1.6;
}

.footer-section a:hover {
  color: #3498db;
}

.copyright {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid #34495e;
  color: #bdc3c7;
  font-size: 14px;
  line-height: 1.6;
}

.copyright a {
  color: #3498db;
  transition: color 0.3s ease;
}

.copyright a:hover {
  color: #5dade2;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 8px 30px rgba(52, 152, 219, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: linear-gradient(135deg, #2980b9, #1f5f8b);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(52, 152, 219, 0.4);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .newsletter-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 15px;
  }

  .search-field {
    width: 200px;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #2c3e50;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-branding,
  .mobile-cart {
    display: block;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-description {
    font-size: 18px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 32px;
  }

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

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

  .newsletter-form .form-group {
    flex-direction: column;
  }

  .back-to-top {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-description {
    font-size: 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .feature-card,
  .category-card,
  .product-card {
    margin: 0 10px;
  }

  .btn-large {
    padding: 14px 24px;
    font-size: 14px;
  }
}

/* Cart Page Styles */
.cart-empty-state {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  padding: 60px 20px;
}

.empty-cart-card {
  text-align: center;
  max-width: 500px;
  background: white;
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid #f0f0f0;
}

.empty-cart-icon {
  margin-bottom: 30px;
  opacity: 0.3;
}

.empty-cart-icon svg {
  color: #bdc3c7;
}

.empty-cart-card h2 {
  color: #2c3e50;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.empty-cart-card p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.cart-items-section {
  margin-top: 40px;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 50px;
  align-items: start;
}

.cart-items-container {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid #f0f0f0;
}

.cart-items-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f8f9fa;
}

.cart-items-header h2 {
  color: #2c3e50;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-item-card {
  display: grid;
  grid-template-columns: 100px 1fr auto auto auto;
  gap: 20px;
  align-items: center;
  padding: 25px;
  background: #fafbfc;
  border-radius: 12px;
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
}

.cart-item-card:hover {
  border-color: #e1e8ed;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.cart-item-image {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  background: white;
}

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

.cart-item-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cart-item-name {
  color: #2c3e50;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.cart-item-price {
  color: #e74c3c;
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

.cart-item-meta {
  display: flex;
  gap: 15px;
  font-size: 12px;
}

.cart-item-sku {
  color: #666;
}

.cart-item-stock {
  color: #27ae60;
  font-weight: 600;
}

.cart-item-quantity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.quantity-controls {
  display: flex;
  align-items: center;
  border: 2px solid #e1e8ed;
  border-radius: 8px;
  background: white;
}

.quantity-btn {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #666;
}

.quantity-btn:hover {
  background: #f8f9fa;
  color: #3498db;
}

.quantity-input {
  width: 50px;
  height: 35px;
  text-align: center;
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: #2c3e50;
}

.quantity-input:focus {
  outline: none;
}

.cart-item-total {
  text-align: right;
}

.item-total {
  color: #2c3e50;
  font-size: 18px;
  font-weight: 700;
}

.cart-item-remove {
  display: flex;
  justify-content: center;
}

.remove-item-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff5f5;
  border: 2px solid #fed7d7;
  border-radius: 8px;
  color: #e74c3c;
  cursor: pointer;
  transition: all 0.3s ease;
}

.remove-item-btn:hover {
  background: #e74c3c;
  color: white;
  border-color: #e74c3c;
}

.cart-actions {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid #f8f9fa;
}

.cart-summary-container {
  position: sticky;
  top: 120px;
}

.cart-summary-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid #f0f0f0;
}

.cart-summary-card h3 {
  color: #2c3e50;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 16px;
}

.summary-row span:first-child {
  color: #666;
}

.summary-row span:last-child {
  color: #2c3e50;
  font-weight: 600;
}

.free-shipping {
  color: #27ae60 !important;
  font-weight: 600;
}

.summary-divider {
  height: 2px;
  background: #f8f9fa;
  margin: 20px 0;
}

.total-row {
  font-size: 20px;
  font-weight: 700;
  padding: 15px 0;
}

.total-row span {
  color: #2c3e50 !important;
}

.btn-checkout {
  width: 100%;
  margin: 25px 0 20px 0;
}

.security-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #666;
}

.security-badge svg {
  color: #27ae60;
}

/* Checkout Modal Styles */
.checkout-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10001;
  padding: 20px;
}

.checkout-modal.visible {
  opacity: 1;
  visibility: visible;
}

.checkout-modal-content {
  background: white;
  border-radius: 16px;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s ease;
}

.checkout-modal.visible .checkout-modal-content {
  transform: scale(1) translateY(0);
}

.checkout-modal-header {
  padding: 30px 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #f8f9fa;
  margin-bottom: 30px;
}

.checkout-modal-header h2 {
  color: #2c3e50;
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.checkout-modal-close {
  width: 40px;
  height: 40px;
  background: #e74c3c;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  border: none;
}

.checkout-modal-close:hover {
  background: #c0392b;
}

.checkout-modal-body {
  padding: 0 30px;
}

.checkout-step {
  display: none;
  margin-bottom: 30px;
}

.checkout-step.active {
  display: block;
}

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

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.step-header h3 {
  color: #2c3e50;
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-group input,
.form-group select {
  padding: 15px;
  border: 2px solid #e1e8ed;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #fafbfc;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #3498db;
  background: white;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.payment-method {
  position: relative;
}

.payment-method input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.payment-method-label {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  border: 2px solid #e1e8ed;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fafbfc;
}

.payment-method input:checked + .payment-method-label {
  border-color: #3498db;
  background: #f0f8ff;
}

.payment-method-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 8px;
  border: 2px solid #e1e8ed;
}

.payment-method-info {
  flex: 1;
}

.payment-method-info h4 {
  color: #2c3e50;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 5px 0;
}

.payment-method-info p {
  color: #666;
  font-size: 14px;
  margin: 0;
}

.payment-method-check {
  width: 24px;
  height: 24px;
  border: 2px solid #e1e8ed;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.payment-method input:checked + .payment-method-label .payment-method-check {
  background: #3498db;
  border-color: #3498db;
  color: white;
}

.payment-details {
  margin-top: 20px;
}

.bank-info-card {
  background: #f8f9fa;
  border: 2px solid #e1e8ed;
  border-radius: 12px;
  padding: 25px;
}

.bank-info-card h4 {
  color: #2c3e50;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.bank-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.bank-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #e1e8ed;
}

.bank-detail-row:last-child {
  border-bottom: none;
}

.bank-detail-row .label {
  color: #666;
  font-weight: 500;
}

.bank-detail-row .value {
  color: #2c3e50;
  font-weight: 600;
  font-family: monospace;
}

.bank-transfer-note {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 8px;
  padding: 15px;
}

.bank-transfer-note p {
  color: #856404;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.checkout-order-summary {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 25px;
  margin-top: 30px;
}

.checkout-order-summary h4 {
  color: #2c3e50;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #e1e8ed;
}

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

.checkout-item-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.checkout-item-name {
  color: #2c3e50;
  font-weight: 600;
  font-size: 14px;
}

.checkout-item-qty {
  color: #666;
  font-size: 12px;
}

.checkout-item-total {
  color: #2c3e50;
  font-weight: 700;
}

.checkout-totals {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid #e1e8ed;
}

.checkout-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
}

.checkout-total-row.total {
  font-size: 18px;
  font-weight: 700;
  padding: 15px 0;
  border-top: 2px solid #e1e8ed;
}

.checkout-modal-footer {
  padding: 30px;
  border-top: 2px solid #f8f9fa;
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

/* Responsive Cart Styles */
@media (max-width: 1024px) {
  .cart-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cart-summary-container {
    order: -1;
    position: static;
  }
}

@media (max-width: 768px) {
  .cart-item-card {
    grid-template-columns: 80px 1fr;
    gap: 15px;
    padding: 20px;
  }

  .cart-item-image {
    width: 80px;
    height: 80px;
  }

  .cart-item-quantity,
  .cart-item-total,
  .cart-item-remove {
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 15px;
  }

  .cart-item-quantity {
    order: 1;
  }

  .cart-item-total {
    order: 2;
  }

  .cart-item-remove {
    order: 3;
  }

  .checkout-modal-content {
    margin: 10px;
    max-height: calc(100vh - 20px);
  }

  .checkout-modal-header,
  .checkout-modal-body,
  .checkout-modal-footer {
    padding: 20px;
  }

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

  .checkout-modal-footer {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .cart-items-container,
  .cart-summary-card {
    padding: 20px;
  }

  .cart-items-header {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }

  .empty-cart-card {
    padding: 40px 20px;
  }
}

/* Product Details Page Styles */
.page-header {
  margin-bottom: 40px;
  padding: 40px 0 20px;
}

.page-header .breadcrumb {
  font-size: 14px;
  color: #666;
  margin-bottom: 0;
}

.page-header .breadcrumb a {
  color: #3498db;
  transition: color 0.3s ease;
}

.page-header .breadcrumb a:hover {
  color: #2980b9;
}

.product-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.main-image {
  background: #f8f9fa;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  border: 2px solid #e1e8ed;
}

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

.product-summary {
  padding: 20px 0;
}

.product-summary .product-title {
  font-size: 32px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.3;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

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

.star {
  color: #ddd;
  font-size: 18px;
}

.star.filled {
  color: #ffc107;
}

.rating-text {
  font-size: 14px;
  color: #666;
}

.product-summary .product-price {
  margin-bottom: 25px;
}

.product-summary .price {
  font-size: 36px;
  font-weight: 700;
  color: #e74c3c;
}

.product-description {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

.product-features {
  margin-bottom: 30px;
  background: #f8f9fa;
  padding: 25px;
  border-radius: 12px;
  border: 2px solid #e1e8ed;
}

.product-features h3 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
}

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

.product-features li {
  padding: 10px 0;
  border-bottom: 1px solid #e1e8ed;
  position: relative;
  padding-left: 30px;
  color: #555;
  font-size: 15px;
}

.product-features li:last-child {
  border-bottom: none;
}

.product-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: bold;
  font-size: 16px;
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.quantity-selector {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quantity-selector label {
  font-weight: 600;
  color: #2c3e50;
  font-size: 14px;
}

.quantity-selector input {
  width: 80px;
  padding: 12px;
  border: 2px solid #e1e8ed;
  border-radius: 8px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}

.quantity-selector input:focus {
  outline: none;
  border-color: #3498db;
}

.add-to-cart-btn.btn-large {
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.add-to-cart-btn.btn-large:hover {
  background: linear-gradient(135deg, #2980b9, #1f5f8b);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.product-meta {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 12px;
  border: 2px solid #e1e8ed;
}

.product-meta p {
  margin: 8px 0;
  font-size: 14px;
  color: #555;
}

.product-meta strong {
  color: #2c3e50;
  font-weight: 600;
}

.product-meta a {
  color: #3498db;
  font-weight: 500;
}

.product-meta a:hover {
  color: #2980b9;
}

/* Product Tabs */
.product-tabs {
  margin-top: 60px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.tab-nav {
  display: flex;
  background: #f8f9fa;
  border-bottom: 2px solid #e1e8ed;
}

.tab-button {
  flex: 1;
  padding: 20px;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.tab-button:hover {
  color: #3498db;
  background: rgba(52, 152, 219, 0.05);
}

.tab-button.active {
  color: #3498db;
  background: white;
}

.tab-button.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: #3498db;
}

.tab-content {
  padding: 40px;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.tab-panel h3 {
  color: #2c3e50;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.tab-panel h4 {
  color: #2c3e50;
  font-size: 20px;
  font-weight: 600;
  margin: 25px 0 15px 0;
}

.tab-panel p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.specs-table tr {
  border-bottom: 1px solid #e1e8ed;
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table td {
  padding: 15px 0;
  vertical-align: top;
}

.specs-table td:first-child {
  width: 40%;
  padding-right: 20px;
}

.specs-table strong {
  color: #2c3e50;
  font-weight: 600;
}

/* Reviews Section */
.reviews-summary {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 30px;
  text-align: center;
}

.average-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.rating-number {
  font-size: 48px;
  font-weight: 700;
  color: #2c3e50;
}

.review-count {
  color: #666;
  font-size: 14px;
}

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

.review {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 12px;
  border: 2px solid #e1e8ed;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.reviewer-name {
  font-weight: 600;
  color: #2c3e50;
  font-size: 16px;
}

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

.review-content p {
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Related Products */
.related-products {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 3px solid #f8f9fa;
}

.related-products h2 {
  font-size: 32px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 40px;
  text-align: center;
}

.related-products .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.related-products .product-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.related-products .product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.related-products .product-image {
  height: 200px;
  background: #f8f9fa;
}

.related-products .product-info {
  padding: 20px;
}

.related-products .product-title {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
  line-height: 1.4;
}

.related-products .product-price {
  font-size: 18px;
  font-weight: 700;
  color: #e74c3c;
  margin-bottom: 15px;
}

.related-products .add-to-cart-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.related-products .add-to-cart-btn:hover {
  background: linear-gradient(135deg, #2980b9, #1f5f8b);
  transform: translateY(-2px);
}

/* Responsive Product Details */
@media (max-width: 1024px) {
  .product-details {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-gallery {
    position: static;
  }

  .main-image {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .product-summary .product-title {
    font-size: 28px;
  }

  .product-summary .price {
    font-size: 32px;
  }

  .product-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .quantity-selector {
    align-self: center;
  }

  .tab-nav {
    flex-direction: column;
  }

  .tab-button {
    text-align: left;
  }

  .tab-content {
    padding: 25px;
  }

  .related-products .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .product-summary .product-title {
    font-size: 24px;
  }

  .product-summary .price {
    font-size: 28px;
  }

  .product-features,
  .product-meta {
    padding: 20px;
  }

  .tab-content {
    padding: 20px;
  }

  .specs-table td {
    padding: 10px 0;
  }

  .specs-table td:first-child {
    width: 50%;
    padding-right: 15px;
  }
}

/* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c3e50;
  color: white;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: all 0.3s ease;
  z-index: 10000;
}

.cookie-banner.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
}

.cookie-banner-text h3 {
  color: #3498db;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.cookie-banner-text p {
  color: #bdc3c7;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.cookie-banner-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.cookie-accept {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: white;
}

.cookie-accept:hover {
  background: linear-gradient(135deg, #229954, #27ae60);
  transform: translateY(-2px);
}

.cookie-necessary {
  background: transparent;
  color: #bdc3c7;
  border-color: #7f8c8d;
}

.cookie-necessary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: #bdc3c7;
}

.cookie-settings {
  background: transparent;
  color: #3498db;
  border-color: #3498db;
}

.cookie-settings:hover {
  background: #3498db;
  color: white;
}

.cookie-policy-link {
  background: transparent;
  color: #95a5a6;
  text-decoration: underline;
}

.cookie-policy-link:hover {
  color: white;
}

.cookie-close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: #e74c3c;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.cookie-close:hover {
  background: #c0392b;
}

/* Cookie Modal Styles */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10001;
  padding: 20px;
}

.cookie-modal.visible {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background: white;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s ease;
}

.cookie-modal.visible .cookie-modal-content {
  transform: scale(1) translateY(0);
}

.cookie-modal-header {
  padding: 25px 25px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #f8f9fa;
  margin-bottom: 25px;
}

.cookie-modal-header h2 {
  color: #2c3e50;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.cookie-modal-close {
  width: 35px;
  height: 35px;
  background: #e74c3c;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  border: none;
}

.cookie-modal-close:hover {
  background: #c0392b;
}

.cookie-modal-body {
  padding: 0 25px;
}

.cookie-modal-body p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.cookie-category {
  margin-bottom: 25px;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  border: 2px solid #e1e8ed;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.cookie-category-header h3 {
  color: #2c3e50;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 25px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 25px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 19px;
  width: 19px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .cookie-slider {
  background-color: #3498db;
}

input:focus + .cookie-slider {
  box-shadow: 0 0 1px #3498db;
}

input:checked + .cookie-slider:before {
  transform: translateX(25px);
}

input:disabled + .cookie-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-category p {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.cookie-modal-footer {
  padding: 25px;
  border-top: 2px solid #f8f9fa;
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

/* Responsive Cookie Styles */
@media (max-width: 768px) {
  .cookie-banner-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .cookie-banner-actions {
    justify-content: center;
  }

  .cookie-btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .cookie-modal-content {
    margin: 10px;
    max-height: calc(100vh - 20px);
  }

  .cookie-modal-header,
  .cookie-modal-body,
  .cookie-modal-footer {
    padding: 20px;
  }

  .cookie-modal-footer {
    flex-direction: column;
  }

  .cookie-close {
    top: 10px;
    right: 10px;
  }
}

@media (max-width: 480px) {
  .cookie-banner-actions {
    flex-direction: column;
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
  }

  .cookie-category-header {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

/* Press, Careers, and Support Page Styles */
.press-content,
.careers-content {
  margin-top: 40px;
}

.press-section,
.careers-section {
  margin-bottom: 80px;
  padding: 40px 0;
}

.press-section h2,
.careers-section h2 {
  color: #2c3e50;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

.news-grid,
.benefits-grid,
.job-listings {
  display: grid;
  gap: 30px;
  margin-top: 30px;
}

.news-item,
.benefit-card,
.job-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.news-item:hover,
.benefit-card:hover,
.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding: 25px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.media-kit-grid,
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.media-kit-item,
.award-item {
  background: white;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
}

.media-contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.contact-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #3498db;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #2980b9;
  transform: translateY(-2px);
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  flex-shrink: 0;
}

.careers-contact {
  text-align: center;
  margin-top: 40px;
}

.careers-contact .btn {
  margin: 0 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-links {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }

  .press-section,
  .careers-section {
    padding: 30px 0;
    margin-bottom: 60px;
  }

  .social-links {
    flex-wrap: wrap;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }
}

/* Console welcome message */
console.log("%cBlogsism - Great Blogs Here!", "color: #3498db; font-size: 20px; font-weight: bold;")
console.log("%cWebsite rebuilt with modern standards", "color: #2c3e50; font-size: 14px;")