@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }

  /* Breadcrumbs */
.breadcrumbs {
    font-size: 0.95rem;
    padding: 1rem 3rem;
    background: #fafafa;
    border-bottom: 1px solid #eee;
  }
  
  .breadcrumbs a {
    color: #f83600;
    text-decoration: none;
  }
  
  .breadcrumbs a:hover {
    text-decoration: underline;
  }
  
  .breadcrumbs span {
    color: #333;
    font-weight: 500;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .breadcrumbs {
      font-size: 0.85rem;
      padding: 0.8rem 1.5rem;
    }
  }
  
/* ---------- Category Page ---------- */

/* Hero Section */
.page-hero {
    background: #f9f9f9;
    padding: 3rem 2rem;
    text-align: center;
  }
  
  .page-hero h1 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
  }
  
  .page-hero p {
    font-size: 1rem;
    color: #555;
  }
  
  /* Mockups Grid */
  .mockups-section {
    background: #fff;
    padding: 3rem 10rem;
  }
  
  .mockups-container {
    max-width: 1600px;
    margin: 0 auto;
  }
  
  .mockups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
  }
  
  /* Mockup Card */
  .mockup-card {
    border-radius: 12px;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    cursor: pointer;
  }
  
  .mockup-card:hover {
    transform: translateY(-5px);
  }
  
  .mockup-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
  }
  
  .mockup-card .card-body {
    padding: 1rem;
  }
  
  .mockup-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.3rem;
  }
  
  .mockup-card p {
    font-size: 0.9rem;
    color: #666;
  }
  
  /* ---------- Responsive Breakpoints ---------- */
  
  /* Tablets */
  @media (max-width: 1024px) {
    .page-hero h1 {
      font-size: 1.8rem;
    }
    .mockup-card img {
      height: 200px;
    }
    .mockups-section {
    background: #fff;
    padding: 3rem 5rem;
  }
  }
  
  /* Mobile Landscape / Small Tablets */
  @media (max-width: 768px) {
    .page-hero {
      padding: 2.5rem 1.5rem;
    }
    .page-hero h1 {
      font-size: 1.8rem;
    }
    .mockups-grid {
      gap: 1rem;
    }
    .mockup-card img {
      height: 200px;
    }
    .mockup-card h3 {
      font-size: 1rem;
    }
    .mockups-section {
        background: #fff;
        padding: 3rem 1rem;
      }
  }
  
  /* Mobile Portrait */
  @media (max-width: 480px) {
    .page-hero {
      padding: 2rem 1rem;
    }
    .page-hero h1 {
      font-size: 1.8rem;
    }
    .page-hero p {
      font-size: 0.9rem;
    }
    .mockup-card img {
      height: 250px;
    }
    .mockup-card h3 {
      font-size: 0.95rem;
    }
    .mockup-card p {
      font-size: 0.85rem;
    }
  }
  