 body {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Montserrat', sans-serif;
      background: #ffffff;
      color: #1a1a1a;
      overflow-x: hidden;
      width: 100%;
    }

    * {
      box-sizing: border-box;
    }

    .app-container {
      width: 100%;
      min-height: 100%;
    }

    /* Navigation */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      backdrop-filter: blur(10px);
      padding: 1.5rem 4rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      box-shadow: 0 2px 20px rgba(220, 38, 38, 0.1);
    }

    .logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2rem;
      letter-spacing: 2px;
      font-weight: bold;
      cursor: pointer;
    }
    /* ==================== NAVBAR ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  display: flex;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(220, 38, 38, 0.1);
}

.navbar-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 2px;
  font-weight: bold;
  color: #dc2626;
  cursor: pointer;
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  color: white;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  transform: translateY(-2px);
  color: #dc2626;
}

/* Auth buttons desktop */
.auth-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Cart */
.cart-icon-btn {
  position: relative;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #dc2626;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Buttons */
.btn-login, .btn-signup, .btn-logout {
  padding: 0.7rem 1.5rem;
  border: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-login {
  border: 2px solid #000;
  background: transparent;
  color: white;
}

.btn-signup {
  border: 2px solid transparent;
  background: white;
  color: #1a1a1a;
}

.btn-logout {
  border: 2px solid transparent;
  background: #dc2626;
  color: white;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 3px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    flex-direction: column;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    width: 220px;
    height: calc(100vh - 70px);
    transition: right 0.3s ease;
    border-left: 1px solid rgba(220, 38, 38, 0.2);
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .auth-buttons {
    display: none; /* hide desktop auth buttons on mobile */
  }
}


    .nav-links {
      display: flex;
      gap: 3rem;
      align-items: center;
    }

    .nav-links a {
      text-decoration: none;
      font-weight: 600;
      font-size: 0.9rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .nav-links a:hover {
      transform: translateY(-2px);
    }

    .auth-buttons {
      display: flex;
      gap: 1rem;
      align-items: center;
    }

    .cart-icon-btn {
      position: relative;
      background: transparent;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      transition: all 0.3s ease;
      padding: 0.5rem;
    }

    .cart-icon-btn:hover {
      transform: scale(1.1);
    }

    .cart-badge {
      position: absolute;
      top: -5px;
      right: -5px;
      background: #dc2626;
      color: white;
      border-radius: 50%;
      width: 20px;
      height: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
      font-weight: 700;
    }

    .btn-login, .btn-signup {
      padding: 0.7rem 1.8rem;
      border: none;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 0.85rem;
    }

    .btn-login {
      background: transparent;
      border: 2px solid #000;
    }

    .btn-login:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .btn-signup {
      border: 2px solid transparent;
    }

    .btn-signup:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 20px rgba(220, 38, 38, 0.4);
    }

    .btn-logout {
      padding: 0.7rem 1.8rem;
      border: none;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 0.85rem;
      border: 2px solid transparent;
    }

    .btn-logout:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 20px rgba(220, 38, 38, 0.4);
    }

    /* Hero Section */
    .hero {
      width: 100%;
      height: 100%;
      min-height: 700px;
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1fr;
      overflow: hidden;
      margin-top: 80px;
    }

    .hero-slideshow {
      position: relative;
      width: 100%;
      height: 100%;
      overflow: hidden;
    }

    .hero-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }

    .hero-slide.active {
      opacity: 1;
    }

    .hero-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-content {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 4rem 3rem;
      background: #dc2626;
      overflow: hidden;
    }

    .hero-headline {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 6rem;
      letter-spacing: 8px;
      margin: 0 0 2rem 0;
      line-height: 1;
      color: white;
      text-align: center;
      min-height: 180px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .typewriter-text {
      border-right: 3px solid white;
      white-space: nowrap;
      overflow: hidden;
      animation: blinkCursor 0.7s step-end infinite;
    }

    @keyframes blinkCursor {
      50% { border-color: transparent; }
    }

    .hero-subline {
      font-size: 1.3rem;
      font-weight: 300;
      letter-spacing: 2px;
      margin: 0 0 3rem 0;
      color: white;
      text-align: center;
    }

    .hero-buttons {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      margin-bottom: 4rem;
      z-index: 10;
    }

    .marquee-container {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      background: rgba(255, 255, 255, 0.1);
      padding: 1.5rem 0;
      overflow: hidden;
    }

    .marquee-text {
      display: flex;
      white-space: nowrap;
      animation: marquee 30s linear infinite;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2rem;
      letter-spacing: 4px;
      color: white;
    }

    .marquee-text span {
      padding: 0 3rem;
    }

    @keyframes marquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .btn-primary, .btn-secondary {
      padding: 1.2rem 3rem;
      border: none;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 1rem;
    }

    .btn-primary {
      border: 3px solid transparent;
    }

    .btn-secondary {
      background: transparent;
      border: 3px solid #fff;
    }

    .btn-primary:hover, .btn-secondary:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Categories Section */
    .categories-section {
      width: 100%;
      padding: 6rem 4rem;
      background: #ffffff;
    }

    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 4rem;
      letter-spacing: 4px;
      text-align: center;
      margin: 0 0 4rem 0;
    }

    .categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      max-width: 1400px;
      margin: 0 auto;
    }

    .category-card {
      position: relative;
      height: 400px;
      overflow: hidden;
      cursor: pointer;
      transition: all 0.4s ease;
    }

    .category-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(220, 38, 38, 0.3);
    }

    .category-bg {
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      transition: all 0.4s ease;
    }

    .category-card:hover .category-bg {
      transform: scale(1.1);
    }

    .category-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 2rem;
      background: linear-gradient(to top, rgba(220, 38, 38, 0.95), transparent);
      transition: all 0.4s ease;
    }

    .category-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2rem;
      letter-spacing: 2px;
      margin: 0;
      color: white;
    }

    /* Trending Section */
    .trending-section {
      width: 100%;
      padding: 6rem 4rem;
      background: #f9fafb;
    }

    .product-slider {
      display: flex;
      gap: 2rem;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding: 2rem 0;
      max-width: 1400px;
      margin: 0 auto;
    }

    .product-slider::-webkit-scrollbar {
      height: 8px;
    }

    .product-slider::-webkit-scrollbar-track {
      background: #e5e7eb;
    }

    .product-slider::-webkit-scrollbar-thumb {
      background: #dc2626;
      border-radius: 4px;
    }

    .product-card {
      min-width: 300px;
      background: white;
      overflow: hidden;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .product-image {
      width: 100%;
      height: 400px;
      position: relative;
      overflow: hidden;
    }

    .product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.3s ease;
    }

    .product-card:hover .product-image img {
      transform: scale(1.05);
    }

    .product-badge {
      position: absolute;
      top: 1rem;
      right: 1rem;
      padding: 0.5rem 1rem;
      font-weight: 700;
      font-size: 0.8rem;
      letter-spacing: 1px;
      background: #dc2626;
      color: white;
    }

    .product-info {
      padding: 1.5rem;
    }

    .product-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.5rem;
      letter-spacing: 1px;
      margin: 0 0 0.5rem 0;
    }

    .product-price {
      font-size: 1.3rem;
      font-weight: 700;
      margin: 0 0 1rem 0;
      color: #dc2626;
    }

    .add-to-cart-btn {
      width: 100%;
      padding: 0.8rem;
      background: #dc2626;
      color: white;
      border: none;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }

    .add-to-cart-btn:hover {
      background: #991b1b;
    }

    /* Signature Section */
    .signature-section {
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 600px;
    }

    .signature-image {
      background: url('https://i.pinimg.com/736x/dc/5b/c7/dc5bc7118381c543f9ce617f698142a3.jpg') center/cover;
      position: relative;
      overflow: hidden;
    }

    .signature-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 4rem;
      background: white;
    }

    .signature-headline {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 4rem;
      letter-spacing: 4px;
      line-height: 0.9;
      margin: 0 0 1.5rem 0;
    }

    .signature-tagline {
      font-size: 1.3rem;
      font-weight: 300;
      letter-spacing: 1px;
      line-height: 1.6;
    }

    /* Newsletter Section */
    .newsletter-section {
      width: 100%;
      background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
      padding: 5rem 4rem;
      text-align: center;
    }

    .newsletter-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3.5rem;
      letter-spacing: 4px;
      color: white;
      margin: 0 0 1rem 0;
    }

    .newsletter-desc {
      font-size: 1.1rem;
      color: white;
      opacity: 0.9;
      margin: 0 0 2.5rem 0;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .newsletter-form {
      max-width: 600px;
      margin: 0 auto 2rem;
      display: flex;
      gap: 1rem;
    }

    .newsletter-input {
      flex: 1;
      padding: 1.2rem;
      border: 2px solid white;
      font-size: 1rem;
      background: rgba(255, 255, 255, 0.9);
    }

    .newsletter-input:focus {
      outline: none;
      background: white;
    }

    .newsletter-btn {
      padding: 1.2rem 3rem;
      background: white;
      color: #dc2626;
      border: none;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .newsletter-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }

    .newsletter-success {
      background: rgba(255, 255, 255, 0.2);
      border: 2px solid white;
      color: white;
      padding: 1.5rem;
      margin-top: 1rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .unsubscribe-link {
      color: white;
      text-decoration: underline;
      cursor: pointer;
      font-size: 0.9rem;
      margin-top: 1rem;
      display: inline-block;
    }

    /* Footer */
    .main-footer {
      width: 100%;
      background: white;
      padding: 4rem 4rem 2rem;
      border-top: 2px solid #f3f4f6;
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 3rem;
      max-width: 1400px;
      margin: 0 auto 3rem;
    }

    .footer-column h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.5rem;
      letter-spacing: 2px;
      margin: 0 0 1.5rem 0;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-column li {
      margin-bottom: 0.8rem;
    }

    .footer-column a {
      text-decoration: none;
      font-weight: 400;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .footer-column a:hover {
      transform: translateX(5px);
      display: inline-block;
    }

    .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid #e5e7eb;
      font-weight: 300;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin-bottom: 1rem;
    }

    .footer-links a {
      text-decoration: none;
      font-size: 0.9rem;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .footer-links a:hover {
      text-decoration: underline;
    }

    /* Modal Styles */
    .modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 2000;
      backdrop-filter: blur(5px);
      padding: 2rem;
    }

    .modal.active {
      display: flex;
    }

    .modal-container {
      background: white;
      width: 90%;
      max-width: 600px;
      max-height: 80%;
      overflow-y: auto;
      padding: 3rem;
      position: relative;
      animation: modalSlideIn 0.4s ease-out;
    }

    @keyframes modalSlideIn {
      from {
        opacity: 0;
        transform: translateY(-50px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .close-modal {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      background: none;
      border: none;
      font-size: 2rem;
      cursor: pointer;
      transition: all 0.3s ease;
      line-height: 1;
      color: #1a1a1a;
    }

    .close-modal:hover {
      transform: rotate(90deg);
    }

    .modal-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3rem;
      letter-spacing: 3px;
      margin: 0 0 2rem 0;
      color: #dc2626;
    }

    .modal-content {
      font-size: 1rem;
      line-height: 1.8;
      color: #4b5563;
    }

    .modal-content h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.8rem;
      letter-spacing: 2px;
      color: #dc2626;
      margin: 2rem 0 1rem 0;
    }

    .modal-content h3 {
      font-weight: 700;
      font-size: 1.1rem;
      color: #1a1a1a;
      margin: 1.5rem 0 0.8rem 0;
    }

    .modal-content p {
      margin: 0 0 1rem 0;
    }

    .modal-content ul {
      margin: 0 0 1rem 1.5rem;
    }

    .modal-content li {
      margin-bottom: 0.5rem;
    }

    /* Cookie Banner */
    .cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      width: 100%;
      background: white;
      padding: 2rem 4rem;
      box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
      z-index: 1500;
      display: none;
    }

    .cookie-banner.active {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 2rem;
    }

    .cookie-text {
      flex: 1;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .cookie-text a {
      color: #dc2626;
      text-decoration: underline;
      cursor: pointer;
    }

    .cookie-actions {
      display: flex;
      gap: 1rem;
    }

    .cookie-btn {
      padding: 0.8rem 2rem;
      border: none;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 0.85rem;
    }

    .cookie-accept {
      background: #dc2626;
      color: white;
    }

    .cookie-accept:hover {
      background: #991b1b;
    }

    .cookie-decline {
      background: transparent;
      border: 2px solid #dc2626;
      color: #dc2626;
    }

    .cookie-decline:hover {
      background: #fef2f2;
    }

    /* Shopping Cart */
    .cart-sidebar {
      position: fixed;
      top: 0;
      right: -450px;
      width: 450px;
      height: 100%;
      background: white;
      box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
      z-index: 3000;
      transition: all 0.4s ease;
      display: flex;
      flex-direction: column;
    }

    .cart-sidebar.active {
      right: 0;
    }

    .cart-header {
      padding: 2rem;
      border-bottom: 2px solid #f3f4f6;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .cart-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2rem;
      letter-spacing: 2px;
      color: #dc2626;
      margin: 0;
    }

    .cart-close {
      background: none;
      border: none;
      font-size: 2rem;
      cursor: pointer;
      color: #1a1a1a;
      transition: all 0.3s ease;
    }

    .cart-close:hover {
      transform: rotate(90deg);
    }

    .cart-items {
      flex: 1;
      overflow-y: auto;
      padding: 1.5rem;
    }

    .cart-item {
      display: flex;
      gap: 1rem;
      padding: 1.5rem 0;
      border-bottom: 1px solid #f3f4f6;
    }

    .cart-item-image {
      width: 80px;
      height: 80px;
      object-fit: cover;
    }

    .cart-item-details {
      flex: 1;
    }

    .cart-item-name {
      font-weight: 700;
      font-size: 1rem;
      margin: 0 0 0.5rem 0;
    }

    .cart-item-price {
      color: #dc2626;
      font-weight: 700;
      margin: 0 0 0.5rem 0;
    }

    .cart-item-quantity {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .qty-btn {
      background: #f3f4f6;
      border: none;
      width: 25px;
      height: 25px;
      cursor: pointer;
      font-weight: 700;
      transition: all 0.3s ease;
    }

    .qty-btn:hover {
      background: #dc2626;
      color: white;
    }

    .cart-item-remove {
      background: none;
      border: none;
      color: #dc2626;
      cursor: pointer;
      font-size: 1.2rem;
      padding: 0.5rem;
      transition: all 0.3s ease;
    }

    .cart-item-remove:hover {
      transform: scale(1.2);
    }

    .cart-empty {
      text-align: center;
      padding: 4rem 2rem;
      color: #6b7280;
    }

    .cart-footer {
      padding: 2rem;
      border-top: 2px solid #f3f4f6;
    }

    .cart-total {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem;
      font-size: 1.3rem;
    }

    .cart-total-label {
      font-weight: 700;
    }

    .cart-total-amount {
      font-weight: 700;
      color: #dc2626;
    }

    .cart-checkout-btn {
      width: 100%;
      padding: 1.2rem;
      background: #dc2626;
      color: white;
      border: none;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 1rem;
    }

    .cart-checkout-btn:hover {
      background: #991b1b;
    }

    .cart-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 2500;
      display: none;
    }

    .cart-overlay.active {
      display: block;
    }

    /* Content Pages */
    .content-page {
      width: 100%;
      padding-top: 80px;
      min-height: 100%;
    }

    .product-grid-section {
      margin-top: 3rem;
    }

    .filter-bar {
      display: flex;
      gap: 2rem;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      padding: 2rem;
      background: #f9fafb;
      margin-bottom: 3rem;
    }

    .filter-group {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .filter-label {
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 0.9rem;
      color: #1a1a1a;
    }

    .filter-select {
      padding: 0.8rem 1.5rem;
      border: 2px solid #e5e7eb;
      background: white;
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      font-size: 0.9rem;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .filter-select:focus {
      outline: none;
      border-color: #dc2626;
    }

    .shop-products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 2.5rem;
      margin-bottom: 4rem;
    }

    .shop-product-card {
      background: white;
      overflow: hidden;
      transition: all 0.3s ease;
      cursor: pointer;
      border: 1px solid #f3f4f6;
    }

    .shop-product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
      border-color: #dc2626;
    }

    .shop-product-image {
      width: 100%;
      height: 450px;
      position: relative;
      overflow: hidden;
      background: #f9fafb;
    }

    .shop-product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.4s ease;
    }

    .shop-product-card:hover .shop-product-image img {
      transform: scale(1.08);
    }

    .shop-product-badge {
      position: absolute;
      top: 1rem;
      right: 1rem;
      padding: 0.6rem 1.2rem;
      font-weight: 700;
      font-size: 0.75rem;
      letter-spacing: 1px;
      background: #dc2626;
      color: white;
      z-index: 10;
    }

    .shop-product-info {
      padding: 1.8rem;
    }

    .shop-product-category {
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #6b7280;
      margin: 0 0 0.5rem 0;
    }

    .shop-product-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.6rem;
      letter-spacing: 1px;
      margin: 0 0 0.8rem 0;
      color: #1a1a1a;
    }

    .shop-product-description {
      font-size: 0.9rem;
      color: #6b7280;
      line-height: 1.5;
      margin: 0 0 1rem 0;
    }

    .shop-product-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 1.5rem;
    }

    .shop-product-price {
      font-size: 1.5rem;
      font-weight: 700;
      color: #dc2626;
      margin: 0;
    }

    .shop-add-to-cart {
      padding: 0.9rem 1.8rem;
      background: #dc2626;
      color: white;
      border: none;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 0.85rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .shop-add-to-cart:hover {
      background: #991b1b;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    }

    .page-hero {
      width: 100%;
      background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
      padding: 6rem 4rem;
      text-align: center;
    }

    .page-hero-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 5rem;
      letter-spacing: 8px;
      margin: 0 0 1rem 0;
      color: white;
    }

    .page-hero-subtitle {
      font-size: 1.3rem;
      font-weight: 300;
      letter-spacing: 2px;
      color: white;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-content {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 4rem;
    }

    .page-section {
      margin-bottom: 4rem;
    }

    .page-section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.5rem;
      letter-spacing: 3px;
      color: #dc2626;
      margin: 0 0 1.5rem 0;
    }

    .page-section-content {
      font-size: 1.05rem;
      line-height: 1.8;
      color: #4b5563;
    }

    .page-section-content p {
      margin: 0 0 1.5rem 0;
    }

    .page-section-content ul {
      margin: 0 0 1.5rem 2rem;
    }

    .page-section-content li {
      margin-bottom: 0.8rem;
    }

    .hidden {
      display: none;
    }

    /* Auth Modal */
    .auth-modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 2000;
      backdrop-filter: blur(5px);
    }

    .auth-modal.active {
      display: flex;
    }

    .auth-container {
      background: white;
      width: 90%;
      max-width: 450px;
      padding: 3rem;
      position: relative;
      animation: modalSlideIn 0.4s ease-out;
    }

    .auth-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3rem;
      letter-spacing: 3px;
      margin: 0 0 2rem 0;
      text-align: center;
    }

    .auth-form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .form-group label {
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 0.85rem;
    }

    .form-group input {
      padding: 1rem;
      border: 2px solid #e5e7eb;
      font-size: 1rem;
      transition: all 0.3s ease;
      font-family: 'Montserrat', sans-serif;
    }

    .form-group input:focus {
      outline: none;
      border-color: #dc2626;
    }

    .btn-submit {
      padding: 1.2rem;
      border: none;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 1rem;
      margin-top: 1rem;
    }

    .btn-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 20px rgba(220, 38, 38, 0.4);
    }

    .auth-switch {
      text-align: center;
      margin-top: 1.5rem;
      font-size: 0.95rem;
    }

    .auth-switch a {
      font-weight: 700;
      cursor: pointer;
      text-decoration: underline;
      transition: all 0.3s ease;
    }

    .auth-switch a:hover {
      opacity: 0.8;
    }

    /* Toast Notification */
    .toast {
      position: fixed;
      top: 100px;
      right: 2rem;
      background: #dc2626;
      color: white;
      padding: 1.2rem 2rem;
      border-radius: 4px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
      z-index: 4000;
      animation: slideInRight 0.3s ease-out;
      display: none;
    }

    .toast.active {
      display: block;
    }

    @keyframes slideInRight {
      from {
        transform: translateX(400px);
      }
      to {
        transform: translateX(0);
      }
    }

    .loading-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.9);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 5000;
      flex-direction: column;
      gap: 1rem;
    }

    .loading-spinner {
      width: 50px;
      height: 50px;
      border: 4px solid #f3f4f6;
      border-top: 4px solid #dc2626;
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .loading-text {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.5rem;
      letter-spacing: 2px;
      color: #dc2626;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .navbar {
        padding: 1.5rem 2rem;
      }

      .hero-headline {
        font-size: 5rem;
      }

      .signature-section {
        grid-template-columns: 1fr;
      }

      .categories-section, .trending-section, .newsletter-section {
        padding: 4rem 2rem;
      }

      .page-content {
        padding: 3rem 2rem;
      }

      .cart-sidebar {
        width: 100%;
        right: -100%;
      }

      .cookie-banner {
        flex-direction: column;
        padding: 2rem;
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        gap: 1.5rem;
      }

      .nav-links a {
        font-size: 0.8rem;
      }

      .hero {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .hero-slideshow {
        height: 400px;
      }

      .hero-content {
        padding: 3rem 2rem;
      }

      .hero-headline {
        font-size: 3rem;
        min-height: 120px;
      }

      .hero-subline {
        font-size: 1rem;
      }

      .hero-buttons {
        flex-direction: column;
        width: 100%;
      }

      .hero-buttons button {
        width: 100%;
      }

      .marquee-text {
        font-size: 1.5rem;
      }

      .section-title {
        font-size: 3rem;
      }

      .auth-container, .modal-container {
        padding: 2rem;
      }

      .page-hero-title {
        font-size: 3rem;
      }

      .newsletter-form {
        flex-direction: column;
      }

      .footer-links {
        flex-direction: column;
        gap: 0.8rem;
      }
    }
    button.btn-login {
  color: #dc2626 !important;
}

.marquee-text-section {
  width: 100%;
  height: 150px; /* Large height for text */
  overflow: hidden;
  background: #111;
  display: flex;
  align-items: center;
  position: relative;
}

.marquee-text-track {
  display: flex;
  white-space: nowrap;
  animation: marqueeText 15s linear infinite;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem; /* Large text */
  font-weight: 900;
  color: #ff2b2b;
  letter-spacing: 3px;
}

.marquee-text-track span {
  margin-right: 5rem;
}

/* Animation */
@keyframes marqueeText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .marquee-text-section {
    height: 100px;
  }

  .marquee-text-track {
    font-size: 2rem;
  }
}

.marquee-section {
  width: 100%;
  height: 600px; /* Large height */
  overflow: hidden;
  position: relative;
  background: #111; /* optional background behind images */
  display: flex;
  align-items: center;
}

.marquee-track {
  display: flex;
  gap: 2rem;
  animation: marquee 25s linear infinite;
}

.marquee-item img {
  height: 550px; /* make image large */
  width: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* marquee animation */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .marquee-section {
    height: 400px;
  }

  .marquee-item img {
    height: 350px;
  }
}
