:root {
      --primary: #003366;
      --accent: #d4af37; /* Golden tone */
      --bg: #f9f9f9;
      --card-bg: #ffffff;
      --shadow: rgba(0, 0, 0, 0.1);
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: var(--bg);
      margin: 0;
      color: #222;
    }

    .sale-header {
      background: linear-gradient(to right, #003366, #001d3d);
      color: white;
      padding: 60px 20px;
      text-align: center;
    }

    .sale-header h1 {
      font-size: 42px;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .sale-header p {
      font-size: 18px;
      opacity: 0.9;
    }

    .product-container {
      padding: 50px 20px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .product-card {
      background: var(--card-bg);
      border-radius: 16px;
      box-shadow: 0 8px 24px var(--shadow);
      padding: 20px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .product-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    }

    .product-card img {
      width: 100%;
      height: 180px;
      object-fit: contain;
      margin-bottom: 16px;
      border-radius: 8px;
    }

    .product-card h3 {
      font-size: 18px;
      font-weight: 600;
      margin: 10px 0 6px;
    }

    .product-card p {
      font-size: 16px;
      color: var(--primary);
      font-weight: 700;
    }

    .badge {
      position: absolute;
      top: 16px;
      left: -40px;
      background: var(--accent);
      color: white;
      padding: 6px 60px;
      font-size: 14px;
      transform: rotate(-45deg);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }
.breadcrumb {
  font-size: 14px;
  margin: 20px 30px;
  color: #666;
}
.breadcrumb a {
  color: #003366;
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}

    @media (max-width: 500px) {
      .sale-header h1 {
        font-size: 28px;
      }

      .product-card {
        padding: 16px;
      }
    }