  /* Override to fix alignment issues from base.html changes */
  .carousel-inner {
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  }

  .carousel-item {
    height: 70vh; /* Reduced from 90vh for better mobile fit */
    min-height: 500px;
  }

  .hero-section {
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
  }

  .hero-section::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.55); /* Darker overlay for better text readability on golden navbar */
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
  }

  .hero-content h1 {
    font-size: 3.8rem;
    font-weight: 900;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.7);
    margin-bottom: 1rem;
  }

  .hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }

  .hero-content .btn-primary {
    background: var(--gold-primary, #d4af37) !important;
    border: none;
    color: #0f172a !important;
    padding: 0.8rem 2.5rem;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s;
  }

  .hero-content .btn-primary:hover {
    background: var(--gold-dark, #b8972e) !important;
    transform: translateY(-3px);
  }

  /* Category Section Fixes */
  .category-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #f8fafc, #ffffff);
  }

  .category-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

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

  .category-card img {
    width: 100%;
    height: 320px; /* Uniform height */
    object-fit: cover;
    transition: transform 0.5s ease;
  }

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

  .category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent 70%);
    color: white;
    text-align: center;
    padding: 2rem 1rem 1.5rem;
  }

  .category-overlay h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }

  .category-overlay .btn-primary {
    background: var(--gold-primary, #d4af37) !important;
    color: #0f172a !important;
    border: none;
    border-radius: 50px;
    padding: 0.6rem 1.8rem;
  }

  /* Trends & Arrivals - Consistent cards */
  .trends-section, .arrivals-section {
    padding: 5rem 0;
  }

  .card {
    border: none !important;
    border-radius: 16px !important;
    overflow: hidden;
    transition: all 0.4s ease !important;
  }

  .card:hover {
    transform: translateY(-12px) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12) !important;
  }

  .card-img-top {
    height: 240px !important;
    object-fit: contain !important;
    padding: 20px !important;
    background: #f8fafc;
  }

  @media (max-width: 768px) {
    .hero-content h1 { font-size: 2.8rem; }
    .hero-content h2 { font-size: 2rem; }
  
    .hero-content p { font-size: 1.2rem; }
    .carousel-item { height: 60vh; min-height: 400px; }
    .category-card img { height: 280px; }
  }
  @media (max-width: 576px) {
    .hero-content h1 { font-size: 2.4rem; }
    .hero-content p { font-size: 1rem; }
    .carousel-item { height: 50vh; min-height: 300px; }
    .category-card img { height: 240px; }
  }
  @media (max-width: 400px) {
    .hero-content h1 { font-size: 1.8rem; }
    .hero-content p { font-size: 0.9rem; }
    .carousel-item { height: 40vh; min-height: 200px; }
    .category-card img { height: 180px; }
  } 
